From a8480d1fec5b5696be04eb887f4cbed6b56238be Mon Sep 17 00:00:00 2001 From: mojahidi Date: Thu, 19 Jul 2018 12:35:31 +0530 Subject: Add support for workflowId and workflowVersionId Enhance operation data model and APIs to support workflowId and workflowVersionId Change-Id: Ib8772027a3e0147ae0bb59811a9b31fe46975ac6 Issue-ID: SDC-1535 Signed-off-by: mojahidi --- .../stepDefinitions/InterfaceOperationSteps.js | 21 ++++----------------- 1 file changed, 4 insertions(+), 17 deletions(-) (limited to 'openecomp-bdd/stepDefinitions') diff --git a/openecomp-bdd/stepDefinitions/InterfaceOperationSteps.js b/openecomp-bdd/stepDefinitions/InterfaceOperationSteps.js index 14c5610626..1bfd4c30a6 100644 --- a/openecomp-bdd/stepDefinitions/InterfaceOperationSteps.js +++ b/openecomp-bdd/stepDefinitions/InterfaceOperationSteps.js @@ -43,30 +43,16 @@ function makeType() { When('I want to create an Operation', function() { let inputData = util.getJSONFromFile('resources/json/operation/createOperation.json'); - //let path = '/catalog/resources/f3dc81bb-85e9-4dfd-bd1b-37f5dc5e5534/interfaceOperations'; - let path = '/catalog/resources/' + this.context.vf.uniqueId +'/interfaceOperations'; - - inputData.interfaceOperations.create.operationType = makeType(); - inputData.interfaceOperations.create.inputParams.listToscaDataDefinition[0].paramName = util.random(); - inputData.interfaceOperations.create.inputParams.listToscaDataDefinition[0].paramId = this.context.vf.id; - - return util.request(this.context, 'POST', path, inputData, false, 'vf').then(result => { - this.context.item = {uniqueId : result.data.uniqueId, operationType : result.data.operationType}; - this.context.operation = {uniqueId : result.data.uniqueId, operationType : result.data.operationType}; -}); -}); - - -When('I want to create an Operation with outputParameter', function() { - let inputData = util.getJSONFromFile('resources/json/operation/createOperation.json'); - //let path = '/catalog/resources/f3dc81bb-85e9-4dfd-bd1b-37f5dc5e5534/interfaceOperations'; let path = '/catalog/resources/' + this.context.vf.uniqueId +'/interfaceOperations'; inputData.interfaceOperations.create.operationType = makeType(); + inputData.interfaceOperations.create.description = makeType(); inputData.interfaceOperations.create.inputParams.listToscaDataDefinition[0].paramName = util.random(); inputData.interfaceOperations.create.inputParams.listToscaDataDefinition[0].paramId = this.context.vf.id; inputData.interfaceOperations.create.outputParams.listToscaDataDefinition[0].paramName = util.random(); inputData.interfaceOperations.create.outputParams.listToscaDataDefinition[0].paramId = this.context.vf.id; + inputData.interfaceOperations.create.workflowId = makeType(); + inputData.interfaceOperations.create.workflowVersionId = makeType(); return util.request(this.context, 'POST', path, inputData, false, 'vf').then(result => { this.context.item = {uniqueId : result.data.uniqueId, operationType : result.data.operationType}; @@ -75,6 +61,7 @@ When('I want to create an Operation with outputParameter', function() { }); + When('I want to list Operations', function () { let path = '/catalog/resources/' + this.context.vf.uniqueId + '/filteredDataByParams?include=interfaces'; return util.request(this.context, 'GET', path, null, false, 'vf').then((result)=> { -- cgit 1.2.3-korg