aboutsummaryrefslogtreecommitdiffstats
path: root/cucumber-js-test-apis-ci/stepDefinitions/InterfaceOperationSteps.js
blob: 3e2321963ce8c52a128c36d6a6feae9984a3ce0b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
/*
 * Copyright © 2016-2017 European Support Limited
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
const {Then, When} = require('cucumber');
const assert = require('assert');
const util = require('./Utils.js');


When('I want to create a VF', function()  {
    let inputData = util.getJSONFromFile('resources/json/createVFWithoutCSAR.json');

    var resourceName = util.random();
    inputData.name =  resourceName;
    inputData.tags[0] = resourceName;

    var type = "resources";
    let path = '/catalog/' + type;
    return util.request(this.context, 'POST', path,  inputData, false, 'catalog').then(result => {
        this.context.component = {uniqueId : result.data.uniqueId, type : type, id : result.data.inputs[0].uniqueId};
});
});

When('I want to create a Service', function()  {
    let inputData = util.getJSONFromFile('resources/json/createService.json');

    var serviceName = util.random();
    inputData.name =  serviceName;
    inputData.tags[0] = serviceName;

    var type = "services";
    let path = '/catalog/' + type;
    return util.request(this.context, 'POST', path,  inputData, false, 'catalog').then(result => {
        this.context.component = {uniqueId : result.data.uniqueId, type : type, id : result.data.inputs[0].uniqueId};
});
});

function makeType() {
    var text = "";
    var possible = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz";

    for (var i = 0; i < 5; i++)
        text += possible.charAt(Math.floor(Math.random() * possible.length));

    return text;
}

When('I want to create an Operation', function()  {
    let path = '/catalog/' + this.context.component.type + '/' + this.context.component.uniqueId + '/interfaceOperations';
    let inputData = util.getJSONFromFile('resources/json/interfaceOperation/createInterfaceOperations.json');
    var operationName = makeType();
    var interfaceType = makeType();
    inputData.interfaces.interface1.type = interfaceType;
    inputData.interfaces.interface1.operations.delete.name = operationName;
    inputData.interfaces.interface1.operations.delete.inputs.listToscaDataDefinition[0].name = util.random();
    inputData.interfaces.interface1.operations.delete.inputs.listToscaDataDefinition[0].inputId = this.context.component.id;
    inputData.interfaces.interface1.operations.delete.outputs.listToscaDataDefinition[0].name = util.random();
    inputData.interfaces.interface1.operations.delete.description = operationName + " description";

    return util.request(this.context, 'POST', path, inputData, false, 'catalog').then(result => {
            {intOperations = result.data.interfaces[0].operations};
        this.context.interface = {  interfaceUniqueId : result.data.interfaces[0].uniqueId,
                                    interfaceType : result.data.interfaces[0].type,
                                    operationUniqueId : Object.keys(intOperations)[0]
        };
});
});

When('I want to update an Operation', function () {
    let inputData = util.getJSONFromFile('resources/json/interfaceOperation/updateInterfaceOperation.json');
    let path = '/catalog/'+ this.context.component.type + '/'+ this.context.component.uniqueId +'/interfaceOperations';
    inputData.interfaces.interface1.operations.delete.uniqueId = this.context.interface.operationUniqueId;
    inputData.interfaces.interface1.type=this.context.interface.interfaceType;
    inputData.interfaces.interface1.operations.delete.inputs.listToscaDataDefinition[0].name = util.random();
    inputData.interfaces.interface1.operations.delete.inputs.listToscaDataDefinition[0].inputId = this.context.component.id;
    inputData.interfaces.interface1.operations.delete.outputs.listToscaDataDefinition[0].name = util.random();

    return util.request(this.context, 'PUT', path, inputData, false, 'catalog').then((result)=> {
    {intOperations = result.data.interfaces[0].operations};
            this.context.interface =  { interfaceUniqueId : result.data.interfaces[0].uniqueId,
                                        interfaceType : result.data.interfaces[0].type,
                                        operationUniqueId : Object.keys(intOperations)[0]
    };
});
});

When('I want to get an Operation by Id', function () {
    let path = '/catalog/'+ this.context.component.type + '/' + this.context.component.uniqueId + '/interfaces/' +
        this.context.interface.interfaceUniqueId + '/operations/' +this.context.interface.operationUniqueId ;
    return util.request(this.context, 'GET', path, null, false, 'catalog').then((result)=> {

    {intOperations = result.data.interfaces[0].operations};
    this.context.interface =  { interfaceUniqueId : result.data.interfaces[0].uniqueId,
                                interfaceType : result.data.interfaces[0].type,
                                operationUniqueId : Object.keys(intOperations)[0]
    };
    });

});

When('I want to list Operations', function () {
    let path = '/catalog/'+ this.context.component.type + '/' + this.context.component.uniqueId + '/filteredDataByParams?include=interfaces';
    return util.request(this.context, 'GET', path, null, false, 'catalog').then((result)=> {
    });
});


When('I want to delete an Operation', function()  {
    let path = '/catalog/'+ this.context.component.type + '/'+ this.context.component.uniqueId +'/interfaces/' +
        this.context.interface.interfaceUniqueId + '/operations/' +this.context.interface.operationUniqueId ;
    return util.request(this.context, 'DELETE', path, null, false, 'catalog');
});


When('I want to checkin this component', function () {
    let path = '/catalog/'+ this.context.component.type + '/' + this.context.component.uniqueId + '/lifecycleState/CHECKIN' ;
    let inputData = {userRemarks: 'checkin'};
    return util.request(this.context, 'POST', path, inputData, false, 'catalog').then((result)=> {
    this.context.component = {uniqueId : result.data.uniqueId, type : this.context.component.type};
});
});


Then('I want to submit this component', function () {
    let path = '/catalog/'+ this.context.component.type + '/' + this.context.component.uniqueId + '/lifecycleState/certificationRequest' ;
    let inputData = {userRemarks: 'submit'};
    return util.request(this.context, 'POST', path, inputData, false, 'catalog').then((result)=> {
    this.context.component = {uniqueId : result.data.uniqueId};
});
});

Then('I want to certify this component', function () {
    let path = '/catalog/'+ this.context.component.type +'/' + this.context.component.uniqueId + '/lifecycleState/certify' ;
    let inputData = {userRemarks: 'certify'};
    return util.request(this.context, 'POST', path, inputData, false, 'catalog').then((result)=> {
    this.context.component = {uniqueId : result.data.uniqueId};
});
});