diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/vnfsdk-refrepo/csar_validation_tests.robot | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/tests/vnfsdk-refrepo/csar_validation_tests.robot b/tests/vnfsdk-refrepo/csar_validation_tests.robot new file mode 100644 index 00000000..88075c6f --- /dev/null +++ b/tests/vnfsdk-refrepo/csar_validation_tests.robot @@ -0,0 +1,18 @@ +*** Settings *** +Library OperatingSystem +Library Process +Library String +Library Collections +Library RequestsLibrary +Library json + + +*** Variables *** +${base_url}= http://${REFREPO_IP}:8702/onapapi/vnfsdk-marketplace/v1 + +*** Test Cases *** +Perform vnf refrepo healthcheck + [Documentation] Check if vnf refrepo is up and running + Create Session refrepo ${base_url} + ${response}= Get Request refrepo /PackageResource/healthcheck + Should Be Equal As Strings ${response.status_code} 200 |