From 6c872743f110fee1efd1d846b7642e6162efa1ea Mon Sep 17 00:00:00 2001 From: ilanap Date: Sun, 18 Feb 2018 11:02:03 +0200 Subject: Adding BDD prefixes for different environments Change-Id: I393f7e68b209b2a29134073453ee5ec92339330b Issue-ID: SDC-990 Signed-off-by: ilanap --- openecomp-bdd/stepDefinitions/Utils.js | 5 +++-- openecomp-bdd/stepDefinitions/VF_steps.js | 2 +- openecomp-bdd/stepDefinitions/world.js | 8 ++++---- 3 files changed, 8 insertions(+), 7 deletions(-) (limited to 'openecomp-bdd/stepDefinitions') diff --git a/openecomp-bdd/stepDefinitions/Utils.js b/openecomp-bdd/stepDefinitions/Utils.js index ff49727409..08d0a2b10f 100644 --- a/openecomp-bdd/stepDefinitions/Utils.js +++ b/openecomp-bdd/stepDefinitions/Utils.js @@ -17,8 +17,9 @@ const request = require('request'); const fs = require('fs'); require('node-zip'); -function _request(context, method, path, data, isBinary=false, isVFCall=false) { - let server = (isVFCall) ? context.vf_server : context.onboarding_server; +function _request(context, method, path, data, isBinary=false, prefix='onboarding') { + let server = context.server + '/' + context.prefix[prefix]; + let options = { method: method, url: server + path, diff --git a/openecomp-bdd/stepDefinitions/VF_steps.js b/openecomp-bdd/stepDefinitions/VF_steps.js index d00cf9ca6a..268c371687 100644 --- a/openecomp-bdd/stepDefinitions/VF_steps.js +++ b/openecomp-bdd/stepDefinitions/VF_steps.js @@ -37,7 +37,7 @@ Then('I want to create a VF for this Item', function () { this.context.inputData.tags[0] = result.data.name; this.context.inputData.vendorName = result.data.vendorName; this.context.inputData.csarUUID = this.context.item.id; - return util.request(this.context, 'POST', '/catalog/resources', this.context.inputData, false, true); + return util.request(this.context, 'POST', '/catalog/resources', this.context.inputData, false, 'vf'); }); }); diff --git a/openecomp-bdd/stepDefinitions/world.js b/openecomp-bdd/stepDefinitions/world.js index e87a9b588f..ba6d57a09b 100644 --- a/openecomp-bdd/stepDefinitions/world.js +++ b/openecomp-bdd/stepDefinitions/world.js @@ -40,8 +40,7 @@ class CustomWorld { } else { this.context.server = config.server; } - this.context.onboarding_server = (config.protocol + '://' + this.context.server + ':' + config.port + '/' + config.prefix); - this.context.vf_server = (config.protocol + '://' + this.context.server + ':' + config.port + '/' + config.vf_prefix); + this.context.server = (config.protocol + '://' + this.context.server + ':' + config.port); this.context.headers = {}; @@ -56,9 +55,10 @@ class CustomWorld { this.context.inputData = null; this.context.responseData = null; + this.context.prefix = config.prefix; + this.setServer = function(server) { - this.context.onboarding_server = (config.protocol + '://' +server + ':' + config.port + '/' + config.prefix); - this.context.vf_server = (config.protocol + '://' +server + ':' + config.port + '/' + config.vf_prefix); + this.context.server = (config.protocol + '://' + this.context.server + ':' + config.port); } setDefaultTimeout(60 * 1000); -- cgit 1.2.3-korg