Add O2 IMS compliance automation test scripts.
[it/test.git] / test_scripts / O2IMS_Compliance_Test / o2ims_compliance / __init__.robot
1 *** Settings ***
2 Documentation          This is Compliance Test to O-RAN O2 Spec. July 2022
3 ...
4 Variables              ${EXECDIR}${/}test_configs.yaml
5 Resource               oran-lcm.robot
6
7 Library                SSHLibrary
8 Suite Setup            Setup Test Bed
9 Suite Teardown         Tear Down Test Bed
10
11 *** Variables ***
12 ${HOST}                ${ocloud.ssh.host}
13 ${PORT}                ${ocloud.ssh.port}
14 ${USERNAME}            ${ocloud.ssh.username}
15 ${PASSWORD}            ${ocloud.ssh.password}
16 ${OPENRC}              ${ocloud.ssh.openrc}
17
18 *** Keywords ***
19 Setup Test Bed
20     # [Arguments]    ${args}
21     Open Connection And Log In
22     # bring up smo mock server
23     # bring up oran o2 app
24     # Some Keyword    ${args}
25     # Another Keyword
26
27 Tear Down Test Bed
28     # [Arguments]    ${args}
29     # tear down oran o2 app
30     # tear down smo mock server
31     Close All Connections
32
33 Open Connection And Log In
34    Open Connection     ${HOST}
35    Login               ${USERNAME}        ${PASSWORD}