diff options
author | BjornMagnussonXA <bjorn.magnusson@est.tech> | 2020-09-07 14:06:35 +0200 |
---|---|---|
committer | Paweł Wieczorek <p.wieczorek2@samsung.com> | 2020-09-14 13:53:48 +0000 |
commit | 52bcf1e293486e2b50f51f68df79740d2036e666 (patch) | |
tree | b344dd3aba8264abab6f532e8ba5d7832987c10b /tests/ccsdk-oran/polmansuite | |
parent | ab47e4ec20150af344d183ed97b14cb54454c74c (diff) |
CSIT Policy Management
CSIT test case using FTC1 and applicable ONAP images
Change-Id: I7d3e382644f1b2e1de320931e24068976515cd4f
Issue-ID: CCSDK-2700
Signed-off-by: BjornMagnussonXA <bjorn.magnusson@est.tech>
Change-Id: I0571b3eb857b0347963af2b982a7de79f0ea78da
Diffstat (limited to 'tests/ccsdk-oran/polmansuite')
-rw-r--r-- | tests/ccsdk-oran/polmansuite/__init__.robot | 2 | ||||
-rw-r--r-- | tests/ccsdk-oran/polmansuite/test.robot | 16 |
2 files changed, 18 insertions, 0 deletions
diff --git a/tests/ccsdk-oran/polmansuite/__init__.robot b/tests/ccsdk-oran/polmansuite/__init__.robot new file mode 100644 index 00000000..bf52713b --- /dev/null +++ b/tests/ccsdk-oran/polmansuite/__init__.robot @@ -0,0 +1,2 @@ +*** Settings *** +Documentation Non-RT RIC Policy Management - polmansuite diff --git a/tests/ccsdk-oran/polmansuite/test.robot b/tests/ccsdk-oran/polmansuite/test.robot new file mode 100644 index 00000000..be396287 --- /dev/null +++ b/tests/ccsdk-oran/polmansuite/test.robot @@ -0,0 +1,16 @@ +*** Settings *** +Library OperatingSystem +Library Process + +*** Test Cases *** + +Functional Test Case 1 + [Documentation] Functional Test Case 1 - FTC1 + Start Process ${AUTOTEST_ROOT}/FTC1.sh remote auto-clean shell=true cwd=${AUTOTEST_ROOT} + ${cli_cmd_output}= Wait For Process timeout=3600 + Should Be Equal as Integers ${cli_cmd_output.rc} 0 + ${ResultFileContent}= Get File ${AUTOTEST_ROOT}/.resultFTC1.txt + Should Be Equal As Integers ${ResultFileContent} 0 + + + |