aboutsummaryrefslogtreecommitdiffstats
path: root/workflow-bdd/stepDefinitions
diff options
context:
space:
mode:
authorayalaben <ayala.benzvi@amdocs.com>2018-08-23 13:38:49 +0300
committerayalaben <ayala.benzvi@amdocs.com>2018-08-23 13:38:49 +0300
commit688de372de459440cfa16020508cac7a44c62159 (patch)
treefa6cf1a0e5e94515ac318e3d528e9c85db692dd3 /workflow-bdd/stepDefinitions
parent093c852f3cec47bbeb19a32083b1ecbb0d5b493d (diff)
Search Workflow by name BDD test
Change-Id: I759678da1864470e0d1baadb10f27c1f11918633 Issue-ID: SDC-1662 Signed-off-by: ayalaben <ayala.benzvi@amdocs.com>
Diffstat (limited to 'workflow-bdd/stepDefinitions')
-rw-r--r--workflow-bdd/stepDefinitions/General_Steps.js3
-rw-r--r--workflow-bdd/stepDefinitions/InputData_steps.js8
2 files changed, 9 insertions, 2 deletions
diff --git a/workflow-bdd/stepDefinitions/General_Steps.js b/workflow-bdd/stepDefinitions/General_Steps.js
index 5968d406..1ceea647 100644
--- a/workflow-bdd/stepDefinitions/General_Steps.js
+++ b/workflow-bdd/stepDefinitions/General_Steps.js
@@ -166,7 +166,8 @@ Then('I want to check property {string} does not exist', function(string) {
**/
Then('I want to check in the list {string} property {string} with value {string} exists', function(listPath, propertyPath, value) {
var list = _.get(this.context.responseData, listPath);
- assert.notEqual(list.find(element => _.get(element, propertyPath) === value), undefined);
+ let valueCheck = getPath(value, this.context);
+ assert.notEqual(list.find(element => _.get(element, propertyPath) === valueCheck), undefined);
});
/**
diff --git a/workflow-bdd/stepDefinitions/InputData_steps.js b/workflow-bdd/stepDefinitions/InputData_steps.js
index 6263bb73..7fee19a2 100644
--- a/workflow-bdd/stepDefinitions/InputData_steps.js
+++ b/workflow-bdd/stepDefinitions/InputData_steps.js
@@ -19,6 +19,11 @@ const _ = require('lodash');
const fs = require('fs');
const util = require('./Utils.js');
+function getPath(path, context) {
+ let compiled = _.template(path);
+ return compiled(context);
+}
+
/**
* @module InputData
* @description creates an ampty input data object
@@ -59,7 +64,8 @@ When('I want to set the input data to file {string}', function (string) {
* @step I want to update the input property {string} with value {string}
**/
Then('I want to update the input property {string} with value {string}', function(string, string2) {
- _.set(this.context.inputData, string, string2);
+ let value = getPath(string2, this.context);
+ _.set(this.context.inputData, string, value);
});
/**