diff options
author | Gary Wu <gary.i.wu@huawei.com> | 2018-08-31 15:46:18 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2018-08-31 15:46:18 +0000 |
commit | 3403efee23c784c0dd81caa69f0d80143a72e089 (patch) | |
tree | 41d0e95cf0784396f4b32bc1dde0989d399b6f14 /test/csit/tests/dcaegen2-collectors-hv-ves/testcases/authorization.robot | |
parent | a5a97952c32ad002e8cf1f296c279b8fdc7491ad (diff) | |
parent | 68a1bbc74a26d4ffe3ad1b762c190f36901e785e (diff) |
Merge "Write HV-VES testcase for SSL authorization"
Diffstat (limited to 'test/csit/tests/dcaegen2-collectors-hv-ves/testcases/authorization.robot')
-rw-r--r-- | test/csit/tests/dcaegen2-collectors-hv-ves/testcases/authorization.robot | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/test/csit/tests/dcaegen2-collectors-hv-ves/testcases/authorization.robot b/test/csit/tests/dcaegen2-collectors-hv-ves/testcases/authorization.robot new file mode 100644 index 000000000..1b832f27d --- /dev/null +++ b/test/csit/tests/dcaegen2-collectors-hv-ves/testcases/authorization.robot @@ -0,0 +1,35 @@ +*** Settings *** +Library DcaeAppSimulatorLibrary + +Resource resources/common-keywords.robot + +Suite Setup Client Authorization Suite Setup +Suite Teardown VES-HV Collector Suite Teardown +Test Teardown VES-HV Collector Test Shutdown + +*** Keywords *** +Client Authorization Suite Setup + Log Started Suite: VES-HV Client Authorization + ${XNF_PORTS_LIST}= Create List 7000 + Configure Invalid xNF Simulators On Ports ${XNF_PORTS_LIST} + Log Suite setup finished + + +*** Test Cases *** +Authorization + [Documentation] VES-HV Collector should not authorize XNF with invalid certificate and not route any message + ... to topics + + ${SIMULATORS_LIST}= Get Invalid xNF Simulators 1 + Send Messages From xNF Simulators ${SIMULATORS_LIST} ${XNF_VALID_MESSAGES_REQUEST} + + Wait until keyword succeeds 60 sec 5 sec + ... Assert Dcae App Consumed ${DCAE_APP_API_MESSAGES_COUNT_URL} ${AMOUNT_0} + + +*** Variables *** +${VES_HV_SCENARIOS} %{WORKSPACE}/test/csit/tests/dcaegen2-collectors-hv-ves/testcases/resources/scenarios + +${XNF_VALID_MESSAGES_REQUEST} ${VES_HV_SCENARIOS}/authorization/xnf-valid-messages-request.json + +${AMOUNT_0} 0 |