feat: bru hasEnvVar, hasVar, deleteVar (#2531)

Co-authored-by: Anoop M D <anoop.md1421@gmail.com>
This commit is contained in:
lohit 2024-07-04 13:21:27 +05:30 committed by GitHub
parent 2aa7d26a89
commit c8f95a34e9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 15 additions and 0 deletions

View File

@ -58,10 +58,13 @@ if (!SERVER_RENDERED) {
'bru.cwd()', 'bru.cwd()',
'bru.getEnvName(key)', 'bru.getEnvName(key)',
'bru.getProcessEnv(key)', 'bru.getProcessEnv(key)',
'bru.hasEnvVar(key)',
'bru.getEnvVar(key)', 'bru.getEnvVar(key)',
'bru.setEnvVar(key,value)', 'bru.setEnvVar(key,value)',
'bru.hasVar(key)',
'bru.getVar(key)', 'bru.getVar(key)',
'bru.setVar(key,value)', 'bru.setVar(key,value)',
'bru.deleteVar(key)',
'bru.setNextRequest(requestName)' 'bru.setNextRequest(requestName)'
]; ];
CodeMirror.registerHelper('hint', 'brunoJS', (editor, options) => { CodeMirror.registerHelper('hint', 'brunoJS', (editor, options) => {

View File

@ -43,6 +43,10 @@ class Bru {
return this.processEnvVars[key]; return this.processEnvVars[key];
} }
hasEnvVar(key) {
return Object.hasOwn(this.envVariables, key);
}
getEnvVar(key) { getEnvVar(key) {
return this._interpolate(this.envVariables[key]); return this._interpolate(this.envVariables[key]);
} }
@ -55,6 +59,10 @@ class Bru {
this.envVariables[key] = value; this.envVariables[key] = value;
} }
hasVar(key) {
return Object.hasOwn(this.collectionVariables, key);
}
setVar(key, value) { setVar(key, value) {
if (!key) { if (!key) {
throw new Error('Creating a variable without specifying a name is not allowed.'); throw new Error('Creating a variable without specifying a name is not allowed.');
@ -81,6 +89,10 @@ class Bru {
return this._interpolate(this.collectionVariables[key]); return this._interpolate(this.collectionVariables[key]);
} }
deleteVar(key) {
delete this.collectionVariables[key];
}
getRequestVar(key) { getRequestVar(key) {
return this._interpolate(this.requestVariables[key]); return this._interpolate(this.requestVariables[key]);
} }