diff options
author | liamfallon <liam.fallon@est.tech> | 2022-09-13 14:31:50 +0100 |
---|---|---|
committer | liamfallon <liam.fallon@est.tech> | 2022-09-13 16:15:35 +0100 |
commit | 2b49812712d2d87847f0f00d60397f2131f2bf5b (patch) | |
tree | b16072578b0372d07a72344dc3e158b81f4e2675 /csit/distribution | |
parent | c8a97bce56677612d63d63da3a814e4501a4a38a (diff) |
Convert CSIT tests to use HTTP rather than HTTPS
This commit converts the CSITs from HTTPS to HTTP. It also does some
refactoring and tidying up on the CSIT environment.
Issue-ID: POLICY-4338
Change-Id: I6f2a3ea672b757f27e47b09183fd4c3f33709135
Signed-off-by: liamfallon <liam.fallon@est.tech>
Diffstat (limited to 'csit/distribution')
-rw-r--r-- | csit/distribution/tests/distribution-test.robot | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/csit/distribution/tests/distribution-test.robot b/csit/distribution/tests/distribution-test.robot index 64a77e06..13808287 100644 --- a/csit/distribution/tests/distribution-test.robot +++ b/csit/distribution/tests/distribution-test.robot @@ -34,8 +34,8 @@ InvokeDistributionUsingFile And RunEventOnApexEngine PeformGetRequest [Arguments] ${url} ${expectedstatus} ${auth}= Create List healthcheck zb!XztG34 - Log Creating session https://${POLICY_DISTRIBUTION_IP}:6969 - ${session}= Create Session policy https://${POLICY_DISTRIBUTION_IP}:6969 auth=${auth} + Log Creating session http://${POLICY_DISTRIBUTION_IP}:6969 + ${session}= Create Session policy http://${POLICY_DISTRIBUTION_IP}:6969 auth=${auth} ${headers}= Create Dictionary Accept=application/json Content-Type=application/json ${resp}= GET On Session policy ${url} headers=${headers} expected_status=${expectedstatus} Log Received response from policy ${resp.text} |