mojahidi | 65204c6 | 2018-04-25 18:39:53 +0530 | [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} = require('cucumber'); |
| 17 | const assert = require('assert'); |
| 18 | const util = require('./Utils.js'); |
| 19 | |
| 20 | |
| 21 | When('I want to create a VF', function() { |
mojahidi | 5082ac8 | 2018-09-07 11:07:49 +0530 | [diff] [blame] | 22 | let inputData = util.getJSONFromFile('resources/json/operation/createVF.json'); |
mojahidi | 65204c6 | 2018-04-25 18:39:53 +0530 | [diff] [blame] | 23 | |
| 24 | inputData.name = util.random(); |
| 25 | inputData.tags[0] = util.random(); |
| 26 | |
mojahidi | 5082ac8 | 2018-09-07 11:07:49 +0530 | [diff] [blame] | 27 | var type = "resources"; |
| 28 | let path = '/catalog/' + type; |
siddharth0905 | b734ea2 | 2018-11-22 13:37:31 +0530 | [diff] [blame^] | 29 | return util.request(this.context, 'POST', path, inputData, false, 'catalog').then(result => { |
mojahidi | 5082ac8 | 2018-09-07 11:07:49 +0530 | [diff] [blame] | 30 | this.context.component = {uniqueId : result.data.uniqueId, type : type, id : result.data.inputs[0].uniqueId}; |
| 31 | }); |
| 32 | }); |
| 33 | |
| 34 | When('I want to create a Service', function() { |
| 35 | let inputData = util.getJSONFromFile('resources/json/operation/createService.json'); |
| 36 | |
| 37 | inputData.name = util.random(); |
| 38 | inputData.tags[0] = util.random(); |
| 39 | |
| 40 | var type = "services"; |
| 41 | let path = '/catalog/' + type; |
siddharth0905 | b734ea2 | 2018-11-22 13:37:31 +0530 | [diff] [blame^] | 42 | return util.request(this.context, 'POST', path, inputData, false, 'catalog').then(result => { |
mojahidi | 5082ac8 | 2018-09-07 11:07:49 +0530 | [diff] [blame] | 43 | this.context.component = {uniqueId : result.data.uniqueId, type : type, id : result.data.inputs[0].uniqueId}; |
mojahidi | 65204c6 | 2018-04-25 18:39:53 +0530 | [diff] [blame] | 44 | }); |
| 45 | }); |
| 46 | |
| 47 | function makeType() { |
| 48 | var text = ""; |
| 49 | var possible = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz"; |
| 50 | |
| 51 | for (var i = 0; i < 5; i++) |
| 52 | text += possible.charAt(Math.floor(Math.random() * possible.length)); |
| 53 | |
| 54 | return text; |
| 55 | } |
| 56 | |
mojahidi | 5082ac8 | 2018-09-07 11:07:49 +0530 | [diff] [blame] | 57 | When('I want to create an Operation with input output', function() { |
| 58 | let path = '/catalog/' + this.context.component.type + '/' + this.context.component.uniqueId + '/interfaceOperations'; |
| 59 | let inputData = util.getJSONFromFile('resources/json/operation/createOperationWithInputOutput.json'); |
mojahidi | 65204c6 | 2018-04-25 18:39:53 +0530 | [diff] [blame] | 60 | |
mojahidi | 5082ac8 | 2018-09-07 11:07:49 +0530 | [diff] [blame] | 61 | inputData.interfaceOperations.operation.inputParams.listToscaDataDefinition[0].name = util.random(); |
| 62 | inputData.interfaceOperations.operation.inputParams.listToscaDataDefinition[0].property = this.context.component.id; |
| 63 | inputData.interfaceOperations.operation.outputParams.listToscaDataDefinition[0].name = util.random(); |
| 64 | inputData.interfaceOperations.operation.operationType = makeType(); |
| 65 | inputData.interfaceOperations.operation.description = makeType(); |
mojahidi | 4720f5a | 2018-06-22 16:37:52 +0530 | [diff] [blame] | 66 | |
siddharth0905 | b734ea2 | 2018-11-22 13:37:31 +0530 | [diff] [blame^] | 67 | return util.request(this.context, 'POST', path, inputData, false, 'catalog').then(result => { |
mojahidi | 65204c6 | 2018-04-25 18:39:53 +0530 | [diff] [blame] | 68 | this.context.operation = {uniqueId : result.data.uniqueId, operationType : result.data.operationType}; |
| 69 | }); |
| 70 | }); |
| 71 | |
siddharth0905 | b734ea2 | 2018-11-22 13:37:31 +0530 | [diff] [blame^] | 72 | When('I want to create an Operation', function() { |
| 73 | let path = '/catalog/' + this.context.component.type + '/' + this.context.component.uniqueId + '/interfaceOperations'; |
| 74 | let inputData = util.getJSONFromFile('resources/json/operation/createOperation.json'); |
| 75 | inputData.interfaceOperations.operation.operationType = makeType(); |
| 76 | inputData.interfaceOperations.operation.description = makeType(); |
| 77 | |
| 78 | return util.request(this.context, 'POST', path, inputData, false, 'catalog').then(result => { |
| 79 | this.context.operation = {uniqueId : result.data.uniqueId, operationType : result.data.operationType}; |
| 80 | }); |
| 81 | }); |
| 82 | |
| 83 | When('I want to create an Operation with workflow', function() { |
| 84 | let path = '/catalog/' + this.context.component.type + '/' + this.context.component.uniqueId + '/interfaceOperations'; |
| 85 | let inputData = util.getJSONFromFile('resources/json/operation/createOperation-with-workflow.json'); |
| 86 | |
| 87 | inputData.interfaceOperations.operation.inputParams.listToscaDataDefinition[0].name = util.random(); |
| 88 | inputData.interfaceOperations.operation.inputParams.listToscaDataDefinition[0].property = this.context.component.id; |
| 89 | inputData.interfaceOperations.operation.outputParams.listToscaDataDefinition[0].name = util.random(); |
| 90 | inputData.interfaceOperations.operation.operationType = makeType(); |
| 91 | inputData.interfaceOperations.operation.description = makeType(); |
| 92 | inputData.interfaceOperations.operation.workflowId = makeType(); |
| 93 | inputData.interfaceOperations.operation.workflowVersionId = makeType(); |
| 94 | |
| 95 | return util.request(this.context, 'POST', path, inputData, false, 'catalog').then(result => { |
| 96 | this.context.operation = {uniqueId : result.data.uniqueId, operationType : result.data.operationType}; |
| 97 | }); |
| 98 | }); |
mojahidi | 65204c6 | 2018-04-25 18:39:53 +0530 | [diff] [blame] | 99 | |
mojahidi | 5082ac8 | 2018-09-07 11:07:49 +0530 | [diff] [blame] | 100 | When('I want to list Operations', function () { |
| 101 | let path = '/catalog/'+ this.context.component.type + '/' + this.context.component.uniqueId + '/filteredDataByParams?include=interfaces'; |
siddharth0905 | b734ea2 | 2018-11-22 13:37:31 +0530 | [diff] [blame^] | 102 | return util.request(this.context, 'GET', path, null, false, 'catalog').then((result)=> { |
mojahidi | 5082ac8 | 2018-09-07 11:07:49 +0530 | [diff] [blame] | 103 | }); |
| 104 | }); |
| 105 | |
| 106 | When('I want to get an Operation by Id', function () { |
| 107 | let path = '/catalog/'+ this.context.component.type + '/' + this.context.component.uniqueId + '/interfaceOperations/' + this.context.operation.uniqueId; |
siddharth0905 | b734ea2 | 2018-11-22 13:37:31 +0530 | [diff] [blame^] | 108 | return util.request(this.context, 'GET', path, null, false, 'catalog').then((result)=> { |
mojahidi | 5082ac8 | 2018-09-07 11:07:49 +0530 | [diff] [blame] | 109 | this.context.operation = {uniqueId : result.data.uniqueId, operationType : result.data.operationType}; |
| 110 | }); |
| 111 | }); |
| 112 | |
mojahidi | 65204c6 | 2018-04-25 18:39:53 +0530 | [diff] [blame] | 113 | When('I want to update an Operation', function () { |
| 114 | let inputData = util.getJSONFromFile('resources/json/operation/updateOperation.json'); |
mojahidi | 5082ac8 | 2018-09-07 11:07:49 +0530 | [diff] [blame] | 115 | let path = '/catalog/'+ this.context.component.type + '/'+ this.context.component.uniqueId +'/interfaceOperations'; |
| 116 | inputData.interfaceOperations.operation.uniqueId = this.context.operation.uniqueId; |
| 117 | inputData.interfaceOperations.operation.operationType = this.context.operation.operationType; |
| 118 | inputData.interfaceOperations.operation.inputParams.listToscaDataDefinition[0].name = util.random(); |
| 119 | inputData.interfaceOperations.operation.inputParams.listToscaDataDefinition[0].property = this.context.component.id; |
| 120 | inputData.interfaceOperations.operation.outputParams.listToscaDataDefinition[0].name = util.random(); |
siddharth0905 | b734ea2 | 2018-11-22 13:37:31 +0530 | [diff] [blame^] | 121 | return util.request(this.context, 'PUT', path, inputData, false, 'catalog').then((result)=> { |
mojahidi | 5082ac8 | 2018-09-07 11:07:49 +0530 | [diff] [blame] | 122 | this.context.operation = {uniqueId : result.data.uniqueId, operationType : result.data.operationType}; |
mojahidi | 65204c6 | 2018-04-25 18:39:53 +0530 | [diff] [blame] | 123 | }); |
| 124 | }); |
| 125 | |
| 126 | |
| 127 | When('I want to delete an Operation', function() { |
mojahidi | 5082ac8 | 2018-09-07 11:07:49 +0530 | [diff] [blame] | 128 | let path = '/catalog/'+ this.context.component.type + '/'+ this.context.component.uniqueId +'/interfaceOperations/' + this.context.operation.uniqueId; |
siddharth0905 | b734ea2 | 2018-11-22 13:37:31 +0530 | [diff] [blame^] | 129 | return util.request(this.context, 'DELETE', path, null, false, 'catalog'); |
mojahidi | 65204c6 | 2018-04-25 18:39:53 +0530 | [diff] [blame] | 130 | }); |
| 131 | |
| 132 | |
mojahidi | 5082ac8 | 2018-09-07 11:07:49 +0530 | [diff] [blame] | 133 | When('I want to checkin this component', function () { |
| 134 | let path = '/catalog/'+ this.context.component.type + '/' + this.context.component.uniqueId + '/lifecycleState/CHECKIN' ; |
mojahidi | 65204c6 | 2018-04-25 18:39:53 +0530 | [diff] [blame] | 135 | let inputData = {userRemarks: 'checkin'}; |
siddharth0905 | b734ea2 | 2018-11-22 13:37:31 +0530 | [diff] [blame^] | 136 | return util.request(this.context, 'POST', path, inputData, false, 'catalog').then((result)=> { |
mojahidi | 5082ac8 | 2018-09-07 11:07:49 +0530 | [diff] [blame] | 137 | this.context.component = {uniqueId : result.data.uniqueId, type : this.context.component.type}; |
mojahidi | 65204c6 | 2018-04-25 18:39:53 +0530 | [diff] [blame] | 138 | }); |
| 139 | }); |
| 140 | |
| 141 | |
mojahidi | 5082ac8 | 2018-09-07 11:07:49 +0530 | [diff] [blame] | 142 | Then('I want to submit this component', function () { |
| 143 | let path = '/catalog/'+ this.context.component.type + '/' + this.context.component.uniqueId + '/lifecycleState/certificationRequest' ; |
mojahidi | 65204c6 | 2018-04-25 18:39:53 +0530 | [diff] [blame] | 144 | let inputData = {userRemarks: 'submit'}; |
siddharth0905 | b734ea2 | 2018-11-22 13:37:31 +0530 | [diff] [blame^] | 145 | return util.request(this.context, 'POST', path, inputData, false, 'catalog').then((result)=> { |
| 146 | this.context.component = {uniqueId : result.data.uniqueId}; |
mojahidi | 65204c6 | 2018-04-25 18:39:53 +0530 | [diff] [blame] | 147 | }); |
| 148 | }); |
| 149 | |
mojahidi | 5082ac8 | 2018-09-07 11:07:49 +0530 | [diff] [blame] | 150 | Then('I want to certify this component', function () { |
| 151 | let path = '/catalog/'+ this.context.component.type +'/' + this.context.component.uniqueId + '/lifecycleState/certify' ; |
| 152 | let inputData = {userRemarks: 'certify'}; |
siddharth0905 | b734ea2 | 2018-11-22 13:37:31 +0530 | [diff] [blame^] | 153 | return util.request(this.context, 'POST', path, inputData, false, 'catalog').then((result)=> { |
mojahidi | 5082ac8 | 2018-09-07 11:07:49 +0530 | [diff] [blame] | 154 | this.context.component = {uniqueId : result.data.uniqueId}; |
| 155 | }); |
| 156 | }); |