blob: 73695d0e7f236680ee0969d23e39b0fa5e9a5a81 [file] [log] [blame]
ilanap637206b2018-02-04 17:06:22 +02001/*
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 */
16const {Then, When, Given} = require('cucumber');
17const assert = require('assert');
18const _ = require('lodash');
19const fs = require('fs');
20const 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 **/
28When('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 **/
41When('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 **/
51When('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 **/
61Then('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
67 * @description removes a property from the input data object
68 * @exampleFile Example_Rest_Calls.feature
69 * @step I want to remove {string} from the input data
70 **/
71Then('I want to remove {string} from the input data', function(string) {
72 delete this.context.inputData[string];
73});
74
75/**
76 * @module InputData
77 * @description sets the input data property to a random value
78 * @exampleFile Example_Rest_Calls.feature
79 * @step I want to update the input property {string} with a random value
80 **/
81Then('I want to update the input property {string} with a random value', function(string) {
82 _.set(this.context.inputData, string, util.random());
83});