shrikantawachar | 3f55e8e | 2018-07-14 00:18:09 +0530 | [diff] [blame^] | 1 | # Copyright © 2018 European Support Limited |
| 2 | # |
| 3 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | # you may not use this file except in compliance with the License. |
| 5 | # You may obtain a copy of the License at |
| 6 | # |
| 7 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | # |
| 9 | # Unless required by applicable law or agreed to in writing, software |
| 10 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | # See the License for the specific language governing permissions and |
| 13 | # limitations under the License. |
| 14 | |
| 15 | Feature: User Feedback - Test MD5 |
| 16 | |
| 17 | Scenario: Test MD5 |
| 18 | |
| 19 | When I want to create a VLM |
| 20 | Then I want to copy to property "licensingVersion" from response data path "version.id" |
| 21 | |
| 22 | #create feature group |
| 23 | When I want to create input data |
| 24 | Then I want to update the input property "name" with value "FG1" |
| 25 | Then I want to update the input property "manufacturerReferenceNumber" with value "1234" |
| 26 | Then I want to update the input property "partNumber" with value "999" |
| 27 | Then I want to create for path "/vendor-license-models/{item.id}/versions/{item.versionId}/feature-groups" with the input data from the context |
| 28 | Then I want to copy to property "featureGroupId" from response data path "value" |
| 29 | |
| 30 | #create license agreements |
| 31 | When I want to create input data |
| 32 | Then I want to update the input property "name" with value "LA" |
| 33 | Then I want to update the input property "licenseTerm.choice" with value "Unlimited" |
| 34 | Then I want to update the input property "addedFeatureGroupsIds[0]" from property "featureGroupId" |
| 35 | Then I want to create for path "/vendor-license-models/{item.id}/versions/{item.versionId}/license-agreements" with the input data from the context |
| 36 | Then I want to copy to property "licenseAgreement" from response data path "value" |
| 37 | |
| 38 | When I want to create a VSP with onboarding type Manual |
| 39 | Then I want to make sure this Item has status "Draft" |
| 40 | |
| 41 | When I want to add a component |
| 42 | |
| 43 | #create image |
| 44 | When I want to create input data |
| 45 | Then I want to update the input property "fileName" with value "Image_1" |
| 46 | Then I want to create for path "/vendor-software-products/{vsp.id}/versions/{vsp.versionId}/components/{componentId}/images" with the input data from the context |
| 47 | |
| 48 | #update image questionnaire |
| 49 | Then I want to get the questionnaire for this path "/vendor-software-products/{vsp.id}/versions/{vsp.versionId}/components/{componentId}/images/{responseData.id}/questionnaire" |
| 50 | And I want to update this questionnaire with value "md5" for property "5555555555555555555555555555555555555555555555555555555555555" |
| 51 | And I want to update this questionnaire with value "version" for property "1" |
| 52 | And I want to update this questionnaire |
| 53 | |
| 54 | #create compute flavor |
| 55 | When I want to create input data |
| 56 | Then I want to update the input property "name" with value "ComputeFlavor1" |
| 57 | When I want to create for path "/vendor-software-products/{vsp.id}/versions/{vsp.versionId}/components/{componentId}/compute-flavors" with the input data from the context |
| 58 | Then I want to copy to property "computeFlavorId" from response data path "id" |
| 59 | |
| 60 | #create deployment flavor with Component , compute flavor associations |
| 61 | When I want to create input data |
| 62 | Then I want to update the input property "model" with value "DeploymentFlavorModel" |
| 63 | Then I want to update the input property "componentComputeAssociations[0].componentId" from property "componentId" |
| 64 | Then I want to update the input property "componentComputeAssociations[0].computeFlavorId" from property "computeFlavorId" |
| 65 | Then I want to update the input property "featureGroupId" from property "featureGroupId" |
| 66 | Then I want to create for path "/vendor-software-products/{vsp.id}/versions/{vsp.versionId}/deployment-flavors" with the input data from the context |
| 67 | |
| 68 | Then I want the following to fail |
| 69 | When I want to submit this VSP |