Bartosz Gardziejewski | 03591ab | 2020-09-29 13:50:12 +0200 | [diff] [blame] | 1 | *** Settings *** |
| 2 | Library OperatingSystem |
| 3 | Library Process |
| 4 | Library String |
| 5 | Library Collections |
| 6 | Library RequestsLibrary |
| 7 | Library json |
| 8 | |
| 9 | |
| 10 | *** Variables *** |
| 11 | ${base_url}= http://${REFREPO_IP}:8702/onapapi/vnfsdk-marketplace/v1 |
| 12 | |
| 13 | *** Test Cases *** |
| 14 | Perform vnf refrepo healthcheck |
| 15 | [Documentation] Check if vnf refrepo is up and running |
| 16 | Create Session refrepo ${base_url} |
| 17 | ${response}= Get Request refrepo /PackageResource/healthcheck |
| 18 | Should Be Equal As Strings ${response.status_code} 200 |