summaryrefslogtreecommitdiffstats
path: root/kubernetes/config/docker/init/src/config/robot/robot/testsuites/demo.robot
diff options
context:
space:
mode:
Diffstat (limited to 'kubernetes/config/docker/init/src/config/robot/robot/testsuites/demo.robot')
-rw-r--r--kubernetes/config/docker/init/src/config/robot/robot/testsuites/demo.robot43
1 files changed, 43 insertions, 0 deletions
diff --git a/kubernetes/config/docker/init/src/config/robot/robot/testsuites/demo.robot b/kubernetes/config/docker/init/src/config/robot/robot/testsuites/demo.robot
new file mode 100644
index 0000000000..f5788d506a
--- /dev/null
+++ b/kubernetes/config/docker/init/src/config/robot/robot/testsuites/demo.robot
@@ -0,0 +1,43 @@
+*** Settings ***
+Documentation Executes the VNF Orchestration Test cases including setup and teardown
+...
+Library Collections
+Resource ../resources/demo_preload.robot
+*** Variables ***
+
+${VNF_NAME} DemoVNF
+${MODULE_NAME} DemoModuleName
+
+*** Test Cases ***
+Initialize Customer And Models
+ [Tags] InitDemo
+ Load Customer And Models Demonstration
+
+Initialize Customer
+ [Tags] InitCustomer
+ Load Customer Demonstration
+
+Initialize Models
+ [Tags] InitDistribution
+ Load Models Demonstration
+
+Preload VNF
+ [Tags] PreloadDemo
+ Preload User Model ${VNF_NAME} ${MODULE_NAME}
+
+Create APPC Mount Point
+ [Tags] APPCMountPointDemo
+ APPC Mount Point ${MODULE_NAME}
+
+Instantiate VFW
+ [Tags] instantiateVFW
+ Instantiate VNF vFW
+
+Delete Instantiated VNF
+ [Documentation] This test assumes all necessary variables are loaded via the variable file create in Save For Delete
+ ... The Teardown VNF needs to be in the teardown step of the test case...
+ [Tags] deleteVNF
+ Setup Browser
+ Login To VID GUI
+ [Teardown] Teardown VNF
+