diff options
author | Christian Breunig <christian@breunig.cc> | 2023-12-02 08:43:55 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-02 08:43:55 +0100 |
commit | 01a85dc583d5939e2396efb5c5550cccab96d4c6 (patch) | |
tree | c6a4ae0a43a9b68ae3456dd9aef9c64d0fdcded4 /smoketest/scripts/cli | |
parent | 883ab5d1c450f8d5fcf30dca5415c2aa15e6c438 (diff) | |
parent | 4fcf4ce92b7c1de479070f5b392520984564ad16 (diff) | |
download | vyos-1x-01a85dc583d5939e2396efb5c5550cccab96d4c6.tar.gz vyos-1x-01a85dc583d5939e2396efb5c5550cccab96d4c6.zip |
Merge pull request #2561 from jestabro/sagitta-http-api
http-api: T5782: simplifications for config mode http-api
Diffstat (limited to 'smoketest/scripts/cli')
-rwxr-xr-x | smoketest/scripts/cli/test_service_https.py | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/smoketest/scripts/cli/test_service_https.py b/smoketest/scripts/cli/test_service_https.py index 24e1f1299..6cb91bcf1 100755 --- a/smoketest/scripts/cli/test_service_https.py +++ b/smoketest/scripts/cli/test_service_https.py @@ -254,6 +254,35 @@ class TestHTTPSService(VyOSUnitTestSHIM.TestCase): self.assertTrue(success) @ignore_warning(InsecureRequestWarning) + def test_api_add_delete(self): + address = '127.0.0.1' + key = 'VyOS-key' + url = f'https://{address}/retrieve' + payload = {'data': '{"op": "showConfig", "path": []}', 'key': f'{key}'} + headers = {} + + self.cli_set(base_path) + self.cli_commit() + + r = request('POST', url, verify=False, headers=headers, data=payload) + # api not configured; expect 503 + self.assertEqual(r.status_code, 503) + + self.cli_set(base_path + ['api', 'keys', 'id', 'key-01', 'key', key]) + self.cli_commit() + + r = request('POST', url, verify=False, headers=headers, data=payload) + # api configured; expect 200 + self.assertEqual(r.status_code, 200) + + self.cli_delete(base_path + ['api']) + self.cli_commit() + + r = request('POST', url, verify=False, headers=headers, data=payload) + # api deleted; expect 503 + self.assertEqual(r.status_code, 503) + + @ignore_warning(InsecureRequestWarning) def test_api_show(self): address = '127.0.0.1' key = 'VyOS-key' |