aboutsummaryrefslogtreecommitdiffstats
path: root/robot/testsuites
diff options
context:
space:
mode:
authorKatarzyna Wasiel <katarzyna.wasiel@nokia.com>2021-03-01 15:38:14 +0100
committerKatarzyna Wasiel <katarzyna.wasiel@nokia.com>2021-03-01 15:38:14 +0100
commit106bde3caa8bba5bfe35fb793f05902af2a28704 (patch)
tree5ba65291de2b5429724dab626f5e866da09a8aac /robot/testsuites
parent5dc8c14dd0994e6154f2f2786bf428b50344b7cc (diff)
Update DCAE MOD smoke/verification test using simple app
Issue-ID: INT-1855 Signed-off-by: Katarzyna Wasiel <katarzyna.wasiel@nokia.com> Change-Id: Idc33e17e8e4e7e04a709db5240e6acbc7cc5d783
Diffstat (limited to 'robot/testsuites')
-rw-r--r--robot/testsuites/dcaemod.robot15
1 files changed, 9 insertions, 6 deletions
diff --git a/robot/testsuites/dcaemod.robot b/robot/testsuites/dcaemod.robot
index ef5b0e76..72d753d2 100644
--- a/robot/testsuites/dcaemod.robot
+++ b/robot/testsuites/dcaemod.robot
@@ -28,9 +28,10 @@ Deploy DCAE Simple Application Without Config Map In Config Spec Json
... - Distributes the flow for blueprint generation via distributor API and pushes it to the DCAE Inventory and the DCAE Dashboard.
... - Deploys such a blueprint from Inventory.
- ${dict_values} = Create Dictionary comp_spec_name=nginx1
+ ${timestamp}= Get Time epoch
+ Set Test Variable ${processGroupName} nginx-${timestamp}
+ ${dict_values} = Create Dictionary comp_spec_name=${processGroupName}
${compSpecName} = Set Variable ${dict_values['comp_spec_name']}
- Set Test Variable ${processGroupName} nginx1
Deploy DCAE Application ${COMPSPEC_WITHOUT_CONFIG_VOLUME} ${dict_values} ${compSpecName} ${processGroupName}
@@ -46,13 +47,14 @@ Deploy DCAE Simple Application With Config Map In Config Spec Json But Not Prese
... - Deploys such a blueprint from Inventory.
... - Verifies if config map is mounted as a volume and if mounted folder is empty
- ${dict_values} = Create Dictionary comp_spec_name=nginx2
+ ${timestamp}= Get Time epoch
+ Set Test Variable ${processGroupName} nginx-${timestamp}
+ ${dict_values} = Create Dictionary comp_spec_name=${processGroupName}
... volume_mount_path=/opt/app/etc/config
... config_map_name=test-config-volume
${compSpecName} = Set Variable ${dict_values['comp_spec_name']}
${volumeMountPath} = Set Variable ${dict_values['volume_mount_path']}
${configMapName} = Set Variable ${dict_values['config_map_name']}
- Set Test Variable ${processGroupName} nginx2
Deploy DCAE Application ${COMPSPEC_WITH_CONFIG_VOLUME} ${dict_values} ${compSpecName} ${processGroupName}
${podYaml} = Get Pod Yaml ${compSpecName}
@@ -74,14 +76,15 @@ Deploy DCAE Simple Application With Config Map In Config Spec Json AND Present I
... - Deploys such a blueprint from Inventory.
... - Verifies if mounted folder contains created file and this file contains user content
- ${dict_values} = Create Dictionary comp_spec_name=nginx3
+ ${timestamp}= Get Time epoch
+ Set Test Variable ${processGroupName} nginx-${timestamp}
+ ${dict_values} = Create Dictionary comp_spec_name=${processGroupName}
... volume_mount_path=/opt/app/etc/config
... config_map_name=test-config-volume
${compSpecName} = Set Variable ${dict_values['comp_spec_name']}
${volumeMountPath} = Set Variable ${dict_values['volume_mount_path']}
${configMapName} = Set Variable ${dict_values['config_map_name']}
Set Test Variable ${CONFIG_MAP_NAME} ${configMapName}
- Set Test Variable ${processGroupName} nginx3
${content} = Set Variable Hello, world!
${configMapDir} ${configMapFile} = Split Path ${CONFIG_MAP_FILE}