mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2026-08-04 08:56:50 +00:00
239 lines
7.9 KiB
Python
239 lines
7.9 KiB
Python
# coding: utf-8
|
|
|
|
"""
|
|
Agents API
|
|
|
|
## Overview Manage Cloud and Enterprise Agents available to your account in ThousandEyes.
|
|
|
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
|
|
Do not edit the class manually.
|
|
""" # noqa: E501
|
|
|
|
|
|
import json
|
|
import unittest
|
|
import thousandeyes_sdk.agents.models
|
|
|
|
from thousandeyes_sdk.core.exceptions import ApiException
|
|
from thousandeyes_sdk.agents.api.agent_proxies_api import AgentProxiesApi
|
|
from .integration_test_utils import IntegrationTestBase
|
|
from .test_utils import assert_constructed_model_matches_example_json
|
|
|
|
|
|
class TestAgentProxiesApiIntegration(IntegrationTestBase):
|
|
"""AgentProxiesApi integration test stubs"""
|
|
|
|
def setUp(self) -> None:
|
|
super().setUp()
|
|
self.api = AgentProxiesApi(self.api_client)
|
|
|
|
|
|
def test_get_agents_proxies_happy_path(self) -> None:
|
|
"""Integration test for get_agents_proxies success path"""
|
|
aid = '1234'
|
|
response_body_json = """
|
|
{
|
|
"_links" : {
|
|
"self" : {
|
|
"hreflang" : "hreflang",
|
|
"templated" : true,
|
|
"profile" : "profile",
|
|
"name" : "name",
|
|
"href" : "https://api.thousandeyes.com/v7/link/to/resource/id",
|
|
"type" : "type",
|
|
"deprecation" : "deprecation",
|
|
"title" : "title"
|
|
}
|
|
},
|
|
"agentProxies" : [ {
|
|
"password" : "**********",
|
|
"isLocalConfigured" : true,
|
|
"name" : "Test Proxy - Auth Type - BASIC",
|
|
"location" : "proxy.thousandeyes.com:3128",
|
|
"lastModified" : "2022-07-17T22:00:54Z",
|
|
"authType" : "basic",
|
|
"type" : "static",
|
|
"aid" : "1234",
|
|
"bypassList" : [ "10.0.0.0/16", "*.thousandeyes.com" ],
|
|
"user" : "user1",
|
|
"proxyId" : "281474976710706"
|
|
}, {
|
|
"password" : "**********",
|
|
"isLocalConfigured" : true,
|
|
"name" : "Test Proxy - Auth Type - BASIC",
|
|
"location" : "proxy.thousandeyes.com:3128",
|
|
"lastModified" : "2022-07-17T22:00:54Z",
|
|
"authType" : "basic",
|
|
"type" : "static",
|
|
"aid" : "1234",
|
|
"bypassList" : [ "10.0.0.0/16", "*.thousandeyes.com" ],
|
|
"user" : "user1",
|
|
"proxyId" : "281474976710706"
|
|
} ]
|
|
}
|
|
"""
|
|
expected_response = json.loads(response_body_json)
|
|
response = self.api.get_agents_proxies(
|
|
|
|
aid=aid,
|
|
|
|
_headers=self.te_headers("get_agents_proxies"),
|
|
)
|
|
assert_constructed_model_matches_example_json(response, expected_response)
|
|
|
|
|
|
def test_get_agents_proxies_error_401(self) -> None:
|
|
"""Integration test for get_agents_proxies error path (HTTP 401)"""
|
|
aid = '1234'
|
|
error_body_json = """
|
|
{
|
|
"error_description" : "Invalid access token",
|
|
"error" : "invalid_token"
|
|
}
|
|
"""
|
|
expected_error = json.loads(error_body_json)
|
|
with self.assertRaises(
|
|
ApiException.exception_class_for_http_status(401)
|
|
) as context:
|
|
self.api.get_agents_proxies(
|
|
|
|
aid=aid,
|
|
|
|
_headers=self.te_headers("get_agents_proxies", error_status="401"),
|
|
)
|
|
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
|
|
|
|
|
|
def test_get_agents_proxies_error_403(self) -> None:
|
|
"""Integration test for get_agents_proxies error path (HTTP 403)"""
|
|
aid = '1234'
|
|
error_body_json = """
|
|
{
|
|
"instance" : "instance",
|
|
"detail" : "detail",
|
|
"type" : "type",
|
|
"title" : "title",
|
|
"status" : 0
|
|
}
|
|
"""
|
|
expected_error = json.loads(error_body_json)
|
|
with self.assertRaises(
|
|
ApiException.exception_class_for_http_status(403)
|
|
) as context:
|
|
self.api.get_agents_proxies(
|
|
|
|
aid=aid,
|
|
|
|
_headers=self.te_headers("get_agents_proxies", error_status="403"),
|
|
)
|
|
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
|
|
|
|
|
|
def test_get_agents_proxies_error_404(self) -> None:
|
|
"""Integration test for get_agents_proxies error path (HTTP 404)"""
|
|
aid = '1234'
|
|
error_body_json = """
|
|
{
|
|
"instance" : "instance",
|
|
"detail" : "detail",
|
|
"type" : "type",
|
|
"title" : "title",
|
|
"status" : 0
|
|
}
|
|
"""
|
|
expected_error = json.loads(error_body_json)
|
|
with self.assertRaises(
|
|
ApiException.exception_class_for_http_status(404)
|
|
) as context:
|
|
self.api.get_agents_proxies(
|
|
|
|
aid=aid,
|
|
|
|
_headers=self.te_headers("get_agents_proxies", error_status="404"),
|
|
)
|
|
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
|
|
|
|
|
|
def test_get_agents_proxies_error_429(self) -> None:
|
|
"""Integration test for get_agents_proxies error path (HTTP 429)"""
|
|
aid = '1234'
|
|
error_body_json = """
|
|
{
|
|
"instance" : "instance",
|
|
"detail" : "detail",
|
|
"type" : "type",
|
|
"title" : "title",
|
|
"status" : 0
|
|
}
|
|
"""
|
|
expected_error = json.loads(error_body_json)
|
|
with self.assertRaises(
|
|
ApiException.exception_class_for_http_status(429)
|
|
) as context:
|
|
self.api.get_agents_proxies(
|
|
|
|
aid=aid,
|
|
|
|
_headers=self.te_headers("get_agents_proxies", error_status="429"),
|
|
)
|
|
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
|
|
|
|
|
|
def test_get_agents_proxies_error_500(self) -> None:
|
|
"""Integration test for get_agents_proxies error path (HTTP 500)"""
|
|
aid = '1234'
|
|
error_body_json = """
|
|
{
|
|
"instance" : "instance",
|
|
"detail" : "detail",
|
|
"type" : "type",
|
|
"title" : "title",
|
|
"status" : 0
|
|
}
|
|
"""
|
|
expected_error = json.loads(error_body_json)
|
|
with self.assertRaises(
|
|
ApiException.exception_class_for_http_status(500)
|
|
) as context:
|
|
self.api.get_agents_proxies(
|
|
|
|
aid=aid,
|
|
|
|
_headers=self.te_headers("get_agents_proxies", error_status="500"),
|
|
)
|
|
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
|
|
|
|
|
|
def test_get_agents_proxies_error_502(self) -> None:
|
|
"""Integration test for get_agents_proxies error path (HTTP 502)"""
|
|
aid = '1234'
|
|
error_body_json = """
|
|
{
|
|
"instance" : "instance",
|
|
"detail" : "detail",
|
|
"type" : "type",
|
|
"title" : "title",
|
|
"status" : 0
|
|
}
|
|
"""
|
|
expected_error = json.loads(error_body_json)
|
|
with self.assertRaises(
|
|
ApiException.exception_class_for_http_status(502)
|
|
) as context:
|
|
self.api.get_agents_proxies(
|
|
|
|
aid=aid,
|
|
|
|
_headers=self.te_headers("get_agents_proxies", error_status="502"),
|
|
)
|
|
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|