diff options
author | Sirisha_Manchikanti <sirisha.manchikanti@est.tech> | 2021-06-08 09:28:21 +0100 |
---|---|---|
committer | Sirisha_Manchikanti <sirisha.manchikanti@est.tech> | 2021-06-22 15:12:05 +0100 |
commit | 4d0a1d766e645046a9bcbe3c0dbeb59d82fd2fa3 (patch) | |
tree | 27738876ee1a34e162cb866561fd3477e64a02bb /csit/clamp/tests/policy-clamp-test.robot | |
parent | 3c231ae4fd843f56eb814133221dcd5595ccabb7 (diff) |
Add CSIT for clamp controlloop
Add CSIT testcases, scripts and a seperate docker-compose file for
integration testing between controlloop components, this involves
integration between Mariadb, Dmaap, ControlLoop-Runtime,
Policy-Participant, Policy-API and DCAE-Participant docker images.
Issue-ID: POLICY-3217
Signed-off-by: Sirisha_Manchikanti <sirisha.manchikanti@est.tech>
Change-Id: Id7cb1451afc4331b4ed1ad1ac6c2528a747eaaa0
Diffstat (limited to 'csit/clamp/tests/policy-clamp-test.robot')
-rw-r--r-- | csit/clamp/tests/policy-clamp-test.robot | 82 |
1 files changed, 82 insertions, 0 deletions
diff --git a/csit/clamp/tests/policy-clamp-test.robot b/csit/clamp/tests/policy-clamp-test.robot new file mode 100644 index 00000000..c9ad34af --- /dev/null +++ b/csit/clamp/tests/policy-clamp-test.robot @@ -0,0 +1,82 @@ +*** Settings *** +Library Collections +Library RequestsLibrary +Library OperatingSystem +Library json + +*** Test Cases *** + +CommissionControlLoopV1 + [Documentation] Commission control loop. + ${auth}= Create List healthcheck zb!XztG34 + Log Creating session http://${POLICY_CONTROLLOOP_RUNTIME_IP}:6970 + ${postyaml}= Get file ${CURDIR}/data/PMSHMultipleCLTosca.yaml + ${session}= Create Session policy http://${POLICY_CONTROLLOOP_RUNTIME_IP}:6970 auth=${auth} + ${headers}= Create Dictionary Accept=application/yaml Content-Type=application/yaml + ${resp}= POST On Session policy /onap/controlloop/v2/commission data=${postyaml} headers=${headers} + Log Received response from controlloop runtime ${resp.text} + Should Be Equal As Strings ${resp.status_code} 200 + +InstantiateControlLoopV1 + [Documentation] Instantiate control loop. + ${auth}= Create List healthcheck zb!XztG34 + Log Creating session http://${POLICY_CONTROLLOOP_RUNTIME_IP}:6970 + ${postjson}= Get file ${CURDIR}/data/InstantiateCL.json + ${session}= Create Session policy http://${POLICY_CONTROLLOOP_RUNTIME_IP}:6970 auth=${auth} + ${headers}= Create Dictionary Accept=application/json Content-Type=application/json + ${resp}= POST On Session policy /onap/controlloop/v2/instantiation data=${postjson} headers=${headers} + Log Received response from controlloop runtime ${resp.text} + Should Be Equal As Strings ${resp.status_code} 200 + +PassivateControlLoop + [Documentation] Passivate control loop. + ${auth}= Create List healthcheck zb!XztG34 + Log Creating session http://${POLICY_CONTROLLOOP_RUNTIME_IP}:6970 + ${postjson}= Get file ${CURDIR}/data/PassivateCL.json + ${session}= Create Session policy http://${POLICY_CONTROLLOOP_RUNTIME_IP}:6970 auth=${auth} + ${headers}= Create Dictionary Accept=application/json Content-Type=application/json + ${resp}= PUT On Session policy /onap/controlloop/v2/instantiation/command data=${postjson} headers=${headers} + Log Received response from controlloop runtime ${resp.text} + Should Be Equal As Strings ${resp.status_code} 202 + +QueryPolicies + [Documentation] Runs Policy Participant Query New Policies + ${auth}= Create List healthcheck zb!XztG34 + Log Creating session https://${POLICY_API_IP}:6969 + ${session}= Create Session policy https://${POLICY_API_IP}:6969 auth=${auth} + ${headers}= Create Dictionary Accept=application/json Content-Type=application/json + ${resp}= GET On Session policy /policy/api/v1/policies headers=${headers} + Log Received response from policy-api {resp.text} + Should Be Equal As Strings ${resp.status_code} 200 + +QueryPolicyTypes + [Documentation] Runs Policy Participant Query New Policy Types + ${auth}= Create List healthcheck zb!XztG34 + Log Creating session https://${POLICY_API_IP}:6969 + ${session}= Create Session policy https://${POLICY_API_IP}:6969 auth=${auth} + ${headers}= Create Dictionary Accept=application/json Content-Type=application/json + ${resp}= GET On Session policy /policy/api/v1/policytypes headers=${headers} + Log Received response from policy-api ${resp.text} + Should Be Equal As Strings ${resp.status_code} 200 + +StateChangeRunningControlLoop + [Documentation] ControlLoop State Change to RUNNING. + ${auth}= Create List healthcheck zb!XztG34 + Log Creating session http://${POLICY_CONTROLLOOP_RUNTIME_IP}:6970 + ${postjson}= Get file ${CURDIR}/data/StateChangeRunningCL.json + ${session}= Create Session policy http://${POLICY_CONTROLLOOP_RUNTIME_IP}:6970 auth=${auth} + ${headers}= Create Dictionary Accept=application/json Content-Type=application/json + ${resp}= PUT On Session policy /onap/controlloop/v2/instantiation/command data=${postjson} headers=${headers} expected_status=406 + Log Received response from controlloop runtime ${resp.text} + +QueryInstantiatedCLs + [Documentation] Get Instantiated ControlLoops + ${auth}= Create List healthcheck zb!XztG34 + Log Creating session http://${POLICY_CONTROLLOOP_RUNTIME_IP}:6970 + ${session}= Create Session policy http://${POLICY_CONTROLLOOP_RUNTIME_IP}:6970 auth=${auth} + ${headers}= Create Dictionary Accept=application/json Content-Type=application/json + ${resp}= GET On Session policy /onap/controlloop/v2/instantiation headers=${headers} + Log Received response from controlloop runtime ${resp.text} + Should Be Equal As Strings ${resp.status_code} 200 + Should Be Equal As Strings ${resp.json()['controlLoopList'][0]['state']} UNINITIALISED2PASSIVE + Should Be Equal As Strings ${resp.json()['controlLoopList'][0]['orderedState']} RUNNING |