ayalaben | 3fb47c4 | 2018-06-24 10:42:43 +0300 | [diff] [blame] | 1 | /* |
| 2 | * Copyright © 2016-2017 European Support Limited |
| 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
| 16 | const {Then, When, Given} = require('cucumber'); |
| 17 | const assert = require('assert'); |
| 18 | const _ = require('lodash'); |
| 19 | const fs = require('fs'); |
| 20 | const util = require('./Utils.js'); |
| 21 | |
| 22 | /** |
| 23 | * @module InputData |
| 24 | * @description creates an ampty input data object |
| 25 | * @exampleFile Example_Rest_Calls.feature, Example_VLM.feature |
| 26 | * @step I want to create input data |
| 27 | **/ |
| 28 | When('I want to create input data', function () { |
| 29 | this.context.inputData = {}; |
| 30 | }); |
| 31 | |
| 32 | /** |
| 33 | * @module InputData |
| 34 | * @exampleFile Example_Heat.feature |
| 35 | * @description I want to set the input data to:<br> |
| 36 | * """<br> |
| 37 | * {jsonObject}<br> |
| 38 | * """<br> |
| 39 | * @step creates an input data element with the given json object |
| 40 | **/ |
| 41 | When('I want to set the input data to:', function (docString) { |
| 42 | this.context.inputData = JSON.parse(docString); |
| 43 | }); |
| 44 | |
| 45 | /** |
| 46 | * @module InputData |
| 47 | * @description creates an input data object from the json in the given file |
| 48 | * @exampleFile Example_Rest_Calls.feature |
| 49 | * @step I want to set the input data to file {string} |
| 50 | **/ |
| 51 | When('I want to set the input data to file {string}', function (string) { |
| 52 | this.context.inputData = util.getJSONFromFile(string); |
| 53 | }); |
| 54 | |
| 55 | /** |
| 56 | * @module InputData |
| 57 | * @description sets the property on the input data to the given value |
| 58 | * @exampleFile Example_Rest_Calls.feature, Example_VLM.feature |
| 59 | * @step I want to update the input property {string} with value {string} |
| 60 | **/ |
| 61 | Then('I want to update the input property {string} with value {string}', function(string, string2) { |
| 62 | _.set(this.context.inputData, string, string2); |
| 63 | }); |
| 64 | |
| 65 | /** |
| 66 | * @module InputData |
talig | 8f91bb1 | 2018-07-23 10:15:59 +0300 | [diff] [blame] | 67 | * @description sets the property on the input data to the value of the given property |
| 68 | * @exampleFile WorkflowList.feature |
| 69 | * @step I want to update the input property {string} with value of property {string} |
| 70 | **/ |
| 71 | Then('I want to update the input property {string} with value of property {string}', function(string, string2) { |
| 72 | _.set(this.context.inputData, string, _.get(this.context, string2)); |
| 73 | }); |
| 74 | |
| 75 | /** |
| 76 | * @module InputData |
ayalaben | 3fb47c4 | 2018-06-24 10:42:43 +0300 | [diff] [blame] | 77 | * @description removes a property from the input data object |
| 78 | * @exampleFile Example_Rest_Calls.feature |
| 79 | * @step I want to remove {string} from the input data |
| 80 | **/ |
| 81 | Then('I want to remove {string} from the input data', function(string) { |
| 82 | delete this.context.inputData[string]; |
| 83 | }); |
| 84 | |
| 85 | /** |
| 86 | * @module InputData |
| 87 | * @description sets the input data property to a random value |
| 88 | * @exampleFile Example_Rest_Calls.feature |
| 89 | * @step I want to update the input property {string} with a random value |
| 90 | **/ |
| 91 | Then('I want to update the input property {string} with a random value', function(string) { |
| 92 | _.set(this.context.inputData, string, util.random()); |
| 93 | }); |