adf459a57fa5f942b452f40f55365b941e3b6c07
[it/test.git] / ric_robot_suite / helm / nanobot / configmap-src / testsuites / ete.robot
1 *** Settings ***
2 Documentation     Executes the End To End Test cases
3 ...
4 Library   Collections
5 #Library    HTTPUtils
6 Resource         ../resources/appmgr/appmgr_interface.robot
7 Resource         ../resources/e2mgr/e2mgr_interface.robot
8
9 *** Variables ***
10 ${TEST_XAPPNAME}       DemoXapp1
11 ${TEST_XAPPID}    101
12 ${TEST_NODE_B_NAME}     nodeB1
13 ${TEST_NODE_B_IP}     10.0.0.3
14 ${TEST_NODE_B_PORT}   879
15
16
17 *** Test Cases ***
18 Get All Xapps 
19     [Tags]   etetests  xapptests
20     Run AppMgr Get All Request
21 Create Xapp 
22     [Tags]   etetests  xapptests
23     Run Create Xapp   ${TEST_XAPPNAME}    ${TEST_XAPPID}
24 Get Xapp By Name 
25     [Tags]   etetests  xapptests
26     Run AppMgr Get By XappName   ${TEST_XAPPNAME}
27 Get Xapp By Name and Id
28     [Tags]   etetests  xapptests
29     Run AppMgr Get By XappName and XappId    ${TEST_XAPPNAME}   ${TEST_XAPPID}
30 Setup RAN Via E2 Mgr 
31     [Tags]   etetests  e2mgrtests
32     Run E2Mgr Setup NodeB   ${TEST_NODE_B_NAME}    ${TEST_NODE_B_IP}   ${TEST_NODE_B_PORT}
33