blob: c5ada099da5fd827eeeadf577db92a0874405f00 [file] [log] [blame]
jf986075010a42017-02-22 16:52:54 -05001*** Settings ***
2Documentation Executes the VNF Orchestration Test cases including setup and teardown
3...
Jerry Floodbe0fa8e2017-04-21 17:31:05 -04004Library Collections
DR695H4964a1b2017-10-18 11:43:23 -04005Library DatabaseLibrary
jf986075010a42017-02-22 16:52:54 -05006Resource ../resources/demo_preload.robot
7*** Variables ***
8
9${VNF_NAME} DemoVNF
10${MODULE_NAME} DemoModuleName
11
Jerry Flood36267292017-04-17 18:07:47 -040012*** Test Cases ***
jf986075010a42017-02-22 16:52:54 -050013Initialize Customer And Models
Jerry Flood36267292017-04-17 18:07:47 -040014 [Tags] InitDemo
15 Load Customer And Models Demonstration
jf986075010a42017-02-22 16:52:54 -050016
Jerry Floodbe0fa8e2017-04-21 17:31:05 -040017Initialize Customer
18 [Tags] InitCustomer
19 Load Customer Demonstration
20
21Initialize Models
22 [Tags] InitDistribution
23 Load Models Demonstration
24
jf986075010a42017-02-22 16:52:54 -050025Preload VNF
Jerry Flood36267292017-04-17 18:07:47 -040026 [Tags] PreloadDemo
Jerry Floodbe0fa8e2017-04-21 17:31:05 -040027 Preload User Model ${VNF_NAME} ${MODULE_NAME}
Jerry Flood36267292017-04-17 18:07:47 -040028
jf986075010a42017-02-22 16:52:54 -050029Create APPC Mount Point
Jerry Flood36267292017-04-17 18:07:47 -040030 [Tags] APPCMountPointDemo
31 APPC Mount Point ${MODULE_NAME}
jf986075010a42017-02-22 16:52:54 -050032
Jerry Flood36267292017-04-17 18:07:47 -040033Instantiate VFW
34 [Tags] instantiateVFW
Jerry Floodbe0fa8e2017-04-21 17:31:05 -040035 Instantiate VNF vFW
Jerry Flood36267292017-04-17 18:07:47 -040036
37Delete Instantiated VNF
38 [Documentation] This test assumes all necessary variables are loaded via the variable file create in Save For Delete
Jerry Floodbe0fa8e2017-04-21 17:31:05 -040039 ... The Teardown VNF needs to be in the teardown step of the test case...
Jerry Flood36267292017-04-17 18:07:47 -040040 [Tags] deleteVNF
41 Setup Browser
42 Login To VID GUI
43 Delete VNF
44 [Teardown] Teardown VNF
45