78aa8ae0ba19285d5663c74cdf29e85ff696729e
[it/test.git] / test_scripts / O2IMS_Compliance_Test / o2ims_compliance / oran-lcm.robot
1 *** Settings ***
2
3 Library                SSHLibrary
4 Resource               ssh_helper.robot
5 Resource               smo_server_mock.robot
6
7 Variables              ${EXECDIR}${/}test_configs.yaml
8
9 *** Variables ***
10 ${HOST}                ${ocloud.ssh.host}
11 ${PORT}                ${ocloud.ssh.port}
12 ${USERNAME}            ${ocloud.ssh.username}
13 ${PASSWORD}            ${ocloud.ssh.password}
14 ${OPENRC}              ${ocloud.ssh.openrc}
15
16 *** Keywords ***
17 Setup Test Bed
18     # [Arguments]    ${args}
19     # Set Log Level   DEBUG
20     Open Connection And Log In
21     # bring up smo mock server
22     # Setup SMO Server 
23     # ${stdout}                        Execute Command     source ${OPENRC} && system host-list
24     # bring up oran o2 app
25     # Some Keyword    ${args}
26     # Another Keyword
27
28 Tear Down Test Bed
29     # [Arguments]    ${args}
30     # tear down oran o2 app
31     # tear down smo mock server
32     # Tear Down SMO Server
33     Close All Connections
34
35 Open Connection And Log In
36    Open Connection     ${HOST}
37    Login               ${USERNAME}        ${PASSWORD}
38