CP-2453 Add generated integration tests for all SDK packages

Sync OAS-driven integration test artifacts (mock manifest, test base, conftest, and per-operation integration tests) across 21 packages for CP-2453 full rollout evaluation.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
Kevin 2026-07-28 12:07:00 +01:00
parent 509c351f85
commit 5441f44f1f
154 changed files with 189388 additions and 0 deletions

View File

@ -0,0 +1,7 @@
import sys
from pathlib import Path
_repo_root = Path(__file__).resolve().parents[2]
_core_test_support = _repo_root / "thousandeyes-sdk-core" / "test"
if str(_core_test_support) not in sys.path:
sys.path.insert(0, str(_core_test_support))

View File

@ -0,0 +1,37 @@
# coding: utf-8
"""
Administrative API
Manage users, accounts, and account groups in the ThousandEyes platform using the Administrative API. This API provides the following operations to manage your organization: * `/account-groups`: Account groups are used to divide an organization into different sections. These operations can be used to create, retrieve, update and delete account groups. * `/users`: Create, retrieve, update and delete users within an organization. * `/roles`: Create, retrieve and update roles for the current user. * `/permissions`: Retrieve all assignable permissions. Used in the context of modifying roles. * `/audit-user-events`: Retrieve all activity log events. For more information about the administrative models, see [Account Management](https://docs.thousandeyes.com/product-documentation/user-management).
Generated by OpenAPI Generator (https://openapi-generator.tech)
Do not edit the class manually.
""" # noqa: E501
import unittest
from thousandeyes_sdk.core.api_client import ApiClient
from thousandeyes_sdk.core.configuration import Configuration
from sdk_test_support.mock_server import ERROR_STATUS_HEADER, OPERATION_ID_HEADER, MockApiServer
from .mock_manifest import OPERATION_MANIFEST
class IntegrationTestBase(unittest.TestCase):
def setUp(self) -> None:
self.server = MockApiServer(OPERATION_MANIFEST)
self.server.start()
configuration = Configuration(host=self.server.base_url, access_token="test-token")
self.api_client = ApiClient(configuration=configuration)
def tearDown(self) -> None:
self.server.stop()
def te_headers(self, operation_id: str, error_status=None):
headers = {OPERATION_ID_HEADER: operation_id}
if error_status is not None:
headers[ERROR_STATUS_HEADER] = error_status
return headers

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,219 @@
# coding: utf-8
"""
Administrative API
Manage users, accounts, and account groups in the ThousandEyes platform using the Administrative API. This API provides the following operations to manage your organization: * `/account-groups`: Account groups are used to divide an organization into different sections. These operations can be used to create, retrieve, update and delete account groups. * `/users`: Create, retrieve, update and delete users within an organization. * `/roles`: Create, retrieve and update roles for the current user. * `/permissions`: Retrieve all assignable permissions. Used in the context of modifying roles. * `/audit-user-events`: Retrieve all activity log events. For more information about the administrative models, see [Account Management](https://docs.thousandeyes.com/product-documentation/user-management).
Generated by OpenAPI Generator (https://openapi-generator.tech)
Do not edit the class manually.
""" # noqa: E501
import json
import unittest
import thousandeyes_sdk.administrative.models
from thousandeyes_sdk.core.exceptions import ApiException
from thousandeyes_sdk.administrative.api.permissions_api import PermissionsApi
from .integration_test_utils import IntegrationTestBase
from .test_utils import assert_constructed_model_matches_example_json
class TestPermissionsApiIntegration(IntegrationTestBase):
"""PermissionsApi integration test stubs"""
def setUp(self) -> None:
super().setUp()
self.api = PermissionsApi(self.api_client)
def test_get_permissions_happy_path(self) -> None:
"""Integration test for get_permissions success path"""
aid = '1234'
response_body_json = """
{
&quot;_links&quot; : {
&quot;self&quot; : {
&quot;hreflang&quot; : &quot;hreflang&quot;,
&quot;templated&quot; : true,
&quot;profile&quot; : &quot;profile&quot;,
&quot;name&quot; : &quot;name&quot;,
&quot;href&quot; : &quot;https://api.thousandeyes.com/v7/link/to/resource/id&quot;,
&quot;type&quot; : &quot;type&quot;,
&quot;deprecation&quot; : &quot;deprecation&quot;,
&quot;title&quot; : &quot;title&quot;
}
},
&quot;permissions&quot; : [ {
&quot;label&quot; : &quot;View reports&quot;,
&quot;permissionId&quot; : &quot;1&quot;,
&quot;isManagementPermission&quot; : true,
&quot;permission&quot; : &quot;REPORT_READ&quot;
}, {
&quot;label&quot; : &quot;View snapshots&quot;,
&quot;permissionId&quot; : &quot;51&quot;,
&quot;isManagementPermission&quot; : false,
&quot;permission&quot; : &quot;REPORT_SNAPSHOTS_READ&quot;
} ]
}
"""
expected_response = json.loads(response_body_json)
response = self.api.get_permissions(
aid=aid,
_headers=self.te_headers("get_permissions"),
)
assert_constructed_model_matches_example_json(response, expected_response)
def test_get_permissions_error_400(self) -> None:
"""Integration test for get_permissions error path (HTTP 400)"""
aid = '1234'
error_body_json = """
{
"instance" : "instance",
"detail" : "detail",
"type" : "type",
"title" : "title",
"errors" : [ {
"code" : "code",
"field" : "field",
"message" : "message"
}, {
"code" : "code",
"field" : "field",
"message" : "message"
} ],
"status" : 0
}
"""
expected_error = json.loads(error_body_json)
with self.assertRaises(
ApiException.exception_class_for_http_status(400)
) as context:
self.api.get_permissions(
aid=aid,
_headers=self.te_headers("get_permissions", error_status="400"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_get_permissions_error_401(self) -> None:
"""Integration test for get_permissions 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_permissions(
aid=aid,
_headers=self.te_headers("get_permissions", error_status="401"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_get_permissions_error_403(self) -> None:
"""Integration test for get_permissions error path (HTTP 403)"""
aid = '1234'
error_body_json = """
{
"instance" : "instance",
"detail" : "detail",
"type" : "type",
"title" : "title",
"status" : 6
}
"""
expected_error = json.loads(error_body_json)
with self.assertRaises(
ApiException.exception_class_for_http_status(403)
) as context:
self.api.get_permissions(
aid=aid,
_headers=self.te_headers("get_permissions", error_status="403"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_get_permissions_error_404(self) -> None:
"""Integration test for get_permissions error path (HTTP 404)"""
aid = '1234'
error_body_json = """
{
"instance" : "instance",
"detail" : "detail",
"type" : "type",
"title" : "title",
"status" : 6
}
"""
expected_error = json.loads(error_body_json)
with self.assertRaises(
ApiException.exception_class_for_http_status(404)
) as context:
self.api.get_permissions(
aid=aid,
_headers=self.te_headers("get_permissions", error_status="404"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_get_permissions_error_429(self) -> None:
"""Integration test for get_permissions error path (HTTP 429)"""
aid = '1234'
error_body_json = """
{
"instance" : "instance",
"detail" : "detail",
"type" : "type",
"title" : "title",
"status" : 6
}
"""
expected_error = json.loads(error_body_json)
with self.assertRaises(
ApiException.exception_class_for_http_status(429)
) as context:
self.api.get_permissions(
aid=aid,
_headers=self.te_headers("get_permissions", error_status="429"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_get_permissions_error_500(self) -> None:
"""Integration test for get_permissions error path (HTTP 500)"""
aid = '1234'
error_body_json = """
{
"instance" : "instance",
"detail" : "detail",
"type" : "type",
"title" : "title",
"status" : 6
}
"""
expected_error = json.loads(error_body_json)
with self.assertRaises(
ApiException.exception_class_for_http_status(500)
) as context:
self.api.get_permissions(
aid=aid,
_headers=self.te_headers("get_permissions", error_status="500"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
if __name__ == '__main__':
unittest.main()

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,324 @@
# coding: utf-8
"""
Administrative API
Manage users, accounts, and account groups in the ThousandEyes platform using the Administrative API. This API provides the following operations to manage your organization: * `/account-groups`: Account groups are used to divide an organization into different sections. These operations can be used to create, retrieve, update and delete account groups. * `/users`: Create, retrieve, update and delete users within an organization. * `/roles`: Create, retrieve and update roles for the current user. * `/permissions`: Retrieve all assignable permissions. Used in the context of modifying roles. * `/audit-user-events`: Retrieve all activity log events. For more information about the administrative models, see [Account Management](https://docs.thousandeyes.com/product-documentation/user-management).
Generated by OpenAPI Generator (https://openapi-generator.tech)
Do not edit the class manually.
""" # noqa: E501
import json
import unittest
import thousandeyes_sdk.administrative.models
from thousandeyes_sdk.core.exceptions import ApiException
from thousandeyes_sdk.administrative.api.user_events_api import UserEventsApi
from .integration_test_utils import IntegrationTestBase
from .test_utils import assert_constructed_model_matches_example_json
class TestUserEventsApiIntegration(IntegrationTestBase):
"""UserEventsApi integration test stubs"""
def setUp(self) -> None:
super().setUp()
self.api = UserEventsApi(self.api_client)
def test_get_user_events_happy_path(self) -> None:
"""Integration test for get_user_events success path"""
aid = '1234'
use_all_permitted_aids = False
window = '12h'
start_date = '2022-07-17T22:00:54Z'
end_date = '2022-07-18T22:00:54Z'
cursor = 'cursor_example'
response_body_json = """
{
&quot;endDate&quot; : &quot;2022-07-18T22:00:54Z&quot;,
&quot;_links&quot; : {
&quot;next&quot; : {
&quot;hreflang&quot; : &quot;hreflang&quot;,
&quot;templated&quot; : true,
&quot;profile&quot; : &quot;profile&quot;,
&quot;name&quot; : &quot;name&quot;,
&quot;href&quot; : &quot;https://api.thousandeyes.com/v7/link/to/resource/id&quot;,
&quot;type&quot; : &quot;type&quot;,
&quot;deprecation&quot; : &quot;deprecation&quot;,
&quot;title&quot; : &quot;title&quot;
},
&quot;previous&quot; : {
&quot;hreflang&quot; : &quot;hreflang&quot;,
&quot;templated&quot; : true,
&quot;profile&quot; : &quot;profile&quot;,
&quot;name&quot; : &quot;name&quot;,
&quot;href&quot; : &quot;https://api.thousandeyes.com/v7/link/to/resource/id&quot;,
&quot;type&quot; : &quot;type&quot;,
&quot;deprecation&quot; : &quot;deprecation&quot;,
&quot;title&quot; : &quot;title&quot;
},
&quot;self&quot; : {
&quot;hreflang&quot; : &quot;hreflang&quot;,
&quot;templated&quot; : true,
&quot;profile&quot; : &quot;profile&quot;,
&quot;name&quot; : &quot;name&quot;,
&quot;href&quot; : &quot;https://api.thousandeyes.com/v7/link/to/resource/id&quot;,
&quot;type&quot; : &quot;type&quot;,
&quot;deprecation&quot; : &quot;deprecation&quot;,
&quot;title&quot; : &quot;title&quot;
}
},
&quot;auditEvents&quot; : [ {
&quot;accountGroupName&quot; : &quot;API Sandbox&quot;,
&quot;aid&quot; : &quot;1234&quot;,
&quot;date&quot; : &quot;2020-07-17T21:54:54Z&quot;,
&quot;event&quot; : &quot;Report created.&quot;,
&quot;ipAddress&quot; : &quot;99.128.0.0/11&quot;,
&quot;uid&quot; : &quot;1234&quot;,
&quot;user&quot; : &quot;API Sandbox User (noreply@thousandeyes.com)&quot;,
&quot;resources&quot; : [ {
&quot;name&quot; : &quot;My New report&quot;,
&quot;type&quot; : &quot;reportTitle&quot;
}, {
&quot;name&quot; : &quot;Other Report&quot;,
&quot;type&quot; : &quot;testName&quot;
} ]
}, {
&quot;accountGroupName&quot; : &quot;API Sandbox&quot;,
&quot;aid&quot; : &quot;1234&quot;,
&quot;date&quot; : &quot;2020-07-17T22:00:54Z&quot;,
&quot;event&quot; : &quot;Login failed.&quot;,
&quot;ipAddress&quot; : &quot;99.128.0.0/11&quot;,
&quot;uid&quot; : &quot;1234&quot;,
&quot;user&quot; : &quot;API Sandbox User (noreply@thousandeyes.com)&quot;
} ],
&quot;startDate&quot; : &quot;2022-07-17T22:00:54Z&quot;
}
"""
expected_response = json.loads(response_body_json)
response = self.api.get_user_events(
aid=aid,
use_all_permitted_aids=use_all_permitted_aids,
window=window,
start_date=start_date,
end_date=end_date,
cursor=cursor,
_headers=self.te_headers("get_user_events"),
)
assert_constructed_model_matches_example_json(response, expected_response)
def test_get_user_events_error_400(self) -> None:
"""Integration test for get_user_events error path (HTTP 400)"""
aid = '1234'
use_all_permitted_aids = False
window = '12h'
start_date = '2022-07-17T22:00:54Z'
end_date = '2022-07-18T22:00:54Z'
cursor = 'cursor_example'
error_body_json = """
{
"instance" : "instance",
"detail" : "detail",
"type" : "type",
"title" : "title",
"errors" : [ {
"code" : "code",
"field" : "field",
"message" : "message"
}, {
"code" : "code",
"field" : "field",
"message" : "message"
} ],
"status" : 0
}
"""
expected_error = json.loads(error_body_json)
with self.assertRaises(
ApiException.exception_class_for_http_status(400)
) as context:
self.api.get_user_events(
aid=aid,
use_all_permitted_aids=use_all_permitted_aids,
window=window,
start_date=start_date,
end_date=end_date,
cursor=cursor,
_headers=self.te_headers("get_user_events", error_status="400"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_get_user_events_error_401(self) -> None:
"""Integration test for get_user_events error path (HTTP 401)"""
aid = '1234'
use_all_permitted_aids = False
window = '12h'
start_date = '2022-07-17T22:00:54Z'
end_date = '2022-07-18T22:00:54Z'
cursor = 'cursor_example'
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_user_events(
aid=aid,
use_all_permitted_aids=use_all_permitted_aids,
window=window,
start_date=start_date,
end_date=end_date,
cursor=cursor,
_headers=self.te_headers("get_user_events", error_status="401"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_get_user_events_error_403(self) -> None:
"""Integration test for get_user_events error path (HTTP 403)"""
aid = '1234'
use_all_permitted_aids = False
window = '12h'
start_date = '2022-07-17T22:00:54Z'
end_date = '2022-07-18T22:00:54Z'
cursor = 'cursor_example'
error_body_json = """
{
"instance" : "instance",
"detail" : "detail",
"type" : "type",
"title" : "title",
"status" : 6
}
"""
expected_error = json.loads(error_body_json)
with self.assertRaises(
ApiException.exception_class_for_http_status(403)
) as context:
self.api.get_user_events(
aid=aid,
use_all_permitted_aids=use_all_permitted_aids,
window=window,
start_date=start_date,
end_date=end_date,
cursor=cursor,
_headers=self.te_headers("get_user_events", error_status="403"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_get_user_events_error_404(self) -> None:
"""Integration test for get_user_events error path (HTTP 404)"""
aid = '1234'
use_all_permitted_aids = False
window = '12h'
start_date = '2022-07-17T22:00:54Z'
end_date = '2022-07-18T22:00:54Z'
cursor = 'cursor_example'
error_body_json = """
{
"instance" : "instance",
"detail" : "detail",
"type" : "type",
"title" : "title",
"status" : 6
}
"""
expected_error = json.loads(error_body_json)
with self.assertRaises(
ApiException.exception_class_for_http_status(404)
) as context:
self.api.get_user_events(
aid=aid,
use_all_permitted_aids=use_all_permitted_aids,
window=window,
start_date=start_date,
end_date=end_date,
cursor=cursor,
_headers=self.te_headers("get_user_events", error_status="404"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_get_user_events_error_429(self) -> None:
"""Integration test for get_user_events error path (HTTP 429)"""
aid = '1234'
use_all_permitted_aids = False
window = '12h'
start_date = '2022-07-17T22:00:54Z'
end_date = '2022-07-18T22:00:54Z'
cursor = 'cursor_example'
error_body_json = """
{
"instance" : "instance",
"detail" : "detail",
"type" : "type",
"title" : "title",
"status" : 6
}
"""
expected_error = json.loads(error_body_json)
with self.assertRaises(
ApiException.exception_class_for_http_status(429)
) as context:
self.api.get_user_events(
aid=aid,
use_all_permitted_aids=use_all_permitted_aids,
window=window,
start_date=start_date,
end_date=end_date,
cursor=cursor,
_headers=self.te_headers("get_user_events", error_status="429"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_get_user_events_error_500(self) -> None:
"""Integration test for get_user_events error path (HTTP 500)"""
aid = '1234'
use_all_permitted_aids = False
window = '12h'
start_date = '2022-07-17T22:00:54Z'
end_date = '2022-07-18T22:00:54Z'
cursor = 'cursor_example'
error_body_json = """
{
"instance" : "instance",
"detail" : "detail",
"type" : "type",
"title" : "title",
"status" : 6
}
"""
expected_error = json.loads(error_body_json)
with self.assertRaises(
ApiException.exception_class_for_http_status(500)
) as context:
self.api.get_user_events(
aid=aid,
use_all_permitted_aids=use_all_permitted_aids,
window=window,
start_date=start_date,
end_date=end_date,
cursor=cursor,
_headers=self.te_headers("get_user_events", error_status="500"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
if __name__ == '__main__':
unittest.main()

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,7 @@
import sys
from pathlib import Path
_repo_root = Path(__file__).resolve().parents[2]
_core_test_support = _repo_root / "thousandeyes-sdk-core" / "test"
if str(_core_test_support) not in sys.path:
sys.path.insert(0, str(_core_test_support))

View File

@ -0,0 +1,37 @@
# 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 unittest
from thousandeyes_sdk.core.api_client import ApiClient
from thousandeyes_sdk.core.configuration import Configuration
from sdk_test_support.mock_server import ERROR_STATUS_HEADER, OPERATION_ID_HEADER, MockApiServer
from .mock_manifest import OPERATION_MANIFEST
class IntegrationTestBase(unittest.TestCase):
def setUp(self) -> None:
self.server = MockApiServer(OPERATION_MANIFEST)
self.server.start()
configuration = Configuration(host=self.server.base_url, access_token="test-token")
self.api_client = ApiClient(configuration=configuration)
def tearDown(self) -> None:
self.server.stop()
def te_headers(self, operation_id: str, error_status=None):
headers = {OPERATION_ID_HEADER: operation_id}
if error_status is not None:
headers[ERROR_STATUS_HEADER] = error_status
return headers

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,224 @@
# 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 = """
{
&quot;_links&quot; : {
&quot;self&quot; : {
&quot;hreflang&quot; : &quot;hreflang&quot;,
&quot;templated&quot; : true,
&quot;profile&quot; : &quot;profile&quot;,
&quot;name&quot; : &quot;name&quot;,
&quot;href&quot; : &quot;https://api.thousandeyes.com/v7/link/to/resource/id&quot;,
&quot;type&quot; : &quot;type&quot;,
&quot;deprecation&quot; : &quot;deprecation&quot;,
&quot;title&quot; : &quot;title&quot;
}
},
&quot;agentProxies&quot; : [ {
&quot;password&quot; : &quot;**********&quot;,
&quot;isLocalConfigured&quot; : true,
&quot;name&quot; : &quot;Test Proxy - Auth Type - BASIC&quot;,
&quot;location&quot; : &quot;proxy.thousandeyes.com:3128&quot;,
&quot;lastModified&quot; : &quot;2022-07-17T22:00:54Z&quot;,
&quot;authType&quot; : &quot;basic&quot;,
&quot;type&quot; : &quot;static&quot;,
&quot;aid&quot; : &quot;1234&quot;,
&quot;bypassList&quot; : [ &quot;10.0.0.0/16&quot;, &quot;*.thousandeyes.com&quot; ],
&quot;user&quot; : &quot;user1&quot;,
&quot;proxyId&quot; : &quot;281474976710706&quot;
}, {
&quot;password&quot; : &quot;**********&quot;,
&quot;isLocalConfigured&quot; : true,
&quot;name&quot; : &quot;Test Proxy - Auth Type - BASIC&quot;,
&quot;location&quot; : &quot;proxy.thousandeyes.com:3128&quot;,
&quot;lastModified&quot; : &quot;2022-07-17T22:00:54Z&quot;,
&quot;authType&quot; : &quot;basic&quot;,
&quot;type&quot; : &quot;static&quot;,
&quot;aid&quot; : &quot;1234&quot;,
&quot;bypassList&quot; : [ &quot;10.0.0.0/16&quot;, &quot;*.thousandeyes.com&quot; ],
&quot;user&quot; : &quot;user1&quot;,
&quot;proxyId&quot; : &quot;281474976710706&quot;
} ]
}
"""
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()

View File

@ -0,0 +1,482 @@
# 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.cloud_and_enterprise_agent_notification_rules_api import CloudAndEnterpriseAgentNotificationRulesApi
from .integration_test_utils import IntegrationTestBase
from .test_utils import assert_constructed_model_matches_example_json
class TestCloudAndEnterpriseAgentNotificationRulesApiIntegration(IntegrationTestBase):
"""CloudAndEnterpriseAgentNotificationRulesApi integration test stubs"""
def setUp(self) -> None:
super().setUp()
self.api = CloudAndEnterpriseAgentNotificationRulesApi(self.api_client)
def test_get_agents_notification_rule_happy_path(self) -> None:
"""Integration test for get_agents_notification_rule success path"""
notification_rule_id = '281474976710706'
aid = '1234'
response_body_json = """
{
&quot;isDefault&quot; : false,
&quot;expression&quot; : &quot;((lastContact &gt;&#x3D; 30 min))&quot;,
&quot;_links&quot; : {
&quot;self&quot; : {
&quot;hreflang&quot; : &quot;hreflang&quot;,
&quot;templated&quot; : true,
&quot;profile&quot; : &quot;profile&quot;,
&quot;name&quot; : &quot;name&quot;,
&quot;href&quot; : &quot;https://api.thousandeyes.com/v7/link/to/resource/id&quot;,
&quot;type&quot; : &quot;type&quot;,
&quot;deprecation&quot; : &quot;deprecation&quot;,
&quot;title&quot; : &quot;title&quot;
}
},
&quot;ruleName&quot; : &quot;Default Agent Offline Notification&quot;,
&quot;ruleId&quot; : &quot;281474976710706&quot;,
&quot;notifications&quot; : {
&quot;thirdParty&quot; : [ {
&quot;integrationType&quot; : &quot;slack&quot;,
&quot;integrationName&quot; : &quot;integrationSlack1&quot;,
&quot;authToken&quot; : &quot;0VqDYEpidpHVAK397x8PBsmZ&quot;,
&quot;channel&quot; : &quot;#slackChannel&quot;,
&quot;integrationId&quot; : &quot;wb-78&quot;,
&quot;authMethod&quot; : &quot;Basic&quot;,
&quot;authUser&quot; : &quot;user123&quot;,
&quot;target&quot; : &quot;https://hooks.slack.com/services/asd/0VqDYEpidpHVAK397x8PBsmZ&quot;
}, {
&quot;integrationType&quot; : &quot;slack&quot;,
&quot;integrationName&quot; : &quot;integrationSlack1&quot;,
&quot;authToken&quot; : &quot;0VqDYEpidpHVAK397x8PBsmZ&quot;,
&quot;channel&quot; : &quot;#slackChannel&quot;,
&quot;integrationId&quot; : &quot;wb-78&quot;,
&quot;authMethod&quot; : &quot;Basic&quot;,
&quot;authUser&quot; : &quot;user123&quot;,
&quot;target&quot; : &quot;https://hooks.slack.com/services/asd/0VqDYEpidpHVAK397x8PBsmZ&quot;
} ],
&quot;webhook&quot; : [ {
&quot;integrationType&quot; : &quot;slack&quot;,
&quot;integrationName&quot; : &quot;integrationSlack1&quot;,
&quot;authToken&quot; : &quot;0VqDYEpidpHVAK397x8PBsmZ&quot;,
&quot;channel&quot; : &quot;#slackChannel&quot;,
&quot;integrationId&quot; : &quot;wb-78&quot;,
&quot;authMethod&quot; : &quot;Basic&quot;,
&quot;authUser&quot; : &quot;user123&quot;,
&quot;target&quot; : &quot;https://hooks.slack.com/services/asd/0VqDYEpidpHVAK397x8PBsmZ&quot;
}, {
&quot;integrationType&quot; : &quot;slack&quot;,
&quot;integrationName&quot; : &quot;integrationSlack1&quot;,
&quot;authToken&quot; : &quot;0VqDYEpidpHVAK397x8PBsmZ&quot;,
&quot;channel&quot; : &quot;#slackChannel&quot;,
&quot;integrationId&quot; : &quot;wb-78&quot;,
&quot;authMethod&quot; : &quot;Basic&quot;,
&quot;authUser&quot; : &quot;user123&quot;,
&quot;target&quot; : &quot;https://hooks.slack.com/services/asd/0VqDYEpidpHVAK397x8PBsmZ&quot;
} ],
&quot;email&quot; : {
&quot;recipients&quot; : [ &quot;user1@thousandeyes.com&quot;, &quot;user2@cisco.com&quot; ],
&quot;message&quot; : &quot;This test is failing, check as soon as possible.&quot;
}
},
&quot;notifyOnClear&quot; : true,
&quot;agents&quot; : [ {
&quot;agentId&quot; : &quot;281474976710706&quot;,
&quot;agentType&quot; : &quot;enterprise-cluster&quot;,
&quot;prefix&quot; : &quot;99.128.0.0/11&quot;,
&quot;coordinates&quot; : {
&quot;latitude&quot; : 37.77493,
&quot;longitude&quot; : -122.41942
},
&quot;agentName&quot; : &quot;thousandeyes-stg-va-254&quot;,
&quot;networkProviderInfo&quot; : {
&quot;asn&quot; : 7018,
&quot;name&quot; : &quot;AT&amp;T Services, Inc.&quot;,
&quot;type&quot; : &quot;isp&quot;
},
&quot;countryId&quot; : &quot;US&quot;,
&quot;enabled&quot; : true,
&quot;network&quot; : &quot;AT&amp;T Services, Inc. (AS 7018)&quot;,
&quot;publicIpAddresses&quot; : [ &quot;192.168.1.78&quot;, &quot;f9b2:3a21:f25c:d300:03f4:586d:f8d6:4e1c&quot; ],
&quot;ipAddresses&quot; : [ &quot;99.139.65.220&quot;, &quot;9bbd:8a0a:a257:5876:288b:6cb2:3f36:64ce&quot; ],
&quot;location&quot; : &quot;San Francisco Bay Area&quot;,
&quot;verifySslCertificates&quot; : true
}, {
&quot;agentId&quot; : &quot;281474976710706&quot;,
&quot;agentType&quot; : &quot;enterprise-cluster&quot;,
&quot;prefix&quot; : &quot;99.128.0.0/11&quot;,
&quot;coordinates&quot; : {
&quot;latitude&quot; : 37.77493,
&quot;longitude&quot; : -122.41942
},
&quot;agentName&quot; : &quot;thousandeyes-stg-va-254&quot;,
&quot;networkProviderInfo&quot; : {
&quot;asn&quot; : 7018,
&quot;name&quot; : &quot;AT&amp;T Services, Inc.&quot;,
&quot;type&quot; : &quot;isp&quot;
},
&quot;countryId&quot; : &quot;US&quot;,
&quot;enabled&quot; : true,
&quot;network&quot; : &quot;AT&amp;T Services, Inc. (AS 7018)&quot;,
&quot;publicIpAddresses&quot; : [ &quot;192.168.1.78&quot;, &quot;f9b2:3a21:f25c:d300:03f4:586d:f8d6:4e1c&quot; ],
&quot;ipAddresses&quot; : [ &quot;99.139.65.220&quot;, &quot;9bbd:8a0a:a257:5876:288b:6cb2:3f36:64ce&quot; ],
&quot;location&quot; : &quot;San Francisco Bay Area&quot;,
&quot;verifySslCertificates&quot; : true
} ]
}
"""
expected_response = json.loads(response_body_json)
response = self.api.get_agents_notification_rule(
notification_rule_id=notification_rule_id,
aid=aid,
_headers=self.te_headers("get_agents_notification_rule"),
)
assert_constructed_model_matches_example_json(response, expected_response)
def test_get_agents_notification_rule_error_401(self) -> None:
"""Integration test for get_agents_notification_rule error path (HTTP 401)"""
notification_rule_id = '281474976710706'
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_notification_rule(
notification_rule_id=notification_rule_id,
aid=aid,
_headers=self.te_headers("get_agents_notification_rule", error_status="401"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_get_agents_notification_rule_error_403(self) -> None:
"""Integration test for get_agents_notification_rule error path (HTTP 403)"""
notification_rule_id = '281474976710706'
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_notification_rule(
notification_rule_id=notification_rule_id,
aid=aid,
_headers=self.te_headers("get_agents_notification_rule", error_status="403"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_get_agents_notification_rule_error_404(self) -> None:
"""Integration test for get_agents_notification_rule error path (HTTP 404)"""
notification_rule_id = '281474976710706'
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_notification_rule(
notification_rule_id=notification_rule_id,
aid=aid,
_headers=self.te_headers("get_agents_notification_rule", error_status="404"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_get_agents_notification_rule_error_429(self) -> None:
"""Integration test for get_agents_notification_rule error path (HTTP 429)"""
notification_rule_id = '281474976710706'
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_notification_rule(
notification_rule_id=notification_rule_id,
aid=aid,
_headers=self.te_headers("get_agents_notification_rule", error_status="429"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_get_agents_notification_rule_error_500(self) -> None:
"""Integration test for get_agents_notification_rule error path (HTTP 500)"""
notification_rule_id = '281474976710706'
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_notification_rule(
notification_rule_id=notification_rule_id,
aid=aid,
_headers=self.te_headers("get_agents_notification_rule", error_status="500"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_get_agents_notification_rule_error_502(self) -> None:
"""Integration test for get_agents_notification_rule error path (HTTP 502)"""
notification_rule_id = '281474976710706'
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_notification_rule(
notification_rule_id=notification_rule_id,
aid=aid,
_headers=self.te_headers("get_agents_notification_rule", error_status="502"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_get_agents_notification_rules_happy_path(self) -> None:
"""Integration test for get_agents_notification_rules success path"""
aid = '1234'
response_body_json = """
{
&quot;agentAlertRules&quot; : [ {
&quot;ruleId&quot; : &quot;281474976710706&quot;,
&quot;ruleName&quot; : &quot;Default Agent Offline Notification&quot;,
&quot;expression&quot; : &quot;((lastContact &gt;&#x3D; 30 min))&quot;,
&quot;notifyOnClear&quot; : true,
&quot;isDefault&quot; : false
}, {
&quot;ruleId&quot; : &quot;281474976710709&quot;,
&quot;ruleName&quot; : &quot;Test Rule&quot;,
&quot;expression&quot; : &quot;((lastContact &gt;&#x3D; 40 min))&quot;,
&quot;notifyOnClear&quot; : true,
&quot;isDefault&quot; : true
} ],
&quot;_links&quot; : {
&quot;self&quot; : {
&quot;hreflang&quot; : &quot;hreflang&quot;,
&quot;templated&quot; : true,
&quot;profile&quot; : &quot;profile&quot;,
&quot;name&quot; : &quot;name&quot;,
&quot;href&quot; : &quot;https://api.thousandeyes.com/v7/link/to/resource/id&quot;,
&quot;type&quot; : &quot;type&quot;,
&quot;deprecation&quot; : &quot;deprecation&quot;,
&quot;title&quot; : &quot;title&quot;
}
}
}
"""
expected_response = json.loads(response_body_json)
response = self.api.get_agents_notification_rules(
aid=aid,
_headers=self.te_headers("get_agents_notification_rules"),
)
assert_constructed_model_matches_example_json(response, expected_response)
def test_get_agents_notification_rules_error_401(self) -> None:
"""Integration test for get_agents_notification_rules 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_notification_rules(
aid=aid,
_headers=self.te_headers("get_agents_notification_rules", error_status="401"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_get_agents_notification_rules_error_403(self) -> None:
"""Integration test for get_agents_notification_rules 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_notification_rules(
aid=aid,
_headers=self.te_headers("get_agents_notification_rules", error_status="403"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_get_agents_notification_rules_error_404(self) -> None:
"""Integration test for get_agents_notification_rules 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_notification_rules(
aid=aid,
_headers=self.te_headers("get_agents_notification_rules", error_status="404"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_get_agents_notification_rules_error_429(self) -> None:
"""Integration test for get_agents_notification_rules 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_notification_rules(
aid=aid,
_headers=self.te_headers("get_agents_notification_rules", error_status="429"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_get_agents_notification_rules_error_500(self) -> None:
"""Integration test for get_agents_notification_rules 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_notification_rules(
aid=aid,
_headers=self.te_headers("get_agents_notification_rules", error_status="500"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_get_agents_notification_rules_error_502(self) -> None:
"""Integration test for get_agents_notification_rules 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_notification_rules(
aid=aid,
_headers=self.te_headers("get_agents_notification_rules", error_status="502"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
if __name__ == '__main__':
unittest.main()

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,777 @@
# 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.enterprise_agent_cluster_api import EnterpriseAgentClusterApi
from .integration_test_utils import IntegrationTestBase
from .test_utils import assert_constructed_model_matches_example_json
class TestEnterpriseAgentClusterApiIntegration(IntegrationTestBase):
"""EnterpriseAgentClusterApi integration test stubs"""
def setUp(self) -> None:
super().setUp()
self.api = EnterpriseAgentClusterApi(self.api_client)
def test_assign_agent_to_cluster_happy_path(self) -> None:
"""Integration test for assign_agent_to_cluster success path"""
request_body_json = """
{
"agents" : [ "281474976710706" ]
}
"""
agent_cluster_assign_request = thousandeyes_sdk.agents.models.AgentClusterAssignRequest.from_json(request_body_json)
agent_id = '281474976710706'
aid = '1234'
expand = [thousandeyes_sdk.agents.AgentDetailsExpand()]
response_body_json = """
{
&quot;agentId&quot; : &quot;281474976710706&quot;,
&quot;agentType&quot; : &quot;cloud&quot;,
&quot;_links&quot; : {
&quot;self&quot; : {
&quot;hreflang&quot; : &quot;hreflang&quot;,
&quot;templated&quot; : true,
&quot;profile&quot; : &quot;profile&quot;,
&quot;name&quot; : &quot;name&quot;,
&quot;href&quot; : &quot;https://api.thousandeyes.com/v7/link/to/resource/id&quot;,
&quot;type&quot; : &quot;type&quot;,
&quot;deprecation&quot; : &quot;deprecation&quot;,
&quot;title&quot; : &quot;title&quot;
}
},
&quot;prefix&quot; : &quot;99.128.0.0/11&quot;,
&quot;coordinates&quot; : {
&quot;latitude&quot; : 37.77493,
&quot;longitude&quot; : -122.41942
},
&quot;agentName&quot; : &quot;thousandeyes-stg-va-254&quot;,
&quot;networkProviderInfo&quot; : {
&quot;asn&quot; : 7018,
&quot;name&quot; : &quot;AT&amp;T Services, Inc.&quot;,
&quot;type&quot; : &quot;isp&quot;
},
&quot;countryId&quot; : &quot;US&quot;,
&quot;enabled&quot; : true,
&quot;network&quot; : &quot;AT&amp;T Services, Inc. (AS 7018)&quot;,
&quot;labels&quot; : [ {
&quot;labelId&quot; : &quot;11&quot;,
&quot;name&quot; : &quot;Label name&quot;
}, {
&quot;labelId&quot; : &quot;11&quot;,
&quot;name&quot; : &quot;Label name&quot;
} ],
&quot;tags&quot; : [ {
&quot;id&quot; : &quot;5aeab5d5-0d34-4d44-a7ac-fb440185295c&quot;,
&quot;value&quot; : &quot;San Francisco&quot;,
&quot;key&quot; : &quot;Location&quot;
}, {
&quot;id&quot; : &quot;5aeab5d5-0d34-4d44-a7ac-fb440185295c&quot;,
&quot;value&quot; : &quot;San Francisco&quot;,
&quot;key&quot; : &quot;Location&quot;
} ],
&quot;tests&quot; : [ {
&quot;_links&quot; : {
&quot;testResults&quot; : [ {
&quot;href&quot; : &quot;https://api.thousandeyes.com/v7/test-results/281474976710706/network&quot;
}, {
&quot;href&quot; : &quot;https://api.thousandeyes.com/v7/test-results/281474976710706/path-vis&quot;
} ],
&quot;self&quot; : {
&quot;hreflang&quot; : &quot;hreflang&quot;,
&quot;templated&quot; : true,
&quot;profile&quot; : &quot;profile&quot;,
&quot;name&quot; : &quot;name&quot;,
&quot;href&quot; : &quot;https://api.thousandeyes.com/v7/link/to/resource/id&quot;,
&quot;type&quot; : &quot;type&quot;,
&quot;deprecation&quot; : &quot;deprecation&quot;,
&quot;title&quot; : &quot;title&quot;
}
},
&quot;liveShare&quot; : false,
&quot;savedEvent&quot; : true,
&quot;description&quot; : &quot;ThousandEyes Test&quot;,
&quot;type&quot; : &quot;agent-to-server&quot;,
&quot;enabled&quot; : true,
&quot;createdDate&quot; : &quot;2022-07-17T22:00:54Z&quot;,
&quot;createdBy&quot; : &quot;user@user.com&quot;,
&quot;modifiedDate&quot; : &quot;2022-07-17T22:00:54Z&quot;,
&quot;interval&quot; : 60,
&quot;modifiedBy&quot; : &quot;user@user.com&quot;,
&quot;testId&quot; : &quot;281474976710706&quot;,
&quot;alertsEnabled&quot; : true,
&quot;testName&quot; : &quot;ThousandEyes Test&quot;
}, {
&quot;_links&quot; : {
&quot;testResults&quot; : [ {
&quot;href&quot; : &quot;https://api.thousandeyes.com/v7/test-results/281474976710706/network&quot;
}, {
&quot;href&quot; : &quot;https://api.thousandeyes.com/v7/test-results/281474976710706/path-vis&quot;
} ],
&quot;self&quot; : {
&quot;hreflang&quot; : &quot;hreflang&quot;,
&quot;templated&quot; : true,
&quot;profile&quot; : &quot;profile&quot;,
&quot;name&quot; : &quot;name&quot;,
&quot;href&quot; : &quot;https://api.thousandeyes.com/v7/link/to/resource/id&quot;,
&quot;type&quot; : &quot;type&quot;,
&quot;deprecation&quot; : &quot;deprecation&quot;,
&quot;title&quot; : &quot;title&quot;
}
},
&quot;liveShare&quot; : false,
&quot;savedEvent&quot; : true,
&quot;description&quot; : &quot;ThousandEyes Test&quot;,
&quot;type&quot; : &quot;agent-to-server&quot;,
&quot;enabled&quot; : true,
&quot;createdDate&quot; : &quot;2022-07-17T22:00:54Z&quot;,
&quot;createdBy&quot; : &quot;user@user.com&quot;,
&quot;modifiedDate&quot; : &quot;2022-07-17T22:00:54Z&quot;,
&quot;interval&quot; : 60,
&quot;modifiedBy&quot; : &quot;user@user.com&quot;,
&quot;testId&quot; : &quot;281474976710706&quot;,
&quot;alertsEnabled&quot; : true,
&quot;testName&quot; : &quot;ThousandEyes Test&quot;
} ],
&quot;publicIpAddresses&quot; : [ &quot;192.168.1.78&quot;, &quot;f9b2:3a21:f25c:d300:03f4:586d:f8d6:4e1c&quot; ],
&quot;ipAddresses&quot; : [ &quot;99.139.65.220&quot;, &quot;9bbd:8a0a:a257:5876:288b:6cb2:3f36:64ce&quot; ],
&quot;location&quot; : &quot;San Francisco Bay Area&quot;,
&quot;verifySslCertificates&quot; : true
}
"""
expected_response = json.loads(response_body_json)
response = self.api.assign_agent_to_cluster(
agent_id=agent_id,
agent_cluster_assign_request=agent_cluster_assign_request,
aid=aid,
expand=expand,
_headers=self.te_headers("assign_agent_to_cluster"),
)
assert_constructed_model_matches_example_json(response, expected_response)
def test_assign_agent_to_cluster_error_400(self) -> None:
"""Integration test for assign_agent_to_cluster error path (HTTP 400)"""
request_body_json = """
{
"agents" : [ "281474976710706" ]
}
"""
agent_cluster_assign_request = thousandeyes_sdk.agents.models.AgentClusterAssignRequest.from_json(request_body_json)
agent_id = '281474976710706'
aid = '1234'
expand = [thousandeyes_sdk.agents.AgentDetailsExpand()]
error_body_json = """
{
"instance" : "instance",
"detail" : "detail",
"type" : "type",
"title" : "title",
"errors" : [ {
"code" : "code",
"field" : "field",
"message" : "message"
}, {
"code" : "code",
"field" : "field",
"message" : "message"
} ],
"status" : 0
}
"""
expected_error = json.loads(error_body_json)
with self.assertRaises(
ApiException.exception_class_for_http_status(400)
) as context:
self.api.assign_agent_to_cluster(
agent_id=agent_id,
agent_cluster_assign_request=agent_cluster_assign_request,
aid=aid,
expand=expand,
_headers=self.te_headers("assign_agent_to_cluster", error_status="400"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_assign_agent_to_cluster_error_401(self) -> None:
"""Integration test for assign_agent_to_cluster error path (HTTP 401)"""
request_body_json = """
{
"agents" : [ "281474976710706" ]
}
"""
agent_cluster_assign_request = thousandeyes_sdk.agents.models.AgentClusterAssignRequest.from_json(request_body_json)
agent_id = '281474976710706'
aid = '1234'
expand = [thousandeyes_sdk.agents.AgentDetailsExpand()]
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.assign_agent_to_cluster(
agent_id=agent_id,
agent_cluster_assign_request=agent_cluster_assign_request,
aid=aid,
expand=expand,
_headers=self.te_headers("assign_agent_to_cluster", error_status="401"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_assign_agent_to_cluster_error_403(self) -> None:
"""Integration test for assign_agent_to_cluster error path (HTTP 403)"""
request_body_json = """
{
"agents" : [ "281474976710706" ]
}
"""
agent_cluster_assign_request = thousandeyes_sdk.agents.models.AgentClusterAssignRequest.from_json(request_body_json)
agent_id = '281474976710706'
aid = '1234'
expand = [thousandeyes_sdk.agents.AgentDetailsExpand()]
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.assign_agent_to_cluster(
agent_id=agent_id,
agent_cluster_assign_request=agent_cluster_assign_request,
aid=aid,
expand=expand,
_headers=self.te_headers("assign_agent_to_cluster", error_status="403"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_assign_agent_to_cluster_error_404(self) -> None:
"""Integration test for assign_agent_to_cluster error path (HTTP 404)"""
request_body_json = """
{
"agents" : [ "281474976710706" ]
}
"""
agent_cluster_assign_request = thousandeyes_sdk.agents.models.AgentClusterAssignRequest.from_json(request_body_json)
agent_id = '281474976710706'
aid = '1234'
expand = [thousandeyes_sdk.agents.AgentDetailsExpand()]
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.assign_agent_to_cluster(
agent_id=agent_id,
agent_cluster_assign_request=agent_cluster_assign_request,
aid=aid,
expand=expand,
_headers=self.te_headers("assign_agent_to_cluster", error_status="404"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_assign_agent_to_cluster_error_429(self) -> None:
"""Integration test for assign_agent_to_cluster error path (HTTP 429)"""
request_body_json = """
{
"agents" : [ "281474976710706" ]
}
"""
agent_cluster_assign_request = thousandeyes_sdk.agents.models.AgentClusterAssignRequest.from_json(request_body_json)
agent_id = '281474976710706'
aid = '1234'
expand = [thousandeyes_sdk.agents.AgentDetailsExpand()]
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.assign_agent_to_cluster(
agent_id=agent_id,
agent_cluster_assign_request=agent_cluster_assign_request,
aid=aid,
expand=expand,
_headers=self.te_headers("assign_agent_to_cluster", error_status="429"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_assign_agent_to_cluster_error_500(self) -> None:
"""Integration test for assign_agent_to_cluster error path (HTTP 500)"""
request_body_json = """
{
"agents" : [ "281474976710706" ]
}
"""
agent_cluster_assign_request = thousandeyes_sdk.agents.models.AgentClusterAssignRequest.from_json(request_body_json)
agent_id = '281474976710706'
aid = '1234'
expand = [thousandeyes_sdk.agents.AgentDetailsExpand()]
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.assign_agent_to_cluster(
agent_id=agent_id,
agent_cluster_assign_request=agent_cluster_assign_request,
aid=aid,
expand=expand,
_headers=self.te_headers("assign_agent_to_cluster", error_status="500"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_assign_agent_to_cluster_error_502(self) -> None:
"""Integration test for assign_agent_to_cluster error path (HTTP 502)"""
request_body_json = """
{
"agents" : [ "281474976710706" ]
}
"""
agent_cluster_assign_request = thousandeyes_sdk.agents.models.AgentClusterAssignRequest.from_json(request_body_json)
agent_id = '281474976710706'
aid = '1234'
expand = [thousandeyes_sdk.agents.AgentDetailsExpand()]
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.assign_agent_to_cluster(
agent_id=agent_id,
agent_cluster_assign_request=agent_cluster_assign_request,
aid=aid,
expand=expand,
_headers=self.te_headers("assign_agent_to_cluster", error_status="502"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_unassign_agent_from_cluster_happy_path(self) -> None:
"""Integration test for unassign_agent_from_cluster success path"""
request_body_json = """
{
"members" : [ "281474976710706" ]
}
"""
agent_cluster_unassign_request = thousandeyes_sdk.agents.models.AgentClusterUnassignRequest.from_json(request_body_json)
agent_id = '281474976710706'
aid = '1234'
expand = [thousandeyes_sdk.agents.AgentDetailsExpand()]
response_body_json = """
{
&quot;_links&quot; : {
&quot;self&quot; : {
&quot;hreflang&quot; : &quot;hreflang&quot;,
&quot;templated&quot; : true,
&quot;profile&quot; : &quot;profile&quot;,
&quot;name&quot; : &quot;name&quot;,
&quot;href&quot; : &quot;https://api.thousandeyes.com/v7/link/to/resource/id&quot;,
&quot;type&quot; : &quot;type&quot;,
&quot;deprecation&quot; : &quot;deprecation&quot;,
&quot;title&quot; : &quot;title&quot;
}
},
&quot;agents&quot; : [ {
&quot;agentId&quot; : &quot;281474976710706&quot;,
&quot;agentType&quot; : &quot;enterprise-cluster&quot;,
&quot;prefix&quot; : &quot;99.128.0.0/11&quot;,
&quot;coordinates&quot; : {
&quot;latitude&quot; : 37.77493,
&quot;longitude&quot; : -122.41942
},
&quot;agentName&quot; : &quot;thousandeyes-stg-va-254&quot;,
&quot;networkProviderInfo&quot; : {
&quot;asn&quot; : 7018,
&quot;name&quot; : &quot;AT&amp;T Services, Inc.&quot;,
&quot;type&quot; : &quot;isp&quot;
},
&quot;countryId&quot; : &quot;US&quot;,
&quot;enabled&quot; : true,
&quot;network&quot; : &quot;AT&amp;T Services, Inc. (AS 7018)&quot;,
&quot;publicIpAddresses&quot; : [ &quot;192.168.1.78&quot;, &quot;f9b2:3a21:f25c:d300:03f4:586d:f8d6:4e1c&quot; ],
&quot;ipAddresses&quot; : [ &quot;99.139.65.220&quot;, &quot;9bbd:8a0a:a257:5876:288b:6cb2:3f36:64ce&quot; ],
&quot;location&quot; : &quot;San Francisco Bay Area&quot;,
&quot;verifySslCertificates&quot; : true
}, {
&quot;agentId&quot; : &quot;281474976710706&quot;,
&quot;agentType&quot; : &quot;enterprise-cluster&quot;,
&quot;prefix&quot; : &quot;99.128.0.0/11&quot;,
&quot;coordinates&quot; : {
&quot;latitude&quot; : 37.77493,
&quot;longitude&quot; : -122.41942
},
&quot;agentName&quot; : &quot;thousandeyes-stg-va-254&quot;,
&quot;networkProviderInfo&quot; : {
&quot;asn&quot; : 7018,
&quot;name&quot; : &quot;AT&amp;T Services, Inc.&quot;,
&quot;type&quot; : &quot;isp&quot;
},
&quot;countryId&quot; : &quot;US&quot;,
&quot;enabled&quot; : true,
&quot;network&quot; : &quot;AT&amp;T Services, Inc. (AS 7018)&quot;,
&quot;publicIpAddresses&quot; : [ &quot;192.168.1.78&quot;, &quot;f9b2:3a21:f25c:d300:03f4:586d:f8d6:4e1c&quot; ],
&quot;ipAddresses&quot; : [ &quot;99.139.65.220&quot;, &quot;9bbd:8a0a:a257:5876:288b:6cb2:3f36:64ce&quot; ],
&quot;location&quot; : &quot;San Francisco Bay Area&quot;,
&quot;verifySslCertificates&quot; : true
} ]
}
"""
expected_response = json.loads(response_body_json)
response = self.api.unassign_agent_from_cluster(
agent_id=agent_id,
agent_cluster_unassign_request=agent_cluster_unassign_request,
aid=aid,
expand=expand,
_headers=self.te_headers("unassign_agent_from_cluster"),
)
assert_constructed_model_matches_example_json(response, expected_response)
def test_unassign_agent_from_cluster_error_400(self) -> None:
"""Integration test for unassign_agent_from_cluster error path (HTTP 400)"""
request_body_json = """
{
"members" : [ "281474976710706" ]
}
"""
agent_cluster_unassign_request = thousandeyes_sdk.agents.models.AgentClusterUnassignRequest.from_json(request_body_json)
agent_id = '281474976710706'
aid = '1234'
expand = [thousandeyes_sdk.agents.AgentDetailsExpand()]
error_body_json = """
{
"instance" : "instance",
"detail" : "detail",
"type" : "type",
"title" : "title",
"errors" : [ {
"code" : "code",
"field" : "field",
"message" : "message"
}, {
"code" : "code",
"field" : "field",
"message" : "message"
} ],
"status" : 0
}
"""
expected_error = json.loads(error_body_json)
with self.assertRaises(
ApiException.exception_class_for_http_status(400)
) as context:
self.api.unassign_agent_from_cluster(
agent_id=agent_id,
agent_cluster_unassign_request=agent_cluster_unassign_request,
aid=aid,
expand=expand,
_headers=self.te_headers("unassign_agent_from_cluster", error_status="400"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_unassign_agent_from_cluster_error_401(self) -> None:
"""Integration test for unassign_agent_from_cluster error path (HTTP 401)"""
request_body_json = """
{
"members" : [ "281474976710706" ]
}
"""
agent_cluster_unassign_request = thousandeyes_sdk.agents.models.AgentClusterUnassignRequest.from_json(request_body_json)
agent_id = '281474976710706'
aid = '1234'
expand = [thousandeyes_sdk.agents.AgentDetailsExpand()]
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.unassign_agent_from_cluster(
agent_id=agent_id,
agent_cluster_unassign_request=agent_cluster_unassign_request,
aid=aid,
expand=expand,
_headers=self.te_headers("unassign_agent_from_cluster", error_status="401"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_unassign_agent_from_cluster_error_403(self) -> None:
"""Integration test for unassign_agent_from_cluster error path (HTTP 403)"""
request_body_json = """
{
"members" : [ "281474976710706" ]
}
"""
agent_cluster_unassign_request = thousandeyes_sdk.agents.models.AgentClusterUnassignRequest.from_json(request_body_json)
agent_id = '281474976710706'
aid = '1234'
expand = [thousandeyes_sdk.agents.AgentDetailsExpand()]
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.unassign_agent_from_cluster(
agent_id=agent_id,
agent_cluster_unassign_request=agent_cluster_unassign_request,
aid=aid,
expand=expand,
_headers=self.te_headers("unassign_agent_from_cluster", error_status="403"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_unassign_agent_from_cluster_error_404(self) -> None:
"""Integration test for unassign_agent_from_cluster error path (HTTP 404)"""
request_body_json = """
{
"members" : [ "281474976710706" ]
}
"""
agent_cluster_unassign_request = thousandeyes_sdk.agents.models.AgentClusterUnassignRequest.from_json(request_body_json)
agent_id = '281474976710706'
aid = '1234'
expand = [thousandeyes_sdk.agents.AgentDetailsExpand()]
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.unassign_agent_from_cluster(
agent_id=agent_id,
agent_cluster_unassign_request=agent_cluster_unassign_request,
aid=aid,
expand=expand,
_headers=self.te_headers("unassign_agent_from_cluster", error_status="404"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_unassign_agent_from_cluster_error_429(self) -> None:
"""Integration test for unassign_agent_from_cluster error path (HTTP 429)"""
request_body_json = """
{
"members" : [ "281474976710706" ]
}
"""
agent_cluster_unassign_request = thousandeyes_sdk.agents.models.AgentClusterUnassignRequest.from_json(request_body_json)
agent_id = '281474976710706'
aid = '1234'
expand = [thousandeyes_sdk.agents.AgentDetailsExpand()]
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.unassign_agent_from_cluster(
agent_id=agent_id,
agent_cluster_unassign_request=agent_cluster_unassign_request,
aid=aid,
expand=expand,
_headers=self.te_headers("unassign_agent_from_cluster", error_status="429"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_unassign_agent_from_cluster_error_500(self) -> None:
"""Integration test for unassign_agent_from_cluster error path (HTTP 500)"""
request_body_json = """
{
"members" : [ "281474976710706" ]
}
"""
agent_cluster_unassign_request = thousandeyes_sdk.agents.models.AgentClusterUnassignRequest.from_json(request_body_json)
agent_id = '281474976710706'
aid = '1234'
expand = [thousandeyes_sdk.agents.AgentDetailsExpand()]
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.unassign_agent_from_cluster(
agent_id=agent_id,
agent_cluster_unassign_request=agent_cluster_unassign_request,
aid=aid,
expand=expand,
_headers=self.te_headers("unassign_agent_from_cluster", error_status="500"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_unassign_agent_from_cluster_error_502(self) -> None:
"""Integration test for unassign_agent_from_cluster error path (HTTP 502)"""
request_body_json = """
{
"members" : [ "281474976710706" ]
}
"""
agent_cluster_unassign_request = thousandeyes_sdk.agents.models.AgentClusterUnassignRequest.from_json(request_body_json)
agent_id = '281474976710706'
aid = '1234'
expand = [thousandeyes_sdk.agents.AgentDetailsExpand()]
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.unassign_agent_from_cluster(
agent_id=agent_id,
agent_cluster_unassign_request=agent_cluster_unassign_request,
aid=aid,
expand=expand,
_headers=self.te_headers("unassign_agent_from_cluster", error_status="502"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
if __name__ == '__main__':
unittest.main()

View File

@ -0,0 +1,304 @@
# 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.local_problems_api import LocalProblemsApi
from .integration_test_utils import IntegrationTestBase
from .test_utils import assert_constructed_model_matches_example_json
class TestLocalProblemsApiIntegration(IntegrationTestBase):
"""LocalProblemsApi integration test stubs"""
def setUp(self) -> None:
super().setUp()
self.api = LocalProblemsApi(self.api_client)
def test_get_agents_local_problems_happy_path(self) -> None:
"""Integration test for get_agents_local_problems success path"""
aid = '1234'
window = '12h'
start_date = '2022-07-17T22:00:54Z'
end_date = '2022-07-18T22:00:54Z'
response_body_json = """
{
&quot;endDate&quot; : &quot;2022-07-18T22:00:54Z&quot;,
&quot;_links&quot; : {
&quot;self&quot; : {
&quot;hreflang&quot; : &quot;hreflang&quot;,
&quot;templated&quot; : true,
&quot;profile&quot; : &quot;profile&quot;,
&quot;name&quot; : &quot;name&quot;,
&quot;href&quot; : &quot;https://api.thousandeyes.com/v7/link/to/resource/id&quot;,
&quot;type&quot; : &quot;type&quot;,
&quot;deprecation&quot; : &quot;deprecation&quot;,
&quot;title&quot; : &quot;title&quot;
}
},
&quot;localProblems&quot; : [ {
&quot;duration&quot; : 480,
&quot;agent&quot; : {
&quot;agentId&quot; : &quot;281474976710706&quot;,
&quot;agentName&quot; : &quot;thousandeyes-stg-va-254&quot;,
&quot;location&quot; : &quot;San Francisco Bay Area&quot;,
&quot;countryId&quot; : &quot;US&quot;
},
&quot;endDate&quot; : &quot;2026-05-18T03:22:00Z&quot;,
&quot;active&quot; : false,
&quot;startDate&quot; : &quot;2026-05-18T03:14:00Z&quot;
}, {
&quot;duration&quot; : 480,
&quot;agent&quot; : {
&quot;agentId&quot; : &quot;281474976710706&quot;,
&quot;agentName&quot; : &quot;thousandeyes-stg-va-254&quot;,
&quot;location&quot; : &quot;San Francisco Bay Area&quot;,
&quot;countryId&quot; : &quot;US&quot;
},
&quot;endDate&quot; : &quot;2026-05-18T03:22:00Z&quot;,
&quot;active&quot; : false,
&quot;startDate&quot; : &quot;2026-05-18T03:14:00Z&quot;
} ],
&quot;startDate&quot; : &quot;2022-07-17T22:00:54Z&quot;
}
"""
expected_response = json.loads(response_body_json)
response = self.api.get_agents_local_problems(
aid=aid,
window=window,
start_date=start_date,
end_date=end_date,
_headers=self.te_headers("get_agents_local_problems"),
)
assert_constructed_model_matches_example_json(response, expected_response)
def test_get_agents_local_problems_error_400(self) -> None:
"""Integration test for get_agents_local_problems error path (HTTP 400)"""
aid = '1234'
window = '12h'
start_date = '2022-07-17T22:00:54Z'
end_date = '2022-07-18T22:00:54Z'
error_body_json = """
{
"instance" : "instance",
"detail" : "detail",
"type" : "type",
"title" : "title",
"errors" : [ {
"code" : "code",
"field" : "field",
"message" : "message"
}, {
"code" : "code",
"field" : "field",
"message" : "message"
} ],
"status" : 0
}
"""
expected_error = json.loads(error_body_json)
with self.assertRaises(
ApiException.exception_class_for_http_status(400)
) as context:
self.api.get_agents_local_problems(
aid=aid,
window=window,
start_date=start_date,
end_date=end_date,
_headers=self.te_headers("get_agents_local_problems", error_status="400"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_get_agents_local_problems_error_401(self) -> None:
"""Integration test for get_agents_local_problems error path (HTTP 401)"""
aid = '1234'
window = '12h'
start_date = '2022-07-17T22:00:54Z'
end_date = '2022-07-18T22:00:54Z'
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_local_problems(
aid=aid,
window=window,
start_date=start_date,
end_date=end_date,
_headers=self.te_headers("get_agents_local_problems", error_status="401"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_get_agents_local_problems_error_403(self) -> None:
"""Integration test for get_agents_local_problems error path (HTTP 403)"""
aid = '1234'
window = '12h'
start_date = '2022-07-17T22:00:54Z'
end_date = '2022-07-18T22:00:54Z'
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_local_problems(
aid=aid,
window=window,
start_date=start_date,
end_date=end_date,
_headers=self.te_headers("get_agents_local_problems", error_status="403"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_get_agents_local_problems_error_404(self) -> None:
"""Integration test for get_agents_local_problems error path (HTTP 404)"""
aid = '1234'
window = '12h'
start_date = '2022-07-17T22:00:54Z'
end_date = '2022-07-18T22:00:54Z'
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_local_problems(
aid=aid,
window=window,
start_date=start_date,
end_date=end_date,
_headers=self.te_headers("get_agents_local_problems", error_status="404"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_get_agents_local_problems_error_429(self) -> None:
"""Integration test for get_agents_local_problems error path (HTTP 429)"""
aid = '1234'
window = '12h'
start_date = '2022-07-17T22:00:54Z'
end_date = '2022-07-18T22:00:54Z'
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_local_problems(
aid=aid,
window=window,
start_date=start_date,
end_date=end_date,
_headers=self.te_headers("get_agents_local_problems", error_status="429"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_get_agents_local_problems_error_500(self) -> None:
"""Integration test for get_agents_local_problems error path (HTTP 500)"""
aid = '1234'
window = '12h'
start_date = '2022-07-17T22:00:54Z'
end_date = '2022-07-18T22:00:54Z'
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_local_problems(
aid=aid,
window=window,
start_date=start_date,
end_date=end_date,
_headers=self.te_headers("get_agents_local_problems", error_status="500"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_get_agents_local_problems_error_502(self) -> None:
"""Integration test for get_agents_local_problems error path (HTTP 502)"""
aid = '1234'
window = '12h'
start_date = '2022-07-17T22:00:54Z'
end_date = '2022-07-18T22:00:54Z'
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_local_problems(
aid=aid,
window=window,
start_date=start_date,
end_date=end_date,
_headers=self.te_headers("get_agents_local_problems", error_status="502"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
if __name__ == '__main__':
unittest.main()

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,7 @@
import sys
from pathlib import Path
_repo_root = Path(__file__).resolve().parents[2]
_core_test_support = _repo_root / "thousandeyes-sdk-core" / "test"
if str(_core_test_support) not in sys.path:
sys.path.insert(0, str(_core_test_support))

View File

@ -0,0 +1,37 @@
# coding: utf-8
"""
Alerts API
**Note:** API operations for the creation or retrieval of API, Page Load, or Web-Transaction alert rules are not available for ThousandEyes for Government instance. You can manage the following alert functionalities on the ThousandEyes platform using the Alerts API: * **Alerts**: Retrieve alert details. Alerts are assigned to tests through alert rules. * **Alert Rules**: Conditions that you configure in order to highlight or be notified of events of interest in your ThousandEyes tests. When an alert rules conditions are met, the associated alert is triggered and the alert becomes active. It remains active until the alert is cleared. Alert rules are reusable across multiple tests.. * **Alert Suppression Windows**: Suppress alerts for tests during periods such as planned maintenance. Windows can be one-time events or recurring events to handle periodic occurrences such as monthly downtime for maintenance. For more information about the alerts, see [Alerts](https://docs.thousandeyes.com/product-documentation/alerts).
Generated by OpenAPI Generator (https://openapi-generator.tech)
Do not edit the class manually.
""" # noqa: E501
import unittest
from thousandeyes_sdk.core.api_client import ApiClient
from thousandeyes_sdk.core.configuration import Configuration
from sdk_test_support.mock_server import ERROR_STATUS_HEADER, OPERATION_ID_HEADER, MockApiServer
from .mock_manifest import OPERATION_MANIFEST
class IntegrationTestBase(unittest.TestCase):
def setUp(self) -> None:
self.server = MockApiServer(OPERATION_MANIFEST)
self.server.start()
configuration = Configuration(host=self.server.base_url, access_token="test-token")
self.api_client = ApiClient(configuration=configuration)
def tearDown(self) -> None:
self.server.stop()
def te_headers(self, operation_id: str, error_status=None):
headers = {OPERATION_ID_HEADER: operation_id}
if error_status is not None:
headers[ERROR_STATUS_HEADER] = error_status
return headers

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,632 @@
# coding: utf-8
"""
Alerts API
**Note:** API operations for the creation or retrieval of API, Page Load, or Web-Transaction alert rules are not available for ThousandEyes for Government instance. You can manage the following alert functionalities on the ThousandEyes platform using the Alerts API: * **Alerts**: Retrieve alert details. Alerts are assigned to tests through alert rules. * **Alert Rules**: Conditions that you configure in order to highlight or be notified of events of interest in your ThousandEyes tests. When an alert rules conditions are met, the associated alert is triggered and the alert becomes active. It remains active until the alert is cleared. Alert rules are reusable across multiple tests.. * **Alert Suppression Windows**: Suppress alerts for tests during periods such as planned maintenance. Windows can be one-time events or recurring events to handle periodic occurrences such as monthly downtime for maintenance. For more information about the alerts, see [Alerts](https://docs.thousandeyes.com/product-documentation/alerts).
Generated by OpenAPI Generator (https://openapi-generator.tech)
Do not edit the class manually.
""" # noqa: E501
import json
import unittest
import thousandeyes_sdk.alerts.models
from thousandeyes_sdk.core.exceptions import ApiException
from thousandeyes_sdk.alerts.api.alerts_api import AlertsApi
from .integration_test_utils import IntegrationTestBase
from .test_utils import assert_constructed_model_matches_example_json
class TestAlertsApiIntegration(IntegrationTestBase):
"""AlertsApi integration test stubs"""
def setUp(self) -> None:
super().setUp()
self.api = AlertsApi(self.api_client)
def test_get_alert_happy_path(self) -> None:
"""Integration test for get_alert success path"""
alert_id = 'e9c3bf02-a48c-4aa8-9e5f-898800d6f569'
aid = '1234'
response_body_json = """
{
&quot;severity&quot; : &quot;major&quot;,
&quot;alertType&quot; : &quot;http-server&quot;,
&quot;endDate&quot; : &quot;2022-07-18T22:00:54Z&quot;,
&quot;_links&quot; : {
&quot;appLink&quot; : {
&quot;hreflang&quot; : &quot;hreflang&quot;,
&quot;templated&quot; : true,
&quot;profile&quot; : &quot;profile&quot;,
&quot;name&quot; : &quot;name&quot;,
&quot;href&quot; : &quot;https://api.thousandeyes.com/v7/link/to/resource/id&quot;,
&quot;type&quot; : &quot;type&quot;,
&quot;deprecation&quot; : &quot;deprecation&quot;,
&quot;title&quot; : &quot;title&quot;
},
&quot;test&quot; : {
&quot;hreflang&quot; : &quot;hreflang&quot;,
&quot;templated&quot; : true,
&quot;profile&quot; : &quot;profile&quot;,
&quot;name&quot; : &quot;name&quot;,
&quot;href&quot; : &quot;https://api.thousandeyes.com/v7/link/to/resource/id&quot;,
&quot;type&quot; : &quot;type&quot;,
&quot;deprecation&quot; : &quot;deprecation&quot;,
&quot;title&quot; : &quot;title&quot;
},
&quot;rule&quot; : {
&quot;hreflang&quot; : &quot;hreflang&quot;,
&quot;templated&quot; : true,
&quot;profile&quot; : &quot;profile&quot;,
&quot;name&quot; : &quot;name&quot;,
&quot;href&quot; : &quot;https://api.thousandeyes.com/v7/link/to/resource/id&quot;,
&quot;type&quot; : &quot;type&quot;,
&quot;deprecation&quot; : &quot;deprecation&quot;,
&quot;title&quot; : &quot;title&quot;
},
&quot;self&quot; : {
&quot;hreflang&quot; : &quot;hreflang&quot;,
&quot;templated&quot; : true,
&quot;profile&quot; : &quot;profile&quot;,
&quot;name&quot; : &quot;name&quot;,
&quot;href&quot; : &quot;https://api.thousandeyes.com/v7/link/to/resource/id&quot;,
&quot;type&quot; : &quot;type&quot;,
&quot;deprecation&quot; : &quot;deprecation&quot;,
&quot;title&quot; : &quot;title&quot;
}
},
&quot;alertSeverity&quot; : &quot;major&quot;,
&quot;duration&quot; : 60,
&quot;violationCount&quot; : 2,
&quot;_embedded&quot; : {
&quot;asn&quot; : {
&quot;name&quot; : &quot;Cisco Webex LLC&quot;,
&quot;id&quot; : &quot;13445&quot;,
&quot;type&quot; : &quot;asn&quot;
}
},
&quot;meta&quot; : {
&quot;version&quot; : 1
},
&quot;details&quot; : [ {
&quot;name&quot; : &quot;Bucharest, Romania&quot;,
&quot;start&quot; : {
&quot;metrics&quot; : &quot;metrics&quot;
},
&quot;end&quot; : {
&quot;metrics&quot; : &quot;metrics&quot;
},
&quot;id&quot; : &quot;3379&quot;,
&quot;state&quot; : &quot;trigger&quot;,
&quot;type&quot; : &quot;cea_agent&quot;
}, {
&quot;name&quot; : &quot;Bucharest, Romania&quot;,
&quot;start&quot; : {
&quot;metrics&quot; : &quot;metrics&quot;
},
&quot;end&quot; : {
&quot;metrics&quot; : &quot;metrics&quot;
},
&quot;id&quot; : &quot;3379&quot;,
&quot;state&quot; : &quot;trigger&quot;,
&quot;type&quot; : &quot;cea_agent&quot;
} ],
&quot;id&quot; : &quot;e9c3bf02-a48c-4aa8-9e5f-898800d6f569&quot;,
&quot;suppressed&quot; : false,
&quot;state&quot; : &quot;trigger&quot;,
&quot;alertState&quot; : &quot;trigger&quot;,
&quot;startDate&quot; : &quot;2022-07-17T22:00:54Z&quot;
}
"""
expected_response = json.loads(response_body_json)
response = self.api.get_alert(
alert_id=alert_id,
aid=aid,
_headers=self.te_headers("get_alert"),
)
assert_constructed_model_matches_example_json(response, expected_response)
def test_get_alert_error_401(self) -> None:
"""Integration test for get_alert error path (HTTP 401)"""
alert_id = 'e9c3bf02-a48c-4aa8-9e5f-898800d6f569'
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_alert(
alert_id=alert_id,
aid=aid,
_headers=self.te_headers("get_alert", error_status="401"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_get_alert_error_403(self) -> None:
"""Integration test for get_alert error path (HTTP 403)"""
alert_id = 'e9c3bf02-a48c-4aa8-9e5f-898800d6f569'
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_alert(
alert_id=alert_id,
aid=aid,
_headers=self.te_headers("get_alert", error_status="403"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_get_alert_error_404(self) -> None:
"""Integration test for get_alert error path (HTTP 404)"""
alert_id = 'e9c3bf02-a48c-4aa8-9e5f-898800d6f569'
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_alert(
alert_id=alert_id,
aid=aid,
_headers=self.te_headers("get_alert", error_status="404"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_get_alert_error_429(self) -> None:
"""Integration test for get_alert error path (HTTP 429)"""
alert_id = 'e9c3bf02-a48c-4aa8-9e5f-898800d6f569'
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_alert(
alert_id=alert_id,
aid=aid,
_headers=self.te_headers("get_alert", error_status="429"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_get_alert_error_500(self) -> None:
"""Integration test for get_alert error path (HTTP 500)"""
alert_id = 'e9c3bf02-a48c-4aa8-9e5f-898800d6f569'
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_alert(
alert_id=alert_id,
aid=aid,
_headers=self.te_headers("get_alert", error_status="500"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_get_alerts_happy_path(self) -> None:
"""Integration test for get_alerts success path"""
aid = '1234'
window = '12h'
start_date = '2022-07-17T22:00:54Z'
end_date = '2022-07-18T22:00:54Z'
max = 5
cursor = 'cursor_example'
state = thousandeyes_sdk.alerts.State()
response_body_json = """
{
&quot;alerts&quot; : [ {
&quot;severity&quot; : &quot;MAJOR&quot;,
&quot;alertType&quot; : &quot;http-server&quot;,
&quot;endDate&quot; : &quot;2022-07-18T22:00:54Z&quot;,
&quot;_links&quot; : {
&quot;appLink&quot; : {
&quot;hreflang&quot; : &quot;hreflang&quot;,
&quot;templated&quot; : true,
&quot;profile&quot; : &quot;profile&quot;,
&quot;name&quot; : &quot;name&quot;,
&quot;href&quot; : &quot;https://api.thousandeyes.com/v7/link/to/resource/id&quot;,
&quot;type&quot; : &quot;type&quot;,
&quot;deprecation&quot; : &quot;deprecation&quot;,
&quot;title&quot; : &quot;title&quot;
},
&quot;test&quot; : {
&quot;hreflang&quot; : &quot;hreflang&quot;,
&quot;templated&quot; : true,
&quot;profile&quot; : &quot;profile&quot;,
&quot;name&quot; : &quot;name&quot;,
&quot;href&quot; : &quot;https://api.thousandeyes.com/v7/link/to/resource/id&quot;,
&quot;type&quot; : &quot;type&quot;,
&quot;deprecation&quot; : &quot;deprecation&quot;,
&quot;title&quot; : &quot;title&quot;
},
&quot;rule&quot; : {
&quot;hreflang&quot; : &quot;hreflang&quot;,
&quot;templated&quot; : true,
&quot;profile&quot; : &quot;profile&quot;,
&quot;name&quot; : &quot;name&quot;,
&quot;href&quot; : &quot;https://api.thousandeyes.com/v7/link/to/resource/id&quot;,
&quot;type&quot; : &quot;type&quot;,
&quot;deprecation&quot; : &quot;deprecation&quot;,
&quot;title&quot; : &quot;title&quot;
},
&quot;self&quot; : {
&quot;hreflang&quot; : &quot;hreflang&quot;,
&quot;templated&quot; : true,
&quot;profile&quot; : &quot;profile&quot;,
&quot;name&quot; : &quot;name&quot;,
&quot;href&quot; : &quot;https://api.thousandeyes.com/v7/link/to/resource/id&quot;,
&quot;type&quot; : &quot;type&quot;,
&quot;deprecation&quot; : &quot;deprecation&quot;,
&quot;title&quot; : &quot;title&quot;
}
},
&quot;apiLinks&quot; : [ {
&quot;key&quot; : &quot;&quot;
}, {
&quot;key&quot; : &quot;&quot;
} ],
&quot;alertSeverity&quot; : &quot;major&quot;,
&quot;dateEnd&quot; : &quot;2020-04-23 13:43:16&quot;,
&quot;duration&quot; : 60,
&quot;violationCount&quot; : 2,
&quot;dateStart&quot; : &quot;2020-04-23 13:43:16&quot;,
&quot;meta&quot; : {
&quot;version&quot; : 1
},
&quot;id&quot; : &quot;e9c3bf02-a48c-4aa8-9e5f-898800d6f569&quot;,
&quot;suppressed&quot; : false,
&quot;alertId&quot; : &quot;e9c3bf02-a48c-4aa8-9e5f-898800d6f569&quot;,
&quot;state&quot; : &quot;ACTIVE&quot;,
&quot;ruleId&quot; : 127094,
&quot;permalink&quot; : &quot;https://app.thousandeyes.com/alerts/list?__a&#x3D;75&amp;alertId&#x3D;2783&amp;agentId&#x3D;12&quot;,
&quot;alertState&quot; : &quot;trigger&quot;,
&quot;startDate&quot; : &quot;2022-07-17T22:00:54Z&quot;,
&quot;alertRuleId&quot; : &quot;127094&quot;
}, {
&quot;severity&quot; : &quot;MAJOR&quot;,
&quot;alertType&quot; : &quot;http-server&quot;,
&quot;endDate&quot; : &quot;2022-07-18T22:00:54Z&quot;,
&quot;_links&quot; : {
&quot;appLink&quot; : {
&quot;hreflang&quot; : &quot;hreflang&quot;,
&quot;templated&quot; : true,
&quot;profile&quot; : &quot;profile&quot;,
&quot;name&quot; : &quot;name&quot;,
&quot;href&quot; : &quot;https://api.thousandeyes.com/v7/link/to/resource/id&quot;,
&quot;type&quot; : &quot;type&quot;,
&quot;deprecation&quot; : &quot;deprecation&quot;,
&quot;title&quot; : &quot;title&quot;
},
&quot;test&quot; : {
&quot;hreflang&quot; : &quot;hreflang&quot;,
&quot;templated&quot; : true,
&quot;profile&quot; : &quot;profile&quot;,
&quot;name&quot; : &quot;name&quot;,
&quot;href&quot; : &quot;https://api.thousandeyes.com/v7/link/to/resource/id&quot;,
&quot;type&quot; : &quot;type&quot;,
&quot;deprecation&quot; : &quot;deprecation&quot;,
&quot;title&quot; : &quot;title&quot;
},
&quot;rule&quot; : {
&quot;hreflang&quot; : &quot;hreflang&quot;,
&quot;templated&quot; : true,
&quot;profile&quot; : &quot;profile&quot;,
&quot;name&quot; : &quot;name&quot;,
&quot;href&quot; : &quot;https://api.thousandeyes.com/v7/link/to/resource/id&quot;,
&quot;type&quot; : &quot;type&quot;,
&quot;deprecation&quot; : &quot;deprecation&quot;,
&quot;title&quot; : &quot;title&quot;
},
&quot;self&quot; : {
&quot;hreflang&quot; : &quot;hreflang&quot;,
&quot;templated&quot; : true,
&quot;profile&quot; : &quot;profile&quot;,
&quot;name&quot; : &quot;name&quot;,
&quot;href&quot; : &quot;https://api.thousandeyes.com/v7/link/to/resource/id&quot;,
&quot;type&quot; : &quot;type&quot;,
&quot;deprecation&quot; : &quot;deprecation&quot;,
&quot;title&quot; : &quot;title&quot;
}
},
&quot;apiLinks&quot; : [ {
&quot;key&quot; : &quot;&quot;
}, {
&quot;key&quot; : &quot;&quot;
} ],
&quot;alertSeverity&quot; : &quot;major&quot;,
&quot;dateEnd&quot; : &quot;2020-04-23 13:43:16&quot;,
&quot;duration&quot; : 60,
&quot;violationCount&quot; : 2,
&quot;dateStart&quot; : &quot;2020-04-23 13:43:16&quot;,
&quot;meta&quot; : {
&quot;version&quot; : 1
},
&quot;id&quot; : &quot;e9c3bf02-a48c-4aa8-9e5f-898800d6f569&quot;,
&quot;suppressed&quot; : false,
&quot;alertId&quot; : &quot;e9c3bf02-a48c-4aa8-9e5f-898800d6f569&quot;,
&quot;state&quot; : &quot;ACTIVE&quot;,
&quot;ruleId&quot; : 127094,
&quot;permalink&quot; : &quot;https://app.thousandeyes.com/alerts/list?__a&#x3D;75&amp;alertId&#x3D;2783&amp;agentId&#x3D;12&quot;,
&quot;alertState&quot; : &quot;trigger&quot;,
&quot;startDate&quot; : &quot;2022-07-17T22:00:54Z&quot;,
&quot;alertRuleId&quot; : &quot;127094&quot;
} ],
&quot;_links&quot; : {
&quot;next&quot; : {
&quot;hreflang&quot; : &quot;hreflang&quot;,
&quot;templated&quot; : true,
&quot;profile&quot; : &quot;profile&quot;,
&quot;name&quot; : &quot;name&quot;,
&quot;href&quot; : &quot;https://api.thousandeyes.com/v7/link/to/resource/id&quot;,
&quot;type&quot; : &quot;type&quot;,
&quot;deprecation&quot; : &quot;deprecation&quot;,
&quot;title&quot; : &quot;title&quot;
},
&quot;previous&quot; : {
&quot;hreflang&quot; : &quot;hreflang&quot;,
&quot;templated&quot; : true,
&quot;profile&quot; : &quot;profile&quot;,
&quot;name&quot; : &quot;name&quot;,
&quot;href&quot; : &quot;https://api.thousandeyes.com/v7/link/to/resource/id&quot;,
&quot;type&quot; : &quot;type&quot;,
&quot;deprecation&quot; : &quot;deprecation&quot;,
&quot;title&quot; : &quot;title&quot;
},
&quot;self&quot; : {
&quot;hreflang&quot; : &quot;hreflang&quot;,
&quot;templated&quot; : true,
&quot;profile&quot; : &quot;profile&quot;,
&quot;name&quot; : &quot;name&quot;,
&quot;href&quot; : &quot;https://api.thousandeyes.com/v7/link/to/resource/id&quot;,
&quot;type&quot; : &quot;type&quot;,
&quot;deprecation&quot; : &quot;deprecation&quot;,
&quot;title&quot; : &quot;title&quot;
}
}
}
"""
expected_response = json.loads(response_body_json)
response = self.api.get_alerts(
aid=aid,
window=window,
start_date=start_date,
end_date=end_date,
max=max,
cursor=cursor,
state=state,
_headers=self.te_headers("get_alerts"),
)
assert_constructed_model_matches_example_json(response, expected_response)
def test_get_alerts_error_401(self) -> None:
"""Integration test for get_alerts error path (HTTP 401)"""
aid = '1234'
window = '12h'
start_date = '2022-07-17T22:00:54Z'
end_date = '2022-07-18T22:00:54Z'
max = 5
cursor = 'cursor_example'
state = thousandeyes_sdk.alerts.State()
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_alerts(
aid=aid,
window=window,
start_date=start_date,
end_date=end_date,
max=max,
cursor=cursor,
state=state,
_headers=self.te_headers("get_alerts", error_status="401"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_get_alerts_error_403(self) -> None:
"""Integration test for get_alerts error path (HTTP 403)"""
aid = '1234'
window = '12h'
start_date = '2022-07-17T22:00:54Z'
end_date = '2022-07-18T22:00:54Z'
max = 5
cursor = 'cursor_example'
state = thousandeyes_sdk.alerts.State()
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_alerts(
aid=aid,
window=window,
start_date=start_date,
end_date=end_date,
max=max,
cursor=cursor,
state=state,
_headers=self.te_headers("get_alerts", error_status="403"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_get_alerts_error_404(self) -> None:
"""Integration test for get_alerts error path (HTTP 404)"""
aid = '1234'
window = '12h'
start_date = '2022-07-17T22:00:54Z'
end_date = '2022-07-18T22:00:54Z'
max = 5
cursor = 'cursor_example'
state = thousandeyes_sdk.alerts.State()
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_alerts(
aid=aid,
window=window,
start_date=start_date,
end_date=end_date,
max=max,
cursor=cursor,
state=state,
_headers=self.te_headers("get_alerts", error_status="404"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_get_alerts_error_429(self) -> None:
"""Integration test for get_alerts error path (HTTP 429)"""
aid = '1234'
window = '12h'
start_date = '2022-07-17T22:00:54Z'
end_date = '2022-07-18T22:00:54Z'
max = 5
cursor = 'cursor_example'
state = thousandeyes_sdk.alerts.State()
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_alerts(
aid=aid,
window=window,
start_date=start_date,
end_date=end_date,
max=max,
cursor=cursor,
state=state,
_headers=self.te_headers("get_alerts", error_status="429"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_get_alerts_error_500(self) -> None:
"""Integration test for get_alerts error path (HTTP 500)"""
aid = '1234'
window = '12h'
start_date = '2022-07-17T22:00:54Z'
end_date = '2022-07-18T22:00:54Z'
max = 5
cursor = 'cursor_example'
state = thousandeyes_sdk.alerts.State()
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_alerts(
aid=aid,
window=window,
start_date=start_date,
end_date=end_date,
max=max,
cursor=cursor,
state=state,
_headers=self.te_headers("get_alerts", error_status="500"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
if __name__ == '__main__':
unittest.main()

View File

@ -0,0 +1,7 @@
import sys
from pathlib import Path
_repo_root = Path(__file__).resolve().parents[2]
_core_test_support = _repo_root / "thousandeyes-sdk-core" / "test"
if str(_core_test_support) not in sys.path:
sys.path.insert(0, str(_core_test_support))

View File

@ -0,0 +1,37 @@
# coding: utf-8
"""
Integrations API
**Note:** The Webhook Operations APIs are not available for ThousandEyes for Government instance. Manage connectors and operations.
Generated by OpenAPI Generator (https://openapi-generator.tech)
Do not edit the class manually.
""" # noqa: E501
import unittest
from thousandeyes_sdk.core.api_client import ApiClient
from thousandeyes_sdk.core.configuration import Configuration
from sdk_test_support.mock_server import ERROR_STATUS_HEADER, OPERATION_ID_HEADER, MockApiServer
from .mock_manifest import OPERATION_MANIFEST
class IntegrationTestBase(unittest.TestCase):
def setUp(self) -> None:
self.server = MockApiServer(OPERATION_MANIFEST)
self.server.start()
configuration = Configuration(host=self.server.base_url, access_token="test-token")
self.api_client = ApiClient(configuration=configuration)
def tearDown(self) -> None:
self.server.stop()
def te_headers(self, operation_id: str, error_status=None):
headers = {OPERATION_ID_HEADER: operation_id}
if error_status is not None:
headers[ERROR_STATUS_HEADER] = error_status
return headers

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,210 @@
# coding: utf-8
"""
Integrations API
**Note:** The Webhook Operations APIs are not available for ThousandEyes for Government instance. Manage connectors and operations.
Generated by OpenAPI Generator (https://openapi-generator.tech)
Do not edit the class manually.
""" # noqa: E501
import json
import unittest
import thousandeyes_sdk.connectors.models
from thousandeyes_sdk.core.exceptions import ApiException
from thousandeyes_sdk.connectors.api.operation_connectors_api import OperationConnectorsApi
from .integration_test_utils import IntegrationTestBase
from .test_utils import assert_constructed_model_matches_example_json
class TestOperationConnectorsApiIntegration(IntegrationTestBase):
"""OperationConnectorsApi integration test stubs"""
def setUp(self) -> None:
super().setUp()
self.api = OperationConnectorsApi(self.api_client)
def test_get_operation_connectors_happy_path(self) -> None:
"""Integration test for get_operation_connectors success path"""
type = 'webhooks'
id = 'cb1b8033-ea2d-4e9b-a920-fe87850693cf'
aid = '1234'
response_body_json = """
{
&quot;_links&quot; : {
&quot;self&quot; : {
&quot;hreflang&quot; : &quot;hreflang&quot;,
&quot;templated&quot; : true,
&quot;profile&quot; : &quot;profile&quot;,
&quot;name&quot; : &quot;name&quot;,
&quot;href&quot; : &quot;https://api.thousandeyes.com/v7/link/to/resource/id&quot;,
&quot;type&quot; : &quot;type&quot;,
&quot;deprecation&quot; : &quot;deprecation&quot;,
&quot;title&quot; : &quot;title&quot;
}
},
&quot;items&quot; : [ &quot;ca39314d-eb4f-496f-9435-b5d20b1bfbff&quot;, &quot;ca39314d-eb4f-496f-9435-b5d20b1bfbff&quot; ]
}
"""
expected_response = json.loads(response_body_json)
response = self.api.get_operation_connectors(
type=type,
id=id,
aid=aid,
_headers=self.te_headers("get_operation_connectors"),
)
assert_constructed_model_matches_example_json(response, expected_response)
def test_get_operation_connectors_error_400(self) -> None:
"""Integration test for get_operation_connectors error path (HTTP 400)"""
type = 'webhooks'
id = 'cb1b8033-ea2d-4e9b-a920-fe87850693cf'
aid = '1234'
error_body_json = """
{
"instance" : "instance",
"detail" : "detail",
"type" : "type",
"title" : "title",
"errors" : [ {
"code" : "code",
"field" : "field",
"message" : "message"
}, {
"code" : "code",
"field" : "field",
"message" : "message"
} ],
"status" : 0
}
"""
expected_error = json.loads(error_body_json)
with self.assertRaises(
ApiException.exception_class_for_http_status(400)
) as context:
self.api.get_operation_connectors(
type=type,
id=id,
aid=aid,
_headers=self.te_headers("get_operation_connectors", error_status="400"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_get_operation_connectors_error_401(self) -> None:
"""Integration test for get_operation_connectors error path (HTTP 401)"""
type = 'webhooks'
id = 'cb1b8033-ea2d-4e9b-a920-fe87850693cf'
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_operation_connectors(
type=type,
id=id,
aid=aid,
_headers=self.te_headers("get_operation_connectors", error_status="401"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_get_operation_connectors_error_403(self) -> None:
"""Integration test for get_operation_connectors error path (HTTP 403)"""
type = 'webhooks'
id = 'cb1b8033-ea2d-4e9b-a920-fe87850693cf'
aid = '1234'
error_body_json = """
{
"instance" : "instance",
"detail" : "detail",
"type" : "type",
"title" : "title",
"status" : 6
}
"""
expected_error = json.loads(error_body_json)
with self.assertRaises(
ApiException.exception_class_for_http_status(403)
) as context:
self.api.get_operation_connectors(
type=type,
id=id,
aid=aid,
_headers=self.te_headers("get_operation_connectors", error_status="403"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_get_operation_connectors_error_404(self) -> None:
"""Integration test for get_operation_connectors error path (HTTP 404)"""
type = 'webhooks'
id = 'cb1b8033-ea2d-4e9b-a920-fe87850693cf'
aid = '1234'
error_body_json = """
{
"instance" : "instance",
"detail" : "detail",
"type" : "type",
"title" : "title",
"status" : 6
}
"""
expected_error = json.loads(error_body_json)
with self.assertRaises(
ApiException.exception_class_for_http_status(404)
) as context:
self.api.get_operation_connectors(
type=type,
id=id,
aid=aid,
_headers=self.te_headers("get_operation_connectors", error_status="404"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_get_operation_connectors_error_500(self) -> None:
"""Integration test for get_operation_connectors error path (HTTP 500)"""
type = 'webhooks'
id = 'cb1b8033-ea2d-4e9b-a920-fe87850693cf'
aid = '1234'
error_body_json = """
{
"instance" : "instance",
"detail" : "detail",
"type" : "type",
"title" : "title",
"status" : 6
}
"""
expected_error = json.loads(error_body_json)
with self.assertRaises(
ApiException.exception_class_for_http_status(500)
) as context:
self.api.get_operation_connectors(
type=type,
id=id,
aid=aid,
_headers=self.te_headers("get_operation_connectors", error_status="500"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
if __name__ == '__main__':
unittest.main()

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,7 @@
import sys
from pathlib import Path
_repo_root = Path(__file__).resolve().parents[2]
_core_test_support = _repo_root / "thousandeyes-sdk-core" / "test"
if str(_core_test_support) not in sys.path:
sys.path.insert(0, str(_core_test_support))

View File

@ -0,0 +1,37 @@
# coding: utf-8
"""
Credentials API
Manage credentials for transaction tests using the Credentials API. The following permissions are required to access Credentials API operations: * `Settings Tests Read` for read operations. * `Settings Tests Update` for write operations. * `View sensitive data in web transaction scripts` to view the encrypted value property of credentials. * `Settings Tests Create Transaction (Tx) Tests` to create credentials. For more information about credentials, see [Working With Secure Credentials](https://docs.thousandeyes.com/product-documentation/browser-synthetics/transaction-tests/getting-started/working-with-secure-credentials).
Generated by OpenAPI Generator (https://openapi-generator.tech)
Do not edit the class manually.
""" # noqa: E501
import unittest
from thousandeyes_sdk.core.api_client import ApiClient
from thousandeyes_sdk.core.configuration import Configuration
from sdk_test_support.mock_server import ERROR_STATUS_HEADER, OPERATION_ID_HEADER, MockApiServer
from .mock_manifest import OPERATION_MANIFEST
class IntegrationTestBase(unittest.TestCase):
def setUp(self) -> None:
self.server = MockApiServer(OPERATION_MANIFEST)
self.server.start()
configuration = Configuration(host=self.server.base_url, access_token="test-token")
self.api_client = ApiClient(configuration=configuration)
def tearDown(self) -> None:
self.server.stop()
def te_headers(self, operation_id: str, error_status=None):
headers = {OPERATION_ID_HEADER: operation_id}
if error_status is not None:
headers[ERROR_STATUS_HEADER] = error_status
return headers

View File

@ -0,0 +1,604 @@
# coding: utf-8
"""
Credentials API
Manage credentials for transaction tests using the Credentials API. The following permissions are required to access Credentials API operations: * `Settings Tests Read` for read operations. * `Settings Tests Update` for write operations. * `View sensitive data in web transaction scripts` to view the encrypted value property of credentials. * `Settings Tests Create Transaction (Tx) Tests` to create credentials. For more information about credentials, see [Working With Secure Credentials](https://docs.thousandeyes.com/product-documentation/browser-synthetics/transaction-tests/getting-started/working-with-secure-credentials).
Generated by OpenAPI Generator (https://openapi-generator.tech)
Do not edit the class manually.
""" # noqa: E501
import json
from sdk_test_support.mock_server_types import ErrorResponseExpectation, OperationExpectation
OPERATION_MANIFEST = {
"create_credential": OperationExpectation(
operation_id="create_credential",
method="POST",
path="/credentials",
path_param_examples={
},
success_status=201,
success_body=json.loads("""
{
"_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"
}
},
"name" : "Example Credential",
"id" : "3247"
}
"""),
success_content_type="application/json",
request_body_example=json.loads("""
{
"name" : "Example Credential 1",
"value" : "Example Credential 1 Password"
}
"""),
error_responses={
"400": ErrorResponseExpectation(
status=400,
body=json.loads("""
{
"instance" : "instance",
"detail" : "detail",
"type" : "type",
"title" : "title",
"errors" : [ {
"code" : "code",
"field" : "field",
"message" : "message"
}, {
"code" : "code",
"field" : "field",
"message" : "message"
} ],
"status" : 0
}"""),
content_type="application/json",
),
"401": ErrorResponseExpectation(
status=401,
body=json.loads("""
{
"error_description" : "Invalid access token",
"error" : "invalid_token"
}"""),
content_type="application/json",
),
"403": ErrorResponseExpectation(
status=403,
body=json.loads("""
{
"instance" : "instance",
"detail" : "detail",
"type" : "type",
"title" : "title",
"status" : 0
}"""),
content_type="application/json",
),
"404": ErrorResponseExpectation(
status=404,
body=json.loads("""
{
"instance" : "instance",
"detail" : "detail",
"type" : "type",
"title" : "title",
"status" : 0
}"""),
content_type="application/json",
),
"429": ErrorResponseExpectation(
status=429,
body=json.loads("""
{
"instance" : "instance",
"detail" : "detail",
"type" : "type",
"title" : "title",
"status" : 0
}"""),
content_type="application/json",
),
"500": ErrorResponseExpectation(
status=500,
body=json.loads("""
{
"instance" : "instance",
"detail" : "detail",
"type" : "type",
"title" : "title",
"status" : 0
}"""),
content_type="application/json",
),
},
),
"delete_credential": OperationExpectation(
operation_id="delete_credential",
method="DELETE",
path="/credentials/{id}",
path_param_examples={
"id": '3247',
},
success_status=204,
success_body=None,
success_content_type="application/json",
request_body_example=None,
error_responses={
"401": ErrorResponseExpectation(
status=401,
body=json.loads("""
{
"error_description" : "Invalid access token",
"error" : "invalid_token"
}"""),
content_type="application/json",
),
"403": ErrorResponseExpectation(
status=403,
body=json.loads("""
{
"instance" : "instance",
"detail" : "detail",
"type" : "type",
"title" : "title",
"status" : 0
}"""),
content_type="application/json",
),
"404": ErrorResponseExpectation(
status=404,
body=json.loads("""
{
"instance" : "instance",
"detail" : "detail",
"type" : "type",
"title" : "title",
"status" : 0
}"""),
content_type="application/json",
),
"429": ErrorResponseExpectation(
status=429,
body=json.loads("""
{
"instance" : "instance",
"detail" : "detail",
"type" : "type",
"title" : "title",
"status" : 0
}"""),
content_type="application/json",
),
"500": ErrorResponseExpectation(
status=500,
body=json.loads("""
{
"instance" : "instance",
"detail" : "detail",
"type" : "type",
"title" : "title",
"status" : 0
}"""),
content_type="application/json",
),
},
),
"get_credential": OperationExpectation(
operation_id="get_credential",
method="GET",
path="/credentials/{id}",
path_param_examples={
"id": '3247',
},
success_status=200,
success_body=json.loads("""
{
"_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"
}
},
"name" : "Example Credential",
"id" : "3247",
"value" : "rwhR12uDm1Im47p5IVXgzz4ORgC7m48ajzzeWVUt"
}
"""),
success_content_type="application/json",
request_body_example=None,
error_responses={
"400": ErrorResponseExpectation(
status=400,
body=json.loads("""
{
"instance" : "instance",
"detail" : "detail",
"type" : "type",
"title" : "title",
"errors" : [ {
"code" : "code",
"field" : "field",
"message" : "message"
}, {
"code" : "code",
"field" : "field",
"message" : "message"
} ],
"status" : 0
}"""),
content_type="application/json",
),
"401": ErrorResponseExpectation(
status=401,
body=json.loads("""
{
"error_description" : "Invalid access token",
"error" : "invalid_token"
}"""),
content_type="application/json",
),
"403": ErrorResponseExpectation(
status=403,
body=json.loads("""
{
"instance" : "instance",
"detail" : "detail",
"type" : "type",
"title" : "title",
"status" : 0
}"""),
content_type="application/json",
),
"404": ErrorResponseExpectation(
status=404,
body=json.loads("""
{
"instance" : "instance",
"detail" : "detail",
"type" : "type",
"title" : "title",
"status" : 0
}"""),
content_type="application/json",
),
"429": ErrorResponseExpectation(
status=429,
body=json.loads("""
{
"instance" : "instance",
"detail" : "detail",
"type" : "type",
"title" : "title",
"status" : 0
}"""),
content_type="application/json",
),
"500": ErrorResponseExpectation(
status=500,
body=json.loads("""
{
"instance" : "instance",
"detail" : "detail",
"type" : "type",
"title" : "title",
"status" : 0
}"""),
content_type="application/json",
),
},
),
"get_credentials": OperationExpectation(
operation_id="get_credentials",
method="GET",
path="/credentials",
path_param_examples={
},
success_status=200,
success_body=json.loads("""
{
"credentials" : [ {
"_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"
}
},
"name" : "Example Credential",
"id" : "3247",
"value" : "rwhR12uDm1Im47p5IVXgzz4ORgC7m48ajzzeWVUt"
}, {
"_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"
}
},
"name" : "Example Credential",
"id" : "3247",
"value" : "rwhR12uDm1Im47p5IVXgzz4ORgC7m48ajzzeWVUt"
} ],
"_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"
}
}
}
"""),
success_content_type="application/json",
request_body_example=None,
error_responses={
"401": ErrorResponseExpectation(
status=401,
body=json.loads("""
{
"error_description" : "Invalid access token",
"error" : "invalid_token"
}"""),
content_type="application/json",
),
"403": ErrorResponseExpectation(
status=403,
body=json.loads("""
{
"instance" : "instance",
"detail" : "detail",
"type" : "type",
"title" : "title",
"status" : 0
}"""),
content_type="application/json",
),
"404": ErrorResponseExpectation(
status=404,
body=json.loads("""
{
"instance" : "instance",
"detail" : "detail",
"type" : "type",
"title" : "title",
"status" : 0
}"""),
content_type="application/json",
),
"429": ErrorResponseExpectation(
status=429,
body=json.loads("""
{
"instance" : "instance",
"detail" : "detail",
"type" : "type",
"title" : "title",
"status" : 0
}"""),
content_type="application/json",
),
"500": ErrorResponseExpectation(
status=500,
body=json.loads("""
{
"instance" : "instance",
"detail" : "detail",
"type" : "type",
"title" : "title",
"status" : 0
}"""),
content_type="application/json",
),
},
),
"update_credential": OperationExpectation(
operation_id="update_credential",
method="PUT",
path="/credentials/{id}",
path_param_examples={
"id": '3247',
},
success_status=200,
success_body=json.loads("""
{
"_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"
}
},
"name" : "Example Credential",
"id" : "3247"
}
"""),
success_content_type="application/json",
request_body_example=json.loads("""
{
"name" : "Example Credential 1",
"value" : "Example Credential 1 Password"
}
"""),
error_responses={
"400": ErrorResponseExpectation(
status=400,
body=json.loads("""
{
"instance" : "instance",
"detail" : "detail",
"type" : "type",
"title" : "title",
"errors" : [ {
"code" : "code",
"field" : "field",
"message" : "message"
}, {
"code" : "code",
"field" : "field",
"message" : "message"
} ],
"status" : 0
}"""),
content_type="application/json",
),
"401": ErrorResponseExpectation(
status=401,
body=json.loads("""
{
"error_description" : "Invalid access token",
"error" : "invalid_token"
}"""),
content_type="application/json",
),
"403": ErrorResponseExpectation(
status=403,
body=json.loads("""
{
"instance" : "instance",
"detail" : "detail",
"type" : "type",
"title" : "title",
"status" : 0
}"""),
content_type="application/json",
),
"404": ErrorResponseExpectation(
status=404,
body=json.loads("""
{
"instance" : "instance",
"detail" : "detail",
"type" : "type",
"title" : "title",
"status" : 0
}"""),
content_type="application/json",
),
"429": ErrorResponseExpectation(
status=429,
body=json.loads("""
{
"instance" : "instance",
"detail" : "detail",
"type" : "type",
"title" : "title",
"status" : 0
}"""),
content_type="application/json",
),
"500": ErrorResponseExpectation(
status=500,
body=json.loads("""
{
"instance" : "instance",
"detail" : "detail",
"type" : "type",
"title" : "title",
"status" : 0
}"""),
content_type="application/json",
),
},
),
}

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,7 @@
import sys
from pathlib import Path
_repo_root = Path(__file__).resolve().parents[2]
_core_test_support = _repo_root / "thousandeyes-sdk-core" / "test"
if str(_core_test_support) not in sys.path:
sys.path.insert(0, str(_core_test_support))

View File

@ -0,0 +1,37 @@
# coding: utf-8
"""
Dashboards API
Manage ThousandEyes Dashboards.
Generated by OpenAPI Generator (https://openapi-generator.tech)
Do not edit the class manually.
""" # noqa: E501
import unittest
from thousandeyes_sdk.core.api_client import ApiClient
from thousandeyes_sdk.core.configuration import Configuration
from sdk_test_support.mock_server import ERROR_STATUS_HEADER, OPERATION_ID_HEADER, MockApiServer
from .mock_manifest import OPERATION_MANIFEST
class IntegrationTestBase(unittest.TestCase):
def setUp(self) -> None:
self.server = MockApiServer(OPERATION_MANIFEST)
self.server.start()
configuration = Configuration(host=self.server.base_url, access_token="test-token")
self.api_client = ApiClient(configuration=configuration)
def tearDown(self) -> None:
self.server.stop()
def te_headers(self, operation_id: str, error_status=None):
headers = {OPERATION_ID_HEADER: operation_id}
if error_status is not None:
headers[ERROR_STATUS_HEADER] = error_status
return headers

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,7 @@
import sys
from pathlib import Path
_repo_root = Path(__file__).resolve().parents[2]
_core_test_support = _repo_root / "thousandeyes-sdk-core" / "test"
if str(_core_test_support) not in sys.path:
sys.path.insert(0, str(_core_test_support))

View File

@ -0,0 +1,37 @@
# coding: utf-8
"""
Emulation API
**Note:** All Emulation APIs are not available for ThousandEyes for Government instance. The Emulation API facilitates the retrieval of user-agent strings for HTTP, pageload, and transaction tests. It also enables the retrieval and addition of emulated devices for pageload and transaction tests. To access Emulation API operations, the following permissions are required: * `Settings Tests Read` for read operations. * `Settings Tests Update` for write operations.
Generated by OpenAPI Generator (https://openapi-generator.tech)
Do not edit the class manually.
""" # noqa: E501
import unittest
from thousandeyes_sdk.core.api_client import ApiClient
from thousandeyes_sdk.core.configuration import Configuration
from sdk_test_support.mock_server import ERROR_STATUS_HEADER, OPERATION_ID_HEADER, MockApiServer
from .mock_manifest import OPERATION_MANIFEST
class IntegrationTestBase(unittest.TestCase):
def setUp(self) -> None:
self.server = MockApiServer(OPERATION_MANIFEST)
self.server.start()
configuration = Configuration(host=self.server.base_url, access_token="test-token")
self.api_client = ApiClient(configuration=configuration)
def tearDown(self) -> None:
self.server.stop()
def te_headers(self, operation_id: str, error_status=None):
headers = {OPERATION_ID_HEADER: operation_id}
if error_status is not None:
headers[ERROR_STATUS_HEADER] = error_status
return headers

View File

@ -0,0 +1,340 @@
# coding: utf-8
"""
Emulation API
**Note:** All Emulation APIs are not available for ThousandEyes for Government instance. The Emulation API facilitates the retrieval of user-agent strings for HTTP, pageload, and transaction tests. It also enables the retrieval and addition of emulated devices for pageload and transaction tests. To access Emulation API operations, the following permissions are required: * `Settings Tests Read` for read operations. * `Settings Tests Update` for write operations.
Generated by OpenAPI Generator (https://openapi-generator.tech)
Do not edit the class manually.
""" # noqa: E501
import json
from sdk_test_support.mock_server_types import ErrorResponseExpectation, OperationExpectation
OPERATION_MANIFEST = {
"create_emulated_device": OperationExpectation(
operation_id="create_emulated_device",
method="POST",
path="/emulated-devices",
path_param_examples={
},
success_status=201,
success_body=json.loads("""
{
"availableUserAgents" : [ "Mozilla/5.0 (Linux; Android 6.0; Nexus 5 Build/MRA58N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.5993.70 Mobile Safari/537.36", "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.5993.70 Safari/537.36" ],
"width" : 1024,
"name" : "iPad Pro 12.9-in",
"codeName" : "IPAD_PRO_12_9",
"id" : "11",
"category" : "desktop",
"defaultUserAgentTemplate" : "Mozilla/5.0 (Android 4.4; Tablet; rv:70.0) Gecko/70.0 Firefox/70.0",
"height" : 768
}
"""),
success_content_type="application/json",
request_body_example=json.loads("""
{
"width" : 1024,
"category" : "desktop",
"height" : 768
}
"""),
error_responses={
"401": ErrorResponseExpectation(
status=401,
body=json.loads("""
{
"error_description" : "Invalid access token",
"error" : "invalid_token"
}"""),
content_type="application/json",
),
"403": ErrorResponseExpectation(
status=403,
body=json.loads("""
{
"instance" : "instance",
"detail" : "detail",
"type" : "type",
"title" : "title",
"status" : 0
}"""),
content_type="application/json",
),
"404": ErrorResponseExpectation(
status=404,
body=json.loads("""
{
"instance" : "instance",
"detail" : "detail",
"type" : "type",
"title" : "title",
"status" : 0
}"""),
content_type="application/json",
),
"429": ErrorResponseExpectation(
status=429,
body=json.loads("""
{
"instance" : "instance",
"detail" : "detail",
"type" : "type",
"title" : "title",
"status" : 0
}"""),
content_type="application/json",
),
"500": ErrorResponseExpectation(
status=500,
body=json.loads("""
{
"instance" : "instance",
"detail" : "detail",
"type" : "type",
"title" : "title",
"status" : 0
}"""),
content_type="application/json",
),
},
),
"get_emulated_devices": OperationExpectation(
operation_id="get_emulated_devices",
method="GET",
path="/emulated-devices",
path_param_examples={
},
success_status=200,
success_body=json.loads("""
{
"emulatedDevices" : [ {
"availableUserAgents" : [ "Mozilla/5.0 (Linux; Android 6.0; Nexus 5 Build/MRA58N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.5993.70 Mobile Safari/537.36", "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.5993.70 Safari/537.36" ],
"width" : 1024,
"name" : "iPad Pro 12.9-in",
"codeName" : "IPAD_PRO_12_9",
"id" : "11",
"category" : "desktop",
"defaultUserAgentTemplate" : "Mozilla/5.0 (Android 4.4; Tablet; rv:70.0) Gecko/70.0 Firefox/70.0",
"height" : 768
}, {
"availableUserAgents" : [ "Mozilla/5.0 (Linux; Android 6.0; Nexus 5 Build/MRA58N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.5993.70 Mobile Safari/537.36", "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.5993.70 Safari/537.36" ],
"width" : 1024,
"name" : "iPad Pro 12.9-in",
"codeName" : "IPAD_PRO_12_9",
"id" : "11",
"category" : "desktop",
"defaultUserAgentTemplate" : "Mozilla/5.0 (Android 4.4; Tablet; rv:70.0) Gecko/70.0 Firefox/70.0",
"height" : 768
} ],
"_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"
}
}
}
"""),
success_content_type="application/json",
request_body_example=None,
error_responses={
"401": ErrorResponseExpectation(
status=401,
body=json.loads("""
{
"error_description" : "Invalid access token",
"error" : "invalid_token"
}"""),
content_type="application/json",
),
"403": ErrorResponseExpectation(
status=403,
body=json.loads("""
{
"instance" : "instance",
"detail" : "detail",
"type" : "type",
"title" : "title",
"status" : 0
}"""),
content_type="application/json",
),
"404": ErrorResponseExpectation(
status=404,
body=json.loads("""
{
"instance" : "instance",
"detail" : "detail",
"type" : "type",
"title" : "title",
"status" : 0
}"""),
content_type="application/json",
),
"429": ErrorResponseExpectation(
status=429,
body=json.loads("""
{
"instance" : "instance",
"detail" : "detail",
"type" : "type",
"title" : "title",
"status" : 0
}"""),
content_type="application/json",
),
"500": ErrorResponseExpectation(
status=500,
body=json.loads("""
{
"instance" : "instance",
"detail" : "detail",
"type" : "type",
"title" : "title",
"status" : 0
}"""),
content_type="application/json",
),
},
),
"get_user_agents": OperationExpectation(
operation_id="get_user_agents",
method="GET",
path="/user-agents",
path_param_examples={
},
success_status=200,
success_body=json.loads("""
{
"_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"
}
},
"userAgents" : [ {
"os" : "Windows",
"browser" : "Firefox",
"value" : "Mozilla/5.0 (Linux; Android 6.0; Nexus 5 Build/MRA58N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.5993.70 Mobile Safari/537.36"
}, {
"os" : "Windows",
"browser" : "Firefox",
"value" : "Mozilla/5.0 (Linux; Android 6.0; Nexus 5 Build/MRA58N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.5993.70 Mobile Safari/537.36"
} ]
}
"""),
success_content_type="application/json",
request_body_example=None,
error_responses={
"401": ErrorResponseExpectation(
status=401,
body=json.loads("""
{
"error_description" : "Invalid access token",
"error" : "invalid_token"
}"""),
content_type="application/json",
),
"403": ErrorResponseExpectation(
status=403,
body=json.loads("""
{
"instance" : "instance",
"detail" : "detail",
"type" : "type",
"title" : "title",
"status" : 0
}"""),
content_type="application/json",
),
"404": ErrorResponseExpectation(
status=404,
body=json.loads("""
{
"instance" : "instance",
"detail" : "detail",
"type" : "type",
"title" : "title",
"status" : 0
}"""),
content_type="application/json",
),
"429": ErrorResponseExpectation(
status=429,
body=json.loads("""
{
"instance" : "instance",
"detail" : "detail",
"type" : "type",
"title" : "title",
"status" : 0
}"""),
content_type="application/json",
),
"500": ErrorResponseExpectation(
status=500,
body=json.loads("""
{
"instance" : "instance",
"detail" : "detail",
"type" : "type",
"title" : "title",
"status" : 0
}"""),
content_type="application/json",
),
},
),
}

View File

@ -0,0 +1,548 @@
# coding: utf-8
"""
Emulation API
**Note:** All Emulation APIs are not available for ThousandEyes for Government instance. The Emulation API facilitates the retrieval of user-agent strings for HTTP, pageload, and transaction tests. It also enables the retrieval and addition of emulated devices for pageload and transaction tests. To access Emulation API operations, the following permissions are required: * `Settings Tests Read` for read operations. * `Settings Tests Update` for write operations.
Generated by OpenAPI Generator (https://openapi-generator.tech)
Do not edit the class manually.
""" # noqa: E501
import json
import unittest
import thousandeyes_sdk.emulation.models
from thousandeyes_sdk.core.exceptions import ApiException
from thousandeyes_sdk.emulation.api.emulation_api import EmulationApi
from .integration_test_utils import IntegrationTestBase
from .test_utils import assert_constructed_model_matches_example_json
class TestEmulationApiIntegration(IntegrationTestBase):
"""EmulationApi integration test stubs"""
def setUp(self) -> None:
super().setUp()
self.api = EmulationApi(self.api_client)
def test_create_emulated_device_happy_path(self) -> None:
"""Integration test for create_emulated_device success path"""
request_body_json = """
{
"width" : 1024,
"category" : "desktop",
"height" : 768
}
"""
emulated_device = thousandeyes_sdk.emulation.models.EmulatedDevice.from_json(request_body_json)
aid = '1234'
response_body_json = """
{
&quot;availableUserAgents&quot; : [ &quot;Mozilla/5.0 (Linux; Android 6.0; Nexus 5 Build/MRA58N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.5993.70 Mobile Safari/537.36&quot;, &quot;Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.5993.70 Safari/537.36&quot; ],
&quot;width&quot; : 1024,
&quot;name&quot; : &quot;iPad Pro 12.9-in&quot;,
&quot;codeName&quot; : &quot;IPAD_PRO_12_9&quot;,
&quot;id&quot; : &quot;11&quot;,
&quot;category&quot; : &quot;desktop&quot;,
&quot;defaultUserAgentTemplate&quot; : &quot;Mozilla/5.0 (Android 4.4; Tablet; rv:70.0) Gecko/70.0 Firefox/70.0&quot;,
&quot;height&quot; : 768
}
"""
expected_response = json.loads(response_body_json)
response = self.api.create_emulated_device(
emulated_device=emulated_device,
aid=aid,
_headers=self.te_headers("create_emulated_device"),
)
assert_constructed_model_matches_example_json(response, expected_response)
def test_create_emulated_device_error_401(self) -> None:
"""Integration test for create_emulated_device error path (HTTP 401)"""
request_body_json = """
{
"width" : 1024,
"category" : "desktop",
"height" : 768
}
"""
emulated_device = thousandeyes_sdk.emulation.models.EmulatedDevice.from_json(request_body_json)
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.create_emulated_device(
emulated_device=emulated_device,
aid=aid,
_headers=self.te_headers("create_emulated_device", error_status="401"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_create_emulated_device_error_403(self) -> None:
"""Integration test for create_emulated_device error path (HTTP 403)"""
request_body_json = """
{
"width" : 1024,
"category" : "desktop",
"height" : 768
}
"""
emulated_device = thousandeyes_sdk.emulation.models.EmulatedDevice.from_json(request_body_json)
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.create_emulated_device(
emulated_device=emulated_device,
aid=aid,
_headers=self.te_headers("create_emulated_device", error_status="403"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_create_emulated_device_error_404(self) -> None:
"""Integration test for create_emulated_device error path (HTTP 404)"""
request_body_json = """
{
"width" : 1024,
"category" : "desktop",
"height" : 768
}
"""
emulated_device = thousandeyes_sdk.emulation.models.EmulatedDevice.from_json(request_body_json)
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.create_emulated_device(
emulated_device=emulated_device,
aid=aid,
_headers=self.te_headers("create_emulated_device", error_status="404"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_create_emulated_device_error_429(self) -> None:
"""Integration test for create_emulated_device error path (HTTP 429)"""
request_body_json = """
{
"width" : 1024,
"category" : "desktop",
"height" : 768
}
"""
emulated_device = thousandeyes_sdk.emulation.models.EmulatedDevice.from_json(request_body_json)
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.create_emulated_device(
emulated_device=emulated_device,
aid=aid,
_headers=self.te_headers("create_emulated_device", error_status="429"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_create_emulated_device_error_500(self) -> None:
"""Integration test for create_emulated_device error path (HTTP 500)"""
request_body_json = """
{
"width" : 1024,
"category" : "desktop",
"height" : 768
}
"""
emulated_device = thousandeyes_sdk.emulation.models.EmulatedDevice.from_json(request_body_json)
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.create_emulated_device(
emulated_device=emulated_device,
aid=aid,
_headers=self.te_headers("create_emulated_device", error_status="500"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_get_emulated_devices_happy_path(self) -> None:
"""Integration test for get_emulated_devices success path"""
expand = [thousandeyes_sdk.emulation.ExpandEmulatedDeviceOptions()]
response_body_json = """
{
&quot;emulatedDevices&quot; : [ {
&quot;availableUserAgents&quot; : [ &quot;Mozilla/5.0 (Linux; Android 6.0; Nexus 5 Build/MRA58N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.5993.70 Mobile Safari/537.36&quot;, &quot;Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.5993.70 Safari/537.36&quot; ],
&quot;width&quot; : 1024,
&quot;name&quot; : &quot;iPad Pro 12.9-in&quot;,
&quot;codeName&quot; : &quot;IPAD_PRO_12_9&quot;,
&quot;id&quot; : &quot;11&quot;,
&quot;category&quot; : &quot;desktop&quot;,
&quot;defaultUserAgentTemplate&quot; : &quot;Mozilla/5.0 (Android 4.4; Tablet; rv:70.0) Gecko/70.0 Firefox/70.0&quot;,
&quot;height&quot; : 768
}, {
&quot;availableUserAgents&quot; : [ &quot;Mozilla/5.0 (Linux; Android 6.0; Nexus 5 Build/MRA58N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.5993.70 Mobile Safari/537.36&quot;, &quot;Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.5993.70 Safari/537.36&quot; ],
&quot;width&quot; : 1024,
&quot;name&quot; : &quot;iPad Pro 12.9-in&quot;,
&quot;codeName&quot; : &quot;IPAD_PRO_12_9&quot;,
&quot;id&quot; : &quot;11&quot;,
&quot;category&quot; : &quot;desktop&quot;,
&quot;defaultUserAgentTemplate&quot; : &quot;Mozilla/5.0 (Android 4.4; Tablet; rv:70.0) Gecko/70.0 Firefox/70.0&quot;,
&quot;height&quot; : 768
} ],
&quot;_links&quot; : {
&quot;self&quot; : {
&quot;hreflang&quot; : &quot;hreflang&quot;,
&quot;templated&quot; : true,
&quot;profile&quot; : &quot;profile&quot;,
&quot;name&quot; : &quot;name&quot;,
&quot;href&quot; : &quot;https://api.thousandeyes.com/v7/link/to/resource/id&quot;,
&quot;type&quot; : &quot;type&quot;,
&quot;deprecation&quot; : &quot;deprecation&quot;,
&quot;title&quot; : &quot;title&quot;
}
}
}
"""
expected_response = json.loads(response_body_json)
response = self.api.get_emulated_devices(
expand=expand,
_headers=self.te_headers("get_emulated_devices"),
)
assert_constructed_model_matches_example_json(response, expected_response)
def test_get_emulated_devices_error_401(self) -> None:
"""Integration test for get_emulated_devices error path (HTTP 401)"""
expand = [thousandeyes_sdk.emulation.ExpandEmulatedDeviceOptions()]
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_emulated_devices(
expand=expand,
_headers=self.te_headers("get_emulated_devices", error_status="401"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_get_emulated_devices_error_403(self) -> None:
"""Integration test for get_emulated_devices error path (HTTP 403)"""
expand = [thousandeyes_sdk.emulation.ExpandEmulatedDeviceOptions()]
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_emulated_devices(
expand=expand,
_headers=self.te_headers("get_emulated_devices", error_status="403"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_get_emulated_devices_error_404(self) -> None:
"""Integration test for get_emulated_devices error path (HTTP 404)"""
expand = [thousandeyes_sdk.emulation.ExpandEmulatedDeviceOptions()]
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_emulated_devices(
expand=expand,
_headers=self.te_headers("get_emulated_devices", error_status="404"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_get_emulated_devices_error_429(self) -> None:
"""Integration test for get_emulated_devices error path (HTTP 429)"""
expand = [thousandeyes_sdk.emulation.ExpandEmulatedDeviceOptions()]
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_emulated_devices(
expand=expand,
_headers=self.te_headers("get_emulated_devices", error_status="429"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_get_emulated_devices_error_500(self) -> None:
"""Integration test for get_emulated_devices error path (HTTP 500)"""
expand = [thousandeyes_sdk.emulation.ExpandEmulatedDeviceOptions()]
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_emulated_devices(
expand=expand,
_headers=self.te_headers("get_emulated_devices", error_status="500"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_get_user_agents_happy_path(self) -> None:
"""Integration test for get_user_agents success path"""
aid = '1234'
response_body_json = """
{
&quot;_links&quot; : {
&quot;self&quot; : {
&quot;hreflang&quot; : &quot;hreflang&quot;,
&quot;templated&quot; : true,
&quot;profile&quot; : &quot;profile&quot;,
&quot;name&quot; : &quot;name&quot;,
&quot;href&quot; : &quot;https://api.thousandeyes.com/v7/link/to/resource/id&quot;,
&quot;type&quot; : &quot;type&quot;,
&quot;deprecation&quot; : &quot;deprecation&quot;,
&quot;title&quot; : &quot;title&quot;
}
},
&quot;userAgents&quot; : [ {
&quot;os&quot; : &quot;Windows&quot;,
&quot;browser&quot; : &quot;Firefox&quot;,
&quot;value&quot; : &quot;Mozilla/5.0 (Linux; Android 6.0; Nexus 5 Build/MRA58N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.5993.70 Mobile Safari/537.36&quot;
}, {
&quot;os&quot; : &quot;Windows&quot;,
&quot;browser&quot; : &quot;Firefox&quot;,
&quot;value&quot; : &quot;Mozilla/5.0 (Linux; Android 6.0; Nexus 5 Build/MRA58N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.5993.70 Mobile Safari/537.36&quot;
} ]
}
"""
expected_response = json.loads(response_body_json)
response = self.api.get_user_agents(
aid=aid,
_headers=self.te_headers("get_user_agents"),
)
assert_constructed_model_matches_example_json(response, expected_response)
def test_get_user_agents_error_401(self) -> None:
"""Integration test for get_user_agents 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_user_agents(
aid=aid,
_headers=self.te_headers("get_user_agents", error_status="401"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_get_user_agents_error_403(self) -> None:
"""Integration test for get_user_agents 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_user_agents(
aid=aid,
_headers=self.te_headers("get_user_agents", error_status="403"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_get_user_agents_error_404(self) -> None:
"""Integration test for get_user_agents 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_user_agents(
aid=aid,
_headers=self.te_headers("get_user_agents", error_status="404"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_get_user_agents_error_429(self) -> None:
"""Integration test for get_user_agents 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_user_agents(
aid=aid,
_headers=self.te_headers("get_user_agents", error_status="429"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_get_user_agents_error_500(self) -> None:
"""Integration test for get_user_agents 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_user_agents(
aid=aid,
_headers=self.te_headers("get_user_agents", error_status="500"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
if __name__ == '__main__':
unittest.main()

View File

@ -0,0 +1,7 @@
import sys
from pathlib import Path
_repo_root = Path(__file__).resolve().parents[2]
_core_test_support = _repo_root / "thousandeyes-sdk-core" / "test"
if str(_core_test_support) not in sys.path:
sys.path.insert(0, str(_core_test_support))

View File

@ -0,0 +1,37 @@
# coding: utf-8
"""
Endpoint Agents API
**Note:** The Endpoint Agents Transfer APIs are not available for ThousandEyes for Government instance. Manage ThousandEyes Endpoint Agents using this API. For more information about Endpoint Agents, see [Endpoint Agents](https://docs.thousandeyes.com/product-documentation/global-vantage-points/endpoint-agents).
Generated by OpenAPI Generator (https://openapi-generator.tech)
Do not edit the class manually.
""" # noqa: E501
import unittest
from thousandeyes_sdk.core.api_client import ApiClient
from thousandeyes_sdk.core.configuration import Configuration
from sdk_test_support.mock_server import ERROR_STATUS_HEADER, OPERATION_ID_HEADER, MockApiServer
from .mock_manifest import OPERATION_MANIFEST
class IntegrationTestBase(unittest.TestCase):
def setUp(self) -> None:
self.server = MockApiServer(OPERATION_MANIFEST)
self.server.start()
configuration = Configuration(host=self.server.base_url, access_token="test-token")
self.api_client = ApiClient(configuration=configuration)
def tearDown(self) -> None:
self.server.stop()
def te_headers(self, operation_id: str, error_status=None):
headers = {OPERATION_ID_HEADER: operation_id}
if error_status is not None:
headers[ERROR_STATUS_HEADER] = error_status
return headers

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,365 @@
# coding: utf-8
"""
Endpoint Agents API
**Note:** The Endpoint Agents Transfer APIs are not available for ThousandEyes for Government instance. Manage ThousandEyes Endpoint Agents using this API. For more information about Endpoint Agents, see [Endpoint Agents](https://docs.thousandeyes.com/product-documentation/global-vantage-points/endpoint-agents).
Generated by OpenAPI Generator (https://openapi-generator.tech)
Do not edit the class manually.
""" # noqa: E501
import json
import unittest
import thousandeyes_sdk.endpoint_agents.models
from thousandeyes_sdk.core.exceptions import ApiException
from thousandeyes_sdk.endpoint_agents.api.endpoint_agent_log_items_api import EndpointAgentLogItemsApi
from .integration_test_utils import IntegrationTestBase
from .test_utils import assert_constructed_model_matches_example_json
class TestEndpointAgentLogItemsApiIntegration(IntegrationTestBase):
"""EndpointAgentLogItemsApi integration test stubs"""
def setUp(self) -> None:
super().setUp()
self.api = EndpointAgentLogItemsApi(self.api_client)
def test_get_endpoint_agent_log_items_happy_path(self) -> None:
"""Integration test for get_endpoint_agent_log_items success path"""
agent_id = 'agent_id_example'
aid = '1234'
max = 1000
cursor = 'WyIxNzA5MjQwMDAwMDAwIl0='
window = '12h'
start_date = '2022-07-17T22:00:54Z'
end_date = '2022-07-18T22:00:54Z'
response_body_json = """
{
&quot;_links&quot; : {
&quot;next&quot; : {
&quot;hreflang&quot; : &quot;hreflang&quot;,
&quot;templated&quot; : true,
&quot;profile&quot; : &quot;profile&quot;,
&quot;name&quot; : &quot;name&quot;,
&quot;href&quot; : &quot;https://api.thousandeyes.com/v7/link/to/resource/id&quot;,
&quot;type&quot; : &quot;type&quot;,
&quot;deprecation&quot; : &quot;deprecation&quot;,
&quot;title&quot; : &quot;title&quot;
},
&quot;self&quot; : {
&quot;hreflang&quot; : &quot;hreflang&quot;,
&quot;templated&quot; : true,
&quot;profile&quot; : &quot;profile&quot;,
&quot;name&quot; : &quot;name&quot;,
&quot;href&quot; : &quot;https://api.thousandeyes.com/v7/link/to/resource/id&quot;,
&quot;type&quot; : &quot;type&quot;,
&quot;deprecation&quot; : &quot;deprecation&quot;,
&quot;title&quot; : &quot;title&quot;
}
},
&quot;logs&quot; : [ {
&quot;wifiLogItem&quot; : {
&quot;bssidFrom&quot; : &quot;00:11:22:33:44:54&quot;,
&quot;bssid&quot; : &quot;00:11:22:33:44:55&quot;,
&quot;failure&quot; : {
&quot;code&quot; : 4,
&quot;context&quot; : &quot;WPA authentication failed&quot;,
&quot;type&quot; : &quot;auth&quot;
},
&quot;logItemType&quot; : &quot;wifi-connect&quot;,
&quot;channel&quot; : &quot;36&quot;,
&quot;physicalMode&quot; : &quot;802.11ac&quot;,
&quot;physicalModeFrom&quot; : &quot;802.11n&quot;,
&quot;ssid&quot; : &quot;CorpWiFi&quot;,
&quot;channelFrom&quot; : &quot;11&quot;
},
&quot;agentLogItemType&quot; : &quot;wifi&quot;,
&quot;onlineOfflineLogItem&quot; : {
&quot;logItemType&quot; : &quot;online&quot;
},
&quot;id&quot; : &quot;8d23f1b7-74ef-4e0c-925c-58601fc0662d&quot;,
&quot;vpnLogItem&quot; : {
&quot;logItemType&quot; : &quot;vpn-connect&quot;,
&quot;vpnServerName&quot; : &quot;vpn-us-west&quot;,
&quot;vpnType&quot; : &quot;cisco-anyconnect&quot;,
&quot;vpnServerAddress&quot; : &quot;192.0.2.10&quot;
},
&quot;stateChangesLogItem&quot; : {
&quot;logItemType&quot; : &quot;enabled&quot;
},
&quot;timestampMs&quot; : 1709240000000
}, {
&quot;wifiLogItem&quot; : {
&quot;bssidFrom&quot; : &quot;00:11:22:33:44:54&quot;,
&quot;bssid&quot; : &quot;00:11:22:33:44:55&quot;,
&quot;failure&quot; : {
&quot;code&quot; : 4,
&quot;context&quot; : &quot;WPA authentication failed&quot;,
&quot;type&quot; : &quot;auth&quot;
},
&quot;logItemType&quot; : &quot;wifi-connect&quot;,
&quot;channel&quot; : &quot;36&quot;,
&quot;physicalMode&quot; : &quot;802.11ac&quot;,
&quot;physicalModeFrom&quot; : &quot;802.11n&quot;,
&quot;ssid&quot; : &quot;CorpWiFi&quot;,
&quot;channelFrom&quot; : &quot;11&quot;
},
&quot;agentLogItemType&quot; : &quot;wifi&quot;,
&quot;onlineOfflineLogItem&quot; : {
&quot;logItemType&quot; : &quot;online&quot;
},
&quot;id&quot; : &quot;8d23f1b7-74ef-4e0c-925c-58601fc0662d&quot;,
&quot;vpnLogItem&quot; : {
&quot;logItemType&quot; : &quot;vpn-connect&quot;,
&quot;vpnServerName&quot; : &quot;vpn-us-west&quot;,
&quot;vpnType&quot; : &quot;cisco-anyconnect&quot;,
&quot;vpnServerAddress&quot; : &quot;192.0.2.10&quot;
},
&quot;stateChangesLogItem&quot; : {
&quot;logItemType&quot; : &quot;enabled&quot;
},
&quot;timestampMs&quot; : 1709240000000
} ]
}
"""
expected_response = json.loads(response_body_json)
response = self.api.get_endpoint_agent_log_items(
agent_id=agent_id,
aid=aid,
max=max,
cursor=cursor,
window=window,
start_date=start_date,
end_date=end_date,
_headers=self.te_headers("get_endpoint_agent_log_items"),
)
assert_constructed_model_matches_example_json(response, expected_response)
def test_get_endpoint_agent_log_items_error_400(self) -> None:
"""Integration test for get_endpoint_agent_log_items error path (HTTP 400)"""
agent_id = 'agent_id_example'
aid = '1234'
max = 1000
cursor = 'WyIxNzA5MjQwMDAwMDAwIl0='
window = '12h'
start_date = '2022-07-17T22:00:54Z'
end_date = '2022-07-18T22:00:54Z'
error_body_json = """
{
"instance" : "instance",
"detail" : "detail",
"type" : "type",
"title" : "title",
"errors" : [ {
"code" : "code",
"field" : "field",
"message" : "message"
}, {
"code" : "code",
"field" : "field",
"message" : "message"
} ],
"status" : 0
}
"""
expected_error = json.loads(error_body_json)
with self.assertRaises(
ApiException.exception_class_for_http_status(400)
) as context:
self.api.get_endpoint_agent_log_items(
agent_id=agent_id,
aid=aid,
max=max,
cursor=cursor,
window=window,
start_date=start_date,
end_date=end_date,
_headers=self.te_headers("get_endpoint_agent_log_items", error_status="400"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_get_endpoint_agent_log_items_error_401(self) -> None:
"""Integration test for get_endpoint_agent_log_items error path (HTTP 401)"""
agent_id = 'agent_id_example'
aid = '1234'
max = 1000
cursor = 'WyIxNzA5MjQwMDAwMDAwIl0='
window = '12h'
start_date = '2022-07-17T22:00:54Z'
end_date = '2022-07-18T22:00:54Z'
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_endpoint_agent_log_items(
agent_id=agent_id,
aid=aid,
max=max,
cursor=cursor,
window=window,
start_date=start_date,
end_date=end_date,
_headers=self.te_headers("get_endpoint_agent_log_items", error_status="401"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_get_endpoint_agent_log_items_error_403(self) -> None:
"""Integration test for get_endpoint_agent_log_items error path (HTTP 403)"""
agent_id = 'agent_id_example'
aid = '1234'
max = 1000
cursor = 'WyIxNzA5MjQwMDAwMDAwIl0='
window = '12h'
start_date = '2022-07-17T22:00:54Z'
end_date = '2022-07-18T22:00:54Z'
error_body_json = """
{
"instance" : "instance",
"detail" : "detail",
"type" : "type",
"title" : "title",
"status" : 6
}
"""
expected_error = json.loads(error_body_json)
with self.assertRaises(
ApiException.exception_class_for_http_status(403)
) as context:
self.api.get_endpoint_agent_log_items(
agent_id=agent_id,
aid=aid,
max=max,
cursor=cursor,
window=window,
start_date=start_date,
end_date=end_date,
_headers=self.te_headers("get_endpoint_agent_log_items", error_status="403"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_get_endpoint_agent_log_items_error_429(self) -> None:
"""Integration test for get_endpoint_agent_log_items error path (HTTP 429)"""
agent_id = 'agent_id_example'
aid = '1234'
max = 1000
cursor = 'WyIxNzA5MjQwMDAwMDAwIl0='
window = '12h'
start_date = '2022-07-17T22:00:54Z'
end_date = '2022-07-18T22:00:54Z'
error_body_json = """
{
"instance" : "instance",
"detail" : "detail",
"type" : "type",
"title" : "title",
"status" : 6
}
"""
expected_error = json.loads(error_body_json)
with self.assertRaises(
ApiException.exception_class_for_http_status(429)
) as context:
self.api.get_endpoint_agent_log_items(
agent_id=agent_id,
aid=aid,
max=max,
cursor=cursor,
window=window,
start_date=start_date,
end_date=end_date,
_headers=self.te_headers("get_endpoint_agent_log_items", error_status="429"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_get_endpoint_agent_log_items_error_500(self) -> None:
"""Integration test for get_endpoint_agent_log_items error path (HTTP 500)"""
agent_id = 'agent_id_example'
aid = '1234'
max = 1000
cursor = 'WyIxNzA5MjQwMDAwMDAwIl0='
window = '12h'
start_date = '2022-07-17T22:00:54Z'
end_date = '2022-07-18T22:00:54Z'
error_body_json = """
{
"instance" : "instance",
"detail" : "detail",
"type" : "type",
"title" : "title",
"status" : 6
}
"""
expected_error = json.loads(error_body_json)
with self.assertRaises(
ApiException.exception_class_for_http_status(500)
) as context:
self.api.get_endpoint_agent_log_items(
agent_id=agent_id,
aid=aid,
max=max,
cursor=cursor,
window=window,
start_date=start_date,
end_date=end_date,
_headers=self.te_headers("get_endpoint_agent_log_items", error_status="500"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_get_endpoint_agent_log_items_error_502(self) -> None:
"""Integration test for get_endpoint_agent_log_items error path (HTTP 502)"""
agent_id = 'agent_id_example'
aid = '1234'
max = 1000
cursor = 'WyIxNzA5MjQwMDAwMDAwIl0='
window = '12h'
start_date = '2022-07-17T22:00:54Z'
end_date = '2022-07-18T22:00:54Z'
error_body_json = """
{
"instance" : "instance",
"detail" : "detail",
"type" : "type",
"title" : "title",
"status" : 6
}
"""
expected_error = json.loads(error_body_json)
with self.assertRaises(
ApiException.exception_class_for_http_status(502)
) as context:
self.api.get_endpoint_agent_log_items(
agent_id=agent_id,
aid=aid,
max=max,
cursor=cursor,
window=window,
start_date=start_date,
end_date=end_date,
_headers=self.te_headers("get_endpoint_agent_log_items", error_status="502"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
if __name__ == '__main__':
unittest.main()

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,300 @@
# coding: utf-8
"""
Endpoint Agents API
**Note:** The Endpoint Agents Transfer APIs are not available for ThousandEyes for Government instance. Manage ThousandEyes Endpoint Agents using this API. For more information about Endpoint Agents, see [Endpoint Agents](https://docs.thousandeyes.com/product-documentation/global-vantage-points/endpoint-agents).
Generated by OpenAPI Generator (https://openapi-generator.tech)
Do not edit the class manually.
""" # noqa: E501
import json
import unittest
import thousandeyes_sdk.endpoint_agents.models
from thousandeyes_sdk.core.exceptions import ApiException
from thousandeyes_sdk.endpoint_agents.api.endpoint_agents_transfer_api import EndpointAgentsTransferApi
from .integration_test_utils import IntegrationTestBase
from .test_utils import assert_constructed_model_matches_example_json
class TestEndpointAgentsTransferApiIntegration(IntegrationTestBase):
"""EndpointAgentsTransferApi integration test stubs"""
def setUp(self) -> None:
super().setUp()
self.api = EndpointAgentsTransferApi(self.api_client)
def test_transfer_endpoint_agents_happy_path(self) -> None:
"""Integration test for transfer_endpoint_agents success path"""
request_body_json = """
{
"transfers" : [ {
"agentId" : "5d0764ac-7e42-4ec8-a0d4-39fc53edccba",
"fromAid" : "1234",
"toAid" : "12345"
}, {
"agentId" : "5d0764ac-7e42-4ec8-a0d4-39fc53edccba",
"fromAid" : "1234",
"toAid" : "12345"
} ]
}
"""
bulk_agent_transfer_request = thousandeyes_sdk.endpoint_agents.models.BulkAgentTransferRequest.from_json(request_body_json)
aid = '1234'
response_body_json = """
{
&quot;items&quot; : [ {
&quot;status&quot; : 200,
&quot;detail&quot; : &quot;Initiated&quot;,
&quot;request&quot; : {
&quot;agentId&quot; : &quot;5d0764ac-7e42-4ec8-a0d4-39fc53edccba&quot;,
&quot;fromAid&quot; : &quot;1234&quot;,
&quot;toAid&quot; : &quot;12345&quot;
}
}, {
&quot;status&quot; : 400,
&quot;detail&quot; : &quot;Missing from-account id&quot;,
&quot;request&quot; : {
&quot;agentId&quot; : &quot;5d0764ac-7e42-4ec8-a0d5-39fc53ed1234&quot;,
&quot;fromAid&quot; : &quot;xxx&quot;,
&quot;toAid&quot; : &quot;12345&quot;
}
}, {
&quot;status&quot; : 403,
&quot;detail&quot; : &quot;User does not have permission on &#39;to&#39; aid&quot;,
&quot;request&quot; : {
&quot;agentId&quot; : &quot;5d0764ac-7e42-4ec8-a0d5-39fc53ed7890&quot;,
&quot;fromAid&quot; : &quot;1234&quot;,
&quot;toAid&quot; : &quot;12345&quot;
}
} ]
}
"""
expected_response = json.loads(response_body_json)
response = self.api.transfer_endpoint_agents(
aid=aid,
bulk_agent_transfer_request=bulk_agent_transfer_request,
_headers=self.te_headers("transfer_endpoint_agents"),
)
assert_constructed_model_matches_example_json(response, expected_response)
def test_transfer_endpoint_agents_error_400(self) -> None:
"""Integration test for transfer_endpoint_agents error path (HTTP 400)"""
request_body_json = """
{
"transfers" : [ {
"agentId" : "5d0764ac-7e42-4ec8-a0d4-39fc53edccba",
"fromAid" : "1234",
"toAid" : "12345"
}, {
"agentId" : "5d0764ac-7e42-4ec8-a0d4-39fc53edccba",
"fromAid" : "1234",
"toAid" : "12345"
} ]
}
"""
bulk_agent_transfer_request = thousandeyes_sdk.endpoint_agents.models.BulkAgentTransferRequest.from_json(request_body_json)
aid = '1234'
error_body_json = """
{
"instance" : "instance",
"detail" : "detail",
"type" : "type",
"title" : "title",
"errors" : [ {
"code" : "code",
"field" : "field",
"message" : "message"
}, {
"code" : "code",
"field" : "field",
"message" : "message"
} ],
"status" : 0
}
"""
expected_error = json.loads(error_body_json)
with self.assertRaises(
ApiException.exception_class_for_http_status(400)
) as context:
self.api.transfer_endpoint_agents(
aid=aid,
bulk_agent_transfer_request=bulk_agent_transfer_request,
_headers=self.te_headers("transfer_endpoint_agents", error_status="400"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_transfer_endpoint_agents_error_401(self) -> None:
"""Integration test for transfer_endpoint_agents error path (HTTP 401)"""
request_body_json = """
{
"transfers" : [ {
"agentId" : "5d0764ac-7e42-4ec8-a0d4-39fc53edccba",
"fromAid" : "1234",
"toAid" : "12345"
}, {
"agentId" : "5d0764ac-7e42-4ec8-a0d4-39fc53edccba",
"fromAid" : "1234",
"toAid" : "12345"
} ]
}
"""
bulk_agent_transfer_request = thousandeyes_sdk.endpoint_agents.models.BulkAgentTransferRequest.from_json(request_body_json)
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.transfer_endpoint_agents(
aid=aid,
bulk_agent_transfer_request=bulk_agent_transfer_request,
_headers=self.te_headers("transfer_endpoint_agents", error_status="401"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_transfer_endpoint_agents_error_403(self) -> None:
"""Integration test for transfer_endpoint_agents error path (HTTP 403)"""
request_body_json = """
{
"transfers" : [ {
"agentId" : "5d0764ac-7e42-4ec8-a0d4-39fc53edccba",
"fromAid" : "1234",
"toAid" : "12345"
}, {
"agentId" : "5d0764ac-7e42-4ec8-a0d4-39fc53edccba",
"fromAid" : "1234",
"toAid" : "12345"
} ]
}
"""
bulk_agent_transfer_request = thousandeyes_sdk.endpoint_agents.models.BulkAgentTransferRequest.from_json(request_body_json)
aid = '1234'
error_body_json = """
{
"instance" : "instance",
"detail" : "detail",
"type" : "type",
"title" : "title",
"status" : 6
}
"""
expected_error = json.loads(error_body_json)
with self.assertRaises(
ApiException.exception_class_for_http_status(403)
) as context:
self.api.transfer_endpoint_agents(
aid=aid,
bulk_agent_transfer_request=bulk_agent_transfer_request,
_headers=self.te_headers("transfer_endpoint_agents", error_status="403"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_transfer_endpoint_agents_error_404(self) -> None:
"""Integration test for transfer_endpoint_agents error path (HTTP 404)"""
request_body_json = """
{
"transfers" : [ {
"agentId" : "5d0764ac-7e42-4ec8-a0d4-39fc53edccba",
"fromAid" : "1234",
"toAid" : "12345"
}, {
"agentId" : "5d0764ac-7e42-4ec8-a0d4-39fc53edccba",
"fromAid" : "1234",
"toAid" : "12345"
} ]
}
"""
bulk_agent_transfer_request = thousandeyes_sdk.endpoint_agents.models.BulkAgentTransferRequest.from_json(request_body_json)
aid = '1234'
error_body_json = """
{
"instance" : "instance",
"detail" : "detail",
"type" : "type",
"title" : "title",
"status" : 6
}
"""
expected_error = json.loads(error_body_json)
with self.assertRaises(
ApiException.exception_class_for_http_status(404)
) as context:
self.api.transfer_endpoint_agents(
aid=aid,
bulk_agent_transfer_request=bulk_agent_transfer_request,
_headers=self.te_headers("transfer_endpoint_agents", error_status="404"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_transfer_endpoint_agents_error_429(self) -> None:
"""Integration test for transfer_endpoint_agents error path (HTTP 429)"""
request_body_json = """
{
"transfers" : [ {
"agentId" : "5d0764ac-7e42-4ec8-a0d4-39fc53edccba",
"fromAid" : "1234",
"toAid" : "12345"
}, {
"agentId" : "5d0764ac-7e42-4ec8-a0d4-39fc53edccba",
"fromAid" : "1234",
"toAid" : "12345"
} ]
}
"""
bulk_agent_transfer_request = thousandeyes_sdk.endpoint_agents.models.BulkAgentTransferRequest.from_json(request_body_json)
aid = '1234'
error_body_json = """
{
"instance" : "instance",
"detail" : "detail",
"type" : "type",
"title" : "title",
"status" : 6
}
"""
expected_error = json.loads(error_body_json)
with self.assertRaises(
ApiException.exception_class_for_http_status(429)
) as context:
self.api.transfer_endpoint_agents(
aid=aid,
bulk_agent_transfer_request=bulk_agent_transfer_request,
_headers=self.te_headers("transfer_endpoint_agents", error_status="429"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
if __name__ == '__main__':
unittest.main()

View File

@ -0,0 +1,166 @@
# coding: utf-8
"""
Endpoint Agents API
**Note:** The Endpoint Agents Transfer APIs are not available for ThousandEyes for Government instance. Manage ThousandEyes Endpoint Agents using this API. For more information about Endpoint Agents, see [Endpoint Agents](https://docs.thousandeyes.com/product-documentation/global-vantage-points/endpoint-agents).
Generated by OpenAPI Generator (https://openapi-generator.tech)
Do not edit the class manually.
""" # noqa: E501
import json
import unittest
import thousandeyes_sdk.endpoint_agents.models
from thousandeyes_sdk.core.exceptions import ApiException
from thousandeyes_sdk.endpoint_agents.api.endpoint_proxies_api import EndpointProxiesApi
from .integration_test_utils import IntegrationTestBase
from .test_utils import assert_constructed_model_matches_example_json
class TestEndpointProxiesApiIntegration(IntegrationTestBase):
"""EndpointProxiesApi integration test stubs"""
def setUp(self) -> None:
super().setUp()
self.api = EndpointProxiesApi(self.api_client)
def test_get_endpoint_proxies_happy_path(self) -> None:
"""Integration test for get_endpoint_proxies success path"""
aid = '1234'
response_body_json = """
{
&quot;proxies&quot; : [ {
&quot;testIds&quot; : [ &quot;9923667&quot;, &quot;9923667&quot; ],
&quot;agentIds&quot; : [ &quot;861b7557-cd57-4bbb-b648-00bddf88ef49&quot;, &quot;861b7557-cd57-4bbb-b648-00bddf88ef49&quot; ],
&quot;pac&quot; : &quot;https://example.com/proxy.pac&quot;,
&quot;port&quot; : 8080,
&quot;name&quot; : &quot;Local Mitmproxy&quot;,
&quot;host&quot; : &quot;localhost&quot;,
&quot;type&quot; : &quot;static&quot;,
&quot;userName&quot; : &quot;endpoint-proxy-user&quot;,
&quot;authType&quot; : &quot;none&quot;,
&quot;bypassList&quot; : &quot;localhost,127.0.0.1&quot;,
&quot;proxyId&quot; : &quot;101498&quot;
}, {
&quot;testIds&quot; : [ &quot;9923667&quot;, &quot;9923667&quot; ],
&quot;agentIds&quot; : [ &quot;861b7557-cd57-4bbb-b648-00bddf88ef49&quot;, &quot;861b7557-cd57-4bbb-b648-00bddf88ef49&quot; ],
&quot;pac&quot; : &quot;https://example.com/proxy.pac&quot;,
&quot;port&quot; : 8080,
&quot;name&quot; : &quot;Local Mitmproxy&quot;,
&quot;host&quot; : &quot;localhost&quot;,
&quot;type&quot; : &quot;static&quot;,
&quot;userName&quot; : &quot;endpoint-proxy-user&quot;,
&quot;authType&quot; : &quot;none&quot;,
&quot;bypassList&quot; : &quot;localhost,127.0.0.1&quot;,
&quot;proxyId&quot; : &quot;101498&quot;
} ]
}
"""
expected_response = json.loads(response_body_json)
response = self.api.get_endpoint_proxies(
aid=aid,
_headers=self.te_headers("get_endpoint_proxies"),
)
assert_constructed_model_matches_example_json(response, expected_response)
def test_get_endpoint_proxies_error_401(self) -> None:
"""Integration test for get_endpoint_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_endpoint_proxies(
aid=aid,
_headers=self.te_headers("get_endpoint_proxies", error_status="401"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_get_endpoint_proxies_error_403(self) -> None:
"""Integration test for get_endpoint_proxies error path (HTTP 403)"""
aid = '1234'
error_body_json = """
{
"instance" : "instance",
"detail" : "detail",
"type" : "type",
"title" : "title",
"status" : 6
}
"""
expected_error = json.loads(error_body_json)
with self.assertRaises(
ApiException.exception_class_for_http_status(403)
) as context:
self.api.get_endpoint_proxies(
aid=aid,
_headers=self.te_headers("get_endpoint_proxies", error_status="403"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_get_endpoint_proxies_error_429(self) -> None:
"""Integration test for get_endpoint_proxies error path (HTTP 429)"""
aid = '1234'
error_body_json = """
{
"instance" : "instance",
"detail" : "detail",
"type" : "type",
"title" : "title",
"status" : 6
}
"""
expected_error = json.loads(error_body_json)
with self.assertRaises(
ApiException.exception_class_for_http_status(429)
) as context:
self.api.get_endpoint_proxies(
aid=aid,
_headers=self.te_headers("get_endpoint_proxies", error_status="429"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_get_endpoint_proxies_error_500(self) -> None:
"""Integration test for get_endpoint_proxies error path (HTTP 500)"""
aid = '1234'
error_body_json = """
{
"instance" : "instance",
"detail" : "detail",
"type" : "type",
"title" : "title",
"status" : 6
}
"""
expected_error = json.loads(error_body_json)
with self.assertRaises(
ApiException.exception_class_for_http_status(500)
) as context:
self.api.get_endpoint_proxies(
aid=aid,
_headers=self.te_headers("get_endpoint_proxies", error_status="500"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
if __name__ == '__main__':
unittest.main()

View File

@ -0,0 +1,7 @@
import sys
from pathlib import Path
_repo_root = Path(__file__).resolve().parents[2]
_core_test_support = _repo_root / "thousandeyes-sdk-core" / "test"
if str(_core_test_support) not in sys.path:
sys.path.insert(0, str(_core_test_support))

View File

@ -0,0 +1,37 @@
# coding: utf-8
"""
Endpoint Instant Scheduled Tests API
You can create and execute a new endpoint instant scheduled test within ThousandEyes using this API. The test parameters are specified in the `POST` data. The following applies to the Endpoint Instant Scheduled Tests API: * To initiate the creation and execution of an instant scheduled test, the user must possess the `Edit endpoint tests` permission. * Upon successful creation of an instant scheduled test, the API responds with an HTTP/201 CREATED status code and return the test definition. * It's important to note that the response does not include the results of the instant scheduled test. To retrieve test results, users can utilize the Endpoint Test Data endpoints. The URLs for these API test data endpoints are provided within the test definition output when an instant scheduled test is created.
Generated by OpenAPI Generator (https://openapi-generator.tech)
Do not edit the class manually.
""" # noqa: E501
import unittest
from thousandeyes_sdk.core.api_client import ApiClient
from thousandeyes_sdk.core.configuration import Configuration
from sdk_test_support.mock_server import ERROR_STATUS_HEADER, OPERATION_ID_HEADER, MockApiServer
from .mock_manifest import OPERATION_MANIFEST
class IntegrationTestBase(unittest.TestCase):
def setUp(self) -> None:
self.server = MockApiServer(OPERATION_MANIFEST)
self.server.start()
configuration = Configuration(host=self.server.base_url, access_token="test-token")
self.api_client = ApiClient(configuration=configuration)
def tearDown(self) -> None:
self.server.stop()
def te_headers(self, operation_id: str, error_status=None):
headers = {OPERATION_ID_HEADER: operation_id}
if error_status is not None:
headers[ERROR_STATUS_HEADER] = error_status
return headers

View File

@ -0,0 +1,499 @@
# coding: utf-8
"""
Endpoint Instant Scheduled Tests API
You can create and execute a new endpoint instant scheduled test within ThousandEyes using this API. The test parameters are specified in the `POST` data. The following applies to the Endpoint Instant Scheduled Tests API: * To initiate the creation and execution of an instant scheduled test, the user must possess the `Edit endpoint tests` permission. * Upon successful creation of an instant scheduled test, the API responds with an HTTP/201 CREATED status code and return the test definition. * It's important to note that the response does not include the results of the instant scheduled test. To retrieve test results, users can utilize the Endpoint Test Data endpoints. The URLs for these API test data endpoints are provided within the test definition output when an instant scheduled test is created.
Generated by OpenAPI Generator (https://openapi-generator.tech)
Do not edit the class manually.
""" # noqa: E501
import json
from sdk_test_support.mock_server_types import ErrorResponseExpectation, OperationExpectation
OPERATION_MANIFEST = {
"create_agent_to_server_scheduled_instant_test": OperationExpectation(
operation_id="create_agent_to_server_scheduled_instant_test",
method="POST",
path="/endpoint/tests/scheduled-tests/agent-to-server/instant",
path_param_examples={
},
success_status=201,
success_body=json.loads("""
{
"server" : "www.example.com",
"isSavedEvent" : false,
"_links" : {
"testResults" : [ {
"href" : "https://api.thousandeyes.com/v7/endpoint/test-results/scheduled-tests/281474976710706/network/filter"
}, {
"href" : "https://api.thousandeyes.com/v7/endpoint/test-results/scheduled-tests/281474976710706/pathvis"
} ],
"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"
}
},
"isPrioritized" : false,
"networkMeasurements" : true,
"type" : "agent-to-server",
"tcpProbeMode" : "auto",
"labels" : [ {
"labelId" : "961",
"name" : "Artem label",
"isBuiltin" : false
}, {
"labelId" : "961",
"name" : "Artem label",
"isBuiltin" : false
} ],
"protocol" : "icmp",
"createdDate" : "2022-07-17T22:00:54Z",
"ipVersion" : "V4_ONLY",
"port" : 443,
"isEnabled" : true,
"modifiedDate" : "2022-07-17T22:00:54Z",
"interval" : 60,
"testId" : "281474976710706",
"aid" : "1234",
"agentSelectorConfig" : {
"agentSelectorType" : "all-agents",
"maxMachines" : 25
},
"hasPathTraceInSession" : true,
"testName" : "Test name"
}
"""),
success_content_type="application/json",
request_body_example=json.loads("""
{
"server" : "www.example.com",
"ipVersion" : "V4_ONLY",
"port" : 443,
"agentSelectorType" : "all-agents",
"tagIds" : [ "c6b78e57-81a2-4c5f-a11a-d96c3c664d55", "5aeab5d5-0d34-4d44-a7ac-fb440185295c" ],
"maxMachines" : 25,
"serverName" : "www.example.com",
"endpointAgentLabels" : [ "567", "214" ],
"agents" : [ "0a3b9998-dc3a-4ff2-b50d-ac4a7cd986e1", "66eec0f1-72b4-4755-aa83-3aed61d17f3c" ],
"testName" : "Test name"
}
"""),
error_responses={
"400": ErrorResponseExpectation(
status=400,
body=json.loads("""
{
"instance" : "instance",
"detail" : "detail",
"type" : "type",
"title" : "title",
"errors" : [ {
"code" : "code",
"field" : "field",
"message" : "message"
}, {
"code" : "code",
"field" : "field",
"message" : "message"
} ],
"status" : 0
}"""),
content_type="application/json",
),
"401": ErrorResponseExpectation(
status=401,
body=json.loads("""
{
"error_description" : "Invalid access token",
"error" : "invalid_token"
}"""),
content_type="application/json",
),
"403": ErrorResponseExpectation(
status=403,
body=json.loads("""
{
"instance" : "instance",
"detail" : "detail",
"type" : "type",
"title" : "title",
"status" : 6
}"""),
content_type="application/json",
),
"429": ErrorResponseExpectation(
status=429,
body=json.loads("""
{
"instance" : "instance",
"detail" : "detail",
"type" : "type",
"title" : "title",
"status" : 6
}"""),
content_type="application/json",
),
"500": ErrorResponseExpectation(
status=500,
body=json.loads("""
{
"instance" : "instance",
"detail" : "detail",
"type" : "type",
"title" : "title",
"status" : 6
}"""),
content_type="application/json",
),
"502": ErrorResponseExpectation(
status=502,
body=json.loads("""
{
"instance" : "instance",
"detail" : "detail",
"type" : "type",
"title" : "title",
"status" : 6
}"""),
content_type="application/json",
),
},
),
"create_http_server_scheduled_instant_test": OperationExpectation(
operation_id="create_http_server_scheduled_instant_test",
method="POST",
path="/endpoint/tests/scheduled-tests/http-server/instant",
path_param_examples={
},
success_status=201,
success_body=json.loads("""
{
"server" : "www.example.com",
"isSavedEvent" : false,
"sslVersion" : "Auto",
"useNtlm" : false,
"_links" : {
"testResults" : [ {
"href" : "https://api.thousandeyes.com/v7/endpoint/test-results/scheduled-tests/281474976710706/network/filter"
}, {
"href" : "https://api.thousandeyes.com/v7/endpoint/test-results/scheduled-tests/281474976710706/pathvis"
} ],
"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"
}
},
"isPrioritized" : false,
"httpTimeLimit" : 5000,
"type" : "http-server",
"protocol" : "icmp",
"httpVersion" : 2,
"followRedirects" : true,
"authType" : "none",
"testName" : "Test name",
"verifyCertificate" : true,
"networkMeasurements" : true,
"tcpProbeMode" : "auto",
"url" : "https://example.com:443",
"labels" : [ {
"labelId" : "961",
"name" : "Artem label",
"isBuiltin" : false
}, {
"labelId" : "961",
"name" : "Artem label",
"isBuiltin" : false
} ],
"createdDate" : "2022-07-17T22:00:54Z",
"ipVersion" : "V4_ONLY",
"port" : 443,
"isEnabled" : true,
"modifiedDate" : "2022-07-17T22:00:54Z",
"interval" : 60,
"testId" : "281474976710706",
"aid" : "1234",
"agentSelectorConfig" : {
"agentSelectorType" : "all-agents",
"maxMachines" : 25
},
"hasPathTraceInSession" : true,
"httpTargetTime" : 100,
"username" : "username",
"sslVersionId" : "0"
}
"""),
success_content_type="application/json",
request_body_example=json.loads("""
{
"verifyCertificate" : true,
"hasPing" : true,
"agentSelectorType" : "all-agents",
"tagIds" : [ "c6b78e57-81a2-4c5f-a11a-d96c3c664d55", "5aeab5d5-0d34-4d44-a7ac-fb440185295c" ],
"maxMachines" : 25,
"httpTimeLimit" : 5000,
"networkMeasurements" : true,
"endpointAgentLabels" : [ "567", "214" ],
"tcpProbeMode" : "auto",
"url" : "https://example.com:443",
"agents" : [ "0a3b9998-dc3a-4ff2-b50d-ac4a7cd986e1", "66eec0f1-72b4-4755-aa83-3aed61d17f3c" ],
"protocol" : "icmp",
"password" : "password",
"ipVersion" : "V4_ONLY",
"hasTraceroute" : true,
"targetResponseTime" : 1000,
"authType" : "none",
"hasPathTraceInSession" : true,
"testName" : "Test name",
"username" : "username",
"sslVersionId" : "0"
}
"""),
error_responses={
"400": ErrorResponseExpectation(
status=400,
body=json.loads("""
{
"instance" : "instance",
"detail" : "detail",
"type" : "type",
"title" : "title",
"errors" : [ {
"code" : "code",
"field" : "field",
"message" : "message"
}, {
"code" : "code",
"field" : "field",
"message" : "message"
} ],
"status" : 0
}"""),
content_type="application/json",
),
"401": ErrorResponseExpectation(
status=401,
body=json.loads("""
{
"error_description" : "Invalid access token",
"error" : "invalid_token"
}"""),
content_type="application/json",
),
"403": ErrorResponseExpectation(
status=403,
body=json.loads("""
{
"instance" : "instance",
"detail" : "detail",
"type" : "type",
"title" : "title",
"status" : 6
}"""),
content_type="application/json",
),
"429": ErrorResponseExpectation(
status=429,
body=json.loads("""
{
"instance" : "instance",
"detail" : "detail",
"type" : "type",
"title" : "title",
"status" : 6
}"""),
content_type="application/json",
),
"500": ErrorResponseExpectation(
status=500,
body=json.loads("""
{
"instance" : "instance",
"detail" : "detail",
"type" : "type",
"title" : "title",
"status" : 6
}"""),
content_type="application/json",
),
"502": ErrorResponseExpectation(
status=502,
body=json.loads("""
{
"instance" : "instance",
"detail" : "detail",
"type" : "type",
"title" : "title",
"status" : 6
}"""),
content_type="application/json",
),
},
),
"run_endpoint_scheduled_instant_test": OperationExpectation(
operation_id="run_endpoint_scheduled_instant_test",
method="POST",
path="/endpoint/tests/scheduled-tests/{testId}/run",
path_param_examples={
"testId": '765231567',
},
success_status=200,
success_body=json.loads("""
{
"message" : "Successfully reran the instant scheduled test with testId=765231567"
}
"""),
success_content_type="application/json",
request_body_example=None,
error_responses={
"400": ErrorResponseExpectation(
status=400,
body=json.loads("""
{
"instance" : "instance",
"detail" : "detail",
"type" : "type",
"title" : "title",
"errors" : [ {
"code" : "code",
"field" : "field",
"message" : "message"
}, {
"code" : "code",
"field" : "field",
"message" : "message"
} ],
"status" : 0
}"""),
content_type="application/json",
),
"401": ErrorResponseExpectation(
status=401,
body=json.loads("""
{
"error_description" : "Invalid access token",
"error" : "invalid_token"
}"""),
content_type="application/json",
),
"403": ErrorResponseExpectation(
status=403,
body=json.loads("""
{
"instance" : "instance",
"detail" : "detail",
"type" : "type",
"title" : "title",
"status" : 6
}"""),
content_type="application/json",
),
"404": ErrorResponseExpectation(
status=404,
body=json.loads("""
{
"instance" : "instance",
"detail" : "detail",
"type" : "type",
"title" : "title",
"status" : 6
}"""),
content_type="application/json",
),
"429": ErrorResponseExpectation(
status=429,
body=json.loads("""
{
"instance" : "instance",
"detail" : "detail",
"type" : "type",
"title" : "title",
"status" : 6
}"""),
content_type="application/json",
),
"500": ErrorResponseExpectation(
status=500,
body=json.loads("""
{
"instance" : "instance",
"detail" : "detail",
"type" : "type",
"title" : "title",
"status" : 6
}"""),
content_type="application/json",
),
"502": ErrorResponseExpectation(
status=502,
body=json.loads("""
{
"instance" : "instance",
"detail" : "detail",
"type" : "type",
"title" : "title",
"status" : 6
}"""),
content_type="application/json",
),
},
),
}

View File

@ -0,0 +1,369 @@
# coding: utf-8
"""
Endpoint Instant Scheduled Tests API
You can create and execute a new endpoint instant scheduled test within ThousandEyes using this API. The test parameters are specified in the `POST` data. The following applies to the Endpoint Instant Scheduled Tests API: * To initiate the creation and execution of an instant scheduled test, the user must possess the `Edit endpoint tests` permission. * Upon successful creation of an instant scheduled test, the API responds with an HTTP/201 CREATED status code and return the test definition. * It's important to note that the response does not include the results of the instant scheduled test. To retrieve test results, users can utilize the Endpoint Test Data endpoints. The URLs for these API test data endpoints are provided within the test definition output when an instant scheduled test is created.
Generated by OpenAPI Generator (https://openapi-generator.tech)
Do not edit the class manually.
""" # noqa: E501
import json
import unittest
import thousandeyes_sdk.endpoint_instant_tests.models
from thousandeyes_sdk.core.exceptions import ApiException
from thousandeyes_sdk.endpoint_instant_tests.api.agent_to_server_endpoint_instant_scheduled_tests_api import AgentToServerEndpointInstantScheduledTestsApi
from .integration_test_utils import IntegrationTestBase
from .test_utils import assert_constructed_model_matches_example_json
class TestAgentToServerEndpointInstantScheduledTestsApiIntegration(IntegrationTestBase):
"""AgentToServerEndpointInstantScheduledTestsApi integration test stubs"""
def setUp(self) -> None:
super().setUp()
self.api = AgentToServerEndpointInstantScheduledTestsApi(self.api_client)
def test_create_agent_to_server_scheduled_instant_test_happy_path(self) -> None:
"""Integration test for create_agent_to_server_scheduled_instant_test success path"""
request_body_json = """
{
"server" : "www.example.com",
"ipVersion" : "V4_ONLY",
"port" : 443,
"agentSelectorType" : "all-agents",
"tagIds" : [ "c6b78e57-81a2-4c5f-a11a-d96c3c664d55", "5aeab5d5-0d34-4d44-a7ac-fb440185295c" ],
"maxMachines" : 25,
"serverName" : "www.example.com",
"endpointAgentLabels" : [ "567", "214" ],
"agents" : [ "0a3b9998-dc3a-4ff2-b50d-ac4a7cd986e1", "66eec0f1-72b4-4755-aa83-3aed61d17f3c" ],
"testName" : "Test name"
}
"""
endpoint_agent_to_server_instant_test = thousandeyes_sdk.endpoint_instant_tests.models.EndpointAgentToServerInstantTest.from_json(request_body_json)
aid = '1234'
response_body_json = """
{
&quot;server&quot; : &quot;www.example.com&quot;,
&quot;isSavedEvent&quot; : false,
&quot;_links&quot; : {
&quot;testResults&quot; : [ {
&quot;href&quot; : &quot;https://api.thousandeyes.com/v7/endpoint/test-results/scheduled-tests/281474976710706/network/filter&quot;
}, {
&quot;href&quot; : &quot;https://api.thousandeyes.com/v7/endpoint/test-results/scheduled-tests/281474976710706/pathvis&quot;
} ],
&quot;self&quot; : {
&quot;hreflang&quot; : &quot;hreflang&quot;,
&quot;templated&quot; : true,
&quot;profile&quot; : &quot;profile&quot;,
&quot;name&quot; : &quot;name&quot;,
&quot;href&quot; : &quot;https://api.thousandeyes.com/v7/link/to/resource/id&quot;,
&quot;type&quot; : &quot;type&quot;,
&quot;deprecation&quot; : &quot;deprecation&quot;,
&quot;title&quot; : &quot;title&quot;
}
},
&quot;isPrioritized&quot; : false,
&quot;networkMeasurements&quot; : true,
&quot;type&quot; : &quot;agent-to-server&quot;,
&quot;tcpProbeMode&quot; : &quot;auto&quot;,
&quot;labels&quot; : [ {
&quot;labelId&quot; : &quot;961&quot;,
&quot;name&quot; : &quot;Artem label&quot;,
&quot;isBuiltin&quot; : false
}, {
&quot;labelId&quot; : &quot;961&quot;,
&quot;name&quot; : &quot;Artem label&quot;,
&quot;isBuiltin&quot; : false
} ],
&quot;protocol&quot; : &quot;icmp&quot;,
&quot;createdDate&quot; : &quot;2022-07-17T22:00:54Z&quot;,
&quot;ipVersion&quot; : &quot;V4_ONLY&quot;,
&quot;port&quot; : 443,
&quot;isEnabled&quot; : true,
&quot;modifiedDate&quot; : &quot;2022-07-17T22:00:54Z&quot;,
&quot;interval&quot; : 60,
&quot;testId&quot; : &quot;281474976710706&quot;,
&quot;aid&quot; : &quot;1234&quot;,
&quot;agentSelectorConfig&quot; : {
&quot;agentSelectorType&quot; : &quot;all-agents&quot;,
&quot;maxMachines&quot; : 25
},
&quot;hasPathTraceInSession&quot; : true,
&quot;testName&quot; : &quot;Test name&quot;
}
"""
expected_response = json.loads(response_body_json)
response = self.api.create_agent_to_server_scheduled_instant_test(
endpoint_agent_to_server_instant_test=endpoint_agent_to_server_instant_test,
aid=aid,
_headers=self.te_headers("create_agent_to_server_scheduled_instant_test"),
)
assert_constructed_model_matches_example_json(response, expected_response)
def test_create_agent_to_server_scheduled_instant_test_error_400(self) -> None:
"""Integration test for create_agent_to_server_scheduled_instant_test error path (HTTP 400)"""
request_body_json = """
{
"server" : "www.example.com",
"ipVersion" : "V4_ONLY",
"port" : 443,
"agentSelectorType" : "all-agents",
"tagIds" : [ "c6b78e57-81a2-4c5f-a11a-d96c3c664d55", "5aeab5d5-0d34-4d44-a7ac-fb440185295c" ],
"maxMachines" : 25,
"serverName" : "www.example.com",
"endpointAgentLabels" : [ "567", "214" ],
"agents" : [ "0a3b9998-dc3a-4ff2-b50d-ac4a7cd986e1", "66eec0f1-72b4-4755-aa83-3aed61d17f3c" ],
"testName" : "Test name"
}
"""
endpoint_agent_to_server_instant_test = thousandeyes_sdk.endpoint_instant_tests.models.EndpointAgentToServerInstantTest.from_json(request_body_json)
aid = '1234'
error_body_json = """
{
"instance" : "instance",
"detail" : "detail",
"type" : "type",
"title" : "title",
"errors" : [ {
"code" : "code",
"field" : "field",
"message" : "message"
}, {
"code" : "code",
"field" : "field",
"message" : "message"
} ],
"status" : 0
}
"""
expected_error = json.loads(error_body_json)
with self.assertRaises(
ApiException.exception_class_for_http_status(400)
) as context:
self.api.create_agent_to_server_scheduled_instant_test(
endpoint_agent_to_server_instant_test=endpoint_agent_to_server_instant_test,
aid=aid,
_headers=self.te_headers("create_agent_to_server_scheduled_instant_test", error_status="400"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_create_agent_to_server_scheduled_instant_test_error_401(self) -> None:
"""Integration test for create_agent_to_server_scheduled_instant_test error path (HTTP 401)"""
request_body_json = """
{
"server" : "www.example.com",
"ipVersion" : "V4_ONLY",
"port" : 443,
"agentSelectorType" : "all-agents",
"tagIds" : [ "c6b78e57-81a2-4c5f-a11a-d96c3c664d55", "5aeab5d5-0d34-4d44-a7ac-fb440185295c" ],
"maxMachines" : 25,
"serverName" : "www.example.com",
"endpointAgentLabels" : [ "567", "214" ],
"agents" : [ "0a3b9998-dc3a-4ff2-b50d-ac4a7cd986e1", "66eec0f1-72b4-4755-aa83-3aed61d17f3c" ],
"testName" : "Test name"
}
"""
endpoint_agent_to_server_instant_test = thousandeyes_sdk.endpoint_instant_tests.models.EndpointAgentToServerInstantTest.from_json(request_body_json)
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.create_agent_to_server_scheduled_instant_test(
endpoint_agent_to_server_instant_test=endpoint_agent_to_server_instant_test,
aid=aid,
_headers=self.te_headers("create_agent_to_server_scheduled_instant_test", error_status="401"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_create_agent_to_server_scheduled_instant_test_error_403(self) -> None:
"""Integration test for create_agent_to_server_scheduled_instant_test error path (HTTP 403)"""
request_body_json = """
{
"server" : "www.example.com",
"ipVersion" : "V4_ONLY",
"port" : 443,
"agentSelectorType" : "all-agents",
"tagIds" : [ "c6b78e57-81a2-4c5f-a11a-d96c3c664d55", "5aeab5d5-0d34-4d44-a7ac-fb440185295c" ],
"maxMachines" : 25,
"serverName" : "www.example.com",
"endpointAgentLabels" : [ "567", "214" ],
"agents" : [ "0a3b9998-dc3a-4ff2-b50d-ac4a7cd986e1", "66eec0f1-72b4-4755-aa83-3aed61d17f3c" ],
"testName" : "Test name"
}
"""
endpoint_agent_to_server_instant_test = thousandeyes_sdk.endpoint_instant_tests.models.EndpointAgentToServerInstantTest.from_json(request_body_json)
aid = '1234'
error_body_json = """
{
"instance" : "instance",
"detail" : "detail",
"type" : "type",
"title" : "title",
"status" : 6
}
"""
expected_error = json.loads(error_body_json)
with self.assertRaises(
ApiException.exception_class_for_http_status(403)
) as context:
self.api.create_agent_to_server_scheduled_instant_test(
endpoint_agent_to_server_instant_test=endpoint_agent_to_server_instant_test,
aid=aid,
_headers=self.te_headers("create_agent_to_server_scheduled_instant_test", error_status="403"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_create_agent_to_server_scheduled_instant_test_error_429(self) -> None:
"""Integration test for create_agent_to_server_scheduled_instant_test error path (HTTP 429)"""
request_body_json = """
{
"server" : "www.example.com",
"ipVersion" : "V4_ONLY",
"port" : 443,
"agentSelectorType" : "all-agents",
"tagIds" : [ "c6b78e57-81a2-4c5f-a11a-d96c3c664d55", "5aeab5d5-0d34-4d44-a7ac-fb440185295c" ],
"maxMachines" : 25,
"serverName" : "www.example.com",
"endpointAgentLabels" : [ "567", "214" ],
"agents" : [ "0a3b9998-dc3a-4ff2-b50d-ac4a7cd986e1", "66eec0f1-72b4-4755-aa83-3aed61d17f3c" ],
"testName" : "Test name"
}
"""
endpoint_agent_to_server_instant_test = thousandeyes_sdk.endpoint_instant_tests.models.EndpointAgentToServerInstantTest.from_json(request_body_json)
aid = '1234'
error_body_json = """
{
"instance" : "instance",
"detail" : "detail",
"type" : "type",
"title" : "title",
"status" : 6
}
"""
expected_error = json.loads(error_body_json)
with self.assertRaises(
ApiException.exception_class_for_http_status(429)
) as context:
self.api.create_agent_to_server_scheduled_instant_test(
endpoint_agent_to_server_instant_test=endpoint_agent_to_server_instant_test,
aid=aid,
_headers=self.te_headers("create_agent_to_server_scheduled_instant_test", error_status="429"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_create_agent_to_server_scheduled_instant_test_error_500(self) -> None:
"""Integration test for create_agent_to_server_scheduled_instant_test error path (HTTP 500)"""
request_body_json = """
{
"server" : "www.example.com",
"ipVersion" : "V4_ONLY",
"port" : 443,
"agentSelectorType" : "all-agents",
"tagIds" : [ "c6b78e57-81a2-4c5f-a11a-d96c3c664d55", "5aeab5d5-0d34-4d44-a7ac-fb440185295c" ],
"maxMachines" : 25,
"serverName" : "www.example.com",
"endpointAgentLabels" : [ "567", "214" ],
"agents" : [ "0a3b9998-dc3a-4ff2-b50d-ac4a7cd986e1", "66eec0f1-72b4-4755-aa83-3aed61d17f3c" ],
"testName" : "Test name"
}
"""
endpoint_agent_to_server_instant_test = thousandeyes_sdk.endpoint_instant_tests.models.EndpointAgentToServerInstantTest.from_json(request_body_json)
aid = '1234'
error_body_json = """
{
"instance" : "instance",
"detail" : "detail",
"type" : "type",
"title" : "title",
"status" : 6
}
"""
expected_error = json.loads(error_body_json)
with self.assertRaises(
ApiException.exception_class_for_http_status(500)
) as context:
self.api.create_agent_to_server_scheduled_instant_test(
endpoint_agent_to_server_instant_test=endpoint_agent_to_server_instant_test,
aid=aid,
_headers=self.te_headers("create_agent_to_server_scheduled_instant_test", error_status="500"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_create_agent_to_server_scheduled_instant_test_error_502(self) -> None:
"""Integration test for create_agent_to_server_scheduled_instant_test error path (HTTP 502)"""
request_body_json = """
{
"server" : "www.example.com",
"ipVersion" : "V4_ONLY",
"port" : 443,
"agentSelectorType" : "all-agents",
"tagIds" : [ "c6b78e57-81a2-4c5f-a11a-d96c3c664d55", "5aeab5d5-0d34-4d44-a7ac-fb440185295c" ],
"maxMachines" : 25,
"serverName" : "www.example.com",
"endpointAgentLabels" : [ "567", "214" ],
"agents" : [ "0a3b9998-dc3a-4ff2-b50d-ac4a7cd986e1", "66eec0f1-72b4-4755-aa83-3aed61d17f3c" ],
"testName" : "Test name"
}
"""
endpoint_agent_to_server_instant_test = thousandeyes_sdk.endpoint_instant_tests.models.EndpointAgentToServerInstantTest.from_json(request_body_json)
aid = '1234'
error_body_json = """
{
"instance" : "instance",
"detail" : "detail",
"type" : "type",
"title" : "title",
"status" : 6
}
"""
expected_error = json.loads(error_body_json)
with self.assertRaises(
ApiException.exception_class_for_http_status(502)
) as context:
self.api.create_agent_to_server_scheduled_instant_test(
endpoint_agent_to_server_instant_test=endpoint_agent_to_server_instant_test,
aid=aid,
_headers=self.te_headers("create_agent_to_server_scheduled_instant_test", error_status="502"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
if __name__ == '__main__':
unittest.main()

View File

@ -0,0 +1,457 @@
# coding: utf-8
"""
Endpoint Instant Scheduled Tests API
You can create and execute a new endpoint instant scheduled test within ThousandEyes using this API. The test parameters are specified in the `POST` data. The following applies to the Endpoint Instant Scheduled Tests API: * To initiate the creation and execution of an instant scheduled test, the user must possess the `Edit endpoint tests` permission. * Upon successful creation of an instant scheduled test, the API responds with an HTTP/201 CREATED status code and return the test definition. * It's important to note that the response does not include the results of the instant scheduled test. To retrieve test results, users can utilize the Endpoint Test Data endpoints. The URLs for these API test data endpoints are provided within the test definition output when an instant scheduled test is created.
Generated by OpenAPI Generator (https://openapi-generator.tech)
Do not edit the class manually.
""" # noqa: E501
import json
import unittest
import thousandeyes_sdk.endpoint_instant_tests.models
from thousandeyes_sdk.core.exceptions import ApiException
from thousandeyes_sdk.endpoint_instant_tests.api.http_server_endpoint_instant_scheduled_tests_api import HTTPServerEndpointInstantScheduledTestsApi
from .integration_test_utils import IntegrationTestBase
from .test_utils import assert_constructed_model_matches_example_json
class TestHTTPServerEndpointInstantScheduledTestsApiIntegration(IntegrationTestBase):
"""HTTPServerEndpointInstantScheduledTestsApi integration test stubs"""
def setUp(self) -> None:
super().setUp()
self.api = HTTPServerEndpointInstantScheduledTestsApi(self.api_client)
def test_create_http_server_scheduled_instant_test_happy_path(self) -> None:
"""Integration test for create_http_server_scheduled_instant_test success path"""
request_body_json = """
{
"verifyCertificate" : true,
"hasPing" : true,
"agentSelectorType" : "all-agents",
"tagIds" : [ "c6b78e57-81a2-4c5f-a11a-d96c3c664d55", "5aeab5d5-0d34-4d44-a7ac-fb440185295c" ],
"maxMachines" : 25,
"httpTimeLimit" : 5000,
"networkMeasurements" : true,
"endpointAgentLabels" : [ "567", "214" ],
"tcpProbeMode" : "auto",
"url" : "https://example.com:443",
"agents" : [ "0a3b9998-dc3a-4ff2-b50d-ac4a7cd986e1", "66eec0f1-72b4-4755-aa83-3aed61d17f3c" ],
"protocol" : "icmp",
"password" : "password",
"ipVersion" : "V4_ONLY",
"hasTraceroute" : true,
"targetResponseTime" : 1000,
"authType" : "none",
"hasPathTraceInSession" : true,
"testName" : "Test name",
"username" : "username",
"sslVersionId" : "0"
}
"""
endpoint_http_server_instant_test = thousandeyes_sdk.endpoint_instant_tests.models.EndpointHttpServerInstantTest.from_json(request_body_json)
aid = '1234'
response_body_json = """
{
&quot;server&quot; : &quot;www.example.com&quot;,
&quot;isSavedEvent&quot; : false,
&quot;sslVersion&quot; : &quot;Auto&quot;,
&quot;useNtlm&quot; : false,
&quot;_links&quot; : {
&quot;testResults&quot; : [ {
&quot;href&quot; : &quot;https://api.thousandeyes.com/v7/endpoint/test-results/scheduled-tests/281474976710706/network/filter&quot;
}, {
&quot;href&quot; : &quot;https://api.thousandeyes.com/v7/endpoint/test-results/scheduled-tests/281474976710706/pathvis&quot;
} ],
&quot;self&quot; : {
&quot;hreflang&quot; : &quot;hreflang&quot;,
&quot;templated&quot; : true,
&quot;profile&quot; : &quot;profile&quot;,
&quot;name&quot; : &quot;name&quot;,
&quot;href&quot; : &quot;https://api.thousandeyes.com/v7/link/to/resource/id&quot;,
&quot;type&quot; : &quot;type&quot;,
&quot;deprecation&quot; : &quot;deprecation&quot;,
&quot;title&quot; : &quot;title&quot;
}
},
&quot;isPrioritized&quot; : false,
&quot;httpTimeLimit&quot; : 5000,
&quot;type&quot; : &quot;http-server&quot;,
&quot;protocol&quot; : &quot;icmp&quot;,
&quot;httpVersion&quot; : 2,
&quot;followRedirects&quot; : true,
&quot;authType&quot; : &quot;none&quot;,
&quot;testName&quot; : &quot;Test name&quot;,
&quot;verifyCertificate&quot; : true,
&quot;networkMeasurements&quot; : true,
&quot;tcpProbeMode&quot; : &quot;auto&quot;,
&quot;url&quot; : &quot;https://example.com:443&quot;,
&quot;labels&quot; : [ {
&quot;labelId&quot; : &quot;961&quot;,
&quot;name&quot; : &quot;Artem label&quot;,
&quot;isBuiltin&quot; : false
}, {
&quot;labelId&quot; : &quot;961&quot;,
&quot;name&quot; : &quot;Artem label&quot;,
&quot;isBuiltin&quot; : false
} ],
&quot;createdDate&quot; : &quot;2022-07-17T22:00:54Z&quot;,
&quot;ipVersion&quot; : &quot;V4_ONLY&quot;,
&quot;port&quot; : 443,
&quot;isEnabled&quot; : true,
&quot;modifiedDate&quot; : &quot;2022-07-17T22:00:54Z&quot;,
&quot;interval&quot; : 60,
&quot;testId&quot; : &quot;281474976710706&quot;,
&quot;aid&quot; : &quot;1234&quot;,
&quot;agentSelectorConfig&quot; : {
&quot;agentSelectorType&quot; : &quot;all-agents&quot;,
&quot;maxMachines&quot; : 25
},
&quot;hasPathTraceInSession&quot; : true,
&quot;httpTargetTime&quot; : 100,
&quot;username&quot; : &quot;username&quot;,
&quot;sslVersionId&quot; : &quot;0&quot;
}
"""
expected_response = json.loads(response_body_json)
response = self.api.create_http_server_scheduled_instant_test(
endpoint_http_server_instant_test=endpoint_http_server_instant_test,
aid=aid,
_headers=self.te_headers("create_http_server_scheduled_instant_test"),
)
assert_constructed_model_matches_example_json(response, expected_response)
def test_create_http_server_scheduled_instant_test_error_400(self) -> None:
"""Integration test for create_http_server_scheduled_instant_test error path (HTTP 400)"""
request_body_json = """
{
"verifyCertificate" : true,
"hasPing" : true,
"agentSelectorType" : "all-agents",
"tagIds" : [ "c6b78e57-81a2-4c5f-a11a-d96c3c664d55", "5aeab5d5-0d34-4d44-a7ac-fb440185295c" ],
"maxMachines" : 25,
"httpTimeLimit" : 5000,
"networkMeasurements" : true,
"endpointAgentLabels" : [ "567", "214" ],
"tcpProbeMode" : "auto",
"url" : "https://example.com:443",
"agents" : [ "0a3b9998-dc3a-4ff2-b50d-ac4a7cd986e1", "66eec0f1-72b4-4755-aa83-3aed61d17f3c" ],
"protocol" : "icmp",
"password" : "password",
"ipVersion" : "V4_ONLY",
"hasTraceroute" : true,
"targetResponseTime" : 1000,
"authType" : "none",
"hasPathTraceInSession" : true,
"testName" : "Test name",
"username" : "username",
"sslVersionId" : "0"
}
"""
endpoint_http_server_instant_test = thousandeyes_sdk.endpoint_instant_tests.models.EndpointHttpServerInstantTest.from_json(request_body_json)
aid = '1234'
error_body_json = """
{
"instance" : "instance",
"detail" : "detail",
"type" : "type",
"title" : "title",
"errors" : [ {
"code" : "code",
"field" : "field",
"message" : "message"
}, {
"code" : "code",
"field" : "field",
"message" : "message"
} ],
"status" : 0
}
"""
expected_error = json.loads(error_body_json)
with self.assertRaises(
ApiException.exception_class_for_http_status(400)
) as context:
self.api.create_http_server_scheduled_instant_test(
endpoint_http_server_instant_test=endpoint_http_server_instant_test,
aid=aid,
_headers=self.te_headers("create_http_server_scheduled_instant_test", error_status="400"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_create_http_server_scheduled_instant_test_error_401(self) -> None:
"""Integration test for create_http_server_scheduled_instant_test error path (HTTP 401)"""
request_body_json = """
{
"verifyCertificate" : true,
"hasPing" : true,
"agentSelectorType" : "all-agents",
"tagIds" : [ "c6b78e57-81a2-4c5f-a11a-d96c3c664d55", "5aeab5d5-0d34-4d44-a7ac-fb440185295c" ],
"maxMachines" : 25,
"httpTimeLimit" : 5000,
"networkMeasurements" : true,
"endpointAgentLabels" : [ "567", "214" ],
"tcpProbeMode" : "auto",
"url" : "https://example.com:443",
"agents" : [ "0a3b9998-dc3a-4ff2-b50d-ac4a7cd986e1", "66eec0f1-72b4-4755-aa83-3aed61d17f3c" ],
"protocol" : "icmp",
"password" : "password",
"ipVersion" : "V4_ONLY",
"hasTraceroute" : true,
"targetResponseTime" : 1000,
"authType" : "none",
"hasPathTraceInSession" : true,
"testName" : "Test name",
"username" : "username",
"sslVersionId" : "0"
}
"""
endpoint_http_server_instant_test = thousandeyes_sdk.endpoint_instant_tests.models.EndpointHttpServerInstantTest.from_json(request_body_json)
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.create_http_server_scheduled_instant_test(
endpoint_http_server_instant_test=endpoint_http_server_instant_test,
aid=aid,
_headers=self.te_headers("create_http_server_scheduled_instant_test", error_status="401"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_create_http_server_scheduled_instant_test_error_403(self) -> None:
"""Integration test for create_http_server_scheduled_instant_test error path (HTTP 403)"""
request_body_json = """
{
"verifyCertificate" : true,
"hasPing" : true,
"agentSelectorType" : "all-agents",
"tagIds" : [ "c6b78e57-81a2-4c5f-a11a-d96c3c664d55", "5aeab5d5-0d34-4d44-a7ac-fb440185295c" ],
"maxMachines" : 25,
"httpTimeLimit" : 5000,
"networkMeasurements" : true,
"endpointAgentLabels" : [ "567", "214" ],
"tcpProbeMode" : "auto",
"url" : "https://example.com:443",
"agents" : [ "0a3b9998-dc3a-4ff2-b50d-ac4a7cd986e1", "66eec0f1-72b4-4755-aa83-3aed61d17f3c" ],
"protocol" : "icmp",
"password" : "password",
"ipVersion" : "V4_ONLY",
"hasTraceroute" : true,
"targetResponseTime" : 1000,
"authType" : "none",
"hasPathTraceInSession" : true,
"testName" : "Test name",
"username" : "username",
"sslVersionId" : "0"
}
"""
endpoint_http_server_instant_test = thousandeyes_sdk.endpoint_instant_tests.models.EndpointHttpServerInstantTest.from_json(request_body_json)
aid = '1234'
error_body_json = """
{
"instance" : "instance",
"detail" : "detail",
"type" : "type",
"title" : "title",
"status" : 6
}
"""
expected_error = json.loads(error_body_json)
with self.assertRaises(
ApiException.exception_class_for_http_status(403)
) as context:
self.api.create_http_server_scheduled_instant_test(
endpoint_http_server_instant_test=endpoint_http_server_instant_test,
aid=aid,
_headers=self.te_headers("create_http_server_scheduled_instant_test", error_status="403"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_create_http_server_scheduled_instant_test_error_429(self) -> None:
"""Integration test for create_http_server_scheduled_instant_test error path (HTTP 429)"""
request_body_json = """
{
"verifyCertificate" : true,
"hasPing" : true,
"agentSelectorType" : "all-agents",
"tagIds" : [ "c6b78e57-81a2-4c5f-a11a-d96c3c664d55", "5aeab5d5-0d34-4d44-a7ac-fb440185295c" ],
"maxMachines" : 25,
"httpTimeLimit" : 5000,
"networkMeasurements" : true,
"endpointAgentLabels" : [ "567", "214" ],
"tcpProbeMode" : "auto",
"url" : "https://example.com:443",
"agents" : [ "0a3b9998-dc3a-4ff2-b50d-ac4a7cd986e1", "66eec0f1-72b4-4755-aa83-3aed61d17f3c" ],
"protocol" : "icmp",
"password" : "password",
"ipVersion" : "V4_ONLY",
"hasTraceroute" : true,
"targetResponseTime" : 1000,
"authType" : "none",
"hasPathTraceInSession" : true,
"testName" : "Test name",
"username" : "username",
"sslVersionId" : "0"
}
"""
endpoint_http_server_instant_test = thousandeyes_sdk.endpoint_instant_tests.models.EndpointHttpServerInstantTest.from_json(request_body_json)
aid = '1234'
error_body_json = """
{
"instance" : "instance",
"detail" : "detail",
"type" : "type",
"title" : "title",
"status" : 6
}
"""
expected_error = json.loads(error_body_json)
with self.assertRaises(
ApiException.exception_class_for_http_status(429)
) as context:
self.api.create_http_server_scheduled_instant_test(
endpoint_http_server_instant_test=endpoint_http_server_instant_test,
aid=aid,
_headers=self.te_headers("create_http_server_scheduled_instant_test", error_status="429"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_create_http_server_scheduled_instant_test_error_500(self) -> None:
"""Integration test for create_http_server_scheduled_instant_test error path (HTTP 500)"""
request_body_json = """
{
"verifyCertificate" : true,
"hasPing" : true,
"agentSelectorType" : "all-agents",
"tagIds" : [ "c6b78e57-81a2-4c5f-a11a-d96c3c664d55", "5aeab5d5-0d34-4d44-a7ac-fb440185295c" ],
"maxMachines" : 25,
"httpTimeLimit" : 5000,
"networkMeasurements" : true,
"endpointAgentLabels" : [ "567", "214" ],
"tcpProbeMode" : "auto",
"url" : "https://example.com:443",
"agents" : [ "0a3b9998-dc3a-4ff2-b50d-ac4a7cd986e1", "66eec0f1-72b4-4755-aa83-3aed61d17f3c" ],
"protocol" : "icmp",
"password" : "password",
"ipVersion" : "V4_ONLY",
"hasTraceroute" : true,
"targetResponseTime" : 1000,
"authType" : "none",
"hasPathTraceInSession" : true,
"testName" : "Test name",
"username" : "username",
"sslVersionId" : "0"
}
"""
endpoint_http_server_instant_test = thousandeyes_sdk.endpoint_instant_tests.models.EndpointHttpServerInstantTest.from_json(request_body_json)
aid = '1234'
error_body_json = """
{
"instance" : "instance",
"detail" : "detail",
"type" : "type",
"title" : "title",
"status" : 6
}
"""
expected_error = json.loads(error_body_json)
with self.assertRaises(
ApiException.exception_class_for_http_status(500)
) as context:
self.api.create_http_server_scheduled_instant_test(
endpoint_http_server_instant_test=endpoint_http_server_instant_test,
aid=aid,
_headers=self.te_headers("create_http_server_scheduled_instant_test", error_status="500"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_create_http_server_scheduled_instant_test_error_502(self) -> None:
"""Integration test for create_http_server_scheduled_instant_test error path (HTTP 502)"""
request_body_json = """
{
"verifyCertificate" : true,
"hasPing" : true,
"agentSelectorType" : "all-agents",
"tagIds" : [ "c6b78e57-81a2-4c5f-a11a-d96c3c664d55", "5aeab5d5-0d34-4d44-a7ac-fb440185295c" ],
"maxMachines" : 25,
"httpTimeLimit" : 5000,
"networkMeasurements" : true,
"endpointAgentLabels" : [ "567", "214" ],
"tcpProbeMode" : "auto",
"url" : "https://example.com:443",
"agents" : [ "0a3b9998-dc3a-4ff2-b50d-ac4a7cd986e1", "66eec0f1-72b4-4755-aa83-3aed61d17f3c" ],
"protocol" : "icmp",
"password" : "password",
"ipVersion" : "V4_ONLY",
"hasTraceroute" : true,
"targetResponseTime" : 1000,
"authType" : "none",
"hasPathTraceInSession" : true,
"testName" : "Test name",
"username" : "username",
"sslVersionId" : "0"
}
"""
endpoint_http_server_instant_test = thousandeyes_sdk.endpoint_instant_tests.models.EndpointHttpServerInstantTest.from_json(request_body_json)
aid = '1234'
error_body_json = """
{
"instance" : "instance",
"detail" : "detail",
"type" : "type",
"title" : "title",
"status" : 6
}
"""
expected_error = json.loads(error_body_json)
with self.assertRaises(
ApiException.exception_class_for_http_status(502)
) as context:
self.api.create_http_server_scheduled_instant_test(
endpoint_http_server_instant_test=endpoint_http_server_instant_test,
aid=aid,
_headers=self.te_headers("create_http_server_scheduled_instant_test", error_status="502"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
if __name__ == '__main__':
unittest.main()

View File

@ -0,0 +1,236 @@
# coding: utf-8
"""
Endpoint Instant Scheduled Tests API
You can create and execute a new endpoint instant scheduled test within ThousandEyes using this API. The test parameters are specified in the `POST` data. The following applies to the Endpoint Instant Scheduled Tests API: * To initiate the creation and execution of an instant scheduled test, the user must possess the `Edit endpoint tests` permission. * Upon successful creation of an instant scheduled test, the API responds with an HTTP/201 CREATED status code and return the test definition. * It's important to note that the response does not include the results of the instant scheduled test. To retrieve test results, users can utilize the Endpoint Test Data endpoints. The URLs for these API test data endpoints are provided within the test definition output when an instant scheduled test is created.
Generated by OpenAPI Generator (https://openapi-generator.tech)
Do not edit the class manually.
""" # noqa: E501
import json
import unittest
import thousandeyes_sdk.endpoint_instant_tests.models
from thousandeyes_sdk.core.exceptions import ApiException
from thousandeyes_sdk.endpoint_instant_tests.api.run_endpoint_instant_scheduled_tests_api import RunEndpointInstantScheduledTestsApi
from .integration_test_utils import IntegrationTestBase
from .test_utils import assert_constructed_model_matches_example_json
class TestRunEndpointInstantScheduledTestsApiIntegration(IntegrationTestBase):
"""RunEndpointInstantScheduledTestsApi integration test stubs"""
def setUp(self) -> None:
super().setUp()
self.api = RunEndpointInstantScheduledTestsApi(self.api_client)
def test_run_endpoint_scheduled_instant_test_happy_path(self) -> None:
"""Integration test for run_endpoint_scheduled_instant_test success path"""
test_id = '765231567'
aid = '1234'
response_body_json = """
{
&quot;message&quot; : &quot;Successfully reran the instant scheduled test with testId&#x3D;765231567&quot;
}
"""
expected_response = json.loads(response_body_json)
response = self.api.run_endpoint_scheduled_instant_test(
test_id=test_id,
aid=aid,
_headers=self.te_headers("run_endpoint_scheduled_instant_test"),
)
assert_constructed_model_matches_example_json(response, expected_response)
def test_run_endpoint_scheduled_instant_test_error_400(self) -> None:
"""Integration test for run_endpoint_scheduled_instant_test error path (HTTP 400)"""
test_id = '765231567'
aid = '1234'
error_body_json = """
{
"instance" : "instance",
"detail" : "detail",
"type" : "type",
"title" : "title",
"errors" : [ {
"code" : "code",
"field" : "field",
"message" : "message"
}, {
"code" : "code",
"field" : "field",
"message" : "message"
} ],
"status" : 0
}
"""
expected_error = json.loads(error_body_json)
with self.assertRaises(
ApiException.exception_class_for_http_status(400)
) as context:
self.api.run_endpoint_scheduled_instant_test(
test_id=test_id,
aid=aid,
_headers=self.te_headers("run_endpoint_scheduled_instant_test", error_status="400"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_run_endpoint_scheduled_instant_test_error_401(self) -> None:
"""Integration test for run_endpoint_scheduled_instant_test error path (HTTP 401)"""
test_id = '765231567'
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.run_endpoint_scheduled_instant_test(
test_id=test_id,
aid=aid,
_headers=self.te_headers("run_endpoint_scheduled_instant_test", error_status="401"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_run_endpoint_scheduled_instant_test_error_403(self) -> None:
"""Integration test for run_endpoint_scheduled_instant_test error path (HTTP 403)"""
test_id = '765231567'
aid = '1234'
error_body_json = """
{
"instance" : "instance",
"detail" : "detail",
"type" : "type",
"title" : "title",
"status" : 6
}
"""
expected_error = json.loads(error_body_json)
with self.assertRaises(
ApiException.exception_class_for_http_status(403)
) as context:
self.api.run_endpoint_scheduled_instant_test(
test_id=test_id,
aid=aid,
_headers=self.te_headers("run_endpoint_scheduled_instant_test", error_status="403"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_run_endpoint_scheduled_instant_test_error_404(self) -> None:
"""Integration test for run_endpoint_scheduled_instant_test error path (HTTP 404)"""
test_id = '765231567'
aid = '1234'
error_body_json = """
{
"instance" : "instance",
"detail" : "detail",
"type" : "type",
"title" : "title",
"status" : 6
}
"""
expected_error = json.loads(error_body_json)
with self.assertRaises(
ApiException.exception_class_for_http_status(404)
) as context:
self.api.run_endpoint_scheduled_instant_test(
test_id=test_id,
aid=aid,
_headers=self.te_headers("run_endpoint_scheduled_instant_test", error_status="404"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_run_endpoint_scheduled_instant_test_error_429(self) -> None:
"""Integration test for run_endpoint_scheduled_instant_test error path (HTTP 429)"""
test_id = '765231567'
aid = '1234'
error_body_json = """
{
"instance" : "instance",
"detail" : "detail",
"type" : "type",
"title" : "title",
"status" : 6
}
"""
expected_error = json.loads(error_body_json)
with self.assertRaises(
ApiException.exception_class_for_http_status(429)
) as context:
self.api.run_endpoint_scheduled_instant_test(
test_id=test_id,
aid=aid,
_headers=self.te_headers("run_endpoint_scheduled_instant_test", error_status="429"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_run_endpoint_scheduled_instant_test_error_500(self) -> None:
"""Integration test for run_endpoint_scheduled_instant_test error path (HTTP 500)"""
test_id = '765231567'
aid = '1234'
error_body_json = """
{
"instance" : "instance",
"detail" : "detail",
"type" : "type",
"title" : "title",
"status" : 6
}
"""
expected_error = json.loads(error_body_json)
with self.assertRaises(
ApiException.exception_class_for_http_status(500)
) as context:
self.api.run_endpoint_scheduled_instant_test(
test_id=test_id,
aid=aid,
_headers=self.te_headers("run_endpoint_scheduled_instant_test", error_status="500"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_run_endpoint_scheduled_instant_test_error_502(self) -> None:
"""Integration test for run_endpoint_scheduled_instant_test error path (HTTP 502)"""
test_id = '765231567'
aid = '1234'
error_body_json = """
{
"instance" : "instance",
"detail" : "detail",
"type" : "type",
"title" : "title",
"status" : 6
}
"""
expected_error = json.loads(error_body_json)
with self.assertRaises(
ApiException.exception_class_for_http_status(502)
) as context:
self.api.run_endpoint_scheduled_instant_test(
test_id=test_id,
aid=aid,
_headers=self.te_headers("run_endpoint_scheduled_instant_test", error_status="502"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
if __name__ == '__main__':
unittest.main()

View File

@ -0,0 +1,7 @@
import sys
from pathlib import Path
_repo_root = Path(__file__).resolve().parents[2]
_core_test_support = _repo_root / "thousandeyes-sdk-core" / "test"
if str(_core_test_support) not in sys.path:
sys.path.insert(0, str(_core_test_support))

View File

@ -0,0 +1,37 @@
# coding: utf-8
"""
Endpoint Agent Labels API
Manage labels applied to endpoint agents using this API.
Generated by OpenAPI Generator (https://openapi-generator.tech)
Do not edit the class manually.
""" # noqa: E501
import unittest
from thousandeyes_sdk.core.api_client import ApiClient
from thousandeyes_sdk.core.configuration import Configuration
from sdk_test_support.mock_server import ERROR_STATUS_HEADER, OPERATION_ID_HEADER, MockApiServer
from .mock_manifest import OPERATION_MANIFEST
class IntegrationTestBase(unittest.TestCase):
def setUp(self) -> None:
self.server = MockApiServer(OPERATION_MANIFEST)
self.server.start()
configuration = Configuration(host=self.server.base_url, access_token="test-token")
self.api_client = ApiClient(configuration=configuration)
def tearDown(self) -> None:
self.server.stop()
def te_headers(self, operation_id: str, error_status=None):
headers = {OPERATION_ID_HEADER: operation_id}
if error_status is not None:
headers[ERROR_STATUS_HEADER] = error_status
return headers

View File

@ -0,0 +1,575 @@
# coding: utf-8
"""
Endpoint Agent Labels API
Manage labels applied to endpoint agents using this API.
Generated by OpenAPI Generator (https://openapi-generator.tech)
Do not edit the class manually.
""" # noqa: E501
import json
from sdk_test_support.mock_server_types import ErrorResponseExpectation, OperationExpectation
OPERATION_MANIFEST = {
"create_endpoint_label": OperationExpectation(
operation_id="create_endpoint_label",
method="POST",
path="/endpoint/labels",
path_param_examples={
},
success_status=201,
success_body=json.loads("""
{
"color" : "#ff3333",
"_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"
}
},
"matchType" : "and",
"name" : "Head office meeting rooms",
"id" : "abc-123-def",
"filters" : [ {
"mode" : "in",
"values" : [ "10.1.1.0/24", "192.168.1.0/24" ],
"key" : "vpn-client-network"
}, {
"mode" : "in",
"values" : [ "10.1.1.0/24", "192.168.1.0/24" ],
"key" : "vpn-client-network"
} ]
}
"""),
success_content_type="application/json",
request_body_example=json.loads("""
{
"color" : "#ff3333",
"matchType" : "and",
"name" : "Head office meeting rooms",
"id" : "abc-123-def",
"filters" : [ {
"mode" : "in",
"values" : [ "10.1.1.0/24", "192.168.1.0/24" ],
"key" : "vpn-client-network"
}, {
"mode" : "in",
"values" : [ "10.1.1.0/24", "192.168.1.0/24" ],
"key" : "vpn-client-network"
} ]
}
"""),
error_responses={
"400": ErrorResponseExpectation(
status=400,
body=json.loads("""
{
"instance" : "instance",
"detail" : "detail",
"type" : "type",
"title" : "title",
"errors" : [ {
"code" : "code",
"field" : "field",
"message" : "message"
}, {
"code" : "code",
"field" : "field",
"message" : "message"
} ],
"status" : 0
}"""),
content_type="application/json",
),
"401": ErrorResponseExpectation(
status=401,
body=json.loads("""
{
"error_description" : "Invalid access token",
"error" : "invalid_token"
}"""),
content_type="application/json",
),
"403": ErrorResponseExpectation(
status=403,
body=json.loads("""
{
"instance" : "instance",
"detail" : "detail",
"type" : "type",
"title" : "title",
"status" : 0
}"""),
content_type="application/json",
),
"429": ErrorResponseExpectation(
status=429,
body=json.loads("""
{
"instance" : "instance",
"detail" : "detail",
"type" : "type",
"title" : "title",
"status" : 0
}"""),
content_type="application/json",
),
},
),
"delete_endpoint_label": OperationExpectation(
operation_id="delete_endpoint_label",
method="DELETE",
path="/endpoint/labels/{id}",
path_param_examples={
"id": 'id_example',
},
success_status=204,
success_body=None,
success_content_type="application/json",
request_body_example=None,
error_responses={
"401": ErrorResponseExpectation(
status=401,
body=json.loads("""
{
"error_description" : "Invalid access token",
"error" : "invalid_token"
}"""),
content_type="application/json",
),
"403": ErrorResponseExpectation(
status=403,
body=json.loads("""
{
"instance" : "instance",
"detail" : "detail",
"type" : "type",
"title" : "title",
"status" : 0
}"""),
content_type="application/json",
),
"404": ErrorResponseExpectation(
status=404,
body=json.loads("""
{
"instance" : "instance",
"detail" : "detail",
"type" : "type",
"title" : "title",
"status" : 0
}"""),
content_type="application/json",
),
"429": ErrorResponseExpectation(
status=429,
body=json.loads("""
{
"instance" : "instance",
"detail" : "detail",
"type" : "type",
"title" : "title",
"status" : 0
}"""),
content_type="application/json",
),
},
),
"get_endpoint_label": OperationExpectation(
operation_id="get_endpoint_label",
method="GET",
path="/endpoint/labels/{id}",
path_param_examples={
"id": 'id_example',
},
success_status=200,
success_body=json.loads("""
{
"color" : "#ff3333",
"_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"
}
},
"matchType" : "and",
"name" : "Head office meeting rooms",
"id" : "abc-123-def",
"filters" : [ {
"mode" : "in",
"values" : [ "10.1.1.0/24", "192.168.1.0/24" ],
"key" : "vpn-client-network"
}, {
"mode" : "in",
"values" : [ "10.1.1.0/24", "192.168.1.0/24" ],
"key" : "vpn-client-network"
} ]
}
"""),
success_content_type="application/json",
request_body_example=None,
error_responses={
"401": ErrorResponseExpectation(
status=401,
body=json.loads("""
{
"error_description" : "Invalid access token",
"error" : "invalid_token"
}"""),
content_type="application/json",
),
"403": ErrorResponseExpectation(
status=403,
body=json.loads("""
{
"instance" : "instance",
"detail" : "detail",
"type" : "type",
"title" : "title",
"status" : 0
}"""),
content_type="application/json",
),
"404": ErrorResponseExpectation(
status=404,
body=json.loads("""
{
"instance" : "instance",
"detail" : "detail",
"type" : "type",
"title" : "title",
"status" : 0
}"""),
content_type="application/json",
),
"429": ErrorResponseExpectation(
status=429,
body=json.loads("""
{
"instance" : "instance",
"detail" : "detail",
"type" : "type",
"title" : "title",
"status" : 0
}"""),
content_type="application/json",
),
},
),
"get_endpoint_labels": OperationExpectation(
operation_id="get_endpoint_labels",
method="GET",
path="/endpoint/labels",
path_param_examples={
},
success_status=200,
success_body=json.loads("""
{
"_links" : {
"next" : {
"hreflang" : "hreflang",
"templated" : true,
"profile" : "profile",
"name" : "name",
"href" : "https://api.thousandeyes.com/v7/link/to/resource/id",
"type" : "type",
"deprecation" : "deprecation",
"title" : "title"
},
"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"
}
},
"labels" : [ {
"color" : "#ff3333",
"_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"
}
},
"matchType" : "and",
"name" : "Head office meeting rooms",
"id" : "abc-123-def",
"filters" : [ {
"mode" : "in",
"values" : [ "10.1.1.0/24", "192.168.1.0/24" ],
"key" : "vpn-client-network"
}, {
"mode" : "in",
"values" : [ "10.1.1.0/24", "192.168.1.0/24" ],
"key" : "vpn-client-network"
} ]
}, {
"color" : "#ff3333",
"_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"
}
},
"matchType" : "and",
"name" : "Head office meeting rooms",
"id" : "abc-123-def",
"filters" : [ {
"mode" : "in",
"values" : [ "10.1.1.0/24", "192.168.1.0/24" ],
"key" : "vpn-client-network"
}, {
"mode" : "in",
"values" : [ "10.1.1.0/24", "192.168.1.0/24" ],
"key" : "vpn-client-network"
} ]
} ]
}
"""),
success_content_type="application/json",
request_body_example=None,
error_responses={
"401": ErrorResponseExpectation(
status=401,
body=json.loads("""
{
"error_description" : "Invalid access token",
"error" : "invalid_token"
}"""),
content_type="application/json",
),
"403": ErrorResponseExpectation(
status=403,
body=json.loads("""
{
"instance" : "instance",
"detail" : "detail",
"type" : "type",
"title" : "title",
"status" : 0
}"""),
content_type="application/json",
),
"429": ErrorResponseExpectation(
status=429,
body=json.loads("""
{
"instance" : "instance",
"detail" : "detail",
"type" : "type",
"title" : "title",
"status" : 0
}"""),
content_type="application/json",
),
},
),
"update_endpoint_label": OperationExpectation(
operation_id="update_endpoint_label",
method="PATCH",
path="/endpoint/labels/{id}",
path_param_examples={
"id": 'id_example',
},
success_status=200,
success_body=json.loads("""
{
"color" : "#ff3333",
"_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"
}
},
"matchType" : "and",
"name" : "Head office meeting rooms",
"id" : "abc-123-def",
"filters" : [ {
"mode" : "in",
"values" : [ "10.1.1.0/24", "192.168.1.0/24" ],
"key" : "vpn-client-network"
}, {
"mode" : "in",
"values" : [ "10.1.1.0/24", "192.168.1.0/24" ],
"key" : "vpn-client-network"
} ]
}
"""),
success_content_type="application/json",
request_body_example=json.loads("""
{
"color" : "#ff3333",
"matchType" : "and",
"name" : "Head office meeting rooms",
"id" : "abc-123-def",
"filters" : [ {
"mode" : "in",
"values" : [ "10.1.1.0/24", "192.168.1.0/24" ],
"key" : "vpn-client-network"
}, {
"mode" : "in",
"values" : [ "10.1.1.0/24", "192.168.1.0/24" ],
"key" : "vpn-client-network"
} ]
}
"""),
error_responses={
"400": ErrorResponseExpectation(
status=400,
body=json.loads("""
{
"instance" : "instance",
"detail" : "detail",
"type" : "type",
"title" : "title",
"errors" : [ {
"code" : "code",
"field" : "field",
"message" : "message"
}, {
"code" : "code",
"field" : "field",
"message" : "message"
} ],
"status" : 0
}"""),
content_type="application/json",
),
"401": ErrorResponseExpectation(
status=401,
body=json.loads("""
{
"error_description" : "Invalid access token",
"error" : "invalid_token"
}"""),
content_type="application/json",
),
"403": ErrorResponseExpectation(
status=403,
body=json.loads("""
{
"instance" : "instance",
"detail" : "detail",
"type" : "type",
"title" : "title",
"status" : 0
}"""),
content_type="application/json",
),
"404": ErrorResponseExpectation(
status=404,
body=json.loads("""
{
"instance" : "instance",
"detail" : "detail",
"type" : "type",
"title" : "title",
"status" : 0
}"""),
content_type="application/json",
),
"429": ErrorResponseExpectation(
status=429,
body=json.loads("""
{
"instance" : "instance",
"detail" : "detail",
"type" : "type",
"title" : "title",
"status" : 0
}"""),
content_type="application/json",
),
},
),
}

View File

@ -0,0 +1,7 @@
import sys
from pathlib import Path
_repo_root = Path(__file__).resolve().parents[2]
_core_test_support = _repo_root / "thousandeyes-sdk-core" / "test"
if str(_core_test_support) not in sys.path:
sys.path.insert(0, str(_core_test_support))

View File

@ -0,0 +1,37 @@
# coding: utf-8
"""
Endpoint Test Results API
Retrieve results for scheduled and dynamic tests on endpoint agents.
Generated by OpenAPI Generator (https://openapi-generator.tech)
Do not edit the class manually.
""" # noqa: E501
import unittest
from thousandeyes_sdk.core.api_client import ApiClient
from thousandeyes_sdk.core.configuration import Configuration
from sdk_test_support.mock_server import ERROR_STATUS_HEADER, OPERATION_ID_HEADER, MockApiServer
from .mock_manifest import OPERATION_MANIFEST
class IntegrationTestBase(unittest.TestCase):
def setUp(self) -> None:
self.server = MockApiServer(OPERATION_MANIFEST)
self.server.start()
configuration = Configuration(host=self.server.base_url, access_token="test-token")
self.api_client = ApiClient(configuration=configuration)
def tearDown(self) -> None:
self.server.stop()
def te_headers(self, operation_id: str, error_status=None):
headers = {OPERATION_ID_HEADER: operation_id}
if error_status is not None:
headers[ERROR_STATUS_HEADER] = error_status
return headers

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,7 @@
import sys
from pathlib import Path
_repo_root = Path(__file__).resolve().parents[2]
_core_test_support = _repo_root / "thousandeyes-sdk-core" / "test"
if str(_core_test_support) not in sys.path:
sys.path.insert(0, str(_core_test_support))

View File

@ -0,0 +1,37 @@
# coding: utf-8
"""
Endpoint Tests API
Manage endpoint agent dynamic and scheduled tests using the Endpoint Tests API.
Generated by OpenAPI Generator (https://openapi-generator.tech)
Do not edit the class manually.
""" # noqa: E501
import unittest
from thousandeyes_sdk.core.api_client import ApiClient
from thousandeyes_sdk.core.configuration import Configuration
from sdk_test_support.mock_server import ERROR_STATUS_HEADER, OPERATION_ID_HEADER, MockApiServer
from .mock_manifest import OPERATION_MANIFEST
class IntegrationTestBase(unittest.TestCase):
def setUp(self) -> None:
self.server = MockApiServer(OPERATION_MANIFEST)
self.server.start()
configuration = Configuration(host=self.server.base_url, access_token="test-token")
self.api_client = ApiClient(configuration=configuration)
def tearDown(self) -> None:
self.server.stop()
def te_headers(self, operation_id: str, error_status=None):
headers = {OPERATION_ID_HEADER: operation_id}
if error_status is not None:
headers[ERROR_STATUS_HEADER] = error_status
return headers

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,166 @@
# coding: utf-8
"""
Endpoint Tests API
Manage endpoint agent dynamic and scheduled tests using the Endpoint Tests API.
Generated by OpenAPI Generator (https://openapi-generator.tech)
Do not edit the class manually.
""" # noqa: E501
import json
import unittest
import thousandeyes_sdk.endpoint_tests.models
from thousandeyes_sdk.core.exceptions import ApiException
from thousandeyes_sdk.endpoint_tests.api.endpoint_real_user_tests_api import EndpointRealUserTestsApi
from .integration_test_utils import IntegrationTestBase
from .test_utils import assert_constructed_model_matches_example_json
class TestEndpointRealUserTestsApiIntegration(IntegrationTestBase):
"""EndpointRealUserTestsApi integration test stubs"""
def setUp(self) -> None:
super().setUp()
self.api = EndpointRealUserTestsApi(self.api_client)
def test_get_endpoint_real_user_tests_happy_path(self) -> None:
"""Integration test for get_endpoint_real_user_tests success path"""
aid = '1234'
response_body_json = """
{
&quot;realUserTests&quot; : [ {
&quot;includedDomains&quot; : [ &quot;example.com&quot;, &quot;example.com&quot; ],
&quot;profileId&quot; : &quot;73421&quot;,
&quot;monitoringSettings&quot; : {
&quot;monitoringSettingsId&quot; : &quot;1f5c1b5d-8a0d-4d6b-a3be-56b060f7f2c9&quot;,
&quot;monitoringSettingsType&quot; : &quot;agent-tags&quot;,
&quot;tagIds&quot; : [ &quot;49d9e7d2-7df5-43df-9b37-aa596b929062&quot; ],
&quot;labelIds&quot; : [ &quot;567&quot; ]
},
&quot;name&quot; : &quot;Corporate domains&quot;,
&quot;excludedDomains&quot; : [ &quot;static.example.com&quot;, &quot;static.example.com&quot; ],
&quot;aid&quot; : &quot;1234&quot;
}, {
&quot;includedDomains&quot; : [ &quot;example.com&quot;, &quot;example.com&quot; ],
&quot;profileId&quot; : &quot;73421&quot;,
&quot;monitoringSettings&quot; : {
&quot;monitoringSettingsId&quot; : &quot;1f5c1b5d-8a0d-4d6b-a3be-56b060f7f2c9&quot;,
&quot;monitoringSettingsType&quot; : &quot;agent-tags&quot;,
&quot;tagIds&quot; : [ &quot;49d9e7d2-7df5-43df-9b37-aa596b929062&quot; ],
&quot;labelIds&quot; : [ &quot;567&quot; ]
},
&quot;name&quot; : &quot;Corporate domains&quot;,
&quot;excludedDomains&quot; : [ &quot;static.example.com&quot;, &quot;static.example.com&quot; ],
&quot;aid&quot; : &quot;1234&quot;
} ]
}
"""
expected_response = json.loads(response_body_json)
response = self.api.get_endpoint_real_user_tests(
aid=aid,
_headers=self.te_headers("get_endpoint_real_user_tests"),
)
assert_constructed_model_matches_example_json(response, expected_response)
def test_get_endpoint_real_user_tests_error_401(self) -> None:
"""Integration test for get_endpoint_real_user_tests 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_endpoint_real_user_tests(
aid=aid,
_headers=self.te_headers("get_endpoint_real_user_tests", error_status="401"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_get_endpoint_real_user_tests_error_403(self) -> None:
"""Integration test for get_endpoint_real_user_tests 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_endpoint_real_user_tests(
aid=aid,
_headers=self.te_headers("get_endpoint_real_user_tests", error_status="403"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_get_endpoint_real_user_tests_error_429(self) -> None:
"""Integration test for get_endpoint_real_user_tests 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_endpoint_real_user_tests(
aid=aid,
_headers=self.te_headers("get_endpoint_real_user_tests", error_status="429"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_get_endpoint_real_user_tests_error_500(self) -> None:
"""Integration test for get_endpoint_real_user_tests 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_endpoint_real_user_tests(
aid=aid,
_headers=self.te_headers("get_endpoint_real_user_tests", error_status="500"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
if __name__ == '__main__':
unittest.main()

View File

@ -0,0 +1,273 @@
# coding: utf-8
"""
Endpoint Tests API
Manage endpoint agent dynamic and scheduled tests using the Endpoint Tests API.
Generated by OpenAPI Generator (https://openapi-generator.tech)
Do not edit the class manually.
""" # noqa: E501
import json
import unittest
import thousandeyes_sdk.endpoint_tests.models
from thousandeyes_sdk.core.exceptions import ApiException
from thousandeyes_sdk.endpoint_tests.api.endpoint_scheduled_tests_api import EndpointScheduledTestsApi
from .integration_test_utils import IntegrationTestBase
from .test_utils import assert_constructed_model_matches_example_json
class TestEndpointScheduledTestsApiIntegration(IntegrationTestBase):
"""EndpointScheduledTestsApi integration test stubs"""
def setUp(self) -> None:
super().setUp()
self.api = EndpointScheduledTestsApi(self.api_client)
def test_get_endpoint_scheduled_tests_happy_path(self) -> None:
"""Integration test for get_endpoint_scheduled_tests success path"""
aid = '1234'
response_body_json = """
{
&quot;tests&quot; : [ {
&quot;server&quot; : &quot;www.example.com&quot;,
&quot;isSavedEvent&quot; : false,
&quot;_links&quot; : {
&quot;testResults&quot; : [ {
&quot;href&quot; : &quot;https://api.thousandeyes.com/v7/endpoint/test-results/scheduled-tests/281474976710706/network/filter&quot;
}, {
&quot;href&quot; : &quot;https://api.thousandeyes.com/v7/endpoint/test-results/scheduled-tests/281474976710706/pathvis&quot;
} ],
&quot;self&quot; : {
&quot;hreflang&quot; : &quot;hreflang&quot;,
&quot;templated&quot; : true,
&quot;profile&quot; : &quot;profile&quot;,
&quot;name&quot; : &quot;name&quot;,
&quot;href&quot; : &quot;https://api.thousandeyes.com/v7/link/to/resource/id&quot;,
&quot;type&quot; : &quot;type&quot;,
&quot;deprecation&quot; : &quot;deprecation&quot;,
&quot;title&quot; : &quot;title&quot;
}
},
&quot;isPrioritized&quot; : false,
&quot;networkMeasurements&quot; : true,
&quot;type&quot; : &quot;agent-to-server&quot;,
&quot;tcpProbeMode&quot; : &quot;auto&quot;,
&quot;labels&quot; : [ {
&quot;labelId&quot; : &quot;961&quot;,
&quot;name&quot; : &quot;Artem label&quot;,
&quot;isBuiltin&quot; : false
}, {
&quot;labelId&quot; : &quot;961&quot;,
&quot;name&quot; : &quot;Artem label&quot;,
&quot;isBuiltin&quot; : false
} ],
&quot;protocol&quot; : &quot;icmp&quot;,
&quot;createdDate&quot; : &quot;2022-07-17T22:00:54Z&quot;,
&quot;ipVersion&quot; : &quot;V4_ONLY&quot;,
&quot;port&quot; : 443,
&quot;isEnabled&quot; : true,
&quot;modifiedDate&quot; : &quot;2022-07-17T22:00:54Z&quot;,
&quot;interval&quot; : 60,
&quot;testId&quot; : &quot;281474976710706&quot;,
&quot;aid&quot; : &quot;1234&quot;,
&quot;agentSelectorConfig&quot; : {
&quot;agentSelectorType&quot; : &quot;all-agents&quot;,
&quot;maxMachines&quot; : 25
},
&quot;hasPathTraceInSession&quot; : true,
&quot;testName&quot; : &quot;Test name&quot;
}, {
&quot;server&quot; : &quot;www.example.com&quot;,
&quot;isSavedEvent&quot; : false,
&quot;_links&quot; : {
&quot;testResults&quot; : [ {
&quot;href&quot; : &quot;https://api.thousandeyes.com/v7/endpoint/test-results/scheduled-tests/281474976710706/network/filter&quot;
}, {
&quot;href&quot; : &quot;https://api.thousandeyes.com/v7/endpoint/test-results/scheduled-tests/281474976710706/pathvis&quot;
} ],
&quot;self&quot; : {
&quot;hreflang&quot; : &quot;hreflang&quot;,
&quot;templated&quot; : true,
&quot;profile&quot; : &quot;profile&quot;,
&quot;name&quot; : &quot;name&quot;,
&quot;href&quot; : &quot;https://api.thousandeyes.com/v7/link/to/resource/id&quot;,
&quot;type&quot; : &quot;type&quot;,
&quot;deprecation&quot; : &quot;deprecation&quot;,
&quot;title&quot; : &quot;title&quot;
}
},
&quot;isPrioritized&quot; : false,
&quot;networkMeasurements&quot; : true,
&quot;type&quot; : &quot;agent-to-server&quot;,
&quot;tcpProbeMode&quot; : &quot;auto&quot;,
&quot;labels&quot; : [ {
&quot;labelId&quot; : &quot;961&quot;,
&quot;name&quot; : &quot;Artem label&quot;,
&quot;isBuiltin&quot; : false
}, {
&quot;labelId&quot; : &quot;961&quot;,
&quot;name&quot; : &quot;Artem label&quot;,
&quot;isBuiltin&quot; : false
} ],
&quot;protocol&quot; : &quot;icmp&quot;,
&quot;createdDate&quot; : &quot;2022-07-17T22:00:54Z&quot;,
&quot;ipVersion&quot; : &quot;V4_ONLY&quot;,
&quot;port&quot; : 443,
&quot;isEnabled&quot; : true,
&quot;modifiedDate&quot; : &quot;2022-07-17T22:00:54Z&quot;,
&quot;interval&quot; : 60,
&quot;testId&quot; : &quot;281474976710706&quot;,
&quot;aid&quot; : &quot;1234&quot;,
&quot;agentSelectorConfig&quot; : {
&quot;agentSelectorType&quot; : &quot;all-agents&quot;,
&quot;maxMachines&quot; : 25
},
&quot;hasPathTraceInSession&quot; : true,
&quot;testName&quot; : &quot;Test name&quot;
} ],
&quot;_links&quot; : {
&quot;self&quot; : {
&quot;hreflang&quot; : &quot;hreflang&quot;,
&quot;templated&quot; : true,
&quot;profile&quot; : &quot;profile&quot;,
&quot;name&quot; : &quot;name&quot;,
&quot;href&quot; : &quot;https://api.thousandeyes.com/v7/link/to/resource/id&quot;,
&quot;type&quot; : &quot;type&quot;,
&quot;deprecation&quot; : &quot;deprecation&quot;,
&quot;title&quot; : &quot;title&quot;
}
}
}
"""
expected_response = json.loads(response_body_json)
response = self.api.get_endpoint_scheduled_tests(
aid=aid,
_headers=self.te_headers("get_endpoint_scheduled_tests"),
)
assert_constructed_model_matches_example_json(response, expected_response)
def test_get_endpoint_scheduled_tests_error_401(self) -> None:
"""Integration test for get_endpoint_scheduled_tests 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_endpoint_scheduled_tests(
aid=aid,
_headers=self.te_headers("get_endpoint_scheduled_tests", error_status="401"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_get_endpoint_scheduled_tests_error_403(self) -> None:
"""Integration test for get_endpoint_scheduled_tests 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_endpoint_scheduled_tests(
aid=aid,
_headers=self.te_headers("get_endpoint_scheduled_tests", error_status="403"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_get_endpoint_scheduled_tests_error_429(self) -> None:
"""Integration test for get_endpoint_scheduled_tests 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_endpoint_scheduled_tests(
aid=aid,
_headers=self.te_headers("get_endpoint_scheduled_tests", error_status="429"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_get_endpoint_scheduled_tests_error_500(self) -> None:
"""Integration test for get_endpoint_scheduled_tests 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_endpoint_scheduled_tests(
aid=aid,
_headers=self.te_headers("get_endpoint_scheduled_tests", error_status="500"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_get_endpoint_scheduled_tests_error_502(self) -> None:
"""Integration test for get_endpoint_scheduled_tests 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_endpoint_scheduled_tests(
aid=aid,
_headers=self.te_headers("get_endpoint_scheduled_tests", error_status="502"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
if __name__ == '__main__':
unittest.main()

View File

@ -0,0 +1,7 @@
import sys
from pathlib import Path
_repo_root = Path(__file__).resolve().parents[2]
_core_test_support = _repo_root / "thousandeyes-sdk-core" / "test"
if str(_core_test_support) not in sys.path:
sys.path.insert(0, str(_core_test_support))

View File

@ -0,0 +1,37 @@
# coding: utf-8
"""
Event Detection API
Event detection occurs when ThousandEyes identifies that error signals related to a component (proxy, network node, AS, server etc) have deviated from the baselines established by events. * To determine this, ThousandEyes takes the test results from all accounts groups within an organization, and analyzes that data. * Noisy test results (those that have too many errors in a short window) are removed until they stabilize, and the rest of the results are tagged with the components associated with that test result (for example, proxy, network, or server). * Next, any increase in failures from the test results and each component helps in determining the problem domain and which component may be at fault. * When this failure rate increases beyond a pre-defined threshold (set by the algorithm), an event is triggered and an email notification is sent to the user (if they've enabled email alerts). With the Events API, you can perform the following tasks on the ThousandEyes platform: * **Retrieve Events**: Obtain a list of events and detailed information for each event. For more information about events, see [Event Detection](https://docs.thousandeyes.com/product-documentation/event-detection).
Generated by OpenAPI Generator (https://openapi-generator.tech)
Do not edit the class manually.
""" # noqa: E501
import unittest
from thousandeyes_sdk.core.api_client import ApiClient
from thousandeyes_sdk.core.configuration import Configuration
from sdk_test_support.mock_server import ERROR_STATUS_HEADER, OPERATION_ID_HEADER, MockApiServer
from .mock_manifest import OPERATION_MANIFEST
class IntegrationTestBase(unittest.TestCase):
def setUp(self) -> None:
self.server = MockApiServer(OPERATION_MANIFEST)
self.server.start()
configuration = Configuration(host=self.server.base_url, access_token="test-token")
self.api_client = ApiClient(configuration=configuration)
def tearDown(self) -> None:
self.server.stop()
def te_headers(self, operation_id: str, error_status=None):
headers = {OPERATION_ID_HEADER: operation_id}
if error_status is not None:
headers[ERROR_STATUS_HEADER] = error_status
return headers

View File

@ -0,0 +1,460 @@
# coding: utf-8
"""
Event Detection API
Event detection occurs when ThousandEyes identifies that error signals related to a component (proxy, network node, AS, server etc) have deviated from the baselines established by events. * To determine this, ThousandEyes takes the test results from all accounts groups within an organization, and analyzes that data. * Noisy test results (those that have too many errors in a short window) are removed until they stabilize, and the rest of the results are tagged with the components associated with that test result (for example, proxy, network, or server). * Next, any increase in failures from the test results and each component helps in determining the problem domain and which component may be at fault. * When this failure rate increases beyond a pre-defined threshold (set by the algorithm), an event is triggered and an email notification is sent to the user (if they've enabled email alerts). With the Events API, you can perform the following tasks on the ThousandEyes platform: * **Retrieve Events**: Obtain a list of events and detailed information for each event. For more information about events, see [Event Detection](https://docs.thousandeyes.com/product-documentation/event-detection).
Generated by OpenAPI Generator (https://openapi-generator.tech)
Do not edit the class manually.
""" # noqa: E501
import json
from sdk_test_support.mock_server_types import ErrorResponseExpectation, OperationExpectation
OPERATION_MANIFEST = {
"get_event": OperationExpectation(
operation_id="get_event",
method="GET",
path="/events/{id}",
path_param_examples={
"id": 'e9c3bf02-a48c-4aa8-9e5f-898800d6f569',
},
success_status=200,
success_body=json.loads("""
{
"severity" : "medium",
"summary" : "Significant number of issues detected with 66.29.146.15",
"agentType" : "cloud-enterprise-agent",
"affectedTests" : {
"total" : 5,
"tests" : [ {
"affectedTargetIds" : [ "123", "1234" ],
"affectedAgentIds" : [ "2954", "2953" ],
"_links" : {
"test" : {
"hreflang" : "hreflang",
"templated" : true,
"profile" : "profile",
"name" : "name",
"href" : "https://api.thousandeyes.com/v7/link/to/resource/id",
"type" : "type",
"deprecation" : "deprecation",
"title" : "title"
}
},
"name" : "Google test",
"testType" : "agent-to-server",
"testId" : "226770"
}, {
"affectedTargetIds" : [ "123", "1234" ],
"affectedAgentIds" : [ "2954", "2953" ],
"_links" : {
"test" : {
"hreflang" : "hreflang",
"templated" : true,
"profile" : "profile",
"name" : "name",
"href" : "https://api.thousandeyes.com/v7/link/to/resource/id",
"type" : "type",
"deprecation" : "deprecation",
"title" : "title"
}
},
"name" : "Google test",
"testType" : "agent-to-server",
"testId" : "226770"
} ],
"inAccountGroup" : 2
},
"endDate" : "2020-04-23T13:43:16Z",
"_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"
}
},
"typeName" : "Network Issue",
"cause" : [ "Network Loss and/or High RTT" ],
"affectedTargets" : {
"total" : 5,
"inAccountGroup" : 2,
"targets" : [ {
"affectedAgentIds" : [ "2954", "2953" ],
"ip" : "216.239.32.10",
"name" : "google.com",
"affectedTestIds" : [ "123", "1234" ],
"serverId" : "123"
}, {
"affectedAgentIds" : [ "2954", "2953" ],
"ip" : "216.239.32.10",
"name" : "google.com",
"affectedTestIds" : [ "123", "1234" ],
"serverId" : "123"
} ]
},
"type" : "target",
"grouping" : {
"target" : "google.com"
},
"affectedAgents" : {
"total" : 5,
"inAccountGroup" : 2,
"agents" : [ {
"affectedTargetIds" : [ "123", "1234" ],
"agentId" : "2954",
"_links" : {
"agent" : {
"hreflang" : "hreflang",
"templated" : true,
"profile" : "profile",
"name" : "name",
"href" : "https://api.thousandeyes.com/v7/link/to/resource/id",
"type" : "type",
"deprecation" : "deprecation",
"title" : "title"
}
},
"countryCode" : "BR",
"name" : "São Paulo, Brazil - agent",
"location" : "São Paulo, Brazil",
"affectedTestIds" : [ "2954", "2953" ],
"type" : "enterprise"
}, {
"affectedTargetIds" : [ "123", "1234" ],
"agentId" : "2954",
"_links" : {
"agent" : {
"hreflang" : "hreflang",
"templated" : true,
"profile" : "profile",
"name" : "name",
"href" : "https://api.thousandeyes.com/v7/link/to/resource/id",
"type" : "type",
"deprecation" : "deprecation",
"title" : "title"
}
},
"countryCode" : "BR",
"name" : "São Paulo, Brazil - agent",
"location" : "São Paulo, Brazil",
"affectedTestIds" : [ "2954", "2953" ],
"type" : "enterprise"
} ]
},
"id" : "e9c3bf02-a48c-4aa8-9e5f-898800d6f569",
"state" : "resolved",
"aid" : "1234",
"startDate" : "2020-04-23T13:43:16Z"
}
"""),
success_content_type="application/json",
request_body_example=None,
error_responses={
"401": ErrorResponseExpectation(
status=401,
body=json.loads("""
{
"error_description" : "Invalid access token",
"error" : "invalid_token"
}"""),
content_type="application/json",
),
"403": ErrorResponseExpectation(
status=403,
body=json.loads("""
{
"instance" : "instance",
"detail" : "detail",
"type" : "type",
"title" : "title",
"status" : 6
}"""),
content_type="application/json",
),
"404": ErrorResponseExpectation(
status=404,
body=json.loads("""
{
"instance" : "instance",
"detail" : "detail",
"type" : "type",
"title" : "title",
"status" : 6
}"""),
content_type="application/json",
),
"429": ErrorResponseExpectation(
status=429,
body=json.loads("""
{
"instance" : "instance",
"detail" : "detail",
"type" : "type",
"title" : "title",
"status" : 6
}"""),
content_type="application/json",
),
"500": ErrorResponseExpectation(
status=500,
body=json.loads("""
{
"instance" : "instance",
"detail" : "detail",
"type" : "type",
"title" : "title",
"status" : 6
}"""),
content_type="application/json",
),
"502": ErrorResponseExpectation(
status=502,
body=json.loads("""
{
"instance" : "instance",
"detail" : "detail",
"type" : "type",
"title" : "title",
"status" : 6
}"""),
content_type="application/json",
),
},
),
"get_events": OperationExpectation(
operation_id="get_events",
method="GET",
path="/events",
path_param_examples={
},
success_status=200,
success_body=json.loads("""
{
"endDate" : "2022-07-18T22:00:54Z",
"_links" : {
"next" : {
"hreflang" : "hreflang",
"templated" : true,
"profile" : "profile",
"name" : "name",
"href" : "https://api.thousandeyes.com/v7/link/to/resource/id",
"type" : "type",
"deprecation" : "deprecation",
"title" : "title"
},
"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"
}
},
"aid" : "1234",
"startDate" : "2022-07-17T22:00:54Z",
"events" : [ {
"severity" : "medium",
"agentType" : "cloud-enterprise-agent",
"affectedTests" : {
"total" : 5,
"inAccountGroup" : 2
},
"endDate" : "2020-04-23T13:43:16Z",
"_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"
}
},
"typeName" : "Network Issue",
"title" : "Affecting destinations in google.com",
"type" : "target",
"affectedTargets" : {
"total" : 5,
"inAccountGroup" : 2
},
"affectedAgents" : {
"total" : 5,
"inAccountGroup" : 2
},
"id" : "e9c3bf02-a48c-4aa8-9e5f-898800d6f569",
"state" : "resolved",
"startDate" : "2020-04-23T13:43:16Z"
}, {
"severity" : "medium",
"agentType" : "cloud-enterprise-agent",
"affectedTests" : {
"total" : 5,
"inAccountGroup" : 2
},
"endDate" : "2020-04-23T13:43:16Z",
"_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"
}
},
"typeName" : "Network Issue",
"title" : "Affecting destinations in google.com",
"type" : "target",
"affectedTargets" : {
"total" : 5,
"inAccountGroup" : 2
},
"affectedAgents" : {
"total" : 5,
"inAccountGroup" : 2
},
"id" : "e9c3bf02-a48c-4aa8-9e5f-898800d6f569",
"state" : "resolved",
"startDate" : "2020-04-23T13:43:16Z"
} ]
}
"""),
success_content_type="application/json",
request_body_example=None,
error_responses={
"400": ErrorResponseExpectation(
status=400,
body=json.loads("""
{
"instance" : "instance",
"detail" : "detail",
"type" : "type",
"title" : "title",
"errors" : [ {
"code" : "code",
"field" : "field",
"message" : "message"
}, {
"code" : "code",
"field" : "field",
"message" : "message"
} ],
"status" : 0
}"""),
content_type="application/json",
),
"401": ErrorResponseExpectation(
status=401,
body=json.loads("""
{
"error_description" : "Invalid access token",
"error" : "invalid_token"
}"""),
content_type="application/json",
),
"403": ErrorResponseExpectation(
status=403,
body=json.loads("""
{
"instance" : "instance",
"detail" : "detail",
"type" : "type",
"title" : "title",
"status" : 6
}"""),
content_type="application/json",
),
"404": ErrorResponseExpectation(
status=404,
body=json.loads("""
{
"instance" : "instance",
"detail" : "detail",
"type" : "type",
"title" : "title",
"status" : 6
}"""),
content_type="application/json",
),
"429": ErrorResponseExpectation(
status=429,
body=json.loads("""
{
"instance" : "instance",
"detail" : "detail",
"type" : "type",
"title" : "title",
"status" : 6
}"""),
content_type="application/json",
),
"500": ErrorResponseExpectation(
status=500,
body=json.loads("""
{
"instance" : "instance",
"detail" : "detail",
"type" : "type",
"title" : "title",
"status" : 6
}"""),
content_type="application/json",
),
"502": ErrorResponseExpectation(
status=502,
body=json.loads("""
{
"instance" : "instance",
"detail" : "detail",
"type" : "type",
"title" : "title",
"status" : 6
}"""),
content_type="application/json",
),
},
),
}

View File

@ -0,0 +1,704 @@
# coding: utf-8
"""
Event Detection API
Event detection occurs when ThousandEyes identifies that error signals related to a component (proxy, network node, AS, server etc) have deviated from the baselines established by events. * To determine this, ThousandEyes takes the test results from all accounts groups within an organization, and analyzes that data. * Noisy test results (those that have too many errors in a short window) are removed until they stabilize, and the rest of the results are tagged with the components associated with that test result (for example, proxy, network, or server). * Next, any increase in failures from the test results and each component helps in determining the problem domain and which component may be at fault. * When this failure rate increases beyond a pre-defined threshold (set by the algorithm), an event is triggered and an email notification is sent to the user (if they've enabled email alerts). With the Events API, you can perform the following tasks on the ThousandEyes platform: * **Retrieve Events**: Obtain a list of events and detailed information for each event. For more information about events, see [Event Detection](https://docs.thousandeyes.com/product-documentation/event-detection).
Generated by OpenAPI Generator (https://openapi-generator.tech)
Do not edit the class manually.
""" # noqa: E501
import json
import unittest
import thousandeyes_sdk.event_detection.models
from thousandeyes_sdk.core.exceptions import ApiException
from thousandeyes_sdk.event_detection.api.events_api import EventsApi
from .integration_test_utils import IntegrationTestBase
from .test_utils import assert_constructed_model_matches_example_json
class TestEventsApiIntegration(IntegrationTestBase):
"""EventsApi integration test stubs"""
def setUp(self) -> None:
super().setUp()
self.api = EventsApi(self.api_client)
def test_get_event_happy_path(self) -> None:
"""Integration test for get_event success path"""
id = 'e9c3bf02-a48c-4aa8-9e5f-898800d6f569'
aid = '1234'
response_body_json = """
{
&quot;severity&quot; : &quot;medium&quot;,
&quot;summary&quot; : &quot;Significant number of issues detected with 66.29.146.15&quot;,
&quot;agentType&quot; : &quot;cloud-enterprise-agent&quot;,
&quot;affectedTests&quot; : {
&quot;total&quot; : 5,
&quot;tests&quot; : [ {
&quot;affectedTargetIds&quot; : [ &quot;123&quot;, &quot;1234&quot; ],
&quot;affectedAgentIds&quot; : [ &quot;2954&quot;, &quot;2953&quot; ],
&quot;_links&quot; : {
&quot;test&quot; : {
&quot;hreflang&quot; : &quot;hreflang&quot;,
&quot;templated&quot; : true,
&quot;profile&quot; : &quot;profile&quot;,
&quot;name&quot; : &quot;name&quot;,
&quot;href&quot; : &quot;https://api.thousandeyes.com/v7/link/to/resource/id&quot;,
&quot;type&quot; : &quot;type&quot;,
&quot;deprecation&quot; : &quot;deprecation&quot;,
&quot;title&quot; : &quot;title&quot;
}
},
&quot;name&quot; : &quot;Google test&quot;,
&quot;testType&quot; : &quot;agent-to-server&quot;,
&quot;testId&quot; : &quot;226770&quot;
}, {
&quot;affectedTargetIds&quot; : [ &quot;123&quot;, &quot;1234&quot; ],
&quot;affectedAgentIds&quot; : [ &quot;2954&quot;, &quot;2953&quot; ],
&quot;_links&quot; : {
&quot;test&quot; : {
&quot;hreflang&quot; : &quot;hreflang&quot;,
&quot;templated&quot; : true,
&quot;profile&quot; : &quot;profile&quot;,
&quot;name&quot; : &quot;name&quot;,
&quot;href&quot; : &quot;https://api.thousandeyes.com/v7/link/to/resource/id&quot;,
&quot;type&quot; : &quot;type&quot;,
&quot;deprecation&quot; : &quot;deprecation&quot;,
&quot;title&quot; : &quot;title&quot;
}
},
&quot;name&quot; : &quot;Google test&quot;,
&quot;testType&quot; : &quot;agent-to-server&quot;,
&quot;testId&quot; : &quot;226770&quot;
} ],
&quot;inAccountGroup&quot; : 2
},
&quot;endDate&quot; : &quot;2020-04-23T13:43:16Z&quot;,
&quot;_links&quot; : {
&quot;self&quot; : {
&quot;hreflang&quot; : &quot;hreflang&quot;,
&quot;templated&quot; : true,
&quot;profile&quot; : &quot;profile&quot;,
&quot;name&quot; : &quot;name&quot;,
&quot;href&quot; : &quot;https://api.thousandeyes.com/v7/link/to/resource/id&quot;,
&quot;type&quot; : &quot;type&quot;,
&quot;deprecation&quot; : &quot;deprecation&quot;,
&quot;title&quot; : &quot;title&quot;
}
},
&quot;typeName&quot; : &quot;Network Issue&quot;,
&quot;cause&quot; : [ &quot;Network Loss and/or High RTT&quot; ],
&quot;affectedTargets&quot; : {
&quot;total&quot; : 5,
&quot;inAccountGroup&quot; : 2,
&quot;targets&quot; : [ {
&quot;affectedAgentIds&quot; : [ &quot;2954&quot;, &quot;2953&quot; ],
&quot;ip&quot; : &quot;216.239.32.10&quot;,
&quot;name&quot; : &quot;google.com&quot;,
&quot;affectedTestIds&quot; : [ &quot;123&quot;, &quot;1234&quot; ],
&quot;serverId&quot; : &quot;123&quot;
}, {
&quot;affectedAgentIds&quot; : [ &quot;2954&quot;, &quot;2953&quot; ],
&quot;ip&quot; : &quot;216.239.32.10&quot;,
&quot;name&quot; : &quot;google.com&quot;,
&quot;affectedTestIds&quot; : [ &quot;123&quot;, &quot;1234&quot; ],
&quot;serverId&quot; : &quot;123&quot;
} ]
},
&quot;type&quot; : &quot;target&quot;,
&quot;grouping&quot; : {
&quot;target&quot; : &quot;google.com&quot;
},
&quot;affectedAgents&quot; : {
&quot;total&quot; : 5,
&quot;inAccountGroup&quot; : 2,
&quot;agents&quot; : [ {
&quot;affectedTargetIds&quot; : [ &quot;123&quot;, &quot;1234&quot; ],
&quot;agentId&quot; : &quot;2954&quot;,
&quot;_links&quot; : {
&quot;agent&quot; : {
&quot;hreflang&quot; : &quot;hreflang&quot;,
&quot;templated&quot; : true,
&quot;profile&quot; : &quot;profile&quot;,
&quot;name&quot; : &quot;name&quot;,
&quot;href&quot; : &quot;https://api.thousandeyes.com/v7/link/to/resource/id&quot;,
&quot;type&quot; : &quot;type&quot;,
&quot;deprecation&quot; : &quot;deprecation&quot;,
&quot;title&quot; : &quot;title&quot;
}
},
&quot;countryCode&quot; : &quot;BR&quot;,
&quot;name&quot; : &quot;São Paulo, Brazil - agent&quot;,
&quot;location&quot; : &quot;São Paulo, Brazil&quot;,
&quot;affectedTestIds&quot; : [ &quot;2954&quot;, &quot;2953&quot; ],
&quot;type&quot; : &quot;enterprise&quot;
}, {
&quot;affectedTargetIds&quot; : [ &quot;123&quot;, &quot;1234&quot; ],
&quot;agentId&quot; : &quot;2954&quot;,
&quot;_links&quot; : {
&quot;agent&quot; : {
&quot;hreflang&quot; : &quot;hreflang&quot;,
&quot;templated&quot; : true,
&quot;profile&quot; : &quot;profile&quot;,
&quot;name&quot; : &quot;name&quot;,
&quot;href&quot; : &quot;https://api.thousandeyes.com/v7/link/to/resource/id&quot;,
&quot;type&quot; : &quot;type&quot;,
&quot;deprecation&quot; : &quot;deprecation&quot;,
&quot;title&quot; : &quot;title&quot;
}
},
&quot;countryCode&quot; : &quot;BR&quot;,
&quot;name&quot; : &quot;São Paulo, Brazil - agent&quot;,
&quot;location&quot; : &quot;São Paulo, Brazil&quot;,
&quot;affectedTestIds&quot; : [ &quot;2954&quot;, &quot;2953&quot; ],
&quot;type&quot; : &quot;enterprise&quot;
} ]
},
&quot;id&quot; : &quot;e9c3bf02-a48c-4aa8-9e5f-898800d6f569&quot;,
&quot;state&quot; : &quot;resolved&quot;,
&quot;aid&quot; : &quot;1234&quot;,
&quot;startDate&quot; : &quot;2020-04-23T13:43:16Z&quot;
}
"""
expected_response = json.loads(response_body_json)
response = self.api.get_event(
id=id,
aid=aid,
_headers=self.te_headers("get_event"),
)
assert_constructed_model_matches_example_json(response, expected_response)
def test_get_event_error_401(self) -> None:
"""Integration test for get_event error path (HTTP 401)"""
id = 'e9c3bf02-a48c-4aa8-9e5f-898800d6f569'
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_event(
id=id,
aid=aid,
_headers=self.te_headers("get_event", error_status="401"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_get_event_error_403(self) -> None:
"""Integration test for get_event error path (HTTP 403)"""
id = 'e9c3bf02-a48c-4aa8-9e5f-898800d6f569'
aid = '1234'
error_body_json = """
{
"instance" : "instance",
"detail" : "detail",
"type" : "type",
"title" : "title",
"status" : 6
}
"""
expected_error = json.loads(error_body_json)
with self.assertRaises(
ApiException.exception_class_for_http_status(403)
) as context:
self.api.get_event(
id=id,
aid=aid,
_headers=self.te_headers("get_event", error_status="403"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_get_event_error_404(self) -> None:
"""Integration test for get_event error path (HTTP 404)"""
id = 'e9c3bf02-a48c-4aa8-9e5f-898800d6f569'
aid = '1234'
error_body_json = """
{
"instance" : "instance",
"detail" : "detail",
"type" : "type",
"title" : "title",
"status" : 6
}
"""
expected_error = json.loads(error_body_json)
with self.assertRaises(
ApiException.exception_class_for_http_status(404)
) as context:
self.api.get_event(
id=id,
aid=aid,
_headers=self.te_headers("get_event", error_status="404"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_get_event_error_429(self) -> None:
"""Integration test for get_event error path (HTTP 429)"""
id = 'e9c3bf02-a48c-4aa8-9e5f-898800d6f569'
aid = '1234'
error_body_json = """
{
"instance" : "instance",
"detail" : "detail",
"type" : "type",
"title" : "title",
"status" : 6
}
"""
expected_error = json.loads(error_body_json)
with self.assertRaises(
ApiException.exception_class_for_http_status(429)
) as context:
self.api.get_event(
id=id,
aid=aid,
_headers=self.te_headers("get_event", error_status="429"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_get_event_error_500(self) -> None:
"""Integration test for get_event error path (HTTP 500)"""
id = 'e9c3bf02-a48c-4aa8-9e5f-898800d6f569'
aid = '1234'
error_body_json = """
{
"instance" : "instance",
"detail" : "detail",
"type" : "type",
"title" : "title",
"status" : 6
}
"""
expected_error = json.loads(error_body_json)
with self.assertRaises(
ApiException.exception_class_for_http_status(500)
) as context:
self.api.get_event(
id=id,
aid=aid,
_headers=self.te_headers("get_event", error_status="500"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_get_event_error_502(self) -> None:
"""Integration test for get_event error path (HTTP 502)"""
id = 'e9c3bf02-a48c-4aa8-9e5f-898800d6f569'
aid = '1234'
error_body_json = """
{
"instance" : "instance",
"detail" : "detail",
"type" : "type",
"title" : "title",
"status" : 6
}
"""
expected_error = json.loads(error_body_json)
with self.assertRaises(
ApiException.exception_class_for_http_status(502)
) as context:
self.api.get_event(
id=id,
aid=aid,
_headers=self.te_headers("get_event", error_status="502"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_get_events_happy_path(self) -> None:
"""Integration test for get_events success path"""
aid = '1234'
window = '12h'
start_date = '2022-07-17T22:00:54Z'
end_date = '2022-07-18T22:00:54Z'
max = 5
cursor = 'cursor_example'
ongoing = true
response_body_json = """
{
&quot;endDate&quot; : &quot;2022-07-18T22:00:54Z&quot;,
&quot;_links&quot; : {
&quot;next&quot; : {
&quot;hreflang&quot; : &quot;hreflang&quot;,
&quot;templated&quot; : true,
&quot;profile&quot; : &quot;profile&quot;,
&quot;name&quot; : &quot;name&quot;,
&quot;href&quot; : &quot;https://api.thousandeyes.com/v7/link/to/resource/id&quot;,
&quot;type&quot; : &quot;type&quot;,
&quot;deprecation&quot; : &quot;deprecation&quot;,
&quot;title&quot; : &quot;title&quot;
},
&quot;self&quot; : {
&quot;hreflang&quot; : &quot;hreflang&quot;,
&quot;templated&quot; : true,
&quot;profile&quot; : &quot;profile&quot;,
&quot;name&quot; : &quot;name&quot;,
&quot;href&quot; : &quot;https://api.thousandeyes.com/v7/link/to/resource/id&quot;,
&quot;type&quot; : &quot;type&quot;,
&quot;deprecation&quot; : &quot;deprecation&quot;,
&quot;title&quot; : &quot;title&quot;
}
},
&quot;aid&quot; : &quot;1234&quot;,
&quot;startDate&quot; : &quot;2022-07-17T22:00:54Z&quot;,
&quot;events&quot; : [ {
&quot;severity&quot; : &quot;medium&quot;,
&quot;agentType&quot; : &quot;cloud-enterprise-agent&quot;,
&quot;affectedTests&quot; : {
&quot;total&quot; : 5,
&quot;inAccountGroup&quot; : 2
},
&quot;endDate&quot; : &quot;2020-04-23T13:43:16Z&quot;,
&quot;_links&quot; : {
&quot;self&quot; : {
&quot;hreflang&quot; : &quot;hreflang&quot;,
&quot;templated&quot; : true,
&quot;profile&quot; : &quot;profile&quot;,
&quot;name&quot; : &quot;name&quot;,
&quot;href&quot; : &quot;https://api.thousandeyes.com/v7/link/to/resource/id&quot;,
&quot;type&quot; : &quot;type&quot;,
&quot;deprecation&quot; : &quot;deprecation&quot;,
&quot;title&quot; : &quot;title&quot;
}
},
&quot;typeName&quot; : &quot;Network Issue&quot;,
&quot;title&quot; : &quot;Affecting destinations in google.com&quot;,
&quot;type&quot; : &quot;target&quot;,
&quot;affectedTargets&quot; : {
&quot;total&quot; : 5,
&quot;inAccountGroup&quot; : 2
},
&quot;affectedAgents&quot; : {
&quot;total&quot; : 5,
&quot;inAccountGroup&quot; : 2
},
&quot;id&quot; : &quot;e9c3bf02-a48c-4aa8-9e5f-898800d6f569&quot;,
&quot;state&quot; : &quot;resolved&quot;,
&quot;startDate&quot; : &quot;2020-04-23T13:43:16Z&quot;
}, {
&quot;severity&quot; : &quot;medium&quot;,
&quot;agentType&quot; : &quot;cloud-enterprise-agent&quot;,
&quot;affectedTests&quot; : {
&quot;total&quot; : 5,
&quot;inAccountGroup&quot; : 2
},
&quot;endDate&quot; : &quot;2020-04-23T13:43:16Z&quot;,
&quot;_links&quot; : {
&quot;self&quot; : {
&quot;hreflang&quot; : &quot;hreflang&quot;,
&quot;templated&quot; : true,
&quot;profile&quot; : &quot;profile&quot;,
&quot;name&quot; : &quot;name&quot;,
&quot;href&quot; : &quot;https://api.thousandeyes.com/v7/link/to/resource/id&quot;,
&quot;type&quot; : &quot;type&quot;,
&quot;deprecation&quot; : &quot;deprecation&quot;,
&quot;title&quot; : &quot;title&quot;
}
},
&quot;typeName&quot; : &quot;Network Issue&quot;,
&quot;title&quot; : &quot;Affecting destinations in google.com&quot;,
&quot;type&quot; : &quot;target&quot;,
&quot;affectedTargets&quot; : {
&quot;total&quot; : 5,
&quot;inAccountGroup&quot; : 2
},
&quot;affectedAgents&quot; : {
&quot;total&quot; : 5,
&quot;inAccountGroup&quot; : 2
},
&quot;id&quot; : &quot;e9c3bf02-a48c-4aa8-9e5f-898800d6f569&quot;,
&quot;state&quot; : &quot;resolved&quot;,
&quot;startDate&quot; : &quot;2020-04-23T13:43:16Z&quot;
} ]
}
"""
expected_response = json.loads(response_body_json)
response = self.api.get_events(
aid=aid,
window=window,
start_date=start_date,
end_date=end_date,
max=max,
cursor=cursor,
ongoing=ongoing,
_headers=self.te_headers("get_events"),
)
assert_constructed_model_matches_example_json(response, expected_response)
def test_get_events_error_400(self) -> None:
"""Integration test for get_events error path (HTTP 400)"""
aid = '1234'
window = '12h'
start_date = '2022-07-17T22:00:54Z'
end_date = '2022-07-18T22:00:54Z'
max = 5
cursor = 'cursor_example'
ongoing = true
error_body_json = """
{
"instance" : "instance",
"detail" : "detail",
"type" : "type",
"title" : "title",
"errors" : [ {
"code" : "code",
"field" : "field",
"message" : "message"
}, {
"code" : "code",
"field" : "field",
"message" : "message"
} ],
"status" : 0
}
"""
expected_error = json.loads(error_body_json)
with self.assertRaises(
ApiException.exception_class_for_http_status(400)
) as context:
self.api.get_events(
aid=aid,
window=window,
start_date=start_date,
end_date=end_date,
max=max,
cursor=cursor,
ongoing=ongoing,
_headers=self.te_headers("get_events", error_status="400"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_get_events_error_401(self) -> None:
"""Integration test for get_events error path (HTTP 401)"""
aid = '1234'
window = '12h'
start_date = '2022-07-17T22:00:54Z'
end_date = '2022-07-18T22:00:54Z'
max = 5
cursor = 'cursor_example'
ongoing = true
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_events(
aid=aid,
window=window,
start_date=start_date,
end_date=end_date,
max=max,
cursor=cursor,
ongoing=ongoing,
_headers=self.te_headers("get_events", error_status="401"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_get_events_error_403(self) -> None:
"""Integration test for get_events error path (HTTP 403)"""
aid = '1234'
window = '12h'
start_date = '2022-07-17T22:00:54Z'
end_date = '2022-07-18T22:00:54Z'
max = 5
cursor = 'cursor_example'
ongoing = true
error_body_json = """
{
"instance" : "instance",
"detail" : "detail",
"type" : "type",
"title" : "title",
"status" : 6
}
"""
expected_error = json.loads(error_body_json)
with self.assertRaises(
ApiException.exception_class_for_http_status(403)
) as context:
self.api.get_events(
aid=aid,
window=window,
start_date=start_date,
end_date=end_date,
max=max,
cursor=cursor,
ongoing=ongoing,
_headers=self.te_headers("get_events", error_status="403"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_get_events_error_404(self) -> None:
"""Integration test for get_events error path (HTTP 404)"""
aid = '1234'
window = '12h'
start_date = '2022-07-17T22:00:54Z'
end_date = '2022-07-18T22:00:54Z'
max = 5
cursor = 'cursor_example'
ongoing = true
error_body_json = """
{
"instance" : "instance",
"detail" : "detail",
"type" : "type",
"title" : "title",
"status" : 6
}
"""
expected_error = json.loads(error_body_json)
with self.assertRaises(
ApiException.exception_class_for_http_status(404)
) as context:
self.api.get_events(
aid=aid,
window=window,
start_date=start_date,
end_date=end_date,
max=max,
cursor=cursor,
ongoing=ongoing,
_headers=self.te_headers("get_events", error_status="404"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_get_events_error_429(self) -> None:
"""Integration test for get_events error path (HTTP 429)"""
aid = '1234'
window = '12h'
start_date = '2022-07-17T22:00:54Z'
end_date = '2022-07-18T22:00:54Z'
max = 5
cursor = 'cursor_example'
ongoing = true
error_body_json = """
{
"instance" : "instance",
"detail" : "detail",
"type" : "type",
"title" : "title",
"status" : 6
}
"""
expected_error = json.loads(error_body_json)
with self.assertRaises(
ApiException.exception_class_for_http_status(429)
) as context:
self.api.get_events(
aid=aid,
window=window,
start_date=start_date,
end_date=end_date,
max=max,
cursor=cursor,
ongoing=ongoing,
_headers=self.te_headers("get_events", error_status="429"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_get_events_error_500(self) -> None:
"""Integration test for get_events error path (HTTP 500)"""
aid = '1234'
window = '12h'
start_date = '2022-07-17T22:00:54Z'
end_date = '2022-07-18T22:00:54Z'
max = 5
cursor = 'cursor_example'
ongoing = true
error_body_json = """
{
"instance" : "instance",
"detail" : "detail",
"type" : "type",
"title" : "title",
"status" : 6
}
"""
expected_error = json.loads(error_body_json)
with self.assertRaises(
ApiException.exception_class_for_http_status(500)
) as context:
self.api.get_events(
aid=aid,
window=window,
start_date=start_date,
end_date=end_date,
max=max,
cursor=cursor,
ongoing=ongoing,
_headers=self.te_headers("get_events", error_status="500"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_get_events_error_502(self) -> None:
"""Integration test for get_events error path (HTTP 502)"""
aid = '1234'
window = '12h'
start_date = '2022-07-17T22:00:54Z'
end_date = '2022-07-18T22:00:54Z'
max = 5
cursor = 'cursor_example'
ongoing = true
error_body_json = """
{
"instance" : "instance",
"detail" : "detail",
"type" : "type",
"title" : "title",
"status" : 6
}
"""
expected_error = json.loads(error_body_json)
with self.assertRaises(
ApiException.exception_class_for_http_status(502)
) as context:
self.api.get_events(
aid=aid,
window=window,
start_date=start_date,
end_date=end_date,
max=max,
cursor=cursor,
ongoing=ongoing,
_headers=self.te_headers("get_events", error_status="502"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
if __name__ == '__main__':
unittest.main()

View File

@ -0,0 +1,7 @@
import sys
from pathlib import Path
_repo_root = Path(__file__).resolve().parents[2]
_core_test_support = _repo_root / "thousandeyes-sdk-core" / "test"
if str(_core_test_support) not in sys.path:
sys.path.insert(0, str(_core_test_support))

View File

@ -0,0 +1,37 @@
# coding: utf-8
"""
Instant Tests API
The Instant Tests API operations lets you create and run new instant tests. You will need to be an Account Admin. The response does not include the immediate test results. Use the Test Results endpoints to get test results after creating and executing an instant test. You can find the URLs for these endpoints in the _links section of the test definition that is returned when you create the instant test.
Generated by OpenAPI Generator (https://openapi-generator.tech)
Do not edit the class manually.
""" # noqa: E501
import unittest
from thousandeyes_sdk.core.api_client import ApiClient
from thousandeyes_sdk.core.configuration import Configuration
from sdk_test_support.mock_server import ERROR_STATUS_HEADER, OPERATION_ID_HEADER, MockApiServer
from .mock_manifest import OPERATION_MANIFEST
class IntegrationTestBase(unittest.TestCase):
def setUp(self) -> None:
self.server = MockApiServer(OPERATION_MANIFEST)
self.server.start()
configuration = Configuration(host=self.server.base_url, access_token="test-token")
self.api_client = ApiClient(configuration=configuration)
def tearDown(self) -> None:
self.server.stop()
def te_headers(self, operation_id: str, error_status=None):
headers = {OPERATION_ID_HEADER: operation_id}
if error_status is not None:
headers[ERROR_STATUS_HEADER] = error_status
return headers

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,816 @@
# coding: utf-8
"""
Instant Tests API
The Instant Tests API operations lets you create and run new instant tests. You will need to be an Account Admin. The response does not include the immediate test results. Use the Test Results endpoints to get test results after creating and executing an instant test. You can find the URLs for these endpoints in the _links section of the test definition that is returned when you create the instant test.
Generated by OpenAPI Generator (https://openapi-generator.tech)
Do not edit the class manually.
""" # noqa: E501
import json
import unittest
import thousandeyes_sdk.instant_tests.models
from thousandeyes_sdk.core.exceptions import ApiException
from thousandeyes_sdk.instant_tests.api.agent_to_agent_instant_tests_api import AgentToAgentInstantTestsApi
from .integration_test_utils import IntegrationTestBase
from .test_utils import assert_constructed_model_matches_example_json
class TestAgentToAgentInstantTestsApiIntegration(IntegrationTestBase):
"""AgentToAgentInstantTestsApi integration test stubs"""
def setUp(self) -> None:
super().setUp()
self.api = AgentToAgentInstantTestsApi(self.api_client)
def test_create_agent_to_agent_instant_test_happy_path(self) -> None:
"""Integration test for create_agent_to_agent_instant_test success path"""
request_body_json = """
{
"_links" : {
"testResults" : [ {
"href" : "https://api.thousandeyes.com/v7/test-results/281474976710706/network"
}, {
"href" : "https://api.thousandeyes.com/v7/test-results/281474976710706/path-vis"
} ],
"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"
}
},
"description" : "ThousandEyes Test",
"type" : "agent-to-agent",
"mss" : 100,
"dscpId" : "0",
"protocol" : "tcp",
"fixedPacketRate" : 50,
"dscp" : "Best Effort (DSCP 0)",
"pathTraceMode" : "classic",
"throughputRate" : 10,
"modifiedBy" : "user@user.com",
"testName" : "ThousandEyes Test",
"direction" : "to-target",
"throughputMeasurements" : false,
"numPathTraces" : 3,
"liveShare" : false,
"savedEvent" : true,
"throughputDuration" : 10000,
"labels" : [ "9842", "1283" ],
"tags" : [ "c6b78e57-81a2-4c5f-a11a-d96c3c664d55", "c6b78e57-81a2-4c5f-a11a-d96c3c664d55" ],
"agents" : [ {
"agentId" : "125",
"sourceIpAddress" : "1.1.1.1"
}, {
"agentId" : "125",
"sourceIpAddress" : "1.1.1.1"
} ],
"createdDate" : "2022-07-17T22:00:54Z",
"createdBy" : "user@user.com",
"port" : 49153,
"randomizedStartTime" : false,
"modifiedDate" : "2022-07-17T22:00:54Z",
"targetAgentId" : "2954",
"testId" : "281474976710706",
"sharedWithAccounts" : [ "1234", "12345" ]
}
"""
agent_to_agent_instant_test_request = thousandeyes_sdk.instant_tests.models.AgentToAgentInstantTestRequest.from_json(request_body_json)
aid = '1234'
expand = [thousandeyes_sdk.instant_tests.ExpandInstantTestOptions()]
response_body_json = """
{
&quot;_links&quot; : {
&quot;testResults&quot; : [ {
&quot;href&quot; : &quot;https://api.thousandeyes.com/v7/test-results/281474976710706/network&quot;
}, {
&quot;href&quot; : &quot;https://api.thousandeyes.com/v7/test-results/281474976710706/path-vis&quot;
} ],
&quot;self&quot; : {
&quot;hreflang&quot; : &quot;hreflang&quot;,
&quot;templated&quot; : true,
&quot;profile&quot; : &quot;profile&quot;,
&quot;name&quot; : &quot;name&quot;,
&quot;href&quot; : &quot;https://api.thousandeyes.com/v7/link/to/resource/id&quot;,
&quot;type&quot; : &quot;type&quot;,
&quot;deprecation&quot; : &quot;deprecation&quot;,
&quot;title&quot; : &quot;title&quot;
}
},
&quot;description&quot; : &quot;ThousandEyes Test&quot;,
&quot;type&quot; : &quot;agent-to-agent&quot;,
&quot;mss&quot; : 100,
&quot;dscpId&quot; : &quot;0&quot;,
&quot;protocol&quot; : &quot;tcp&quot;,
&quot;fixedPacketRate&quot; : 50,
&quot;dscp&quot; : &quot;Best Effort (DSCP 0)&quot;,
&quot;pathTraceMode&quot; : &quot;classic&quot;,
&quot;throughputRate&quot; : 10,
&quot;modifiedBy&quot; : &quot;user@user.com&quot;,
&quot;testName&quot; : &quot;ThousandEyes Test&quot;,
&quot;direction&quot; : &quot;to-target&quot;,
&quot;throughputMeasurements&quot; : false,
&quot;numPathTraces&quot; : 3,
&quot;liveShare&quot; : false,
&quot;savedEvent&quot; : true,
&quot;throughputDuration&quot; : 10000,
&quot;labels&quot; : [ {
&quot;labelId&quot; : &quot;961&quot;,
&quot;name&quot; : &quot;Artem label&quot;,
&quot;isBuiltin&quot; : false
}, {
&quot;labelId&quot; : &quot;961&quot;,
&quot;name&quot; : &quot;Artem label&quot;,
&quot;isBuiltin&quot; : false
} ],
&quot;tags&quot; : [ {
&quot;id&quot; : &quot;5aeab5d5-0d34-4d44-a7ac-fb440185295c&quot;,
&quot;value&quot; : &quot;San Francisco&quot;,
&quot;key&quot; : &quot;Location&quot;
}, {
&quot;id&quot; : &quot;5aeab5d5-0d34-4d44-a7ac-fb440185295c&quot;,
&quot;value&quot; : &quot;San Francisco&quot;,
&quot;key&quot; : &quot;Location&quot;
} ],
&quot;agents&quot; : [ {
&quot;agentId&quot; : &quot;281474976710706&quot;,
&quot;agentType&quot; : &quot;enterprise-cluster&quot;,
&quot;prefix&quot; : &quot;99.128.0.0/11&quot;,
&quot;coordinates&quot; : {
&quot;latitude&quot; : 37.77493,
&quot;longitude&quot; : -122.41942
},
&quot;agentName&quot; : &quot;thousandeyes-stg-va-254&quot;,
&quot;networkProviderInfo&quot; : {
&quot;asn&quot; : 7018,
&quot;name&quot; : &quot;AT&amp;T Services, Inc.&quot;,
&quot;type&quot; : &quot;isp&quot;
},
&quot;countryId&quot; : &quot;US&quot;,
&quot;enabled&quot; : true,
&quot;network&quot; : &quot;AT&amp;T Services, Inc. (AS 7018)&quot;,
&quot;publicIpAddresses&quot; : [ &quot;192.168.1.78&quot;, &quot;f9b2:3a21:f25c:d300:03f4:586d:f8d6:4e1c&quot; ],
&quot;ipAddresses&quot; : [ &quot;99.139.65.220&quot;, &quot;9bbd:8a0a:a257:5876:288b:6cb2:3f36:64ce&quot; ],
&quot;location&quot; : &quot;San Francisco Bay Area&quot;,
&quot;verifySslCertificates&quot; : true
}, {
&quot;agentId&quot; : &quot;281474976710706&quot;,
&quot;agentType&quot; : &quot;enterprise-cluster&quot;,
&quot;prefix&quot; : &quot;99.128.0.0/11&quot;,
&quot;coordinates&quot; : {
&quot;latitude&quot; : 37.77493,
&quot;longitude&quot; : -122.41942
},
&quot;agentName&quot; : &quot;thousandeyes-stg-va-254&quot;,
&quot;networkProviderInfo&quot; : {
&quot;asn&quot; : 7018,
&quot;name&quot; : &quot;AT&amp;T Services, Inc.&quot;,
&quot;type&quot; : &quot;isp&quot;
},
&quot;countryId&quot; : &quot;US&quot;,
&quot;enabled&quot; : true,
&quot;network&quot; : &quot;AT&amp;T Services, Inc. (AS 7018)&quot;,
&quot;publicIpAddresses&quot; : [ &quot;192.168.1.78&quot;, &quot;f9b2:3a21:f25c:d300:03f4:586d:f8d6:4e1c&quot; ],
&quot;ipAddresses&quot; : [ &quot;99.139.65.220&quot;, &quot;9bbd:8a0a:a257:5876:288b:6cb2:3f36:64ce&quot; ],
&quot;location&quot; : &quot;San Francisco Bay Area&quot;,
&quot;verifySslCertificates&quot; : true
} ],
&quot;createdDate&quot; : &quot;2022-07-17T22:00:54Z&quot;,
&quot;createdBy&quot; : &quot;user@user.com&quot;,
&quot;port&quot; : 49153,
&quot;randomizedStartTime&quot; : false,
&quot;modifiedDate&quot; : &quot;2022-07-17T22:00:54Z&quot;,
&quot;targetAgentId&quot; : &quot;2954&quot;,
&quot;testId&quot; : &quot;281474976710706&quot;,
&quot;sharedWithAccounts&quot; : [ {
&quot;name&quot; : &quot;Account name&quot;,
&quot;aid&quot; : &quot;1234&quot;
}, {
&quot;name&quot; : &quot;Account name&quot;,
&quot;aid&quot; : &quot;1234&quot;
} ]
}
"""
expected_response = json.loads(response_body_json)
response = self.api.create_agent_to_agent_instant_test(
agent_to_agent_instant_test_request=agent_to_agent_instant_test_request,
aid=aid,
expand=expand,
_headers=self.te_headers("create_agent_to_agent_instant_test"),
)
assert_constructed_model_matches_example_json(response, expected_response)
def test_create_agent_to_agent_instant_test_error_400(self) -> None:
"""Integration test for create_agent_to_agent_instant_test error path (HTTP 400)"""
request_body_json = """
{
"_links" : {
"testResults" : [ {
"href" : "https://api.thousandeyes.com/v7/test-results/281474976710706/network"
}, {
"href" : "https://api.thousandeyes.com/v7/test-results/281474976710706/path-vis"
} ],
"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"
}
},
"description" : "ThousandEyes Test",
"type" : "agent-to-agent",
"mss" : 100,
"dscpId" : "0",
"protocol" : "tcp",
"fixedPacketRate" : 50,
"dscp" : "Best Effort (DSCP 0)",
"pathTraceMode" : "classic",
"throughputRate" : 10,
"modifiedBy" : "user@user.com",
"testName" : "ThousandEyes Test",
"direction" : "to-target",
"throughputMeasurements" : false,
"numPathTraces" : 3,
"liveShare" : false,
"savedEvent" : true,
"throughputDuration" : 10000,
"labels" : [ "9842", "1283" ],
"tags" : [ "c6b78e57-81a2-4c5f-a11a-d96c3c664d55", "c6b78e57-81a2-4c5f-a11a-d96c3c664d55" ],
"agents" : [ {
"agentId" : "125",
"sourceIpAddress" : "1.1.1.1"
}, {
"agentId" : "125",
"sourceIpAddress" : "1.1.1.1"
} ],
"createdDate" : "2022-07-17T22:00:54Z",
"createdBy" : "user@user.com",
"port" : 49153,
"randomizedStartTime" : false,
"modifiedDate" : "2022-07-17T22:00:54Z",
"targetAgentId" : "2954",
"testId" : "281474976710706",
"sharedWithAccounts" : [ "1234", "12345" ]
}
"""
agent_to_agent_instant_test_request = thousandeyes_sdk.instant_tests.models.AgentToAgentInstantTestRequest.from_json(request_body_json)
aid = '1234'
expand = [thousandeyes_sdk.instant_tests.ExpandInstantTestOptions()]
error_body_json = """
{
"instance" : "instance",
"detail" : "detail",
"type" : "type",
"title" : "title",
"errors" : [ {
"code" : "code",
"field" : "field",
"message" : "message"
}, {
"code" : "code",
"field" : "field",
"message" : "message"
} ],
"status" : 0
}
"""
expected_error = json.loads(error_body_json)
with self.assertRaises(
ApiException.exception_class_for_http_status(400)
) as context:
self.api.create_agent_to_agent_instant_test(
agent_to_agent_instant_test_request=agent_to_agent_instant_test_request,
aid=aid,
expand=expand,
_headers=self.te_headers("create_agent_to_agent_instant_test", error_status="400"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_create_agent_to_agent_instant_test_error_401(self) -> None:
"""Integration test for create_agent_to_agent_instant_test error path (HTTP 401)"""
request_body_json = """
{
"_links" : {
"testResults" : [ {
"href" : "https://api.thousandeyes.com/v7/test-results/281474976710706/network"
}, {
"href" : "https://api.thousandeyes.com/v7/test-results/281474976710706/path-vis"
} ],
"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"
}
},
"description" : "ThousandEyes Test",
"type" : "agent-to-agent",
"mss" : 100,
"dscpId" : "0",
"protocol" : "tcp",
"fixedPacketRate" : 50,
"dscp" : "Best Effort (DSCP 0)",
"pathTraceMode" : "classic",
"throughputRate" : 10,
"modifiedBy" : "user@user.com",
"testName" : "ThousandEyes Test",
"direction" : "to-target",
"throughputMeasurements" : false,
"numPathTraces" : 3,
"liveShare" : false,
"savedEvent" : true,
"throughputDuration" : 10000,
"labels" : [ "9842", "1283" ],
"tags" : [ "c6b78e57-81a2-4c5f-a11a-d96c3c664d55", "c6b78e57-81a2-4c5f-a11a-d96c3c664d55" ],
"agents" : [ {
"agentId" : "125",
"sourceIpAddress" : "1.1.1.1"
}, {
"agentId" : "125",
"sourceIpAddress" : "1.1.1.1"
} ],
"createdDate" : "2022-07-17T22:00:54Z",
"createdBy" : "user@user.com",
"port" : 49153,
"randomizedStartTime" : false,
"modifiedDate" : "2022-07-17T22:00:54Z",
"targetAgentId" : "2954",
"testId" : "281474976710706",
"sharedWithAccounts" : [ "1234", "12345" ]
}
"""
agent_to_agent_instant_test_request = thousandeyes_sdk.instant_tests.models.AgentToAgentInstantTestRequest.from_json(request_body_json)
aid = '1234'
expand = [thousandeyes_sdk.instant_tests.ExpandInstantTestOptions()]
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.create_agent_to_agent_instant_test(
agent_to_agent_instant_test_request=agent_to_agent_instant_test_request,
aid=aid,
expand=expand,
_headers=self.te_headers("create_agent_to_agent_instant_test", error_status="401"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_create_agent_to_agent_instant_test_error_403(self) -> None:
"""Integration test for create_agent_to_agent_instant_test error path (HTTP 403)"""
request_body_json = """
{
"_links" : {
"testResults" : [ {
"href" : "https://api.thousandeyes.com/v7/test-results/281474976710706/network"
}, {
"href" : "https://api.thousandeyes.com/v7/test-results/281474976710706/path-vis"
} ],
"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"
}
},
"description" : "ThousandEyes Test",
"type" : "agent-to-agent",
"mss" : 100,
"dscpId" : "0",
"protocol" : "tcp",
"fixedPacketRate" : 50,
"dscp" : "Best Effort (DSCP 0)",
"pathTraceMode" : "classic",
"throughputRate" : 10,
"modifiedBy" : "user@user.com",
"testName" : "ThousandEyes Test",
"direction" : "to-target",
"throughputMeasurements" : false,
"numPathTraces" : 3,
"liveShare" : false,
"savedEvent" : true,
"throughputDuration" : 10000,
"labels" : [ "9842", "1283" ],
"tags" : [ "c6b78e57-81a2-4c5f-a11a-d96c3c664d55", "c6b78e57-81a2-4c5f-a11a-d96c3c664d55" ],
"agents" : [ {
"agentId" : "125",
"sourceIpAddress" : "1.1.1.1"
}, {
"agentId" : "125",
"sourceIpAddress" : "1.1.1.1"
} ],
"createdDate" : "2022-07-17T22:00:54Z",
"createdBy" : "user@user.com",
"port" : 49153,
"randomizedStartTime" : false,
"modifiedDate" : "2022-07-17T22:00:54Z",
"targetAgentId" : "2954",
"testId" : "281474976710706",
"sharedWithAccounts" : [ "1234", "12345" ]
}
"""
agent_to_agent_instant_test_request = thousandeyes_sdk.instant_tests.models.AgentToAgentInstantTestRequest.from_json(request_body_json)
aid = '1234'
expand = [thousandeyes_sdk.instant_tests.ExpandInstantTestOptions()]
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.create_agent_to_agent_instant_test(
agent_to_agent_instant_test_request=agent_to_agent_instant_test_request,
aid=aid,
expand=expand,
_headers=self.te_headers("create_agent_to_agent_instant_test", error_status="403"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_create_agent_to_agent_instant_test_error_404(self) -> None:
"""Integration test for create_agent_to_agent_instant_test error path (HTTP 404)"""
request_body_json = """
{
"_links" : {
"testResults" : [ {
"href" : "https://api.thousandeyes.com/v7/test-results/281474976710706/network"
}, {
"href" : "https://api.thousandeyes.com/v7/test-results/281474976710706/path-vis"
} ],
"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"
}
},
"description" : "ThousandEyes Test",
"type" : "agent-to-agent",
"mss" : 100,
"dscpId" : "0",
"protocol" : "tcp",
"fixedPacketRate" : 50,
"dscp" : "Best Effort (DSCP 0)",
"pathTraceMode" : "classic",
"throughputRate" : 10,
"modifiedBy" : "user@user.com",
"testName" : "ThousandEyes Test",
"direction" : "to-target",
"throughputMeasurements" : false,
"numPathTraces" : 3,
"liveShare" : false,
"savedEvent" : true,
"throughputDuration" : 10000,
"labels" : [ "9842", "1283" ],
"tags" : [ "c6b78e57-81a2-4c5f-a11a-d96c3c664d55", "c6b78e57-81a2-4c5f-a11a-d96c3c664d55" ],
"agents" : [ {
"agentId" : "125",
"sourceIpAddress" : "1.1.1.1"
}, {
"agentId" : "125",
"sourceIpAddress" : "1.1.1.1"
} ],
"createdDate" : "2022-07-17T22:00:54Z",
"createdBy" : "user@user.com",
"port" : 49153,
"randomizedStartTime" : false,
"modifiedDate" : "2022-07-17T22:00:54Z",
"targetAgentId" : "2954",
"testId" : "281474976710706",
"sharedWithAccounts" : [ "1234", "12345" ]
}
"""
agent_to_agent_instant_test_request = thousandeyes_sdk.instant_tests.models.AgentToAgentInstantTestRequest.from_json(request_body_json)
aid = '1234'
expand = [thousandeyes_sdk.instant_tests.ExpandInstantTestOptions()]
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.create_agent_to_agent_instant_test(
agent_to_agent_instant_test_request=agent_to_agent_instant_test_request,
aid=aid,
expand=expand,
_headers=self.te_headers("create_agent_to_agent_instant_test", error_status="404"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_create_agent_to_agent_instant_test_error_429(self) -> None:
"""Integration test for create_agent_to_agent_instant_test error path (HTTP 429)"""
request_body_json = """
{
"_links" : {
"testResults" : [ {
"href" : "https://api.thousandeyes.com/v7/test-results/281474976710706/network"
}, {
"href" : "https://api.thousandeyes.com/v7/test-results/281474976710706/path-vis"
} ],
"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"
}
},
"description" : "ThousandEyes Test",
"type" : "agent-to-agent",
"mss" : 100,
"dscpId" : "0",
"protocol" : "tcp",
"fixedPacketRate" : 50,
"dscp" : "Best Effort (DSCP 0)",
"pathTraceMode" : "classic",
"throughputRate" : 10,
"modifiedBy" : "user@user.com",
"testName" : "ThousandEyes Test",
"direction" : "to-target",
"throughputMeasurements" : false,
"numPathTraces" : 3,
"liveShare" : false,
"savedEvent" : true,
"throughputDuration" : 10000,
"labels" : [ "9842", "1283" ],
"tags" : [ "c6b78e57-81a2-4c5f-a11a-d96c3c664d55", "c6b78e57-81a2-4c5f-a11a-d96c3c664d55" ],
"agents" : [ {
"agentId" : "125",
"sourceIpAddress" : "1.1.1.1"
}, {
"agentId" : "125",
"sourceIpAddress" : "1.1.1.1"
} ],
"createdDate" : "2022-07-17T22:00:54Z",
"createdBy" : "user@user.com",
"port" : 49153,
"randomizedStartTime" : false,
"modifiedDate" : "2022-07-17T22:00:54Z",
"targetAgentId" : "2954",
"testId" : "281474976710706",
"sharedWithAccounts" : [ "1234", "12345" ]
}
"""
agent_to_agent_instant_test_request = thousandeyes_sdk.instant_tests.models.AgentToAgentInstantTestRequest.from_json(request_body_json)
aid = '1234'
expand = [thousandeyes_sdk.instant_tests.ExpandInstantTestOptions()]
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.create_agent_to_agent_instant_test(
agent_to_agent_instant_test_request=agent_to_agent_instant_test_request,
aid=aid,
expand=expand,
_headers=self.te_headers("create_agent_to_agent_instant_test", error_status="429"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_create_agent_to_agent_instant_test_error_500(self) -> None:
"""Integration test for create_agent_to_agent_instant_test error path (HTTP 500)"""
request_body_json = """
{
"_links" : {
"testResults" : [ {
"href" : "https://api.thousandeyes.com/v7/test-results/281474976710706/network"
}, {
"href" : "https://api.thousandeyes.com/v7/test-results/281474976710706/path-vis"
} ],
"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"
}
},
"description" : "ThousandEyes Test",
"type" : "agent-to-agent",
"mss" : 100,
"dscpId" : "0",
"protocol" : "tcp",
"fixedPacketRate" : 50,
"dscp" : "Best Effort (DSCP 0)",
"pathTraceMode" : "classic",
"throughputRate" : 10,
"modifiedBy" : "user@user.com",
"testName" : "ThousandEyes Test",
"direction" : "to-target",
"throughputMeasurements" : false,
"numPathTraces" : 3,
"liveShare" : false,
"savedEvent" : true,
"throughputDuration" : 10000,
"labels" : [ "9842", "1283" ],
"tags" : [ "c6b78e57-81a2-4c5f-a11a-d96c3c664d55", "c6b78e57-81a2-4c5f-a11a-d96c3c664d55" ],
"agents" : [ {
"agentId" : "125",
"sourceIpAddress" : "1.1.1.1"
}, {
"agentId" : "125",
"sourceIpAddress" : "1.1.1.1"
} ],
"createdDate" : "2022-07-17T22:00:54Z",
"createdBy" : "user@user.com",
"port" : 49153,
"randomizedStartTime" : false,
"modifiedDate" : "2022-07-17T22:00:54Z",
"targetAgentId" : "2954",
"testId" : "281474976710706",
"sharedWithAccounts" : [ "1234", "12345" ]
}
"""
agent_to_agent_instant_test_request = thousandeyes_sdk.instant_tests.models.AgentToAgentInstantTestRequest.from_json(request_body_json)
aid = '1234'
expand = [thousandeyes_sdk.instant_tests.ExpandInstantTestOptions()]
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.create_agent_to_agent_instant_test(
agent_to_agent_instant_test_request=agent_to_agent_instant_test_request,
aid=aid,
expand=expand,
_headers=self.te_headers("create_agent_to_agent_instant_test", error_status="500"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_create_agent_to_agent_instant_test_error_502(self) -> None:
"""Integration test for create_agent_to_agent_instant_test error path (HTTP 502)"""
request_body_json = """
{
"_links" : {
"testResults" : [ {
"href" : "https://api.thousandeyes.com/v7/test-results/281474976710706/network"
}, {
"href" : "https://api.thousandeyes.com/v7/test-results/281474976710706/path-vis"
} ],
"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"
}
},
"description" : "ThousandEyes Test",
"type" : "agent-to-agent",
"mss" : 100,
"dscpId" : "0",
"protocol" : "tcp",
"fixedPacketRate" : 50,
"dscp" : "Best Effort (DSCP 0)",
"pathTraceMode" : "classic",
"throughputRate" : 10,
"modifiedBy" : "user@user.com",
"testName" : "ThousandEyes Test",
"direction" : "to-target",
"throughputMeasurements" : false,
"numPathTraces" : 3,
"liveShare" : false,
"savedEvent" : true,
"throughputDuration" : 10000,
"labels" : [ "9842", "1283" ],
"tags" : [ "c6b78e57-81a2-4c5f-a11a-d96c3c664d55", "c6b78e57-81a2-4c5f-a11a-d96c3c664d55" ],
"agents" : [ {
"agentId" : "125",
"sourceIpAddress" : "1.1.1.1"
}, {
"agentId" : "125",
"sourceIpAddress" : "1.1.1.1"
} ],
"createdDate" : "2022-07-17T22:00:54Z",
"createdBy" : "user@user.com",
"port" : 49153,
"randomizedStartTime" : false,
"modifiedDate" : "2022-07-17T22:00:54Z",
"targetAgentId" : "2954",
"testId" : "281474976710706",
"sharedWithAccounts" : [ "1234", "12345" ]
}
"""
agent_to_agent_instant_test_request = thousandeyes_sdk.instant_tests.models.AgentToAgentInstantTestRequest.from_json(request_body_json)
aid = '1234'
expand = [thousandeyes_sdk.instant_tests.ExpandInstantTestOptions()]
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.create_agent_to_agent_instant_test(
agent_to_agent_instant_test_request=agent_to_agent_instant_test_request,
aid=aid,
expand=expand,
_headers=self.te_headers("create_agent_to_agent_instant_test", error_status="502"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
if __name__ == '__main__':
unittest.main()

View File

@ -0,0 +1,825 @@
# coding: utf-8
"""
Instant Tests API
The Instant Tests API operations lets you create and run new instant tests. You will need to be an Account Admin. The response does not include the immediate test results. Use the Test Results endpoints to get test results after creating and executing an instant test. You can find the URLs for these endpoints in the _links section of the test definition that is returned when you create the instant test.
Generated by OpenAPI Generator (https://openapi-generator.tech)
Do not edit the class manually.
""" # noqa: E501
import json
import unittest
import thousandeyes_sdk.instant_tests.models
from thousandeyes_sdk.core.exceptions import ApiException
from thousandeyes_sdk.instant_tests.api.agent_to_server_instant_tests_api import AgentToServerInstantTestsApi
from .integration_test_utils import IntegrationTestBase
from .test_utils import assert_constructed_model_matches_example_json
class TestAgentToServerInstantTestsApiIntegration(IntegrationTestBase):
"""AgentToServerInstantTestsApi integration test stubs"""
def setUp(self) -> None:
super().setUp()
self.api = AgentToServerInstantTestsApi(self.api_client)
def test_create_agent_to_server_instant_test_happy_path(self) -> None:
"""Integration test for create_agent_to_server_instant_test success path"""
request_body_json = """
{
"server" : "www.thousandeyes.com:80",
"mtuMeasurements" : false,
"ipv6Policy" : "use-agent-policy",
"_links" : {
"testResults" : [ {
"href" : "https://api.thousandeyes.com/v7/test-results/281474976710706/network"
}, {
"href" : "https://api.thousandeyes.com/v7/test-results/281474976710706/path-vis"
} ],
"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"
}
},
"bandwidthMeasurements" : true,
"description" : "ThousandEyes Test",
"probeMode" : "auto",
"type" : "agent-to-server",
"dscpId" : "0",
"fixedPacketRate" : 25,
"protocol" : "tcp",
"dscp" : "Best Effort (DSCP 0)",
"pathTraceMode" : "classic",
"modifiedBy" : "user@user.com",
"testName" : "ThousandEyes Test",
"numPathTraces" : 3,
"liveShare" : false,
"savedEvent" : true,
"networkMeasurements" : false,
"labels" : [ "9842", "1283" ],
"tags" : [ "c6b78e57-81a2-4c5f-a11a-d96c3c664d55", "c6b78e57-81a2-4c5f-a11a-d96c3c664d55" ],
"agents" : [ {
"agentId" : "125",
"sourceIpAddress" : "1.1.1.1"
}, {
"agentId" : "125",
"sourceIpAddress" : "1.1.1.1"
} ],
"createdDate" : "2022-07-17T22:00:54Z",
"createdBy" : "user@user.com",
"randomizedStartTime" : false,
"modifiedDate" : "2022-07-17T22:00:54Z",
"testId" : "281474976710706",
"pingPayloadSize" : 112,
"sharedWithAccounts" : [ "1234", "12345" ],
"continuousMode" : false
}
"""
agent_to_server_instant_test_request = thousandeyes_sdk.instant_tests.models.AgentToServerInstantTestRequest.from_json(request_body_json)
aid = '1234'
expand = [thousandeyes_sdk.instant_tests.ExpandInstantTestOptions()]
response_body_json = """
{
&quot;server&quot; : &quot;www.thousandeyes.com:80&quot;,
&quot;mtuMeasurements&quot; : false,
&quot;ipv6Policy&quot; : &quot;use-agent-policy&quot;,
&quot;_links&quot; : {
&quot;testResults&quot; : [ {
&quot;href&quot; : &quot;https://api.thousandeyes.com/v7/test-results/281474976710706/network&quot;
}, {
&quot;href&quot; : &quot;https://api.thousandeyes.com/v7/test-results/281474976710706/path-vis&quot;
} ],
&quot;self&quot; : {
&quot;hreflang&quot; : &quot;hreflang&quot;,
&quot;templated&quot; : true,
&quot;profile&quot; : &quot;profile&quot;,
&quot;name&quot; : &quot;name&quot;,
&quot;href&quot; : &quot;https://api.thousandeyes.com/v7/link/to/resource/id&quot;,
&quot;type&quot; : &quot;type&quot;,
&quot;deprecation&quot; : &quot;deprecation&quot;,
&quot;title&quot; : &quot;title&quot;
}
},
&quot;bandwidthMeasurements&quot; : true,
&quot;description&quot; : &quot;ThousandEyes Test&quot;,
&quot;probeMode&quot; : &quot;auto&quot;,
&quot;type&quot; : &quot;agent-to-server&quot;,
&quot;dscpId&quot; : &quot;0&quot;,
&quot;fixedPacketRate&quot; : 25,
&quot;protocol&quot; : &quot;tcp&quot;,
&quot;dscp&quot; : &quot;Best Effort (DSCP 0)&quot;,
&quot;pathTraceMode&quot; : &quot;classic&quot;,
&quot;modifiedBy&quot; : &quot;user@user.com&quot;,
&quot;testName&quot; : &quot;ThousandEyes Test&quot;,
&quot;numPathTraces&quot; : 3,
&quot;liveShare&quot; : false,
&quot;savedEvent&quot; : true,
&quot;networkMeasurements&quot; : false,
&quot;labels&quot; : [ {
&quot;labelId&quot; : &quot;961&quot;,
&quot;name&quot; : &quot;Artem label&quot;,
&quot;isBuiltin&quot; : false
}, {
&quot;labelId&quot; : &quot;961&quot;,
&quot;name&quot; : &quot;Artem label&quot;,
&quot;isBuiltin&quot; : false
} ],
&quot;tags&quot; : [ {
&quot;id&quot; : &quot;5aeab5d5-0d34-4d44-a7ac-fb440185295c&quot;,
&quot;value&quot; : &quot;San Francisco&quot;,
&quot;key&quot; : &quot;Location&quot;
}, {
&quot;id&quot; : &quot;5aeab5d5-0d34-4d44-a7ac-fb440185295c&quot;,
&quot;value&quot; : &quot;San Francisco&quot;,
&quot;key&quot; : &quot;Location&quot;
} ],
&quot;agents&quot; : [ {
&quot;agentId&quot; : &quot;281474976710706&quot;,
&quot;agentType&quot; : &quot;enterprise-cluster&quot;,
&quot;prefix&quot; : &quot;99.128.0.0/11&quot;,
&quot;coordinates&quot; : {
&quot;latitude&quot; : 37.77493,
&quot;longitude&quot; : -122.41942
},
&quot;agentName&quot; : &quot;thousandeyes-stg-va-254&quot;,
&quot;networkProviderInfo&quot; : {
&quot;asn&quot; : 7018,
&quot;name&quot; : &quot;AT&amp;T Services, Inc.&quot;,
&quot;type&quot; : &quot;isp&quot;
},
&quot;countryId&quot; : &quot;US&quot;,
&quot;enabled&quot; : true,
&quot;network&quot; : &quot;AT&amp;T Services, Inc. (AS 7018)&quot;,
&quot;publicIpAddresses&quot; : [ &quot;192.168.1.78&quot;, &quot;f9b2:3a21:f25c:d300:03f4:586d:f8d6:4e1c&quot; ],
&quot;ipAddresses&quot; : [ &quot;99.139.65.220&quot;, &quot;9bbd:8a0a:a257:5876:288b:6cb2:3f36:64ce&quot; ],
&quot;location&quot; : &quot;San Francisco Bay Area&quot;,
&quot;verifySslCertificates&quot; : true
}, {
&quot;agentId&quot; : &quot;281474976710706&quot;,
&quot;agentType&quot; : &quot;enterprise-cluster&quot;,
&quot;prefix&quot; : &quot;99.128.0.0/11&quot;,
&quot;coordinates&quot; : {
&quot;latitude&quot; : 37.77493,
&quot;longitude&quot; : -122.41942
},
&quot;agentName&quot; : &quot;thousandeyes-stg-va-254&quot;,
&quot;networkProviderInfo&quot; : {
&quot;asn&quot; : 7018,
&quot;name&quot; : &quot;AT&amp;T Services, Inc.&quot;,
&quot;type&quot; : &quot;isp&quot;
},
&quot;countryId&quot; : &quot;US&quot;,
&quot;enabled&quot; : true,
&quot;network&quot; : &quot;AT&amp;T Services, Inc. (AS 7018)&quot;,
&quot;publicIpAddresses&quot; : [ &quot;192.168.1.78&quot;, &quot;f9b2:3a21:f25c:d300:03f4:586d:f8d6:4e1c&quot; ],
&quot;ipAddresses&quot; : [ &quot;99.139.65.220&quot;, &quot;9bbd:8a0a:a257:5876:288b:6cb2:3f36:64ce&quot; ],
&quot;location&quot; : &quot;San Francisco Bay Area&quot;,
&quot;verifySslCertificates&quot; : true
} ],
&quot;createdDate&quot; : &quot;2022-07-17T22:00:54Z&quot;,
&quot;createdBy&quot; : &quot;user@user.com&quot;,
&quot;randomizedStartTime&quot; : false,
&quot;modifiedDate&quot; : &quot;2022-07-17T22:00:54Z&quot;,
&quot;testId&quot; : &quot;281474976710706&quot;,
&quot;sharedWithAccounts&quot; : [ {
&quot;name&quot; : &quot;Account name&quot;,
&quot;aid&quot; : &quot;1234&quot;
}, {
&quot;name&quot; : &quot;Account name&quot;,
&quot;aid&quot; : &quot;1234&quot;
} ],
&quot;pingPayloadSize&quot; : 112,
&quot;continuousMode&quot; : false
}
"""
expected_response = json.loads(response_body_json)
response = self.api.create_agent_to_server_instant_test(
agent_to_server_instant_test_request=agent_to_server_instant_test_request,
aid=aid,
expand=expand,
_headers=self.te_headers("create_agent_to_server_instant_test"),
)
assert_constructed_model_matches_example_json(response, expected_response)
def test_create_agent_to_server_instant_test_error_400(self) -> None:
"""Integration test for create_agent_to_server_instant_test error path (HTTP 400)"""
request_body_json = """
{
"server" : "www.thousandeyes.com:80",
"mtuMeasurements" : false,
"ipv6Policy" : "use-agent-policy",
"_links" : {
"testResults" : [ {
"href" : "https://api.thousandeyes.com/v7/test-results/281474976710706/network"
}, {
"href" : "https://api.thousandeyes.com/v7/test-results/281474976710706/path-vis"
} ],
"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"
}
},
"bandwidthMeasurements" : true,
"description" : "ThousandEyes Test",
"probeMode" : "auto",
"type" : "agent-to-server",
"dscpId" : "0",
"fixedPacketRate" : 25,
"protocol" : "tcp",
"dscp" : "Best Effort (DSCP 0)",
"pathTraceMode" : "classic",
"modifiedBy" : "user@user.com",
"testName" : "ThousandEyes Test",
"numPathTraces" : 3,
"liveShare" : false,
"savedEvent" : true,
"networkMeasurements" : false,
"labels" : [ "9842", "1283" ],
"tags" : [ "c6b78e57-81a2-4c5f-a11a-d96c3c664d55", "c6b78e57-81a2-4c5f-a11a-d96c3c664d55" ],
"agents" : [ {
"agentId" : "125",
"sourceIpAddress" : "1.1.1.1"
}, {
"agentId" : "125",
"sourceIpAddress" : "1.1.1.1"
} ],
"createdDate" : "2022-07-17T22:00:54Z",
"createdBy" : "user@user.com",
"randomizedStartTime" : false,
"modifiedDate" : "2022-07-17T22:00:54Z",
"testId" : "281474976710706",
"pingPayloadSize" : 112,
"sharedWithAccounts" : [ "1234", "12345" ],
"continuousMode" : false
}
"""
agent_to_server_instant_test_request = thousandeyes_sdk.instant_tests.models.AgentToServerInstantTestRequest.from_json(request_body_json)
aid = '1234'
expand = [thousandeyes_sdk.instant_tests.ExpandInstantTestOptions()]
error_body_json = """
{
"instance" : "instance",
"detail" : "detail",
"type" : "type",
"title" : "title",
"errors" : [ {
"code" : "code",
"field" : "field",
"message" : "message"
}, {
"code" : "code",
"field" : "field",
"message" : "message"
} ],
"status" : 0
}
"""
expected_error = json.loads(error_body_json)
with self.assertRaises(
ApiException.exception_class_for_http_status(400)
) as context:
self.api.create_agent_to_server_instant_test(
agent_to_server_instant_test_request=agent_to_server_instant_test_request,
aid=aid,
expand=expand,
_headers=self.te_headers("create_agent_to_server_instant_test", error_status="400"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_create_agent_to_server_instant_test_error_401(self) -> None:
"""Integration test for create_agent_to_server_instant_test error path (HTTP 401)"""
request_body_json = """
{
"server" : "www.thousandeyes.com:80",
"mtuMeasurements" : false,
"ipv6Policy" : "use-agent-policy",
"_links" : {
"testResults" : [ {
"href" : "https://api.thousandeyes.com/v7/test-results/281474976710706/network"
}, {
"href" : "https://api.thousandeyes.com/v7/test-results/281474976710706/path-vis"
} ],
"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"
}
},
"bandwidthMeasurements" : true,
"description" : "ThousandEyes Test",
"probeMode" : "auto",
"type" : "agent-to-server",
"dscpId" : "0",
"fixedPacketRate" : 25,
"protocol" : "tcp",
"dscp" : "Best Effort (DSCP 0)",
"pathTraceMode" : "classic",
"modifiedBy" : "user@user.com",
"testName" : "ThousandEyes Test",
"numPathTraces" : 3,
"liveShare" : false,
"savedEvent" : true,
"networkMeasurements" : false,
"labels" : [ "9842", "1283" ],
"tags" : [ "c6b78e57-81a2-4c5f-a11a-d96c3c664d55", "c6b78e57-81a2-4c5f-a11a-d96c3c664d55" ],
"agents" : [ {
"agentId" : "125",
"sourceIpAddress" : "1.1.1.1"
}, {
"agentId" : "125",
"sourceIpAddress" : "1.1.1.1"
} ],
"createdDate" : "2022-07-17T22:00:54Z",
"createdBy" : "user@user.com",
"randomizedStartTime" : false,
"modifiedDate" : "2022-07-17T22:00:54Z",
"testId" : "281474976710706",
"pingPayloadSize" : 112,
"sharedWithAccounts" : [ "1234", "12345" ],
"continuousMode" : false
}
"""
agent_to_server_instant_test_request = thousandeyes_sdk.instant_tests.models.AgentToServerInstantTestRequest.from_json(request_body_json)
aid = '1234'
expand = [thousandeyes_sdk.instant_tests.ExpandInstantTestOptions()]
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.create_agent_to_server_instant_test(
agent_to_server_instant_test_request=agent_to_server_instant_test_request,
aid=aid,
expand=expand,
_headers=self.te_headers("create_agent_to_server_instant_test", error_status="401"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_create_agent_to_server_instant_test_error_403(self) -> None:
"""Integration test for create_agent_to_server_instant_test error path (HTTP 403)"""
request_body_json = """
{
"server" : "www.thousandeyes.com:80",
"mtuMeasurements" : false,
"ipv6Policy" : "use-agent-policy",
"_links" : {
"testResults" : [ {
"href" : "https://api.thousandeyes.com/v7/test-results/281474976710706/network"
}, {
"href" : "https://api.thousandeyes.com/v7/test-results/281474976710706/path-vis"
} ],
"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"
}
},
"bandwidthMeasurements" : true,
"description" : "ThousandEyes Test",
"probeMode" : "auto",
"type" : "agent-to-server",
"dscpId" : "0",
"fixedPacketRate" : 25,
"protocol" : "tcp",
"dscp" : "Best Effort (DSCP 0)",
"pathTraceMode" : "classic",
"modifiedBy" : "user@user.com",
"testName" : "ThousandEyes Test",
"numPathTraces" : 3,
"liveShare" : false,
"savedEvent" : true,
"networkMeasurements" : false,
"labels" : [ "9842", "1283" ],
"tags" : [ "c6b78e57-81a2-4c5f-a11a-d96c3c664d55", "c6b78e57-81a2-4c5f-a11a-d96c3c664d55" ],
"agents" : [ {
"agentId" : "125",
"sourceIpAddress" : "1.1.1.1"
}, {
"agentId" : "125",
"sourceIpAddress" : "1.1.1.1"
} ],
"createdDate" : "2022-07-17T22:00:54Z",
"createdBy" : "user@user.com",
"randomizedStartTime" : false,
"modifiedDate" : "2022-07-17T22:00:54Z",
"testId" : "281474976710706",
"pingPayloadSize" : 112,
"sharedWithAccounts" : [ "1234", "12345" ],
"continuousMode" : false
}
"""
agent_to_server_instant_test_request = thousandeyes_sdk.instant_tests.models.AgentToServerInstantTestRequest.from_json(request_body_json)
aid = '1234'
expand = [thousandeyes_sdk.instant_tests.ExpandInstantTestOptions()]
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.create_agent_to_server_instant_test(
agent_to_server_instant_test_request=agent_to_server_instant_test_request,
aid=aid,
expand=expand,
_headers=self.te_headers("create_agent_to_server_instant_test", error_status="403"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_create_agent_to_server_instant_test_error_404(self) -> None:
"""Integration test for create_agent_to_server_instant_test error path (HTTP 404)"""
request_body_json = """
{
"server" : "www.thousandeyes.com:80",
"mtuMeasurements" : false,
"ipv6Policy" : "use-agent-policy",
"_links" : {
"testResults" : [ {
"href" : "https://api.thousandeyes.com/v7/test-results/281474976710706/network"
}, {
"href" : "https://api.thousandeyes.com/v7/test-results/281474976710706/path-vis"
} ],
"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"
}
},
"bandwidthMeasurements" : true,
"description" : "ThousandEyes Test",
"probeMode" : "auto",
"type" : "agent-to-server",
"dscpId" : "0",
"fixedPacketRate" : 25,
"protocol" : "tcp",
"dscp" : "Best Effort (DSCP 0)",
"pathTraceMode" : "classic",
"modifiedBy" : "user@user.com",
"testName" : "ThousandEyes Test",
"numPathTraces" : 3,
"liveShare" : false,
"savedEvent" : true,
"networkMeasurements" : false,
"labels" : [ "9842", "1283" ],
"tags" : [ "c6b78e57-81a2-4c5f-a11a-d96c3c664d55", "c6b78e57-81a2-4c5f-a11a-d96c3c664d55" ],
"agents" : [ {
"agentId" : "125",
"sourceIpAddress" : "1.1.1.1"
}, {
"agentId" : "125",
"sourceIpAddress" : "1.1.1.1"
} ],
"createdDate" : "2022-07-17T22:00:54Z",
"createdBy" : "user@user.com",
"randomizedStartTime" : false,
"modifiedDate" : "2022-07-17T22:00:54Z",
"testId" : "281474976710706",
"pingPayloadSize" : 112,
"sharedWithAccounts" : [ "1234", "12345" ],
"continuousMode" : false
}
"""
agent_to_server_instant_test_request = thousandeyes_sdk.instant_tests.models.AgentToServerInstantTestRequest.from_json(request_body_json)
aid = '1234'
expand = [thousandeyes_sdk.instant_tests.ExpandInstantTestOptions()]
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.create_agent_to_server_instant_test(
agent_to_server_instant_test_request=agent_to_server_instant_test_request,
aid=aid,
expand=expand,
_headers=self.te_headers("create_agent_to_server_instant_test", error_status="404"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_create_agent_to_server_instant_test_error_429(self) -> None:
"""Integration test for create_agent_to_server_instant_test error path (HTTP 429)"""
request_body_json = """
{
"server" : "www.thousandeyes.com:80",
"mtuMeasurements" : false,
"ipv6Policy" : "use-agent-policy",
"_links" : {
"testResults" : [ {
"href" : "https://api.thousandeyes.com/v7/test-results/281474976710706/network"
}, {
"href" : "https://api.thousandeyes.com/v7/test-results/281474976710706/path-vis"
} ],
"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"
}
},
"bandwidthMeasurements" : true,
"description" : "ThousandEyes Test",
"probeMode" : "auto",
"type" : "agent-to-server",
"dscpId" : "0",
"fixedPacketRate" : 25,
"protocol" : "tcp",
"dscp" : "Best Effort (DSCP 0)",
"pathTraceMode" : "classic",
"modifiedBy" : "user@user.com",
"testName" : "ThousandEyes Test",
"numPathTraces" : 3,
"liveShare" : false,
"savedEvent" : true,
"networkMeasurements" : false,
"labels" : [ "9842", "1283" ],
"tags" : [ "c6b78e57-81a2-4c5f-a11a-d96c3c664d55", "c6b78e57-81a2-4c5f-a11a-d96c3c664d55" ],
"agents" : [ {
"agentId" : "125",
"sourceIpAddress" : "1.1.1.1"
}, {
"agentId" : "125",
"sourceIpAddress" : "1.1.1.1"
} ],
"createdDate" : "2022-07-17T22:00:54Z",
"createdBy" : "user@user.com",
"randomizedStartTime" : false,
"modifiedDate" : "2022-07-17T22:00:54Z",
"testId" : "281474976710706",
"pingPayloadSize" : 112,
"sharedWithAccounts" : [ "1234", "12345" ],
"continuousMode" : false
}
"""
agent_to_server_instant_test_request = thousandeyes_sdk.instant_tests.models.AgentToServerInstantTestRequest.from_json(request_body_json)
aid = '1234'
expand = [thousandeyes_sdk.instant_tests.ExpandInstantTestOptions()]
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.create_agent_to_server_instant_test(
agent_to_server_instant_test_request=agent_to_server_instant_test_request,
aid=aid,
expand=expand,
_headers=self.te_headers("create_agent_to_server_instant_test", error_status="429"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_create_agent_to_server_instant_test_error_500(self) -> None:
"""Integration test for create_agent_to_server_instant_test error path (HTTP 500)"""
request_body_json = """
{
"server" : "www.thousandeyes.com:80",
"mtuMeasurements" : false,
"ipv6Policy" : "use-agent-policy",
"_links" : {
"testResults" : [ {
"href" : "https://api.thousandeyes.com/v7/test-results/281474976710706/network"
}, {
"href" : "https://api.thousandeyes.com/v7/test-results/281474976710706/path-vis"
} ],
"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"
}
},
"bandwidthMeasurements" : true,
"description" : "ThousandEyes Test",
"probeMode" : "auto",
"type" : "agent-to-server",
"dscpId" : "0",
"fixedPacketRate" : 25,
"protocol" : "tcp",
"dscp" : "Best Effort (DSCP 0)",
"pathTraceMode" : "classic",
"modifiedBy" : "user@user.com",
"testName" : "ThousandEyes Test",
"numPathTraces" : 3,
"liveShare" : false,
"savedEvent" : true,
"networkMeasurements" : false,
"labels" : [ "9842", "1283" ],
"tags" : [ "c6b78e57-81a2-4c5f-a11a-d96c3c664d55", "c6b78e57-81a2-4c5f-a11a-d96c3c664d55" ],
"agents" : [ {
"agentId" : "125",
"sourceIpAddress" : "1.1.1.1"
}, {
"agentId" : "125",
"sourceIpAddress" : "1.1.1.1"
} ],
"createdDate" : "2022-07-17T22:00:54Z",
"createdBy" : "user@user.com",
"randomizedStartTime" : false,
"modifiedDate" : "2022-07-17T22:00:54Z",
"testId" : "281474976710706",
"pingPayloadSize" : 112,
"sharedWithAccounts" : [ "1234", "12345" ],
"continuousMode" : false
}
"""
agent_to_server_instant_test_request = thousandeyes_sdk.instant_tests.models.AgentToServerInstantTestRequest.from_json(request_body_json)
aid = '1234'
expand = [thousandeyes_sdk.instant_tests.ExpandInstantTestOptions()]
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.create_agent_to_server_instant_test(
agent_to_server_instant_test_request=agent_to_server_instant_test_request,
aid=aid,
expand=expand,
_headers=self.te_headers("create_agent_to_server_instant_test", error_status="500"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_create_agent_to_server_instant_test_error_502(self) -> None:
"""Integration test for create_agent_to_server_instant_test error path (HTTP 502)"""
request_body_json = """
{
"server" : "www.thousandeyes.com:80",
"mtuMeasurements" : false,
"ipv6Policy" : "use-agent-policy",
"_links" : {
"testResults" : [ {
"href" : "https://api.thousandeyes.com/v7/test-results/281474976710706/network"
}, {
"href" : "https://api.thousandeyes.com/v7/test-results/281474976710706/path-vis"
} ],
"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"
}
},
"bandwidthMeasurements" : true,
"description" : "ThousandEyes Test",
"probeMode" : "auto",
"type" : "agent-to-server",
"dscpId" : "0",
"fixedPacketRate" : 25,
"protocol" : "tcp",
"dscp" : "Best Effort (DSCP 0)",
"pathTraceMode" : "classic",
"modifiedBy" : "user@user.com",
"testName" : "ThousandEyes Test",
"numPathTraces" : 3,
"liveShare" : false,
"savedEvent" : true,
"networkMeasurements" : false,
"labels" : [ "9842", "1283" ],
"tags" : [ "c6b78e57-81a2-4c5f-a11a-d96c3c664d55", "c6b78e57-81a2-4c5f-a11a-d96c3c664d55" ],
"agents" : [ {
"agentId" : "125",
"sourceIpAddress" : "1.1.1.1"
}, {
"agentId" : "125",
"sourceIpAddress" : "1.1.1.1"
} ],
"createdDate" : "2022-07-17T22:00:54Z",
"createdBy" : "user@user.com",
"randomizedStartTime" : false,
"modifiedDate" : "2022-07-17T22:00:54Z",
"testId" : "281474976710706",
"pingPayloadSize" : 112,
"sharedWithAccounts" : [ "1234", "12345" ],
"continuousMode" : false
}
"""
agent_to_server_instant_test_request = thousandeyes_sdk.instant_tests.models.AgentToServerInstantTestRequest.from_json(request_body_json)
aid = '1234'
expand = [thousandeyes_sdk.instant_tests.ExpandInstantTestOptions()]
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.create_agent_to_server_instant_test(
agent_to_server_instant_test_request=agent_to_server_instant_test_request,
aid=aid,
expand=expand,
_headers=self.te_headers("create_agent_to_server_instant_test", error_status="502"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
if __name__ == '__main__':
unittest.main()

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,831 @@
# coding: utf-8
"""
Instant Tests API
The Instant Tests API operations lets you create and run new instant tests. You will need to be an Account Admin. The response does not include the immediate test results. Use the Test Results endpoints to get test results after creating and executing an instant test. You can find the URLs for these endpoints in the _links section of the test definition that is returned when you create the instant test.
Generated by OpenAPI Generator (https://openapi-generator.tech)
Do not edit the class manually.
""" # noqa: E501
import json
import unittest
import thousandeyes_sdk.instant_tests.models
from thousandeyes_sdk.core.exceptions import ApiException
from thousandeyes_sdk.instant_tests.api.dns_server_instant_tests_api import DNSServerInstantTestsApi
from .integration_test_utils import IntegrationTestBase
from .test_utils import assert_constructed_model_matches_example_json
class TestDNSServerInstantTestsApiIntegration(IntegrationTestBase):
"""DNSServerInstantTestsApi integration test stubs"""
def setUp(self) -> None:
super().setUp()
self.api = DNSServerInstantTestsApi(self.api_client)
def test_create_dns_server_instant_test_happy_path(self) -> None:
"""Integration test for create_dns_server_instant_test success path"""
request_body_json = """
{
"mtuMeasurements" : false,
"ipv6Policy" : "use-agent-policy",
"_links" : {
"testResults" : [ {
"href" : "https://api.thousandeyes.com/v7/test-results/281474976710706/network"
}, {
"href" : "https://api.thousandeyes.com/v7/test-results/281474976710706/path-vis"
} ],
"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"
}
},
"bandwidthMeasurements" : true,
"description" : "ThousandEyes Test",
"dnsTransportProtocol" : "udp",
"probeMode" : "auto",
"type" : "dns-server",
"protocol" : "tcp",
"fixedPacketRate" : 50,
"pathTraceMode" : "classic",
"modifiedBy" : "user@user.com",
"dnsServers" : [ "dns-example.net", "8.8.8.8" ],
"recursiveQueries" : true,
"testName" : "ThousandEyes Test",
"numPathTraces" : 3,
"dnsQueryClass" : "in",
"liveShare" : false,
"savedEvent" : true,
"networkMeasurements" : true,
"labels" : [ "9842", "1283" ],
"tags" : [ "c6b78e57-81a2-4c5f-a11a-d96c3c664d55", "c6b78e57-81a2-4c5f-a11a-d96c3c664d55" ],
"agents" : [ {
"agentId" : "125",
"sourceIpAddress" : "1.1.1.1"
}, {
"agentId" : "125",
"sourceIpAddress" : "1.1.1.1"
} ],
"createdDate" : "2022-07-17T22:00:54Z",
"createdBy" : "user@user.com",
"randomizedStartTime" : false,
"domain" : "www.thousandeyes.com",
"modifiedDate" : "2022-07-17T22:00:54Z",
"testId" : "281474976710706",
"sharedWithAccounts" : [ "1234", "12345" ]
}
"""
dns_server_instant_test_request = thousandeyes_sdk.instant_tests.models.DnsServerInstantTestRequest.from_json(request_body_json)
aid = '1234'
expand = [thousandeyes_sdk.instant_tests.ExpandInstantTestOptions()]
response_body_json = """
{
&quot;mtuMeasurements&quot; : false,
&quot;ipv6Policy&quot; : &quot;use-agent-policy&quot;,
&quot;_links&quot; : {
&quot;testResults&quot; : [ {
&quot;href&quot; : &quot;https://api.thousandeyes.com/v7/test-results/281474976710706/network&quot;
}, {
&quot;href&quot; : &quot;https://api.thousandeyes.com/v7/test-results/281474976710706/path-vis&quot;
} ],
&quot;self&quot; : {
&quot;hreflang&quot; : &quot;hreflang&quot;,
&quot;templated&quot; : true,
&quot;profile&quot; : &quot;profile&quot;,
&quot;name&quot; : &quot;name&quot;,
&quot;href&quot; : &quot;https://api.thousandeyes.com/v7/link/to/resource/id&quot;,
&quot;type&quot; : &quot;type&quot;,
&quot;deprecation&quot; : &quot;deprecation&quot;,
&quot;title&quot; : &quot;title&quot;
}
},
&quot;bandwidthMeasurements&quot; : true,
&quot;description&quot; : &quot;ThousandEyes Test&quot;,
&quot;dnsTransportProtocol&quot; : &quot;udp&quot;,
&quot;probeMode&quot; : &quot;auto&quot;,
&quot;type&quot; : &quot;dns-server&quot;,
&quot;protocol&quot; : &quot;tcp&quot;,
&quot;fixedPacketRate&quot; : 50,
&quot;pathTraceMode&quot; : &quot;classic&quot;,
&quot;modifiedBy&quot; : &quot;user@user.com&quot;,
&quot;dnsServers&quot; : [ {
&quot;serverName&quot; : &quot;dns-example.net&quot;,
&quot;serverId&quot; : &quot;1447&quot;
}, {
&quot;serverName&quot; : &quot;dns-example.net&quot;,
&quot;serverId&quot; : &quot;1447&quot;
} ],
&quot;recursiveQueries&quot; : true,
&quot;testName&quot; : &quot;ThousandEyes Test&quot;,
&quot;numPathTraces&quot; : 3,
&quot;dnsQueryClass&quot; : &quot;in&quot;,
&quot;liveShare&quot; : false,
&quot;savedEvent&quot; : true,
&quot;networkMeasurements&quot; : true,
&quot;labels&quot; : [ {
&quot;labelId&quot; : &quot;961&quot;,
&quot;name&quot; : &quot;Artem label&quot;,
&quot;isBuiltin&quot; : false
}, {
&quot;labelId&quot; : &quot;961&quot;,
&quot;name&quot; : &quot;Artem label&quot;,
&quot;isBuiltin&quot; : false
} ],
&quot;tags&quot; : [ {
&quot;id&quot; : &quot;5aeab5d5-0d34-4d44-a7ac-fb440185295c&quot;,
&quot;value&quot; : &quot;San Francisco&quot;,
&quot;key&quot; : &quot;Location&quot;
}, {
&quot;id&quot; : &quot;5aeab5d5-0d34-4d44-a7ac-fb440185295c&quot;,
&quot;value&quot; : &quot;San Francisco&quot;,
&quot;key&quot; : &quot;Location&quot;
} ],
&quot;agents&quot; : [ {
&quot;agentId&quot; : &quot;281474976710706&quot;,
&quot;agentType&quot; : &quot;enterprise-cluster&quot;,
&quot;prefix&quot; : &quot;99.128.0.0/11&quot;,
&quot;coordinates&quot; : {
&quot;latitude&quot; : 37.77493,
&quot;longitude&quot; : -122.41942
},
&quot;agentName&quot; : &quot;thousandeyes-stg-va-254&quot;,
&quot;networkProviderInfo&quot; : {
&quot;asn&quot; : 7018,
&quot;name&quot; : &quot;AT&amp;T Services, Inc.&quot;,
&quot;type&quot; : &quot;isp&quot;
},
&quot;countryId&quot; : &quot;US&quot;,
&quot;enabled&quot; : true,
&quot;network&quot; : &quot;AT&amp;T Services, Inc. (AS 7018)&quot;,
&quot;publicIpAddresses&quot; : [ &quot;192.168.1.78&quot;, &quot;f9b2:3a21:f25c:d300:03f4:586d:f8d6:4e1c&quot; ],
&quot;ipAddresses&quot; : [ &quot;99.139.65.220&quot;, &quot;9bbd:8a0a:a257:5876:288b:6cb2:3f36:64ce&quot; ],
&quot;location&quot; : &quot;San Francisco Bay Area&quot;,
&quot;verifySslCertificates&quot; : true
}, {
&quot;agentId&quot; : &quot;281474976710706&quot;,
&quot;agentType&quot; : &quot;enterprise-cluster&quot;,
&quot;prefix&quot; : &quot;99.128.0.0/11&quot;,
&quot;coordinates&quot; : {
&quot;latitude&quot; : 37.77493,
&quot;longitude&quot; : -122.41942
},
&quot;agentName&quot; : &quot;thousandeyes-stg-va-254&quot;,
&quot;networkProviderInfo&quot; : {
&quot;asn&quot; : 7018,
&quot;name&quot; : &quot;AT&amp;T Services, Inc.&quot;,
&quot;type&quot; : &quot;isp&quot;
},
&quot;countryId&quot; : &quot;US&quot;,
&quot;enabled&quot; : true,
&quot;network&quot; : &quot;AT&amp;T Services, Inc. (AS 7018)&quot;,
&quot;publicIpAddresses&quot; : [ &quot;192.168.1.78&quot;, &quot;f9b2:3a21:f25c:d300:03f4:586d:f8d6:4e1c&quot; ],
&quot;ipAddresses&quot; : [ &quot;99.139.65.220&quot;, &quot;9bbd:8a0a:a257:5876:288b:6cb2:3f36:64ce&quot; ],
&quot;location&quot; : &quot;San Francisco Bay Area&quot;,
&quot;verifySslCertificates&quot; : true
} ],
&quot;createdDate&quot; : &quot;2022-07-17T22:00:54Z&quot;,
&quot;createdBy&quot; : &quot;user@user.com&quot;,
&quot;randomizedStartTime&quot; : false,
&quot;domain&quot; : &quot;www.thousandeyes.com&quot;,
&quot;modifiedDate&quot; : &quot;2022-07-17T22:00:54Z&quot;,
&quot;testId&quot; : &quot;281474976710706&quot;,
&quot;sharedWithAccounts&quot; : [ {
&quot;name&quot; : &quot;Account name&quot;,
&quot;aid&quot; : &quot;1234&quot;
}, {
&quot;name&quot; : &quot;Account name&quot;,
&quot;aid&quot; : &quot;1234&quot;
} ]
}
"""
expected_response = json.loads(response_body_json)
response = self.api.create_dns_server_instant_test(
dns_server_instant_test_request=dns_server_instant_test_request,
aid=aid,
expand=expand,
_headers=self.te_headers("create_dns_server_instant_test"),
)
assert_constructed_model_matches_example_json(response, expected_response)
def test_create_dns_server_instant_test_error_400(self) -> None:
"""Integration test for create_dns_server_instant_test error path (HTTP 400)"""
request_body_json = """
{
"mtuMeasurements" : false,
"ipv6Policy" : "use-agent-policy",
"_links" : {
"testResults" : [ {
"href" : "https://api.thousandeyes.com/v7/test-results/281474976710706/network"
}, {
"href" : "https://api.thousandeyes.com/v7/test-results/281474976710706/path-vis"
} ],
"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"
}
},
"bandwidthMeasurements" : true,
"description" : "ThousandEyes Test",
"dnsTransportProtocol" : "udp",
"probeMode" : "auto",
"type" : "dns-server",
"protocol" : "tcp",
"fixedPacketRate" : 50,
"pathTraceMode" : "classic",
"modifiedBy" : "user@user.com",
"dnsServers" : [ "dns-example.net", "8.8.8.8" ],
"recursiveQueries" : true,
"testName" : "ThousandEyes Test",
"numPathTraces" : 3,
"dnsQueryClass" : "in",
"liveShare" : false,
"savedEvent" : true,
"networkMeasurements" : true,
"labels" : [ "9842", "1283" ],
"tags" : [ "c6b78e57-81a2-4c5f-a11a-d96c3c664d55", "c6b78e57-81a2-4c5f-a11a-d96c3c664d55" ],
"agents" : [ {
"agentId" : "125",
"sourceIpAddress" : "1.1.1.1"
}, {
"agentId" : "125",
"sourceIpAddress" : "1.1.1.1"
} ],
"createdDate" : "2022-07-17T22:00:54Z",
"createdBy" : "user@user.com",
"randomizedStartTime" : false,
"domain" : "www.thousandeyes.com",
"modifiedDate" : "2022-07-17T22:00:54Z",
"testId" : "281474976710706",
"sharedWithAccounts" : [ "1234", "12345" ]
}
"""
dns_server_instant_test_request = thousandeyes_sdk.instant_tests.models.DnsServerInstantTestRequest.from_json(request_body_json)
aid = '1234'
expand = [thousandeyes_sdk.instant_tests.ExpandInstantTestOptions()]
error_body_json = """
{
"instance" : "instance",
"detail" : "detail",
"type" : "type",
"title" : "title",
"errors" : [ {
"code" : "code",
"field" : "field",
"message" : "message"
}, {
"code" : "code",
"field" : "field",
"message" : "message"
} ],
"status" : 0
}
"""
expected_error = json.loads(error_body_json)
with self.assertRaises(
ApiException.exception_class_for_http_status(400)
) as context:
self.api.create_dns_server_instant_test(
dns_server_instant_test_request=dns_server_instant_test_request,
aid=aid,
expand=expand,
_headers=self.te_headers("create_dns_server_instant_test", error_status="400"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_create_dns_server_instant_test_error_401(self) -> None:
"""Integration test for create_dns_server_instant_test error path (HTTP 401)"""
request_body_json = """
{
"mtuMeasurements" : false,
"ipv6Policy" : "use-agent-policy",
"_links" : {
"testResults" : [ {
"href" : "https://api.thousandeyes.com/v7/test-results/281474976710706/network"
}, {
"href" : "https://api.thousandeyes.com/v7/test-results/281474976710706/path-vis"
} ],
"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"
}
},
"bandwidthMeasurements" : true,
"description" : "ThousandEyes Test",
"dnsTransportProtocol" : "udp",
"probeMode" : "auto",
"type" : "dns-server",
"protocol" : "tcp",
"fixedPacketRate" : 50,
"pathTraceMode" : "classic",
"modifiedBy" : "user@user.com",
"dnsServers" : [ "dns-example.net", "8.8.8.8" ],
"recursiveQueries" : true,
"testName" : "ThousandEyes Test",
"numPathTraces" : 3,
"dnsQueryClass" : "in",
"liveShare" : false,
"savedEvent" : true,
"networkMeasurements" : true,
"labels" : [ "9842", "1283" ],
"tags" : [ "c6b78e57-81a2-4c5f-a11a-d96c3c664d55", "c6b78e57-81a2-4c5f-a11a-d96c3c664d55" ],
"agents" : [ {
"agentId" : "125",
"sourceIpAddress" : "1.1.1.1"
}, {
"agentId" : "125",
"sourceIpAddress" : "1.1.1.1"
} ],
"createdDate" : "2022-07-17T22:00:54Z",
"createdBy" : "user@user.com",
"randomizedStartTime" : false,
"domain" : "www.thousandeyes.com",
"modifiedDate" : "2022-07-17T22:00:54Z",
"testId" : "281474976710706",
"sharedWithAccounts" : [ "1234", "12345" ]
}
"""
dns_server_instant_test_request = thousandeyes_sdk.instant_tests.models.DnsServerInstantTestRequest.from_json(request_body_json)
aid = '1234'
expand = [thousandeyes_sdk.instant_tests.ExpandInstantTestOptions()]
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.create_dns_server_instant_test(
dns_server_instant_test_request=dns_server_instant_test_request,
aid=aid,
expand=expand,
_headers=self.te_headers("create_dns_server_instant_test", error_status="401"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_create_dns_server_instant_test_error_403(self) -> None:
"""Integration test for create_dns_server_instant_test error path (HTTP 403)"""
request_body_json = """
{
"mtuMeasurements" : false,
"ipv6Policy" : "use-agent-policy",
"_links" : {
"testResults" : [ {
"href" : "https://api.thousandeyes.com/v7/test-results/281474976710706/network"
}, {
"href" : "https://api.thousandeyes.com/v7/test-results/281474976710706/path-vis"
} ],
"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"
}
},
"bandwidthMeasurements" : true,
"description" : "ThousandEyes Test",
"dnsTransportProtocol" : "udp",
"probeMode" : "auto",
"type" : "dns-server",
"protocol" : "tcp",
"fixedPacketRate" : 50,
"pathTraceMode" : "classic",
"modifiedBy" : "user@user.com",
"dnsServers" : [ "dns-example.net", "8.8.8.8" ],
"recursiveQueries" : true,
"testName" : "ThousandEyes Test",
"numPathTraces" : 3,
"dnsQueryClass" : "in",
"liveShare" : false,
"savedEvent" : true,
"networkMeasurements" : true,
"labels" : [ "9842", "1283" ],
"tags" : [ "c6b78e57-81a2-4c5f-a11a-d96c3c664d55", "c6b78e57-81a2-4c5f-a11a-d96c3c664d55" ],
"agents" : [ {
"agentId" : "125",
"sourceIpAddress" : "1.1.1.1"
}, {
"agentId" : "125",
"sourceIpAddress" : "1.1.1.1"
} ],
"createdDate" : "2022-07-17T22:00:54Z",
"createdBy" : "user@user.com",
"randomizedStartTime" : false,
"domain" : "www.thousandeyes.com",
"modifiedDate" : "2022-07-17T22:00:54Z",
"testId" : "281474976710706",
"sharedWithAccounts" : [ "1234", "12345" ]
}
"""
dns_server_instant_test_request = thousandeyes_sdk.instant_tests.models.DnsServerInstantTestRequest.from_json(request_body_json)
aid = '1234'
expand = [thousandeyes_sdk.instant_tests.ExpandInstantTestOptions()]
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.create_dns_server_instant_test(
dns_server_instant_test_request=dns_server_instant_test_request,
aid=aid,
expand=expand,
_headers=self.te_headers("create_dns_server_instant_test", error_status="403"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_create_dns_server_instant_test_error_404(self) -> None:
"""Integration test for create_dns_server_instant_test error path (HTTP 404)"""
request_body_json = """
{
"mtuMeasurements" : false,
"ipv6Policy" : "use-agent-policy",
"_links" : {
"testResults" : [ {
"href" : "https://api.thousandeyes.com/v7/test-results/281474976710706/network"
}, {
"href" : "https://api.thousandeyes.com/v7/test-results/281474976710706/path-vis"
} ],
"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"
}
},
"bandwidthMeasurements" : true,
"description" : "ThousandEyes Test",
"dnsTransportProtocol" : "udp",
"probeMode" : "auto",
"type" : "dns-server",
"protocol" : "tcp",
"fixedPacketRate" : 50,
"pathTraceMode" : "classic",
"modifiedBy" : "user@user.com",
"dnsServers" : [ "dns-example.net", "8.8.8.8" ],
"recursiveQueries" : true,
"testName" : "ThousandEyes Test",
"numPathTraces" : 3,
"dnsQueryClass" : "in",
"liveShare" : false,
"savedEvent" : true,
"networkMeasurements" : true,
"labels" : [ "9842", "1283" ],
"tags" : [ "c6b78e57-81a2-4c5f-a11a-d96c3c664d55", "c6b78e57-81a2-4c5f-a11a-d96c3c664d55" ],
"agents" : [ {
"agentId" : "125",
"sourceIpAddress" : "1.1.1.1"
}, {
"agentId" : "125",
"sourceIpAddress" : "1.1.1.1"
} ],
"createdDate" : "2022-07-17T22:00:54Z",
"createdBy" : "user@user.com",
"randomizedStartTime" : false,
"domain" : "www.thousandeyes.com",
"modifiedDate" : "2022-07-17T22:00:54Z",
"testId" : "281474976710706",
"sharedWithAccounts" : [ "1234", "12345" ]
}
"""
dns_server_instant_test_request = thousandeyes_sdk.instant_tests.models.DnsServerInstantTestRequest.from_json(request_body_json)
aid = '1234'
expand = [thousandeyes_sdk.instant_tests.ExpandInstantTestOptions()]
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.create_dns_server_instant_test(
dns_server_instant_test_request=dns_server_instant_test_request,
aid=aid,
expand=expand,
_headers=self.te_headers("create_dns_server_instant_test", error_status="404"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_create_dns_server_instant_test_error_429(self) -> None:
"""Integration test for create_dns_server_instant_test error path (HTTP 429)"""
request_body_json = """
{
"mtuMeasurements" : false,
"ipv6Policy" : "use-agent-policy",
"_links" : {
"testResults" : [ {
"href" : "https://api.thousandeyes.com/v7/test-results/281474976710706/network"
}, {
"href" : "https://api.thousandeyes.com/v7/test-results/281474976710706/path-vis"
} ],
"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"
}
},
"bandwidthMeasurements" : true,
"description" : "ThousandEyes Test",
"dnsTransportProtocol" : "udp",
"probeMode" : "auto",
"type" : "dns-server",
"protocol" : "tcp",
"fixedPacketRate" : 50,
"pathTraceMode" : "classic",
"modifiedBy" : "user@user.com",
"dnsServers" : [ "dns-example.net", "8.8.8.8" ],
"recursiveQueries" : true,
"testName" : "ThousandEyes Test",
"numPathTraces" : 3,
"dnsQueryClass" : "in",
"liveShare" : false,
"savedEvent" : true,
"networkMeasurements" : true,
"labels" : [ "9842", "1283" ],
"tags" : [ "c6b78e57-81a2-4c5f-a11a-d96c3c664d55", "c6b78e57-81a2-4c5f-a11a-d96c3c664d55" ],
"agents" : [ {
"agentId" : "125",
"sourceIpAddress" : "1.1.1.1"
}, {
"agentId" : "125",
"sourceIpAddress" : "1.1.1.1"
} ],
"createdDate" : "2022-07-17T22:00:54Z",
"createdBy" : "user@user.com",
"randomizedStartTime" : false,
"domain" : "www.thousandeyes.com",
"modifiedDate" : "2022-07-17T22:00:54Z",
"testId" : "281474976710706",
"sharedWithAccounts" : [ "1234", "12345" ]
}
"""
dns_server_instant_test_request = thousandeyes_sdk.instant_tests.models.DnsServerInstantTestRequest.from_json(request_body_json)
aid = '1234'
expand = [thousandeyes_sdk.instant_tests.ExpandInstantTestOptions()]
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.create_dns_server_instant_test(
dns_server_instant_test_request=dns_server_instant_test_request,
aid=aid,
expand=expand,
_headers=self.te_headers("create_dns_server_instant_test", error_status="429"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_create_dns_server_instant_test_error_500(self) -> None:
"""Integration test for create_dns_server_instant_test error path (HTTP 500)"""
request_body_json = """
{
"mtuMeasurements" : false,
"ipv6Policy" : "use-agent-policy",
"_links" : {
"testResults" : [ {
"href" : "https://api.thousandeyes.com/v7/test-results/281474976710706/network"
}, {
"href" : "https://api.thousandeyes.com/v7/test-results/281474976710706/path-vis"
} ],
"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"
}
},
"bandwidthMeasurements" : true,
"description" : "ThousandEyes Test",
"dnsTransportProtocol" : "udp",
"probeMode" : "auto",
"type" : "dns-server",
"protocol" : "tcp",
"fixedPacketRate" : 50,
"pathTraceMode" : "classic",
"modifiedBy" : "user@user.com",
"dnsServers" : [ "dns-example.net", "8.8.8.8" ],
"recursiveQueries" : true,
"testName" : "ThousandEyes Test",
"numPathTraces" : 3,
"dnsQueryClass" : "in",
"liveShare" : false,
"savedEvent" : true,
"networkMeasurements" : true,
"labels" : [ "9842", "1283" ],
"tags" : [ "c6b78e57-81a2-4c5f-a11a-d96c3c664d55", "c6b78e57-81a2-4c5f-a11a-d96c3c664d55" ],
"agents" : [ {
"agentId" : "125",
"sourceIpAddress" : "1.1.1.1"
}, {
"agentId" : "125",
"sourceIpAddress" : "1.1.1.1"
} ],
"createdDate" : "2022-07-17T22:00:54Z",
"createdBy" : "user@user.com",
"randomizedStartTime" : false,
"domain" : "www.thousandeyes.com",
"modifiedDate" : "2022-07-17T22:00:54Z",
"testId" : "281474976710706",
"sharedWithAccounts" : [ "1234", "12345" ]
}
"""
dns_server_instant_test_request = thousandeyes_sdk.instant_tests.models.DnsServerInstantTestRequest.from_json(request_body_json)
aid = '1234'
expand = [thousandeyes_sdk.instant_tests.ExpandInstantTestOptions()]
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.create_dns_server_instant_test(
dns_server_instant_test_request=dns_server_instant_test_request,
aid=aid,
expand=expand,
_headers=self.te_headers("create_dns_server_instant_test", error_status="500"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_create_dns_server_instant_test_error_502(self) -> None:
"""Integration test for create_dns_server_instant_test error path (HTTP 502)"""
request_body_json = """
{
"mtuMeasurements" : false,
"ipv6Policy" : "use-agent-policy",
"_links" : {
"testResults" : [ {
"href" : "https://api.thousandeyes.com/v7/test-results/281474976710706/network"
}, {
"href" : "https://api.thousandeyes.com/v7/test-results/281474976710706/path-vis"
} ],
"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"
}
},
"bandwidthMeasurements" : true,
"description" : "ThousandEyes Test",
"dnsTransportProtocol" : "udp",
"probeMode" : "auto",
"type" : "dns-server",
"protocol" : "tcp",
"fixedPacketRate" : 50,
"pathTraceMode" : "classic",
"modifiedBy" : "user@user.com",
"dnsServers" : [ "dns-example.net", "8.8.8.8" ],
"recursiveQueries" : true,
"testName" : "ThousandEyes Test",
"numPathTraces" : 3,
"dnsQueryClass" : "in",
"liveShare" : false,
"savedEvent" : true,
"networkMeasurements" : true,
"labels" : [ "9842", "1283" ],
"tags" : [ "c6b78e57-81a2-4c5f-a11a-d96c3c664d55", "c6b78e57-81a2-4c5f-a11a-d96c3c664d55" ],
"agents" : [ {
"agentId" : "125",
"sourceIpAddress" : "1.1.1.1"
}, {
"agentId" : "125",
"sourceIpAddress" : "1.1.1.1"
} ],
"createdDate" : "2022-07-17T22:00:54Z",
"createdBy" : "user@user.com",
"randomizedStartTime" : false,
"domain" : "www.thousandeyes.com",
"modifiedDate" : "2022-07-17T22:00:54Z",
"testId" : "281474976710706",
"sharedWithAccounts" : [ "1234", "12345" ]
}
"""
dns_server_instant_test_request = thousandeyes_sdk.instant_tests.models.DnsServerInstantTestRequest.from_json(request_body_json)
aid = '1234'
expand = [thousandeyes_sdk.instant_tests.ExpandInstantTestOptions()]
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.create_dns_server_instant_test(
dns_server_instant_test_request=dns_server_instant_test_request,
aid=aid,
expand=expand,
_headers=self.te_headers("create_dns_server_instant_test", error_status="502"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
if __name__ == '__main__':
unittest.main()

View File

@ -0,0 +1,726 @@
# coding: utf-8
"""
Instant Tests API
The Instant Tests API operations lets you create and run new instant tests. You will need to be an Account Admin. The response does not include the immediate test results. Use the Test Results endpoints to get test results after creating and executing an instant test. You can find the URLs for these endpoints in the _links section of the test definition that is returned when you create the instant test.
Generated by OpenAPI Generator (https://openapi-generator.tech)
Do not edit the class manually.
""" # noqa: E501
import json
import unittest
import thousandeyes_sdk.instant_tests.models
from thousandeyes_sdk.core.exceptions import ApiException
from thousandeyes_sdk.instant_tests.api.dns_trace_instant_tests_api import DNSTraceInstantTestsApi
from .integration_test_utils import IntegrationTestBase
from .test_utils import assert_constructed_model_matches_example_json
class TestDNSTraceInstantTestsApiIntegration(IntegrationTestBase):
"""DNSTraceInstantTestsApi integration test stubs"""
def setUp(self) -> None:
super().setUp()
self.api = DNSTraceInstantTestsApi(self.api_client)
def test_create_dns_trace_instant_test_happy_path(self) -> None:
"""Integration test for create_dns_trace_instant_test success path"""
request_body_json = """
{
"dnsQueryClass" : "in",
"_links" : {
"testResults" : [ {
"href" : "https://api.thousandeyes.com/v7/test-results/281474976710706/network"
}, {
"href" : "https://api.thousandeyes.com/v7/test-results/281474976710706/path-vis"
} ],
"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"
}
},
"liveShare" : false,
"savedEvent" : true,
"description" : "ThousandEyes Test",
"dnsTransportProtocol" : "udp",
"type" : "dns-trace",
"labels" : [ "9842", "1283" ],
"tags" : [ "c6b78e57-81a2-4c5f-a11a-d96c3c664d55", "c6b78e57-81a2-4c5f-a11a-d96c3c664d55" ],
"agents" : [ {
"agentId" : "125",
"sourceIpAddress" : "1.1.1.1"
}, {
"agentId" : "125",
"sourceIpAddress" : "1.1.1.1"
} ],
"createdDate" : "2022-07-17T22:00:54Z",
"createdBy" : "user@user.com",
"randomizedStartTime" : false,
"domain" : "www.thousandeyes.com",
"modifiedDate" : "2022-07-17T22:00:54Z",
"modifiedBy" : "user@user.com",
"testId" : "281474976710706",
"sharedWithAccounts" : [ "1234", "12345" ],
"testName" : "ThousandEyes Test"
}
"""
dns_trace_instant_test_request = thousandeyes_sdk.instant_tests.models.DnsTraceInstantTestRequest.from_json(request_body_json)
aid = '1234'
expand = [thousandeyes_sdk.instant_tests.ExpandInstantTestOptions()]
response_body_json = """
{
&quot;dnsQueryClass&quot; : &quot;in&quot;,
&quot;_links&quot; : {
&quot;testResults&quot; : [ {
&quot;href&quot; : &quot;https://api.thousandeyes.com/v7/test-results/281474976710706/network&quot;
}, {
&quot;href&quot; : &quot;https://api.thousandeyes.com/v7/test-results/281474976710706/path-vis&quot;
} ],
&quot;self&quot; : {
&quot;hreflang&quot; : &quot;hreflang&quot;,
&quot;templated&quot; : true,
&quot;profile&quot; : &quot;profile&quot;,
&quot;name&quot; : &quot;name&quot;,
&quot;href&quot; : &quot;https://api.thousandeyes.com/v7/link/to/resource/id&quot;,
&quot;type&quot; : &quot;type&quot;,
&quot;deprecation&quot; : &quot;deprecation&quot;,
&quot;title&quot; : &quot;title&quot;
}
},
&quot;liveShare&quot; : false,
&quot;savedEvent&quot; : true,
&quot;description&quot; : &quot;ThousandEyes Test&quot;,
&quot;dnsTransportProtocol&quot; : &quot;udp&quot;,
&quot;type&quot; : &quot;dns-trace&quot;,
&quot;labels&quot; : [ {
&quot;labelId&quot; : &quot;961&quot;,
&quot;name&quot; : &quot;Artem label&quot;,
&quot;isBuiltin&quot; : false
}, {
&quot;labelId&quot; : &quot;961&quot;,
&quot;name&quot; : &quot;Artem label&quot;,
&quot;isBuiltin&quot; : false
} ],
&quot;tags&quot; : [ {
&quot;id&quot; : &quot;5aeab5d5-0d34-4d44-a7ac-fb440185295c&quot;,
&quot;value&quot; : &quot;San Francisco&quot;,
&quot;key&quot; : &quot;Location&quot;
}, {
&quot;id&quot; : &quot;5aeab5d5-0d34-4d44-a7ac-fb440185295c&quot;,
&quot;value&quot; : &quot;San Francisco&quot;,
&quot;key&quot; : &quot;Location&quot;
} ],
&quot;agents&quot; : [ {
&quot;agentId&quot; : &quot;281474976710706&quot;,
&quot;agentType&quot; : &quot;enterprise-cluster&quot;,
&quot;prefix&quot; : &quot;99.128.0.0/11&quot;,
&quot;coordinates&quot; : {
&quot;latitude&quot; : 37.77493,
&quot;longitude&quot; : -122.41942
},
&quot;agentName&quot; : &quot;thousandeyes-stg-va-254&quot;,
&quot;networkProviderInfo&quot; : {
&quot;asn&quot; : 7018,
&quot;name&quot; : &quot;AT&amp;T Services, Inc.&quot;,
&quot;type&quot; : &quot;isp&quot;
},
&quot;countryId&quot; : &quot;US&quot;,
&quot;enabled&quot; : true,
&quot;network&quot; : &quot;AT&amp;T Services, Inc. (AS 7018)&quot;,
&quot;publicIpAddresses&quot; : [ &quot;192.168.1.78&quot;, &quot;f9b2:3a21:f25c:d300:03f4:586d:f8d6:4e1c&quot; ],
&quot;ipAddresses&quot; : [ &quot;99.139.65.220&quot;, &quot;9bbd:8a0a:a257:5876:288b:6cb2:3f36:64ce&quot; ],
&quot;location&quot; : &quot;San Francisco Bay Area&quot;,
&quot;verifySslCertificates&quot; : true
}, {
&quot;agentId&quot; : &quot;281474976710706&quot;,
&quot;agentType&quot; : &quot;enterprise-cluster&quot;,
&quot;prefix&quot; : &quot;99.128.0.0/11&quot;,
&quot;coordinates&quot; : {
&quot;latitude&quot; : 37.77493,
&quot;longitude&quot; : -122.41942
},
&quot;agentName&quot; : &quot;thousandeyes-stg-va-254&quot;,
&quot;networkProviderInfo&quot; : {
&quot;asn&quot; : 7018,
&quot;name&quot; : &quot;AT&amp;T Services, Inc.&quot;,
&quot;type&quot; : &quot;isp&quot;
},
&quot;countryId&quot; : &quot;US&quot;,
&quot;enabled&quot; : true,
&quot;network&quot; : &quot;AT&amp;T Services, Inc. (AS 7018)&quot;,
&quot;publicIpAddresses&quot; : [ &quot;192.168.1.78&quot;, &quot;f9b2:3a21:f25c:d300:03f4:586d:f8d6:4e1c&quot; ],
&quot;ipAddresses&quot; : [ &quot;99.139.65.220&quot;, &quot;9bbd:8a0a:a257:5876:288b:6cb2:3f36:64ce&quot; ],
&quot;location&quot; : &quot;San Francisco Bay Area&quot;,
&quot;verifySslCertificates&quot; : true
} ],
&quot;createdDate&quot; : &quot;2022-07-17T22:00:54Z&quot;,
&quot;createdBy&quot; : &quot;user@user.com&quot;,
&quot;randomizedStartTime&quot; : false,
&quot;domain&quot; : &quot;www.thousandeyes.com&quot;,
&quot;modifiedDate&quot; : &quot;2022-07-17T22:00:54Z&quot;,
&quot;modifiedBy&quot; : &quot;user@user.com&quot;,
&quot;testId&quot; : &quot;281474976710706&quot;,
&quot;sharedWithAccounts&quot; : [ {
&quot;name&quot; : &quot;Account name&quot;,
&quot;aid&quot; : &quot;1234&quot;
}, {
&quot;name&quot; : &quot;Account name&quot;,
&quot;aid&quot; : &quot;1234&quot;
} ],
&quot;testName&quot; : &quot;ThousandEyes Test&quot;
}
"""
expected_response = json.loads(response_body_json)
response = self.api.create_dns_trace_instant_test(
dns_trace_instant_test_request=dns_trace_instant_test_request,
aid=aid,
expand=expand,
_headers=self.te_headers("create_dns_trace_instant_test"),
)
assert_constructed_model_matches_example_json(response, expected_response)
def test_create_dns_trace_instant_test_error_400(self) -> None:
"""Integration test for create_dns_trace_instant_test error path (HTTP 400)"""
request_body_json = """
{
"dnsQueryClass" : "in",
"_links" : {
"testResults" : [ {
"href" : "https://api.thousandeyes.com/v7/test-results/281474976710706/network"
}, {
"href" : "https://api.thousandeyes.com/v7/test-results/281474976710706/path-vis"
} ],
"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"
}
},
"liveShare" : false,
"savedEvent" : true,
"description" : "ThousandEyes Test",
"dnsTransportProtocol" : "udp",
"type" : "dns-trace",
"labels" : [ "9842", "1283" ],
"tags" : [ "c6b78e57-81a2-4c5f-a11a-d96c3c664d55", "c6b78e57-81a2-4c5f-a11a-d96c3c664d55" ],
"agents" : [ {
"agentId" : "125",
"sourceIpAddress" : "1.1.1.1"
}, {
"agentId" : "125",
"sourceIpAddress" : "1.1.1.1"
} ],
"createdDate" : "2022-07-17T22:00:54Z",
"createdBy" : "user@user.com",
"randomizedStartTime" : false,
"domain" : "www.thousandeyes.com",
"modifiedDate" : "2022-07-17T22:00:54Z",
"modifiedBy" : "user@user.com",
"testId" : "281474976710706",
"sharedWithAccounts" : [ "1234", "12345" ],
"testName" : "ThousandEyes Test"
}
"""
dns_trace_instant_test_request = thousandeyes_sdk.instant_tests.models.DnsTraceInstantTestRequest.from_json(request_body_json)
aid = '1234'
expand = [thousandeyes_sdk.instant_tests.ExpandInstantTestOptions()]
error_body_json = """
{
"instance" : "instance",
"detail" : "detail",
"type" : "type",
"title" : "title",
"errors" : [ {
"code" : "code",
"field" : "field",
"message" : "message"
}, {
"code" : "code",
"field" : "field",
"message" : "message"
} ],
"status" : 0
}
"""
expected_error = json.loads(error_body_json)
with self.assertRaises(
ApiException.exception_class_for_http_status(400)
) as context:
self.api.create_dns_trace_instant_test(
dns_trace_instant_test_request=dns_trace_instant_test_request,
aid=aid,
expand=expand,
_headers=self.te_headers("create_dns_trace_instant_test", error_status="400"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_create_dns_trace_instant_test_error_401(self) -> None:
"""Integration test for create_dns_trace_instant_test error path (HTTP 401)"""
request_body_json = """
{
"dnsQueryClass" : "in",
"_links" : {
"testResults" : [ {
"href" : "https://api.thousandeyes.com/v7/test-results/281474976710706/network"
}, {
"href" : "https://api.thousandeyes.com/v7/test-results/281474976710706/path-vis"
} ],
"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"
}
},
"liveShare" : false,
"savedEvent" : true,
"description" : "ThousandEyes Test",
"dnsTransportProtocol" : "udp",
"type" : "dns-trace",
"labels" : [ "9842", "1283" ],
"tags" : [ "c6b78e57-81a2-4c5f-a11a-d96c3c664d55", "c6b78e57-81a2-4c5f-a11a-d96c3c664d55" ],
"agents" : [ {
"agentId" : "125",
"sourceIpAddress" : "1.1.1.1"
}, {
"agentId" : "125",
"sourceIpAddress" : "1.1.1.1"
} ],
"createdDate" : "2022-07-17T22:00:54Z",
"createdBy" : "user@user.com",
"randomizedStartTime" : false,
"domain" : "www.thousandeyes.com",
"modifiedDate" : "2022-07-17T22:00:54Z",
"modifiedBy" : "user@user.com",
"testId" : "281474976710706",
"sharedWithAccounts" : [ "1234", "12345" ],
"testName" : "ThousandEyes Test"
}
"""
dns_trace_instant_test_request = thousandeyes_sdk.instant_tests.models.DnsTraceInstantTestRequest.from_json(request_body_json)
aid = '1234'
expand = [thousandeyes_sdk.instant_tests.ExpandInstantTestOptions()]
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.create_dns_trace_instant_test(
dns_trace_instant_test_request=dns_trace_instant_test_request,
aid=aid,
expand=expand,
_headers=self.te_headers("create_dns_trace_instant_test", error_status="401"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_create_dns_trace_instant_test_error_403(self) -> None:
"""Integration test for create_dns_trace_instant_test error path (HTTP 403)"""
request_body_json = """
{
"dnsQueryClass" : "in",
"_links" : {
"testResults" : [ {
"href" : "https://api.thousandeyes.com/v7/test-results/281474976710706/network"
}, {
"href" : "https://api.thousandeyes.com/v7/test-results/281474976710706/path-vis"
} ],
"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"
}
},
"liveShare" : false,
"savedEvent" : true,
"description" : "ThousandEyes Test",
"dnsTransportProtocol" : "udp",
"type" : "dns-trace",
"labels" : [ "9842", "1283" ],
"tags" : [ "c6b78e57-81a2-4c5f-a11a-d96c3c664d55", "c6b78e57-81a2-4c5f-a11a-d96c3c664d55" ],
"agents" : [ {
"agentId" : "125",
"sourceIpAddress" : "1.1.1.1"
}, {
"agentId" : "125",
"sourceIpAddress" : "1.1.1.1"
} ],
"createdDate" : "2022-07-17T22:00:54Z",
"createdBy" : "user@user.com",
"randomizedStartTime" : false,
"domain" : "www.thousandeyes.com",
"modifiedDate" : "2022-07-17T22:00:54Z",
"modifiedBy" : "user@user.com",
"testId" : "281474976710706",
"sharedWithAccounts" : [ "1234", "12345" ],
"testName" : "ThousandEyes Test"
}
"""
dns_trace_instant_test_request = thousandeyes_sdk.instant_tests.models.DnsTraceInstantTestRequest.from_json(request_body_json)
aid = '1234'
expand = [thousandeyes_sdk.instant_tests.ExpandInstantTestOptions()]
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.create_dns_trace_instant_test(
dns_trace_instant_test_request=dns_trace_instant_test_request,
aid=aid,
expand=expand,
_headers=self.te_headers("create_dns_trace_instant_test", error_status="403"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_create_dns_trace_instant_test_error_404(self) -> None:
"""Integration test for create_dns_trace_instant_test error path (HTTP 404)"""
request_body_json = """
{
"dnsQueryClass" : "in",
"_links" : {
"testResults" : [ {
"href" : "https://api.thousandeyes.com/v7/test-results/281474976710706/network"
}, {
"href" : "https://api.thousandeyes.com/v7/test-results/281474976710706/path-vis"
} ],
"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"
}
},
"liveShare" : false,
"savedEvent" : true,
"description" : "ThousandEyes Test",
"dnsTransportProtocol" : "udp",
"type" : "dns-trace",
"labels" : [ "9842", "1283" ],
"tags" : [ "c6b78e57-81a2-4c5f-a11a-d96c3c664d55", "c6b78e57-81a2-4c5f-a11a-d96c3c664d55" ],
"agents" : [ {
"agentId" : "125",
"sourceIpAddress" : "1.1.1.1"
}, {
"agentId" : "125",
"sourceIpAddress" : "1.1.1.1"
} ],
"createdDate" : "2022-07-17T22:00:54Z",
"createdBy" : "user@user.com",
"randomizedStartTime" : false,
"domain" : "www.thousandeyes.com",
"modifiedDate" : "2022-07-17T22:00:54Z",
"modifiedBy" : "user@user.com",
"testId" : "281474976710706",
"sharedWithAccounts" : [ "1234", "12345" ],
"testName" : "ThousandEyes Test"
}
"""
dns_trace_instant_test_request = thousandeyes_sdk.instant_tests.models.DnsTraceInstantTestRequest.from_json(request_body_json)
aid = '1234'
expand = [thousandeyes_sdk.instant_tests.ExpandInstantTestOptions()]
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.create_dns_trace_instant_test(
dns_trace_instant_test_request=dns_trace_instant_test_request,
aid=aid,
expand=expand,
_headers=self.te_headers("create_dns_trace_instant_test", error_status="404"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_create_dns_trace_instant_test_error_429(self) -> None:
"""Integration test for create_dns_trace_instant_test error path (HTTP 429)"""
request_body_json = """
{
"dnsQueryClass" : "in",
"_links" : {
"testResults" : [ {
"href" : "https://api.thousandeyes.com/v7/test-results/281474976710706/network"
}, {
"href" : "https://api.thousandeyes.com/v7/test-results/281474976710706/path-vis"
} ],
"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"
}
},
"liveShare" : false,
"savedEvent" : true,
"description" : "ThousandEyes Test",
"dnsTransportProtocol" : "udp",
"type" : "dns-trace",
"labels" : [ "9842", "1283" ],
"tags" : [ "c6b78e57-81a2-4c5f-a11a-d96c3c664d55", "c6b78e57-81a2-4c5f-a11a-d96c3c664d55" ],
"agents" : [ {
"agentId" : "125",
"sourceIpAddress" : "1.1.1.1"
}, {
"agentId" : "125",
"sourceIpAddress" : "1.1.1.1"
} ],
"createdDate" : "2022-07-17T22:00:54Z",
"createdBy" : "user@user.com",
"randomizedStartTime" : false,
"domain" : "www.thousandeyes.com",
"modifiedDate" : "2022-07-17T22:00:54Z",
"modifiedBy" : "user@user.com",
"testId" : "281474976710706",
"sharedWithAccounts" : [ "1234", "12345" ],
"testName" : "ThousandEyes Test"
}
"""
dns_trace_instant_test_request = thousandeyes_sdk.instant_tests.models.DnsTraceInstantTestRequest.from_json(request_body_json)
aid = '1234'
expand = [thousandeyes_sdk.instant_tests.ExpandInstantTestOptions()]
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.create_dns_trace_instant_test(
dns_trace_instant_test_request=dns_trace_instant_test_request,
aid=aid,
expand=expand,
_headers=self.te_headers("create_dns_trace_instant_test", error_status="429"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_create_dns_trace_instant_test_error_500(self) -> None:
"""Integration test for create_dns_trace_instant_test error path (HTTP 500)"""
request_body_json = """
{
"dnsQueryClass" : "in",
"_links" : {
"testResults" : [ {
"href" : "https://api.thousandeyes.com/v7/test-results/281474976710706/network"
}, {
"href" : "https://api.thousandeyes.com/v7/test-results/281474976710706/path-vis"
} ],
"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"
}
},
"liveShare" : false,
"savedEvent" : true,
"description" : "ThousandEyes Test",
"dnsTransportProtocol" : "udp",
"type" : "dns-trace",
"labels" : [ "9842", "1283" ],
"tags" : [ "c6b78e57-81a2-4c5f-a11a-d96c3c664d55", "c6b78e57-81a2-4c5f-a11a-d96c3c664d55" ],
"agents" : [ {
"agentId" : "125",
"sourceIpAddress" : "1.1.1.1"
}, {
"agentId" : "125",
"sourceIpAddress" : "1.1.1.1"
} ],
"createdDate" : "2022-07-17T22:00:54Z",
"createdBy" : "user@user.com",
"randomizedStartTime" : false,
"domain" : "www.thousandeyes.com",
"modifiedDate" : "2022-07-17T22:00:54Z",
"modifiedBy" : "user@user.com",
"testId" : "281474976710706",
"sharedWithAccounts" : [ "1234", "12345" ],
"testName" : "ThousandEyes Test"
}
"""
dns_trace_instant_test_request = thousandeyes_sdk.instant_tests.models.DnsTraceInstantTestRequest.from_json(request_body_json)
aid = '1234'
expand = [thousandeyes_sdk.instant_tests.ExpandInstantTestOptions()]
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.create_dns_trace_instant_test(
dns_trace_instant_test_request=dns_trace_instant_test_request,
aid=aid,
expand=expand,
_headers=self.te_headers("create_dns_trace_instant_test", error_status="500"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_create_dns_trace_instant_test_error_502(self) -> None:
"""Integration test for create_dns_trace_instant_test error path (HTTP 502)"""
request_body_json = """
{
"dnsQueryClass" : "in",
"_links" : {
"testResults" : [ {
"href" : "https://api.thousandeyes.com/v7/test-results/281474976710706/network"
}, {
"href" : "https://api.thousandeyes.com/v7/test-results/281474976710706/path-vis"
} ],
"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"
}
},
"liveShare" : false,
"savedEvent" : true,
"description" : "ThousandEyes Test",
"dnsTransportProtocol" : "udp",
"type" : "dns-trace",
"labels" : [ "9842", "1283" ],
"tags" : [ "c6b78e57-81a2-4c5f-a11a-d96c3c664d55", "c6b78e57-81a2-4c5f-a11a-d96c3c664d55" ],
"agents" : [ {
"agentId" : "125",
"sourceIpAddress" : "1.1.1.1"
}, {
"agentId" : "125",
"sourceIpAddress" : "1.1.1.1"
} ],
"createdDate" : "2022-07-17T22:00:54Z",
"createdBy" : "user@user.com",
"randomizedStartTime" : false,
"domain" : "www.thousandeyes.com",
"modifiedDate" : "2022-07-17T22:00:54Z",
"modifiedBy" : "user@user.com",
"testId" : "281474976710706",
"sharedWithAccounts" : [ "1234", "12345" ],
"testName" : "ThousandEyes Test"
}
"""
dns_trace_instant_test_request = thousandeyes_sdk.instant_tests.models.DnsTraceInstantTestRequest.from_json(request_body_json)
aid = '1234'
expand = [thousandeyes_sdk.instant_tests.ExpandInstantTestOptions()]
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.create_dns_trace_instant_test(
dns_trace_instant_test_request=dns_trace_instant_test_request,
aid=aid,
expand=expand,
_headers=self.te_headers("create_dns_trace_instant_test", error_status="502"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
if __name__ == '__main__':
unittest.main()

View File

@ -0,0 +1,717 @@
# coding: utf-8
"""
Instant Tests API
The Instant Tests API operations lets you create and run new instant tests. You will need to be an Account Admin. The response does not include the immediate test results. Use the Test Results endpoints to get test results after creating and executing an instant test. You can find the URLs for these endpoints in the _links section of the test definition that is returned when you create the instant test.
Generated by OpenAPI Generator (https://openapi-generator.tech)
Do not edit the class manually.
""" # noqa: E501
import json
import unittest
import thousandeyes_sdk.instant_tests.models
from thousandeyes_sdk.core.exceptions import ApiException
from thousandeyes_sdk.instant_tests.api.dnssec_instant_tests_api import DNSSECInstantTestsApi
from .integration_test_utils import IntegrationTestBase
from .test_utils import assert_constructed_model_matches_example_json
class TestDNSSECInstantTestsApiIntegration(IntegrationTestBase):
"""DNSSECInstantTestsApi integration test stubs"""
def setUp(self) -> None:
super().setUp()
self.api = DNSSECInstantTestsApi(self.api_client)
def test_create_dns_sec_instant_test_happy_path(self) -> None:
"""Integration test for create_dns_sec_instant_test success path"""
request_body_json = """
{
"dnsQueryClass" : "in",
"_links" : {
"testResults" : [ {
"href" : "https://api.thousandeyes.com/v7/test-results/281474976710706/network"
}, {
"href" : "https://api.thousandeyes.com/v7/test-results/281474976710706/path-vis"
} ],
"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"
}
},
"liveShare" : false,
"savedEvent" : true,
"description" : "ThousandEyes Test",
"type" : "dnssec",
"labels" : [ "9842", "1283" ],
"tags" : [ "c6b78e57-81a2-4c5f-a11a-d96c3c664d55", "c6b78e57-81a2-4c5f-a11a-d96c3c664d55" ],
"agents" : [ {
"agentId" : "125",
"sourceIpAddress" : "1.1.1.1"
}, {
"agentId" : "125",
"sourceIpAddress" : "1.1.1.1"
} ],
"createdDate" : "2022-07-17T22:00:54Z",
"createdBy" : "user@user.com",
"randomizedStartTime" : false,
"domain" : "www.thousandeyes.com",
"modifiedDate" : "2022-07-17T22:00:54Z",
"modifiedBy" : "user@user.com",
"testId" : "281474976710706",
"sharedWithAccounts" : [ "1234", "12345" ],
"testName" : "ThousandEyes Test"
}
"""
dns_sec_instant_test_request = thousandeyes_sdk.instant_tests.models.DnsSecInstantTestRequest.from_json(request_body_json)
aid = '1234'
expand = [thousandeyes_sdk.instant_tests.ExpandInstantTestOptions()]
response_body_json = """
{
&quot;dnsQueryClass&quot; : &quot;in&quot;,
&quot;_links&quot; : {
&quot;testResults&quot; : [ {
&quot;href&quot; : &quot;https://api.thousandeyes.com/v7/test-results/281474976710706/network&quot;
}, {
&quot;href&quot; : &quot;https://api.thousandeyes.com/v7/test-results/281474976710706/path-vis&quot;
} ],
&quot;self&quot; : {
&quot;hreflang&quot; : &quot;hreflang&quot;,
&quot;templated&quot; : true,
&quot;profile&quot; : &quot;profile&quot;,
&quot;name&quot; : &quot;name&quot;,
&quot;href&quot; : &quot;https://api.thousandeyes.com/v7/link/to/resource/id&quot;,
&quot;type&quot; : &quot;type&quot;,
&quot;deprecation&quot; : &quot;deprecation&quot;,
&quot;title&quot; : &quot;title&quot;
}
},
&quot;liveShare&quot; : false,
&quot;savedEvent&quot; : true,
&quot;description&quot; : &quot;ThousandEyes Test&quot;,
&quot;type&quot; : &quot;dnssec&quot;,
&quot;labels&quot; : [ {
&quot;labelId&quot; : &quot;961&quot;,
&quot;name&quot; : &quot;Artem label&quot;,
&quot;isBuiltin&quot; : false
}, {
&quot;labelId&quot; : &quot;961&quot;,
&quot;name&quot; : &quot;Artem label&quot;,
&quot;isBuiltin&quot; : false
} ],
&quot;tags&quot; : [ {
&quot;id&quot; : &quot;5aeab5d5-0d34-4d44-a7ac-fb440185295c&quot;,
&quot;value&quot; : &quot;San Francisco&quot;,
&quot;key&quot; : &quot;Location&quot;
}, {
&quot;id&quot; : &quot;5aeab5d5-0d34-4d44-a7ac-fb440185295c&quot;,
&quot;value&quot; : &quot;San Francisco&quot;,
&quot;key&quot; : &quot;Location&quot;
} ],
&quot;agents&quot; : [ {
&quot;agentId&quot; : &quot;281474976710706&quot;,
&quot;agentType&quot; : &quot;enterprise-cluster&quot;,
&quot;prefix&quot; : &quot;99.128.0.0/11&quot;,
&quot;coordinates&quot; : {
&quot;latitude&quot; : 37.77493,
&quot;longitude&quot; : -122.41942
},
&quot;agentName&quot; : &quot;thousandeyes-stg-va-254&quot;,
&quot;networkProviderInfo&quot; : {
&quot;asn&quot; : 7018,
&quot;name&quot; : &quot;AT&amp;T Services, Inc.&quot;,
&quot;type&quot; : &quot;isp&quot;
},
&quot;countryId&quot; : &quot;US&quot;,
&quot;enabled&quot; : true,
&quot;network&quot; : &quot;AT&amp;T Services, Inc. (AS 7018)&quot;,
&quot;publicIpAddresses&quot; : [ &quot;192.168.1.78&quot;, &quot;f9b2:3a21:f25c:d300:03f4:586d:f8d6:4e1c&quot; ],
&quot;ipAddresses&quot; : [ &quot;99.139.65.220&quot;, &quot;9bbd:8a0a:a257:5876:288b:6cb2:3f36:64ce&quot; ],
&quot;location&quot; : &quot;San Francisco Bay Area&quot;,
&quot;verifySslCertificates&quot; : true
}, {
&quot;agentId&quot; : &quot;281474976710706&quot;,
&quot;agentType&quot; : &quot;enterprise-cluster&quot;,
&quot;prefix&quot; : &quot;99.128.0.0/11&quot;,
&quot;coordinates&quot; : {
&quot;latitude&quot; : 37.77493,
&quot;longitude&quot; : -122.41942
},
&quot;agentName&quot; : &quot;thousandeyes-stg-va-254&quot;,
&quot;networkProviderInfo&quot; : {
&quot;asn&quot; : 7018,
&quot;name&quot; : &quot;AT&amp;T Services, Inc.&quot;,
&quot;type&quot; : &quot;isp&quot;
},
&quot;countryId&quot; : &quot;US&quot;,
&quot;enabled&quot; : true,
&quot;network&quot; : &quot;AT&amp;T Services, Inc. (AS 7018)&quot;,
&quot;publicIpAddresses&quot; : [ &quot;192.168.1.78&quot;, &quot;f9b2:3a21:f25c:d300:03f4:586d:f8d6:4e1c&quot; ],
&quot;ipAddresses&quot; : [ &quot;99.139.65.220&quot;, &quot;9bbd:8a0a:a257:5876:288b:6cb2:3f36:64ce&quot; ],
&quot;location&quot; : &quot;San Francisco Bay Area&quot;,
&quot;verifySslCertificates&quot; : true
} ],
&quot;createdDate&quot; : &quot;2022-07-17T22:00:54Z&quot;,
&quot;createdBy&quot; : &quot;user@user.com&quot;,
&quot;randomizedStartTime&quot; : false,
&quot;domain&quot; : &quot;www.thousandeyes.com&quot;,
&quot;modifiedDate&quot; : &quot;2022-07-17T22:00:54Z&quot;,
&quot;modifiedBy&quot; : &quot;user@user.com&quot;,
&quot;testId&quot; : &quot;281474976710706&quot;,
&quot;sharedWithAccounts&quot; : [ {
&quot;name&quot; : &quot;Account name&quot;,
&quot;aid&quot; : &quot;1234&quot;
}, {
&quot;name&quot; : &quot;Account name&quot;,
&quot;aid&quot; : &quot;1234&quot;
} ],
&quot;testName&quot; : &quot;ThousandEyes Test&quot;
}
"""
expected_response = json.loads(response_body_json)
response = self.api.create_dns_sec_instant_test(
dns_sec_instant_test_request=dns_sec_instant_test_request,
aid=aid,
expand=expand,
_headers=self.te_headers("create_dns_sec_instant_test"),
)
assert_constructed_model_matches_example_json(response, expected_response)
def test_create_dns_sec_instant_test_error_400(self) -> None:
"""Integration test for create_dns_sec_instant_test error path (HTTP 400)"""
request_body_json = """
{
"dnsQueryClass" : "in",
"_links" : {
"testResults" : [ {
"href" : "https://api.thousandeyes.com/v7/test-results/281474976710706/network"
}, {
"href" : "https://api.thousandeyes.com/v7/test-results/281474976710706/path-vis"
} ],
"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"
}
},
"liveShare" : false,
"savedEvent" : true,
"description" : "ThousandEyes Test",
"type" : "dnssec",
"labels" : [ "9842", "1283" ],
"tags" : [ "c6b78e57-81a2-4c5f-a11a-d96c3c664d55", "c6b78e57-81a2-4c5f-a11a-d96c3c664d55" ],
"agents" : [ {
"agentId" : "125",
"sourceIpAddress" : "1.1.1.1"
}, {
"agentId" : "125",
"sourceIpAddress" : "1.1.1.1"
} ],
"createdDate" : "2022-07-17T22:00:54Z",
"createdBy" : "user@user.com",
"randomizedStartTime" : false,
"domain" : "www.thousandeyes.com",
"modifiedDate" : "2022-07-17T22:00:54Z",
"modifiedBy" : "user@user.com",
"testId" : "281474976710706",
"sharedWithAccounts" : [ "1234", "12345" ],
"testName" : "ThousandEyes Test"
}
"""
dns_sec_instant_test_request = thousandeyes_sdk.instant_tests.models.DnsSecInstantTestRequest.from_json(request_body_json)
aid = '1234'
expand = [thousandeyes_sdk.instant_tests.ExpandInstantTestOptions()]
error_body_json = """
{
"instance" : "instance",
"detail" : "detail",
"type" : "type",
"title" : "title",
"errors" : [ {
"code" : "code",
"field" : "field",
"message" : "message"
}, {
"code" : "code",
"field" : "field",
"message" : "message"
} ],
"status" : 0
}
"""
expected_error = json.loads(error_body_json)
with self.assertRaises(
ApiException.exception_class_for_http_status(400)
) as context:
self.api.create_dns_sec_instant_test(
dns_sec_instant_test_request=dns_sec_instant_test_request,
aid=aid,
expand=expand,
_headers=self.te_headers("create_dns_sec_instant_test", error_status="400"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_create_dns_sec_instant_test_error_401(self) -> None:
"""Integration test for create_dns_sec_instant_test error path (HTTP 401)"""
request_body_json = """
{
"dnsQueryClass" : "in",
"_links" : {
"testResults" : [ {
"href" : "https://api.thousandeyes.com/v7/test-results/281474976710706/network"
}, {
"href" : "https://api.thousandeyes.com/v7/test-results/281474976710706/path-vis"
} ],
"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"
}
},
"liveShare" : false,
"savedEvent" : true,
"description" : "ThousandEyes Test",
"type" : "dnssec",
"labels" : [ "9842", "1283" ],
"tags" : [ "c6b78e57-81a2-4c5f-a11a-d96c3c664d55", "c6b78e57-81a2-4c5f-a11a-d96c3c664d55" ],
"agents" : [ {
"agentId" : "125",
"sourceIpAddress" : "1.1.1.1"
}, {
"agentId" : "125",
"sourceIpAddress" : "1.1.1.1"
} ],
"createdDate" : "2022-07-17T22:00:54Z",
"createdBy" : "user@user.com",
"randomizedStartTime" : false,
"domain" : "www.thousandeyes.com",
"modifiedDate" : "2022-07-17T22:00:54Z",
"modifiedBy" : "user@user.com",
"testId" : "281474976710706",
"sharedWithAccounts" : [ "1234", "12345" ],
"testName" : "ThousandEyes Test"
}
"""
dns_sec_instant_test_request = thousandeyes_sdk.instant_tests.models.DnsSecInstantTestRequest.from_json(request_body_json)
aid = '1234'
expand = [thousandeyes_sdk.instant_tests.ExpandInstantTestOptions()]
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.create_dns_sec_instant_test(
dns_sec_instant_test_request=dns_sec_instant_test_request,
aid=aid,
expand=expand,
_headers=self.te_headers("create_dns_sec_instant_test", error_status="401"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_create_dns_sec_instant_test_error_403(self) -> None:
"""Integration test for create_dns_sec_instant_test error path (HTTP 403)"""
request_body_json = """
{
"dnsQueryClass" : "in",
"_links" : {
"testResults" : [ {
"href" : "https://api.thousandeyes.com/v7/test-results/281474976710706/network"
}, {
"href" : "https://api.thousandeyes.com/v7/test-results/281474976710706/path-vis"
} ],
"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"
}
},
"liveShare" : false,
"savedEvent" : true,
"description" : "ThousandEyes Test",
"type" : "dnssec",
"labels" : [ "9842", "1283" ],
"tags" : [ "c6b78e57-81a2-4c5f-a11a-d96c3c664d55", "c6b78e57-81a2-4c5f-a11a-d96c3c664d55" ],
"agents" : [ {
"agentId" : "125",
"sourceIpAddress" : "1.1.1.1"
}, {
"agentId" : "125",
"sourceIpAddress" : "1.1.1.1"
} ],
"createdDate" : "2022-07-17T22:00:54Z",
"createdBy" : "user@user.com",
"randomizedStartTime" : false,
"domain" : "www.thousandeyes.com",
"modifiedDate" : "2022-07-17T22:00:54Z",
"modifiedBy" : "user@user.com",
"testId" : "281474976710706",
"sharedWithAccounts" : [ "1234", "12345" ],
"testName" : "ThousandEyes Test"
}
"""
dns_sec_instant_test_request = thousandeyes_sdk.instant_tests.models.DnsSecInstantTestRequest.from_json(request_body_json)
aid = '1234'
expand = [thousandeyes_sdk.instant_tests.ExpandInstantTestOptions()]
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.create_dns_sec_instant_test(
dns_sec_instant_test_request=dns_sec_instant_test_request,
aid=aid,
expand=expand,
_headers=self.te_headers("create_dns_sec_instant_test", error_status="403"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_create_dns_sec_instant_test_error_404(self) -> None:
"""Integration test for create_dns_sec_instant_test error path (HTTP 404)"""
request_body_json = """
{
"dnsQueryClass" : "in",
"_links" : {
"testResults" : [ {
"href" : "https://api.thousandeyes.com/v7/test-results/281474976710706/network"
}, {
"href" : "https://api.thousandeyes.com/v7/test-results/281474976710706/path-vis"
} ],
"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"
}
},
"liveShare" : false,
"savedEvent" : true,
"description" : "ThousandEyes Test",
"type" : "dnssec",
"labels" : [ "9842", "1283" ],
"tags" : [ "c6b78e57-81a2-4c5f-a11a-d96c3c664d55", "c6b78e57-81a2-4c5f-a11a-d96c3c664d55" ],
"agents" : [ {
"agentId" : "125",
"sourceIpAddress" : "1.1.1.1"
}, {
"agentId" : "125",
"sourceIpAddress" : "1.1.1.1"
} ],
"createdDate" : "2022-07-17T22:00:54Z",
"createdBy" : "user@user.com",
"randomizedStartTime" : false,
"domain" : "www.thousandeyes.com",
"modifiedDate" : "2022-07-17T22:00:54Z",
"modifiedBy" : "user@user.com",
"testId" : "281474976710706",
"sharedWithAccounts" : [ "1234", "12345" ],
"testName" : "ThousandEyes Test"
}
"""
dns_sec_instant_test_request = thousandeyes_sdk.instant_tests.models.DnsSecInstantTestRequest.from_json(request_body_json)
aid = '1234'
expand = [thousandeyes_sdk.instant_tests.ExpandInstantTestOptions()]
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.create_dns_sec_instant_test(
dns_sec_instant_test_request=dns_sec_instant_test_request,
aid=aid,
expand=expand,
_headers=self.te_headers("create_dns_sec_instant_test", error_status="404"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_create_dns_sec_instant_test_error_429(self) -> None:
"""Integration test for create_dns_sec_instant_test error path (HTTP 429)"""
request_body_json = """
{
"dnsQueryClass" : "in",
"_links" : {
"testResults" : [ {
"href" : "https://api.thousandeyes.com/v7/test-results/281474976710706/network"
}, {
"href" : "https://api.thousandeyes.com/v7/test-results/281474976710706/path-vis"
} ],
"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"
}
},
"liveShare" : false,
"savedEvent" : true,
"description" : "ThousandEyes Test",
"type" : "dnssec",
"labels" : [ "9842", "1283" ],
"tags" : [ "c6b78e57-81a2-4c5f-a11a-d96c3c664d55", "c6b78e57-81a2-4c5f-a11a-d96c3c664d55" ],
"agents" : [ {
"agentId" : "125",
"sourceIpAddress" : "1.1.1.1"
}, {
"agentId" : "125",
"sourceIpAddress" : "1.1.1.1"
} ],
"createdDate" : "2022-07-17T22:00:54Z",
"createdBy" : "user@user.com",
"randomizedStartTime" : false,
"domain" : "www.thousandeyes.com",
"modifiedDate" : "2022-07-17T22:00:54Z",
"modifiedBy" : "user@user.com",
"testId" : "281474976710706",
"sharedWithAccounts" : [ "1234", "12345" ],
"testName" : "ThousandEyes Test"
}
"""
dns_sec_instant_test_request = thousandeyes_sdk.instant_tests.models.DnsSecInstantTestRequest.from_json(request_body_json)
aid = '1234'
expand = [thousandeyes_sdk.instant_tests.ExpandInstantTestOptions()]
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.create_dns_sec_instant_test(
dns_sec_instant_test_request=dns_sec_instant_test_request,
aid=aid,
expand=expand,
_headers=self.te_headers("create_dns_sec_instant_test", error_status="429"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_create_dns_sec_instant_test_error_500(self) -> None:
"""Integration test for create_dns_sec_instant_test error path (HTTP 500)"""
request_body_json = """
{
"dnsQueryClass" : "in",
"_links" : {
"testResults" : [ {
"href" : "https://api.thousandeyes.com/v7/test-results/281474976710706/network"
}, {
"href" : "https://api.thousandeyes.com/v7/test-results/281474976710706/path-vis"
} ],
"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"
}
},
"liveShare" : false,
"savedEvent" : true,
"description" : "ThousandEyes Test",
"type" : "dnssec",
"labels" : [ "9842", "1283" ],
"tags" : [ "c6b78e57-81a2-4c5f-a11a-d96c3c664d55", "c6b78e57-81a2-4c5f-a11a-d96c3c664d55" ],
"agents" : [ {
"agentId" : "125",
"sourceIpAddress" : "1.1.1.1"
}, {
"agentId" : "125",
"sourceIpAddress" : "1.1.1.1"
} ],
"createdDate" : "2022-07-17T22:00:54Z",
"createdBy" : "user@user.com",
"randomizedStartTime" : false,
"domain" : "www.thousandeyes.com",
"modifiedDate" : "2022-07-17T22:00:54Z",
"modifiedBy" : "user@user.com",
"testId" : "281474976710706",
"sharedWithAccounts" : [ "1234", "12345" ],
"testName" : "ThousandEyes Test"
}
"""
dns_sec_instant_test_request = thousandeyes_sdk.instant_tests.models.DnsSecInstantTestRequest.from_json(request_body_json)
aid = '1234'
expand = [thousandeyes_sdk.instant_tests.ExpandInstantTestOptions()]
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.create_dns_sec_instant_test(
dns_sec_instant_test_request=dns_sec_instant_test_request,
aid=aid,
expand=expand,
_headers=self.te_headers("create_dns_sec_instant_test", error_status="500"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_create_dns_sec_instant_test_error_502(self) -> None:
"""Integration test for create_dns_sec_instant_test error path (HTTP 502)"""
request_body_json = """
{
"dnsQueryClass" : "in",
"_links" : {
"testResults" : [ {
"href" : "https://api.thousandeyes.com/v7/test-results/281474976710706/network"
}, {
"href" : "https://api.thousandeyes.com/v7/test-results/281474976710706/path-vis"
} ],
"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"
}
},
"liveShare" : false,
"savedEvent" : true,
"description" : "ThousandEyes Test",
"type" : "dnssec",
"labels" : [ "9842", "1283" ],
"tags" : [ "c6b78e57-81a2-4c5f-a11a-d96c3c664d55", "c6b78e57-81a2-4c5f-a11a-d96c3c664d55" ],
"agents" : [ {
"agentId" : "125",
"sourceIpAddress" : "1.1.1.1"
}, {
"agentId" : "125",
"sourceIpAddress" : "1.1.1.1"
} ],
"createdDate" : "2022-07-17T22:00:54Z",
"createdBy" : "user@user.com",
"randomizedStartTime" : false,
"domain" : "www.thousandeyes.com",
"modifiedDate" : "2022-07-17T22:00:54Z",
"modifiedBy" : "user@user.com",
"testId" : "281474976710706",
"sharedWithAccounts" : [ "1234", "12345" ],
"testName" : "ThousandEyes Test"
}
"""
dns_sec_instant_test_request = thousandeyes_sdk.instant_tests.models.DnsSecInstantTestRequest.from_json(request_body_json)
aid = '1234'
expand = [thousandeyes_sdk.instant_tests.ExpandInstantTestOptions()]
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.create_dns_sec_instant_test(
dns_sec_instant_test_request=dns_sec_instant_test_request,
aid=aid,
expand=expand,
_headers=self.te_headers("create_dns_sec_instant_test", error_status="502"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
if __name__ == '__main__':
unittest.main()

View File

@ -0,0 +1,861 @@
# coding: utf-8
"""
Instant Tests API
The Instant Tests API operations lets you create and run new instant tests. You will need to be an Account Admin. The response does not include the immediate test results. Use the Test Results endpoints to get test results after creating and executing an instant test. You can find the URLs for these endpoints in the _links section of the test definition that is returned when you create the instant test.
Generated by OpenAPI Generator (https://openapi-generator.tech)
Do not edit the class manually.
""" # noqa: E501
import json
import unittest
import thousandeyes_sdk.instant_tests.models
from thousandeyes_sdk.core.exceptions import ApiException
from thousandeyes_sdk.instant_tests.api.ftp_server_instant_tests_api import FTPServerInstantTestsApi
from .integration_test_utils import IntegrationTestBase
from .test_utils import assert_constructed_model_matches_example_json
class TestFTPServerInstantTestsApiIntegration(IntegrationTestBase):
"""FTPServerInstantTestsApi integration test stubs"""
def setUp(self) -> None:
super().setUp()
self.api = FTPServerInstantTestsApi(self.api_client)
def test_create_ftp_server_instant_test_happy_path(self) -> None:
"""Integration test for create_ftp_server_instant_test success path"""
request_body_json = """
{
"mtuMeasurements" : false,
"ipv6Policy" : "use-agent-policy",
"_links" : {
"testResults" : [ {
"href" : "https://api.thousandeyes.com/v7/test-results/281474976710706/network"
}, {
"href" : "https://api.thousandeyes.com/v7/test-results/281474976710706/path-vis"
} ],
"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"
}
},
"downloadLimit" : 1048576,
"bandwidthMeasurements" : true,
"description" : "ThousandEyes Test",
"useExplicitFtps" : false,
"probeMode" : "auto",
"type" : "ftp-server",
"password" : "password",
"protocol" : "tcp",
"fixedPacketRate" : 50,
"ftpTargetTime" : 1400,
"pathTraceMode" : "classic",
"modifiedBy" : "user@user.com",
"testName" : "ThousandEyes Test",
"numPathTraces" : 3,
"requestType" : "download",
"liveShare" : false,
"savedEvent" : true,
"networkMeasurements" : true,
"url" : "www.thousandeyes.com",
"labels" : [ "9842", "1283" ],
"tags" : [ "c6b78e57-81a2-4c5f-a11a-d96c3c664d55", "c6b78e57-81a2-4c5f-a11a-d96c3c664d55" ],
"agents" : [ {
"agentId" : "125",
"sourceIpAddress" : "1.1.1.1"
}, {
"agentId" : "125",
"sourceIpAddress" : "1.1.1.1"
} ],
"createdDate" : "2022-07-17T22:00:54Z",
"createdBy" : "user@user.com",
"randomizedStartTime" : false,
"ftpTimeLimit" : 10,
"modifiedDate" : "2022-07-17T22:00:54Z",
"testId" : "281474976710706",
"sharedWithAccounts" : [ "1234", "12345" ],
"useActiveFtp" : false,
"username" : "username"
}
"""
ftp_server_instant_test_request = thousandeyes_sdk.instant_tests.models.FtpServerInstantTestRequest.from_json(request_body_json)
aid = '1234'
expand = [thousandeyes_sdk.instant_tests.ExpandInstantTestOptions()]
response_body_json = """
{
&quot;mtuMeasurements&quot; : false,
&quot;ipv6Policy&quot; : &quot;use-agent-policy&quot;,
&quot;_links&quot; : {
&quot;testResults&quot; : [ {
&quot;href&quot; : &quot;https://api.thousandeyes.com/v7/test-results/281474976710706/network&quot;
}, {
&quot;href&quot; : &quot;https://api.thousandeyes.com/v7/test-results/281474976710706/path-vis&quot;
} ],
&quot;self&quot; : {
&quot;hreflang&quot; : &quot;hreflang&quot;,
&quot;templated&quot; : true,
&quot;profile&quot; : &quot;profile&quot;,
&quot;name&quot; : &quot;name&quot;,
&quot;href&quot; : &quot;https://api.thousandeyes.com/v7/link/to/resource/id&quot;,
&quot;type&quot; : &quot;type&quot;,
&quot;deprecation&quot; : &quot;deprecation&quot;,
&quot;title&quot; : &quot;title&quot;
}
},
&quot;downloadLimit&quot; : 1048576,
&quot;bandwidthMeasurements&quot; : true,
&quot;description&quot; : &quot;ThousandEyes Test&quot;,
&quot;useExplicitFtps&quot; : false,
&quot;probeMode&quot; : &quot;auto&quot;,
&quot;type&quot; : &quot;ftp-server&quot;,
&quot;password&quot; : &quot;password&quot;,
&quot;protocol&quot; : &quot;tcp&quot;,
&quot;fixedPacketRate&quot; : 50,
&quot;ftpTargetTime&quot; : 1400,
&quot;pathTraceMode&quot; : &quot;classic&quot;,
&quot;modifiedBy&quot; : &quot;user@user.com&quot;,
&quot;testName&quot; : &quot;ThousandEyes Test&quot;,
&quot;numPathTraces&quot; : 3,
&quot;requestType&quot; : &quot;download&quot;,
&quot;liveShare&quot; : false,
&quot;savedEvent&quot; : true,
&quot;networkMeasurements&quot; : true,
&quot;url&quot; : &quot;www.thousandeyes.com&quot;,
&quot;labels&quot; : [ {
&quot;labelId&quot; : &quot;961&quot;,
&quot;name&quot; : &quot;Artem label&quot;,
&quot;isBuiltin&quot; : false
}, {
&quot;labelId&quot; : &quot;961&quot;,
&quot;name&quot; : &quot;Artem label&quot;,
&quot;isBuiltin&quot; : false
} ],
&quot;tags&quot; : [ {
&quot;id&quot; : &quot;5aeab5d5-0d34-4d44-a7ac-fb440185295c&quot;,
&quot;value&quot; : &quot;San Francisco&quot;,
&quot;key&quot; : &quot;Location&quot;
}, {
&quot;id&quot; : &quot;5aeab5d5-0d34-4d44-a7ac-fb440185295c&quot;,
&quot;value&quot; : &quot;San Francisco&quot;,
&quot;key&quot; : &quot;Location&quot;
} ],
&quot;agents&quot; : [ {
&quot;agentId&quot; : &quot;281474976710706&quot;,
&quot;agentType&quot; : &quot;enterprise-cluster&quot;,
&quot;prefix&quot; : &quot;99.128.0.0/11&quot;,
&quot;coordinates&quot; : {
&quot;latitude&quot; : 37.77493,
&quot;longitude&quot; : -122.41942
},
&quot;agentName&quot; : &quot;thousandeyes-stg-va-254&quot;,
&quot;networkProviderInfo&quot; : {
&quot;asn&quot; : 7018,
&quot;name&quot; : &quot;AT&amp;T Services, Inc.&quot;,
&quot;type&quot; : &quot;isp&quot;
},
&quot;countryId&quot; : &quot;US&quot;,
&quot;enabled&quot; : true,
&quot;network&quot; : &quot;AT&amp;T Services, Inc. (AS 7018)&quot;,
&quot;publicIpAddresses&quot; : [ &quot;192.168.1.78&quot;, &quot;f9b2:3a21:f25c:d300:03f4:586d:f8d6:4e1c&quot; ],
&quot;ipAddresses&quot; : [ &quot;99.139.65.220&quot;, &quot;9bbd:8a0a:a257:5876:288b:6cb2:3f36:64ce&quot; ],
&quot;location&quot; : &quot;San Francisco Bay Area&quot;,
&quot;verifySslCertificates&quot; : true
}, {
&quot;agentId&quot; : &quot;281474976710706&quot;,
&quot;agentType&quot; : &quot;enterprise-cluster&quot;,
&quot;prefix&quot; : &quot;99.128.0.0/11&quot;,
&quot;coordinates&quot; : {
&quot;latitude&quot; : 37.77493,
&quot;longitude&quot; : -122.41942
},
&quot;agentName&quot; : &quot;thousandeyes-stg-va-254&quot;,
&quot;networkProviderInfo&quot; : {
&quot;asn&quot; : 7018,
&quot;name&quot; : &quot;AT&amp;T Services, Inc.&quot;,
&quot;type&quot; : &quot;isp&quot;
},
&quot;countryId&quot; : &quot;US&quot;,
&quot;enabled&quot; : true,
&quot;network&quot; : &quot;AT&amp;T Services, Inc. (AS 7018)&quot;,
&quot;publicIpAddresses&quot; : [ &quot;192.168.1.78&quot;, &quot;f9b2:3a21:f25c:d300:03f4:586d:f8d6:4e1c&quot; ],
&quot;ipAddresses&quot; : [ &quot;99.139.65.220&quot;, &quot;9bbd:8a0a:a257:5876:288b:6cb2:3f36:64ce&quot; ],
&quot;location&quot; : &quot;San Francisco Bay Area&quot;,
&quot;verifySslCertificates&quot; : true
} ],
&quot;createdDate&quot; : &quot;2022-07-17T22:00:54Z&quot;,
&quot;createdBy&quot; : &quot;user@user.com&quot;,
&quot;randomizedStartTime&quot; : false,
&quot;ftpTimeLimit&quot; : 10,
&quot;modifiedDate&quot; : &quot;2022-07-17T22:00:54Z&quot;,
&quot;testId&quot; : &quot;281474976710706&quot;,
&quot;sharedWithAccounts&quot; : [ {
&quot;name&quot; : &quot;Account name&quot;,
&quot;aid&quot; : &quot;1234&quot;
}, {
&quot;name&quot; : &quot;Account name&quot;,
&quot;aid&quot; : &quot;1234&quot;
} ],
&quot;useActiveFtp&quot; : false,
&quot;username&quot; : &quot;username&quot;
}
"""
expected_response = json.loads(response_body_json)
response = self.api.create_ftp_server_instant_test(
ftp_server_instant_test_request=ftp_server_instant_test_request,
aid=aid,
expand=expand,
_headers=self.te_headers("create_ftp_server_instant_test"),
)
assert_constructed_model_matches_example_json(response, expected_response)
def test_create_ftp_server_instant_test_error_400(self) -> None:
"""Integration test for create_ftp_server_instant_test error path (HTTP 400)"""
request_body_json = """
{
"mtuMeasurements" : false,
"ipv6Policy" : "use-agent-policy",
"_links" : {
"testResults" : [ {
"href" : "https://api.thousandeyes.com/v7/test-results/281474976710706/network"
}, {
"href" : "https://api.thousandeyes.com/v7/test-results/281474976710706/path-vis"
} ],
"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"
}
},
"downloadLimit" : 1048576,
"bandwidthMeasurements" : true,
"description" : "ThousandEyes Test",
"useExplicitFtps" : false,
"probeMode" : "auto",
"type" : "ftp-server",
"password" : "password",
"protocol" : "tcp",
"fixedPacketRate" : 50,
"ftpTargetTime" : 1400,
"pathTraceMode" : "classic",
"modifiedBy" : "user@user.com",
"testName" : "ThousandEyes Test",
"numPathTraces" : 3,
"requestType" : "download",
"liveShare" : false,
"savedEvent" : true,
"networkMeasurements" : true,
"url" : "www.thousandeyes.com",
"labels" : [ "9842", "1283" ],
"tags" : [ "c6b78e57-81a2-4c5f-a11a-d96c3c664d55", "c6b78e57-81a2-4c5f-a11a-d96c3c664d55" ],
"agents" : [ {
"agentId" : "125",
"sourceIpAddress" : "1.1.1.1"
}, {
"agentId" : "125",
"sourceIpAddress" : "1.1.1.1"
} ],
"createdDate" : "2022-07-17T22:00:54Z",
"createdBy" : "user@user.com",
"randomizedStartTime" : false,
"ftpTimeLimit" : 10,
"modifiedDate" : "2022-07-17T22:00:54Z",
"testId" : "281474976710706",
"sharedWithAccounts" : [ "1234", "12345" ],
"useActiveFtp" : false,
"username" : "username"
}
"""
ftp_server_instant_test_request = thousandeyes_sdk.instant_tests.models.FtpServerInstantTestRequest.from_json(request_body_json)
aid = '1234'
expand = [thousandeyes_sdk.instant_tests.ExpandInstantTestOptions()]
error_body_json = """
{
"instance" : "instance",
"detail" : "detail",
"type" : "type",
"title" : "title",
"errors" : [ {
"code" : "code",
"field" : "field",
"message" : "message"
}, {
"code" : "code",
"field" : "field",
"message" : "message"
} ],
"status" : 0
}
"""
expected_error = json.loads(error_body_json)
with self.assertRaises(
ApiException.exception_class_for_http_status(400)
) as context:
self.api.create_ftp_server_instant_test(
ftp_server_instant_test_request=ftp_server_instant_test_request,
aid=aid,
expand=expand,
_headers=self.te_headers("create_ftp_server_instant_test", error_status="400"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_create_ftp_server_instant_test_error_401(self) -> None:
"""Integration test for create_ftp_server_instant_test error path (HTTP 401)"""
request_body_json = """
{
"mtuMeasurements" : false,
"ipv6Policy" : "use-agent-policy",
"_links" : {
"testResults" : [ {
"href" : "https://api.thousandeyes.com/v7/test-results/281474976710706/network"
}, {
"href" : "https://api.thousandeyes.com/v7/test-results/281474976710706/path-vis"
} ],
"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"
}
},
"downloadLimit" : 1048576,
"bandwidthMeasurements" : true,
"description" : "ThousandEyes Test",
"useExplicitFtps" : false,
"probeMode" : "auto",
"type" : "ftp-server",
"password" : "password",
"protocol" : "tcp",
"fixedPacketRate" : 50,
"ftpTargetTime" : 1400,
"pathTraceMode" : "classic",
"modifiedBy" : "user@user.com",
"testName" : "ThousandEyes Test",
"numPathTraces" : 3,
"requestType" : "download",
"liveShare" : false,
"savedEvent" : true,
"networkMeasurements" : true,
"url" : "www.thousandeyes.com",
"labels" : [ "9842", "1283" ],
"tags" : [ "c6b78e57-81a2-4c5f-a11a-d96c3c664d55", "c6b78e57-81a2-4c5f-a11a-d96c3c664d55" ],
"agents" : [ {
"agentId" : "125",
"sourceIpAddress" : "1.1.1.1"
}, {
"agentId" : "125",
"sourceIpAddress" : "1.1.1.1"
} ],
"createdDate" : "2022-07-17T22:00:54Z",
"createdBy" : "user@user.com",
"randomizedStartTime" : false,
"ftpTimeLimit" : 10,
"modifiedDate" : "2022-07-17T22:00:54Z",
"testId" : "281474976710706",
"sharedWithAccounts" : [ "1234", "12345" ],
"useActiveFtp" : false,
"username" : "username"
}
"""
ftp_server_instant_test_request = thousandeyes_sdk.instant_tests.models.FtpServerInstantTestRequest.from_json(request_body_json)
aid = '1234'
expand = [thousandeyes_sdk.instant_tests.ExpandInstantTestOptions()]
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.create_ftp_server_instant_test(
ftp_server_instant_test_request=ftp_server_instant_test_request,
aid=aid,
expand=expand,
_headers=self.te_headers("create_ftp_server_instant_test", error_status="401"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_create_ftp_server_instant_test_error_403(self) -> None:
"""Integration test for create_ftp_server_instant_test error path (HTTP 403)"""
request_body_json = """
{
"mtuMeasurements" : false,
"ipv6Policy" : "use-agent-policy",
"_links" : {
"testResults" : [ {
"href" : "https://api.thousandeyes.com/v7/test-results/281474976710706/network"
}, {
"href" : "https://api.thousandeyes.com/v7/test-results/281474976710706/path-vis"
} ],
"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"
}
},
"downloadLimit" : 1048576,
"bandwidthMeasurements" : true,
"description" : "ThousandEyes Test",
"useExplicitFtps" : false,
"probeMode" : "auto",
"type" : "ftp-server",
"password" : "password",
"protocol" : "tcp",
"fixedPacketRate" : 50,
"ftpTargetTime" : 1400,
"pathTraceMode" : "classic",
"modifiedBy" : "user@user.com",
"testName" : "ThousandEyes Test",
"numPathTraces" : 3,
"requestType" : "download",
"liveShare" : false,
"savedEvent" : true,
"networkMeasurements" : true,
"url" : "www.thousandeyes.com",
"labels" : [ "9842", "1283" ],
"tags" : [ "c6b78e57-81a2-4c5f-a11a-d96c3c664d55", "c6b78e57-81a2-4c5f-a11a-d96c3c664d55" ],
"agents" : [ {
"agentId" : "125",
"sourceIpAddress" : "1.1.1.1"
}, {
"agentId" : "125",
"sourceIpAddress" : "1.1.1.1"
} ],
"createdDate" : "2022-07-17T22:00:54Z",
"createdBy" : "user@user.com",
"randomizedStartTime" : false,
"ftpTimeLimit" : 10,
"modifiedDate" : "2022-07-17T22:00:54Z",
"testId" : "281474976710706",
"sharedWithAccounts" : [ "1234", "12345" ],
"useActiveFtp" : false,
"username" : "username"
}
"""
ftp_server_instant_test_request = thousandeyes_sdk.instant_tests.models.FtpServerInstantTestRequest.from_json(request_body_json)
aid = '1234'
expand = [thousandeyes_sdk.instant_tests.ExpandInstantTestOptions()]
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.create_ftp_server_instant_test(
ftp_server_instant_test_request=ftp_server_instant_test_request,
aid=aid,
expand=expand,
_headers=self.te_headers("create_ftp_server_instant_test", error_status="403"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_create_ftp_server_instant_test_error_404(self) -> None:
"""Integration test for create_ftp_server_instant_test error path (HTTP 404)"""
request_body_json = """
{
"mtuMeasurements" : false,
"ipv6Policy" : "use-agent-policy",
"_links" : {
"testResults" : [ {
"href" : "https://api.thousandeyes.com/v7/test-results/281474976710706/network"
}, {
"href" : "https://api.thousandeyes.com/v7/test-results/281474976710706/path-vis"
} ],
"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"
}
},
"downloadLimit" : 1048576,
"bandwidthMeasurements" : true,
"description" : "ThousandEyes Test",
"useExplicitFtps" : false,
"probeMode" : "auto",
"type" : "ftp-server",
"password" : "password",
"protocol" : "tcp",
"fixedPacketRate" : 50,
"ftpTargetTime" : 1400,
"pathTraceMode" : "classic",
"modifiedBy" : "user@user.com",
"testName" : "ThousandEyes Test",
"numPathTraces" : 3,
"requestType" : "download",
"liveShare" : false,
"savedEvent" : true,
"networkMeasurements" : true,
"url" : "www.thousandeyes.com",
"labels" : [ "9842", "1283" ],
"tags" : [ "c6b78e57-81a2-4c5f-a11a-d96c3c664d55", "c6b78e57-81a2-4c5f-a11a-d96c3c664d55" ],
"agents" : [ {
"agentId" : "125",
"sourceIpAddress" : "1.1.1.1"
}, {
"agentId" : "125",
"sourceIpAddress" : "1.1.1.1"
} ],
"createdDate" : "2022-07-17T22:00:54Z",
"createdBy" : "user@user.com",
"randomizedStartTime" : false,
"ftpTimeLimit" : 10,
"modifiedDate" : "2022-07-17T22:00:54Z",
"testId" : "281474976710706",
"sharedWithAccounts" : [ "1234", "12345" ],
"useActiveFtp" : false,
"username" : "username"
}
"""
ftp_server_instant_test_request = thousandeyes_sdk.instant_tests.models.FtpServerInstantTestRequest.from_json(request_body_json)
aid = '1234'
expand = [thousandeyes_sdk.instant_tests.ExpandInstantTestOptions()]
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.create_ftp_server_instant_test(
ftp_server_instant_test_request=ftp_server_instant_test_request,
aid=aid,
expand=expand,
_headers=self.te_headers("create_ftp_server_instant_test", error_status="404"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_create_ftp_server_instant_test_error_429(self) -> None:
"""Integration test for create_ftp_server_instant_test error path (HTTP 429)"""
request_body_json = """
{
"mtuMeasurements" : false,
"ipv6Policy" : "use-agent-policy",
"_links" : {
"testResults" : [ {
"href" : "https://api.thousandeyes.com/v7/test-results/281474976710706/network"
}, {
"href" : "https://api.thousandeyes.com/v7/test-results/281474976710706/path-vis"
} ],
"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"
}
},
"downloadLimit" : 1048576,
"bandwidthMeasurements" : true,
"description" : "ThousandEyes Test",
"useExplicitFtps" : false,
"probeMode" : "auto",
"type" : "ftp-server",
"password" : "password",
"protocol" : "tcp",
"fixedPacketRate" : 50,
"ftpTargetTime" : 1400,
"pathTraceMode" : "classic",
"modifiedBy" : "user@user.com",
"testName" : "ThousandEyes Test",
"numPathTraces" : 3,
"requestType" : "download",
"liveShare" : false,
"savedEvent" : true,
"networkMeasurements" : true,
"url" : "www.thousandeyes.com",
"labels" : [ "9842", "1283" ],
"tags" : [ "c6b78e57-81a2-4c5f-a11a-d96c3c664d55", "c6b78e57-81a2-4c5f-a11a-d96c3c664d55" ],
"agents" : [ {
"agentId" : "125",
"sourceIpAddress" : "1.1.1.1"
}, {
"agentId" : "125",
"sourceIpAddress" : "1.1.1.1"
} ],
"createdDate" : "2022-07-17T22:00:54Z",
"createdBy" : "user@user.com",
"randomizedStartTime" : false,
"ftpTimeLimit" : 10,
"modifiedDate" : "2022-07-17T22:00:54Z",
"testId" : "281474976710706",
"sharedWithAccounts" : [ "1234", "12345" ],
"useActiveFtp" : false,
"username" : "username"
}
"""
ftp_server_instant_test_request = thousandeyes_sdk.instant_tests.models.FtpServerInstantTestRequest.from_json(request_body_json)
aid = '1234'
expand = [thousandeyes_sdk.instant_tests.ExpandInstantTestOptions()]
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.create_ftp_server_instant_test(
ftp_server_instant_test_request=ftp_server_instant_test_request,
aid=aid,
expand=expand,
_headers=self.te_headers("create_ftp_server_instant_test", error_status="429"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_create_ftp_server_instant_test_error_500(self) -> None:
"""Integration test for create_ftp_server_instant_test error path (HTTP 500)"""
request_body_json = """
{
"mtuMeasurements" : false,
"ipv6Policy" : "use-agent-policy",
"_links" : {
"testResults" : [ {
"href" : "https://api.thousandeyes.com/v7/test-results/281474976710706/network"
}, {
"href" : "https://api.thousandeyes.com/v7/test-results/281474976710706/path-vis"
} ],
"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"
}
},
"downloadLimit" : 1048576,
"bandwidthMeasurements" : true,
"description" : "ThousandEyes Test",
"useExplicitFtps" : false,
"probeMode" : "auto",
"type" : "ftp-server",
"password" : "password",
"protocol" : "tcp",
"fixedPacketRate" : 50,
"ftpTargetTime" : 1400,
"pathTraceMode" : "classic",
"modifiedBy" : "user@user.com",
"testName" : "ThousandEyes Test",
"numPathTraces" : 3,
"requestType" : "download",
"liveShare" : false,
"savedEvent" : true,
"networkMeasurements" : true,
"url" : "www.thousandeyes.com",
"labels" : [ "9842", "1283" ],
"tags" : [ "c6b78e57-81a2-4c5f-a11a-d96c3c664d55", "c6b78e57-81a2-4c5f-a11a-d96c3c664d55" ],
"agents" : [ {
"agentId" : "125",
"sourceIpAddress" : "1.1.1.1"
}, {
"agentId" : "125",
"sourceIpAddress" : "1.1.1.1"
} ],
"createdDate" : "2022-07-17T22:00:54Z",
"createdBy" : "user@user.com",
"randomizedStartTime" : false,
"ftpTimeLimit" : 10,
"modifiedDate" : "2022-07-17T22:00:54Z",
"testId" : "281474976710706",
"sharedWithAccounts" : [ "1234", "12345" ],
"useActiveFtp" : false,
"username" : "username"
}
"""
ftp_server_instant_test_request = thousandeyes_sdk.instant_tests.models.FtpServerInstantTestRequest.from_json(request_body_json)
aid = '1234'
expand = [thousandeyes_sdk.instant_tests.ExpandInstantTestOptions()]
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.create_ftp_server_instant_test(
ftp_server_instant_test_request=ftp_server_instant_test_request,
aid=aid,
expand=expand,
_headers=self.te_headers("create_ftp_server_instant_test", error_status="500"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_create_ftp_server_instant_test_error_502(self) -> None:
"""Integration test for create_ftp_server_instant_test error path (HTTP 502)"""
request_body_json = """
{
"mtuMeasurements" : false,
"ipv6Policy" : "use-agent-policy",
"_links" : {
"testResults" : [ {
"href" : "https://api.thousandeyes.com/v7/test-results/281474976710706/network"
}, {
"href" : "https://api.thousandeyes.com/v7/test-results/281474976710706/path-vis"
} ],
"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"
}
},
"downloadLimit" : 1048576,
"bandwidthMeasurements" : true,
"description" : "ThousandEyes Test",
"useExplicitFtps" : false,
"probeMode" : "auto",
"type" : "ftp-server",
"password" : "password",
"protocol" : "tcp",
"fixedPacketRate" : 50,
"ftpTargetTime" : 1400,
"pathTraceMode" : "classic",
"modifiedBy" : "user@user.com",
"testName" : "ThousandEyes Test",
"numPathTraces" : 3,
"requestType" : "download",
"liveShare" : false,
"savedEvent" : true,
"networkMeasurements" : true,
"url" : "www.thousandeyes.com",
"labels" : [ "9842", "1283" ],
"tags" : [ "c6b78e57-81a2-4c5f-a11a-d96c3c664d55", "c6b78e57-81a2-4c5f-a11a-d96c3c664d55" ],
"agents" : [ {
"agentId" : "125",
"sourceIpAddress" : "1.1.1.1"
}, {
"agentId" : "125",
"sourceIpAddress" : "1.1.1.1"
} ],
"createdDate" : "2022-07-17T22:00:54Z",
"createdBy" : "user@user.com",
"randomizedStartTime" : false,
"ftpTimeLimit" : 10,
"modifiedDate" : "2022-07-17T22:00:54Z",
"testId" : "281474976710706",
"sharedWithAccounts" : [ "1234", "12345" ],
"useActiveFtp" : false,
"username" : "username"
}
"""
ftp_server_instant_test_request = thousandeyes_sdk.instant_tests.models.FtpServerInstantTestRequest.from_json(request_body_json)
aid = '1234'
expand = [thousandeyes_sdk.instant_tests.ExpandInstantTestOptions()]
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.create_ftp_server_instant_test(
ftp_server_instant_test_request=ftp_server_instant_test_request,
aid=aid,
expand=expand,
_headers=self.te_headers("create_ftp_server_instant_test", error_status="502"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
if __name__ == '__main__':
unittest.main()

View File

@ -0,0 +1,35 @@
# coding: utf-8
"""
Instant Tests API
The Instant Tests API operations lets you create and run new instant tests. You will need to be an Account Admin. The response does not include the immediate test results. Use the Test Results endpoints to get test results after creating and executing an instant test. You can find the URLs for these endpoints in the _links section of the test definition that is returned when you create the instant test.
Generated by OpenAPI Generator (https://openapi-generator.tech)
Do not edit the class manually.
""" # noqa: E501
import json
import unittest
import thousandeyes_sdk.instant_tests.models
from thousandeyes_sdk.core.exceptions import ApiException
from thousandeyes_sdk.instant_tests.api.instant_tests_api import InstantTestsApi
from .integration_test_utils import IntegrationTestBase
from .test_utils import assert_constructed_model_matches_example_json
class TestInstantTestsApiIntegration(IntegrationTestBase):
"""InstantTestsApi integration test stubs"""
def setUp(self) -> None:
super().setUp()
self.api = InstantTestsApi(self.api_client)
if __name__ == '__main__':
unittest.main()

View File

@ -0,0 +1,868 @@
# coding: utf-8
"""
Instant Tests API
The Instant Tests API operations lets you create and run new instant tests. You will need to be an Account Admin. The response does not include the immediate test results. Use the Test Results endpoints to get test results after creating and executing an instant test. You can find the URLs for these endpoints in the _links section of the test definition that is returned when you create the instant test.
Generated by OpenAPI Generator (https://openapi-generator.tech)
Do not edit the class manually.
""" # noqa: E501
import json
import unittest
import thousandeyes_sdk.instant_tests.models
from thousandeyes_sdk.core.exceptions import ApiException
from thousandeyes_sdk.instant_tests.api.sip_server_instant_tests_api import SIPServerInstantTestsApi
from .integration_test_utils import IntegrationTestBase
from .test_utils import assert_constructed_model_matches_example_json
class TestSIPServerInstantTestsApiIntegration(IntegrationTestBase):
"""SIPServerInstantTestsApi integration test stubs"""
def setUp(self) -> None:
super().setUp()
self.api = SIPServerInstantTestsApi(self.api_client)
def test_create_sip_server_instant_test_happy_path(self) -> None:
"""Integration test for create_sip_server_instant_test success path"""
request_body_json = """
{
"mtuMeasurements" : false,
"ipv6Policy" : "use-agent-policy",
"_links" : {
"testResults" : [ {
"href" : "https://api.thousandeyes.com/v7/test-results/281474976710706/network"
}, {
"href" : "https://api.thousandeyes.com/v7/test-results/281474976710706/path-vis"
} ],
"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"
}
},
"registerEnabled" : false,
"description" : "ThousandEyes Test",
"probeMode" : "auto",
"type" : "sip-server",
"fixedPacketRate" : 50,
"pathTraceMode" : "classic",
"modifiedBy" : "user@user.com",
"targetSipCredentials" : {
"password" : "password",
"protocol" : "tcp",
"port" : 49153,
"sipRegistrar" : "voice.thousandeyes.com",
"authUser" : "username",
"user" : "username"
},
"testName" : "ThousandEyes Test",
"sipTargetTime" : 1000,
"numPathTraces" : 3,
"optionsRegex" : "[\\"a-z\\"]",
"liveShare" : false,
"savedEvent" : true,
"networkMeasurements" : true,
"labels" : [ "9842", "1283" ],
"tags" : [ "c6b78e57-81a2-4c5f-a11a-d96c3c664d55", "c6b78e57-81a2-4c5f-a11a-d96c3c664d55" ],
"agents" : [ {
"agentId" : "125",
"sourceIpAddress" : "1.1.1.1"
}, {
"agentId" : "125",
"sourceIpAddress" : "1.1.1.1"
} ],
"createdDate" : "2022-07-17T22:00:54Z",
"createdBy" : "user@user.com",
"randomizedStartTime" : false,
"modifiedDate" : "2022-07-17T22:00:54Z",
"sipTimeLimit" : 5,
"testId" : "281474976710706",
"sharedWithAccounts" : [ "1234", "12345" ]
}
"""
sip_server_instant_test_request = thousandeyes_sdk.instant_tests.models.SipServerInstantTestRequest.from_json(request_body_json)
aid = '1234'
expand = [thousandeyes_sdk.instant_tests.ExpandInstantTestOptions()]
response_body_json = """
{
&quot;mtuMeasurements&quot; : false,
&quot;ipv6Policy&quot; : &quot;use-agent-policy&quot;,
&quot;_links&quot; : {
&quot;testResults&quot; : [ {
&quot;href&quot; : &quot;https://api.thousandeyes.com/v7/test-results/281474976710706/network&quot;
}, {
&quot;href&quot; : &quot;https://api.thousandeyes.com/v7/test-results/281474976710706/path-vis&quot;
} ],
&quot;self&quot; : {
&quot;hreflang&quot; : &quot;hreflang&quot;,
&quot;templated&quot; : true,
&quot;profile&quot; : &quot;profile&quot;,
&quot;name&quot; : &quot;name&quot;,
&quot;href&quot; : &quot;https://api.thousandeyes.com/v7/link/to/resource/id&quot;,
&quot;type&quot; : &quot;type&quot;,
&quot;deprecation&quot; : &quot;deprecation&quot;,
&quot;title&quot; : &quot;title&quot;
}
},
&quot;registerEnabled&quot; : false,
&quot;description&quot; : &quot;ThousandEyes Test&quot;,
&quot;probeMode&quot; : &quot;auto&quot;,
&quot;type&quot; : &quot;sip-server&quot;,
&quot;authUser&quot; : &quot;username&quot;,
&quot;fixedPacketRate&quot; : 50,
&quot;password&quot; : &quot;password&quot;,
&quot;protocol&quot; : &quot;tcp&quot;,
&quot;pathTraceMode&quot; : &quot;classic&quot;,
&quot;modifiedBy&quot; : &quot;user@user.com&quot;,
&quot;testName&quot; : &quot;ThousandEyes Test&quot;,
&quot;sipTargetTime&quot; : 1000,
&quot;numPathTraces&quot; : 3,
&quot;optionsRegex&quot; : &quot;[\&quot;a-z\&quot;]&quot;,
&quot;liveShare&quot; : false,
&quot;savedEvent&quot; : true,
&quot;sipRegistrar&quot; : &quot;voice.thousandeyes.com&quot;,
&quot;networkMeasurements&quot; : true,
&quot;labels&quot; : [ {
&quot;labelId&quot; : &quot;961&quot;,
&quot;name&quot; : &quot;Artem label&quot;,
&quot;isBuiltin&quot; : false
}, {
&quot;labelId&quot; : &quot;961&quot;,
&quot;name&quot; : &quot;Artem label&quot;,
&quot;isBuiltin&quot; : false
} ],
&quot;tags&quot; : [ {
&quot;id&quot; : &quot;5aeab5d5-0d34-4d44-a7ac-fb440185295c&quot;,
&quot;value&quot; : &quot;San Francisco&quot;,
&quot;key&quot; : &quot;Location&quot;
}, {
&quot;id&quot; : &quot;5aeab5d5-0d34-4d44-a7ac-fb440185295c&quot;,
&quot;value&quot; : &quot;San Francisco&quot;,
&quot;key&quot; : &quot;Location&quot;
} ],
&quot;agents&quot; : [ {
&quot;agentId&quot; : &quot;281474976710706&quot;,
&quot;agentType&quot; : &quot;enterprise-cluster&quot;,
&quot;prefix&quot; : &quot;99.128.0.0/11&quot;,
&quot;coordinates&quot; : {
&quot;latitude&quot; : 37.77493,
&quot;longitude&quot; : -122.41942
},
&quot;agentName&quot; : &quot;thousandeyes-stg-va-254&quot;,
&quot;networkProviderInfo&quot; : {
&quot;asn&quot; : 7018,
&quot;name&quot; : &quot;AT&amp;T Services, Inc.&quot;,
&quot;type&quot; : &quot;isp&quot;
},
&quot;countryId&quot; : &quot;US&quot;,
&quot;enabled&quot; : true,
&quot;network&quot; : &quot;AT&amp;T Services, Inc. (AS 7018)&quot;,
&quot;publicIpAddresses&quot; : [ &quot;192.168.1.78&quot;, &quot;f9b2:3a21:f25c:d300:03f4:586d:f8d6:4e1c&quot; ],
&quot;ipAddresses&quot; : [ &quot;99.139.65.220&quot;, &quot;9bbd:8a0a:a257:5876:288b:6cb2:3f36:64ce&quot; ],
&quot;location&quot; : &quot;San Francisco Bay Area&quot;,
&quot;verifySslCertificates&quot; : true
}, {
&quot;agentId&quot; : &quot;281474976710706&quot;,
&quot;agentType&quot; : &quot;enterprise-cluster&quot;,
&quot;prefix&quot; : &quot;99.128.0.0/11&quot;,
&quot;coordinates&quot; : {
&quot;latitude&quot; : 37.77493,
&quot;longitude&quot; : -122.41942
},
&quot;agentName&quot; : &quot;thousandeyes-stg-va-254&quot;,
&quot;networkProviderInfo&quot; : {
&quot;asn&quot; : 7018,
&quot;name&quot; : &quot;AT&amp;T Services, Inc.&quot;,
&quot;type&quot; : &quot;isp&quot;
},
&quot;countryId&quot; : &quot;US&quot;,
&quot;enabled&quot; : true,
&quot;network&quot; : &quot;AT&amp;T Services, Inc. (AS 7018)&quot;,
&quot;publicIpAddresses&quot; : [ &quot;192.168.1.78&quot;, &quot;f9b2:3a21:f25c:d300:03f4:586d:f8d6:4e1c&quot; ],
&quot;ipAddresses&quot; : [ &quot;99.139.65.220&quot;, &quot;9bbd:8a0a:a257:5876:288b:6cb2:3f36:64ce&quot; ],
&quot;location&quot; : &quot;San Francisco Bay Area&quot;,
&quot;verifySslCertificates&quot; : true
} ],
&quot;createdDate&quot; : &quot;2022-07-17T22:00:54Z&quot;,
&quot;createdBy&quot; : &quot;user@user.com&quot;,
&quot;randomizedStartTime&quot; : false,
&quot;port&quot; : 49153,
&quot;modifiedDate&quot; : &quot;2022-07-17T22:00:54Z&quot;,
&quot;sipTimeLimit&quot; : 5,
&quot;testId&quot; : &quot;281474976710706&quot;,
&quot;sharedWithAccounts&quot; : [ {
&quot;name&quot; : &quot;Account name&quot;,
&quot;aid&quot; : &quot;1234&quot;
}, {
&quot;name&quot; : &quot;Account name&quot;,
&quot;aid&quot; : &quot;1234&quot;
} ],
&quot;user&quot; : &quot;username&quot;
}
"""
expected_response = json.loads(response_body_json)
response = self.api.create_sip_server_instant_test(
sip_server_instant_test_request=sip_server_instant_test_request,
aid=aid,
expand=expand,
_headers=self.te_headers("create_sip_server_instant_test"),
)
assert_constructed_model_matches_example_json(response, expected_response)
def test_create_sip_server_instant_test_error_400(self) -> None:
"""Integration test for create_sip_server_instant_test error path (HTTP 400)"""
request_body_json = """
{
"mtuMeasurements" : false,
"ipv6Policy" : "use-agent-policy",
"_links" : {
"testResults" : [ {
"href" : "https://api.thousandeyes.com/v7/test-results/281474976710706/network"
}, {
"href" : "https://api.thousandeyes.com/v7/test-results/281474976710706/path-vis"
} ],
"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"
}
},
"registerEnabled" : false,
"description" : "ThousandEyes Test",
"probeMode" : "auto",
"type" : "sip-server",
"fixedPacketRate" : 50,
"pathTraceMode" : "classic",
"modifiedBy" : "user@user.com",
"targetSipCredentials" : {
"password" : "password",
"protocol" : "tcp",
"port" : 49153,
"sipRegistrar" : "voice.thousandeyes.com",
"authUser" : "username",
"user" : "username"
},
"testName" : "ThousandEyes Test",
"sipTargetTime" : 1000,
"numPathTraces" : 3,
"optionsRegex" : "[\\"a-z\\"]",
"liveShare" : false,
"savedEvent" : true,
"networkMeasurements" : true,
"labels" : [ "9842", "1283" ],
"tags" : [ "c6b78e57-81a2-4c5f-a11a-d96c3c664d55", "c6b78e57-81a2-4c5f-a11a-d96c3c664d55" ],
"agents" : [ {
"agentId" : "125",
"sourceIpAddress" : "1.1.1.1"
}, {
"agentId" : "125",
"sourceIpAddress" : "1.1.1.1"
} ],
"createdDate" : "2022-07-17T22:00:54Z",
"createdBy" : "user@user.com",
"randomizedStartTime" : false,
"modifiedDate" : "2022-07-17T22:00:54Z",
"sipTimeLimit" : 5,
"testId" : "281474976710706",
"sharedWithAccounts" : [ "1234", "12345" ]
}
"""
sip_server_instant_test_request = thousandeyes_sdk.instant_tests.models.SipServerInstantTestRequest.from_json(request_body_json)
aid = '1234'
expand = [thousandeyes_sdk.instant_tests.ExpandInstantTestOptions()]
error_body_json = """
{
"instance" : "instance",
"detail" : "detail",
"type" : "type",
"title" : "title",
"errors" : [ {
"code" : "code",
"field" : "field",
"message" : "message"
}, {
"code" : "code",
"field" : "field",
"message" : "message"
} ],
"status" : 0
}
"""
expected_error = json.loads(error_body_json)
with self.assertRaises(
ApiException.exception_class_for_http_status(400)
) as context:
self.api.create_sip_server_instant_test(
sip_server_instant_test_request=sip_server_instant_test_request,
aid=aid,
expand=expand,
_headers=self.te_headers("create_sip_server_instant_test", error_status="400"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_create_sip_server_instant_test_error_401(self) -> None:
"""Integration test for create_sip_server_instant_test error path (HTTP 401)"""
request_body_json = """
{
"mtuMeasurements" : false,
"ipv6Policy" : "use-agent-policy",
"_links" : {
"testResults" : [ {
"href" : "https://api.thousandeyes.com/v7/test-results/281474976710706/network"
}, {
"href" : "https://api.thousandeyes.com/v7/test-results/281474976710706/path-vis"
} ],
"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"
}
},
"registerEnabled" : false,
"description" : "ThousandEyes Test",
"probeMode" : "auto",
"type" : "sip-server",
"fixedPacketRate" : 50,
"pathTraceMode" : "classic",
"modifiedBy" : "user@user.com",
"targetSipCredentials" : {
"password" : "password",
"protocol" : "tcp",
"port" : 49153,
"sipRegistrar" : "voice.thousandeyes.com",
"authUser" : "username",
"user" : "username"
},
"testName" : "ThousandEyes Test",
"sipTargetTime" : 1000,
"numPathTraces" : 3,
"optionsRegex" : "[\\"a-z\\"]",
"liveShare" : false,
"savedEvent" : true,
"networkMeasurements" : true,
"labels" : [ "9842", "1283" ],
"tags" : [ "c6b78e57-81a2-4c5f-a11a-d96c3c664d55", "c6b78e57-81a2-4c5f-a11a-d96c3c664d55" ],
"agents" : [ {
"agentId" : "125",
"sourceIpAddress" : "1.1.1.1"
}, {
"agentId" : "125",
"sourceIpAddress" : "1.1.1.1"
} ],
"createdDate" : "2022-07-17T22:00:54Z",
"createdBy" : "user@user.com",
"randomizedStartTime" : false,
"modifiedDate" : "2022-07-17T22:00:54Z",
"sipTimeLimit" : 5,
"testId" : "281474976710706",
"sharedWithAccounts" : [ "1234", "12345" ]
}
"""
sip_server_instant_test_request = thousandeyes_sdk.instant_tests.models.SipServerInstantTestRequest.from_json(request_body_json)
aid = '1234'
expand = [thousandeyes_sdk.instant_tests.ExpandInstantTestOptions()]
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.create_sip_server_instant_test(
sip_server_instant_test_request=sip_server_instant_test_request,
aid=aid,
expand=expand,
_headers=self.te_headers("create_sip_server_instant_test", error_status="401"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_create_sip_server_instant_test_error_403(self) -> None:
"""Integration test for create_sip_server_instant_test error path (HTTP 403)"""
request_body_json = """
{
"mtuMeasurements" : false,
"ipv6Policy" : "use-agent-policy",
"_links" : {
"testResults" : [ {
"href" : "https://api.thousandeyes.com/v7/test-results/281474976710706/network"
}, {
"href" : "https://api.thousandeyes.com/v7/test-results/281474976710706/path-vis"
} ],
"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"
}
},
"registerEnabled" : false,
"description" : "ThousandEyes Test",
"probeMode" : "auto",
"type" : "sip-server",
"fixedPacketRate" : 50,
"pathTraceMode" : "classic",
"modifiedBy" : "user@user.com",
"targetSipCredentials" : {
"password" : "password",
"protocol" : "tcp",
"port" : 49153,
"sipRegistrar" : "voice.thousandeyes.com",
"authUser" : "username",
"user" : "username"
},
"testName" : "ThousandEyes Test",
"sipTargetTime" : 1000,
"numPathTraces" : 3,
"optionsRegex" : "[\\"a-z\\"]",
"liveShare" : false,
"savedEvent" : true,
"networkMeasurements" : true,
"labels" : [ "9842", "1283" ],
"tags" : [ "c6b78e57-81a2-4c5f-a11a-d96c3c664d55", "c6b78e57-81a2-4c5f-a11a-d96c3c664d55" ],
"agents" : [ {
"agentId" : "125",
"sourceIpAddress" : "1.1.1.1"
}, {
"agentId" : "125",
"sourceIpAddress" : "1.1.1.1"
} ],
"createdDate" : "2022-07-17T22:00:54Z",
"createdBy" : "user@user.com",
"randomizedStartTime" : false,
"modifiedDate" : "2022-07-17T22:00:54Z",
"sipTimeLimit" : 5,
"testId" : "281474976710706",
"sharedWithAccounts" : [ "1234", "12345" ]
}
"""
sip_server_instant_test_request = thousandeyes_sdk.instant_tests.models.SipServerInstantTestRequest.from_json(request_body_json)
aid = '1234'
expand = [thousandeyes_sdk.instant_tests.ExpandInstantTestOptions()]
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.create_sip_server_instant_test(
sip_server_instant_test_request=sip_server_instant_test_request,
aid=aid,
expand=expand,
_headers=self.te_headers("create_sip_server_instant_test", error_status="403"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_create_sip_server_instant_test_error_404(self) -> None:
"""Integration test for create_sip_server_instant_test error path (HTTP 404)"""
request_body_json = """
{
"mtuMeasurements" : false,
"ipv6Policy" : "use-agent-policy",
"_links" : {
"testResults" : [ {
"href" : "https://api.thousandeyes.com/v7/test-results/281474976710706/network"
}, {
"href" : "https://api.thousandeyes.com/v7/test-results/281474976710706/path-vis"
} ],
"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"
}
},
"registerEnabled" : false,
"description" : "ThousandEyes Test",
"probeMode" : "auto",
"type" : "sip-server",
"fixedPacketRate" : 50,
"pathTraceMode" : "classic",
"modifiedBy" : "user@user.com",
"targetSipCredentials" : {
"password" : "password",
"protocol" : "tcp",
"port" : 49153,
"sipRegistrar" : "voice.thousandeyes.com",
"authUser" : "username",
"user" : "username"
},
"testName" : "ThousandEyes Test",
"sipTargetTime" : 1000,
"numPathTraces" : 3,
"optionsRegex" : "[\\"a-z\\"]",
"liveShare" : false,
"savedEvent" : true,
"networkMeasurements" : true,
"labels" : [ "9842", "1283" ],
"tags" : [ "c6b78e57-81a2-4c5f-a11a-d96c3c664d55", "c6b78e57-81a2-4c5f-a11a-d96c3c664d55" ],
"agents" : [ {
"agentId" : "125",
"sourceIpAddress" : "1.1.1.1"
}, {
"agentId" : "125",
"sourceIpAddress" : "1.1.1.1"
} ],
"createdDate" : "2022-07-17T22:00:54Z",
"createdBy" : "user@user.com",
"randomizedStartTime" : false,
"modifiedDate" : "2022-07-17T22:00:54Z",
"sipTimeLimit" : 5,
"testId" : "281474976710706",
"sharedWithAccounts" : [ "1234", "12345" ]
}
"""
sip_server_instant_test_request = thousandeyes_sdk.instant_tests.models.SipServerInstantTestRequest.from_json(request_body_json)
aid = '1234'
expand = [thousandeyes_sdk.instant_tests.ExpandInstantTestOptions()]
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.create_sip_server_instant_test(
sip_server_instant_test_request=sip_server_instant_test_request,
aid=aid,
expand=expand,
_headers=self.te_headers("create_sip_server_instant_test", error_status="404"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_create_sip_server_instant_test_error_429(self) -> None:
"""Integration test for create_sip_server_instant_test error path (HTTP 429)"""
request_body_json = """
{
"mtuMeasurements" : false,
"ipv6Policy" : "use-agent-policy",
"_links" : {
"testResults" : [ {
"href" : "https://api.thousandeyes.com/v7/test-results/281474976710706/network"
}, {
"href" : "https://api.thousandeyes.com/v7/test-results/281474976710706/path-vis"
} ],
"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"
}
},
"registerEnabled" : false,
"description" : "ThousandEyes Test",
"probeMode" : "auto",
"type" : "sip-server",
"fixedPacketRate" : 50,
"pathTraceMode" : "classic",
"modifiedBy" : "user@user.com",
"targetSipCredentials" : {
"password" : "password",
"protocol" : "tcp",
"port" : 49153,
"sipRegistrar" : "voice.thousandeyes.com",
"authUser" : "username",
"user" : "username"
},
"testName" : "ThousandEyes Test",
"sipTargetTime" : 1000,
"numPathTraces" : 3,
"optionsRegex" : "[\\"a-z\\"]",
"liveShare" : false,
"savedEvent" : true,
"networkMeasurements" : true,
"labels" : [ "9842", "1283" ],
"tags" : [ "c6b78e57-81a2-4c5f-a11a-d96c3c664d55", "c6b78e57-81a2-4c5f-a11a-d96c3c664d55" ],
"agents" : [ {
"agentId" : "125",
"sourceIpAddress" : "1.1.1.1"
}, {
"agentId" : "125",
"sourceIpAddress" : "1.1.1.1"
} ],
"createdDate" : "2022-07-17T22:00:54Z",
"createdBy" : "user@user.com",
"randomizedStartTime" : false,
"modifiedDate" : "2022-07-17T22:00:54Z",
"sipTimeLimit" : 5,
"testId" : "281474976710706",
"sharedWithAccounts" : [ "1234", "12345" ]
}
"""
sip_server_instant_test_request = thousandeyes_sdk.instant_tests.models.SipServerInstantTestRequest.from_json(request_body_json)
aid = '1234'
expand = [thousandeyes_sdk.instant_tests.ExpandInstantTestOptions()]
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.create_sip_server_instant_test(
sip_server_instant_test_request=sip_server_instant_test_request,
aid=aid,
expand=expand,
_headers=self.te_headers("create_sip_server_instant_test", error_status="429"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_create_sip_server_instant_test_error_500(self) -> None:
"""Integration test for create_sip_server_instant_test error path (HTTP 500)"""
request_body_json = """
{
"mtuMeasurements" : false,
"ipv6Policy" : "use-agent-policy",
"_links" : {
"testResults" : [ {
"href" : "https://api.thousandeyes.com/v7/test-results/281474976710706/network"
}, {
"href" : "https://api.thousandeyes.com/v7/test-results/281474976710706/path-vis"
} ],
"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"
}
},
"registerEnabled" : false,
"description" : "ThousandEyes Test",
"probeMode" : "auto",
"type" : "sip-server",
"fixedPacketRate" : 50,
"pathTraceMode" : "classic",
"modifiedBy" : "user@user.com",
"targetSipCredentials" : {
"password" : "password",
"protocol" : "tcp",
"port" : 49153,
"sipRegistrar" : "voice.thousandeyes.com",
"authUser" : "username",
"user" : "username"
},
"testName" : "ThousandEyes Test",
"sipTargetTime" : 1000,
"numPathTraces" : 3,
"optionsRegex" : "[\\"a-z\\"]",
"liveShare" : false,
"savedEvent" : true,
"networkMeasurements" : true,
"labels" : [ "9842", "1283" ],
"tags" : [ "c6b78e57-81a2-4c5f-a11a-d96c3c664d55", "c6b78e57-81a2-4c5f-a11a-d96c3c664d55" ],
"agents" : [ {
"agentId" : "125",
"sourceIpAddress" : "1.1.1.1"
}, {
"agentId" : "125",
"sourceIpAddress" : "1.1.1.1"
} ],
"createdDate" : "2022-07-17T22:00:54Z",
"createdBy" : "user@user.com",
"randomizedStartTime" : false,
"modifiedDate" : "2022-07-17T22:00:54Z",
"sipTimeLimit" : 5,
"testId" : "281474976710706",
"sharedWithAccounts" : [ "1234", "12345" ]
}
"""
sip_server_instant_test_request = thousandeyes_sdk.instant_tests.models.SipServerInstantTestRequest.from_json(request_body_json)
aid = '1234'
expand = [thousandeyes_sdk.instant_tests.ExpandInstantTestOptions()]
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.create_sip_server_instant_test(
sip_server_instant_test_request=sip_server_instant_test_request,
aid=aid,
expand=expand,
_headers=self.te_headers("create_sip_server_instant_test", error_status="500"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_create_sip_server_instant_test_error_502(self) -> None:
"""Integration test for create_sip_server_instant_test error path (HTTP 502)"""
request_body_json = """
{
"mtuMeasurements" : false,
"ipv6Policy" : "use-agent-policy",
"_links" : {
"testResults" : [ {
"href" : "https://api.thousandeyes.com/v7/test-results/281474976710706/network"
}, {
"href" : "https://api.thousandeyes.com/v7/test-results/281474976710706/path-vis"
} ],
"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"
}
},
"registerEnabled" : false,
"description" : "ThousandEyes Test",
"probeMode" : "auto",
"type" : "sip-server",
"fixedPacketRate" : 50,
"pathTraceMode" : "classic",
"modifiedBy" : "user@user.com",
"targetSipCredentials" : {
"password" : "password",
"protocol" : "tcp",
"port" : 49153,
"sipRegistrar" : "voice.thousandeyes.com",
"authUser" : "username",
"user" : "username"
},
"testName" : "ThousandEyes Test",
"sipTargetTime" : 1000,
"numPathTraces" : 3,
"optionsRegex" : "[\\"a-z\\"]",
"liveShare" : false,
"savedEvent" : true,
"networkMeasurements" : true,
"labels" : [ "9842", "1283" ],
"tags" : [ "c6b78e57-81a2-4c5f-a11a-d96c3c664d55", "c6b78e57-81a2-4c5f-a11a-d96c3c664d55" ],
"agents" : [ {
"agentId" : "125",
"sourceIpAddress" : "1.1.1.1"
}, {
"agentId" : "125",
"sourceIpAddress" : "1.1.1.1"
} ],
"createdDate" : "2022-07-17T22:00:54Z",
"createdBy" : "user@user.com",
"randomizedStartTime" : false,
"modifiedDate" : "2022-07-17T22:00:54Z",
"sipTimeLimit" : 5,
"testId" : "281474976710706",
"sharedWithAccounts" : [ "1234", "12345" ]
}
"""
sip_server_instant_test_request = thousandeyes_sdk.instant_tests.models.SipServerInstantTestRequest.from_json(request_body_json)
aid = '1234'
expand = [thousandeyes_sdk.instant_tests.ExpandInstantTestOptions()]
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.create_sip_server_instant_test(
sip_server_instant_test_request=sip_server_instant_test_request,
aid=aid,
expand=expand,
_headers=self.te_headers("create_sip_server_instant_test", error_status="502"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
if __name__ == '__main__':
unittest.main()

View File

@ -0,0 +1,780 @@
# coding: utf-8
"""
Instant Tests API
The Instant Tests API operations lets you create and run new instant tests. You will need to be an Account Admin. The response does not include the immediate test results. Use the Test Results endpoints to get test results after creating and executing an instant test. You can find the URLs for these endpoints in the _links section of the test definition that is returned when you create the instant test.
Generated by OpenAPI Generator (https://openapi-generator.tech)
Do not edit the class manually.
""" # noqa: E501
import json
import unittest
import thousandeyes_sdk.instant_tests.models
from thousandeyes_sdk.core.exceptions import ApiException
from thousandeyes_sdk.instant_tests.api.voice_instant_tests_api import VoiceInstantTestsApi
from .integration_test_utils import IntegrationTestBase
from .test_utils import assert_constructed_model_matches_example_json
class TestVoiceInstantTestsApiIntegration(IntegrationTestBase):
"""VoiceInstantTestsApi integration test stubs"""
def setUp(self) -> None:
super().setUp()
self.api = VoiceInstantTestsApi(self.api_client)
def test_create_voice_instant_test_happy_path(self) -> None:
"""Integration test for create_voice_instant_test success path"""
request_body_json = """
{
"_links" : {
"testResults" : [ {
"href" : "https://api.thousandeyes.com/v7/test-results/281474976710706/network"
}, {
"href" : "https://api.thousandeyes.com/v7/test-results/281474976710706/path-vis"
} ],
"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"
}
},
"description" : "ThousandEyes Test",
"type" : "voice",
"jitterBuffer" : 40,
"dscpId" : "0",
"duration" : 5,
"dscp" : "Best Effort (DSCP 0)",
"modifiedBy" : "user@user.com",
"testName" : "ThousandEyes Test",
"numPathTraces" : 3,
"liveShare" : false,
"savedEvent" : true,
"labels" : [ "9842", "1283" ],
"tags" : [ "c6b78e57-81a2-4c5f-a11a-d96c3c664d55", "c6b78e57-81a2-4c5f-a11a-d96c3c664d55" ],
"agents" : [ {
"agentId" : "125",
"sourceIpAddress" : "1.1.1.1"
}, {
"agentId" : "125",
"sourceIpAddress" : "1.1.1.1"
} ],
"codec" : "G.711 @ 64 Kbps",
"codecId" : "0",
"createdDate" : "2022-07-17T22:00:54Z",
"createdBy" : "user@user.com",
"port" : 1024,
"randomizedStartTime" : false,
"modifiedDate" : "2022-07-17T22:00:54Z",
"targetAgentId" : "281474976710706",
"testId" : "281474976710706",
"sharedWithAccounts" : [ "1234", "12345" ]
}
"""
voice_instant_test_request = thousandeyes_sdk.instant_tests.models.VoiceInstantTestRequest.from_json(request_body_json)
aid = '1234'
expand = [thousandeyes_sdk.instant_tests.ExpandInstantTestOptions()]
response_body_json = """
{
&quot;_links&quot; : {
&quot;testResults&quot; : [ {
&quot;href&quot; : &quot;https://api.thousandeyes.com/v7/test-results/281474976710706/network&quot;
}, {
&quot;href&quot; : &quot;https://api.thousandeyes.com/v7/test-results/281474976710706/path-vis&quot;
} ],
&quot;self&quot; : {
&quot;hreflang&quot; : &quot;hreflang&quot;,
&quot;templated&quot; : true,
&quot;profile&quot; : &quot;profile&quot;,
&quot;name&quot; : &quot;name&quot;,
&quot;href&quot; : &quot;https://api.thousandeyes.com/v7/link/to/resource/id&quot;,
&quot;type&quot; : &quot;type&quot;,
&quot;deprecation&quot; : &quot;deprecation&quot;,
&quot;title&quot; : &quot;title&quot;
}
},
&quot;description&quot; : &quot;ThousandEyes Test&quot;,
&quot;type&quot; : &quot;voice&quot;,
&quot;jitterBuffer&quot; : 40,
&quot;dscpId&quot; : &quot;0&quot;,
&quot;duration&quot; : 5,
&quot;dscp&quot; : &quot;Best Effort (DSCP 0)&quot;,
&quot;modifiedBy&quot; : &quot;user@user.com&quot;,
&quot;testName&quot; : &quot;ThousandEyes Test&quot;,
&quot;numPathTraces&quot; : 3,
&quot;liveShare&quot; : false,
&quot;savedEvent&quot; : true,
&quot;labels&quot; : [ {
&quot;labelId&quot; : &quot;961&quot;,
&quot;name&quot; : &quot;Artem label&quot;,
&quot;isBuiltin&quot; : false
}, {
&quot;labelId&quot; : &quot;961&quot;,
&quot;name&quot; : &quot;Artem label&quot;,
&quot;isBuiltin&quot; : false
} ],
&quot;tags&quot; : [ {
&quot;id&quot; : &quot;5aeab5d5-0d34-4d44-a7ac-fb440185295c&quot;,
&quot;value&quot; : &quot;San Francisco&quot;,
&quot;key&quot; : &quot;Location&quot;
}, {
&quot;id&quot; : &quot;5aeab5d5-0d34-4d44-a7ac-fb440185295c&quot;,
&quot;value&quot; : &quot;San Francisco&quot;,
&quot;key&quot; : &quot;Location&quot;
} ],
&quot;agents&quot; : [ {
&quot;agentId&quot; : &quot;281474976710706&quot;,
&quot;agentType&quot; : &quot;enterprise-cluster&quot;,
&quot;prefix&quot; : &quot;99.128.0.0/11&quot;,
&quot;coordinates&quot; : {
&quot;latitude&quot; : 37.77493,
&quot;longitude&quot; : -122.41942
},
&quot;agentName&quot; : &quot;thousandeyes-stg-va-254&quot;,
&quot;networkProviderInfo&quot; : {
&quot;asn&quot; : 7018,
&quot;name&quot; : &quot;AT&amp;T Services, Inc.&quot;,
&quot;type&quot; : &quot;isp&quot;
},
&quot;countryId&quot; : &quot;US&quot;,
&quot;enabled&quot; : true,
&quot;network&quot; : &quot;AT&amp;T Services, Inc. (AS 7018)&quot;,
&quot;publicIpAddresses&quot; : [ &quot;192.168.1.78&quot;, &quot;f9b2:3a21:f25c:d300:03f4:586d:f8d6:4e1c&quot; ],
&quot;ipAddresses&quot; : [ &quot;99.139.65.220&quot;, &quot;9bbd:8a0a:a257:5876:288b:6cb2:3f36:64ce&quot; ],
&quot;location&quot; : &quot;San Francisco Bay Area&quot;,
&quot;verifySslCertificates&quot; : true
}, {
&quot;agentId&quot; : &quot;281474976710706&quot;,
&quot;agentType&quot; : &quot;enterprise-cluster&quot;,
&quot;prefix&quot; : &quot;99.128.0.0/11&quot;,
&quot;coordinates&quot; : {
&quot;latitude&quot; : 37.77493,
&quot;longitude&quot; : -122.41942
},
&quot;agentName&quot; : &quot;thousandeyes-stg-va-254&quot;,
&quot;networkProviderInfo&quot; : {
&quot;asn&quot; : 7018,
&quot;name&quot; : &quot;AT&amp;T Services, Inc.&quot;,
&quot;type&quot; : &quot;isp&quot;
},
&quot;countryId&quot; : &quot;US&quot;,
&quot;enabled&quot; : true,
&quot;network&quot; : &quot;AT&amp;T Services, Inc. (AS 7018)&quot;,
&quot;publicIpAddresses&quot; : [ &quot;192.168.1.78&quot;, &quot;f9b2:3a21:f25c:d300:03f4:586d:f8d6:4e1c&quot; ],
&quot;ipAddresses&quot; : [ &quot;99.139.65.220&quot;, &quot;9bbd:8a0a:a257:5876:288b:6cb2:3f36:64ce&quot; ],
&quot;location&quot; : &quot;San Francisco Bay Area&quot;,
&quot;verifySslCertificates&quot; : true
} ],
&quot;codec&quot; : &quot;G.711 @ 64 Kbps&quot;,
&quot;codecId&quot; : &quot;0&quot;,
&quot;createdDate&quot; : &quot;2022-07-17T22:00:54Z&quot;,
&quot;createdBy&quot; : &quot;user@user.com&quot;,
&quot;port&quot; : 1024,
&quot;randomizedStartTime&quot; : false,
&quot;modifiedDate&quot; : &quot;2022-07-17T22:00:54Z&quot;,
&quot;targetAgentId&quot; : &quot;281474976710706&quot;,
&quot;testId&quot; : &quot;281474976710706&quot;,
&quot;sharedWithAccounts&quot; : [ {
&quot;name&quot; : &quot;Account name&quot;,
&quot;aid&quot; : &quot;1234&quot;
}, {
&quot;name&quot; : &quot;Account name&quot;,
&quot;aid&quot; : &quot;1234&quot;
} ]
}
"""
expected_response = json.loads(response_body_json)
response = self.api.create_voice_instant_test(
voice_instant_test_request=voice_instant_test_request,
aid=aid,
expand=expand,
_headers=self.te_headers("create_voice_instant_test"),
)
assert_constructed_model_matches_example_json(response, expected_response)
def test_create_voice_instant_test_error_400(self) -> None:
"""Integration test for create_voice_instant_test error path (HTTP 400)"""
request_body_json = """
{
"_links" : {
"testResults" : [ {
"href" : "https://api.thousandeyes.com/v7/test-results/281474976710706/network"
}, {
"href" : "https://api.thousandeyes.com/v7/test-results/281474976710706/path-vis"
} ],
"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"
}
},
"description" : "ThousandEyes Test",
"type" : "voice",
"jitterBuffer" : 40,
"dscpId" : "0",
"duration" : 5,
"dscp" : "Best Effort (DSCP 0)",
"modifiedBy" : "user@user.com",
"testName" : "ThousandEyes Test",
"numPathTraces" : 3,
"liveShare" : false,
"savedEvent" : true,
"labels" : [ "9842", "1283" ],
"tags" : [ "c6b78e57-81a2-4c5f-a11a-d96c3c664d55", "c6b78e57-81a2-4c5f-a11a-d96c3c664d55" ],
"agents" : [ {
"agentId" : "125",
"sourceIpAddress" : "1.1.1.1"
}, {
"agentId" : "125",
"sourceIpAddress" : "1.1.1.1"
} ],
"codec" : "G.711 @ 64 Kbps",
"codecId" : "0",
"createdDate" : "2022-07-17T22:00:54Z",
"createdBy" : "user@user.com",
"port" : 1024,
"randomizedStartTime" : false,
"modifiedDate" : "2022-07-17T22:00:54Z",
"targetAgentId" : "281474976710706",
"testId" : "281474976710706",
"sharedWithAccounts" : [ "1234", "12345" ]
}
"""
voice_instant_test_request = thousandeyes_sdk.instant_tests.models.VoiceInstantTestRequest.from_json(request_body_json)
aid = '1234'
expand = [thousandeyes_sdk.instant_tests.ExpandInstantTestOptions()]
error_body_json = """
{
"instance" : "instance",
"detail" : "detail",
"type" : "type",
"title" : "title",
"errors" : [ {
"code" : "code",
"field" : "field",
"message" : "message"
}, {
"code" : "code",
"field" : "field",
"message" : "message"
} ],
"status" : 0
}
"""
expected_error = json.loads(error_body_json)
with self.assertRaises(
ApiException.exception_class_for_http_status(400)
) as context:
self.api.create_voice_instant_test(
voice_instant_test_request=voice_instant_test_request,
aid=aid,
expand=expand,
_headers=self.te_headers("create_voice_instant_test", error_status="400"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_create_voice_instant_test_error_401(self) -> None:
"""Integration test for create_voice_instant_test error path (HTTP 401)"""
request_body_json = """
{
"_links" : {
"testResults" : [ {
"href" : "https://api.thousandeyes.com/v7/test-results/281474976710706/network"
}, {
"href" : "https://api.thousandeyes.com/v7/test-results/281474976710706/path-vis"
} ],
"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"
}
},
"description" : "ThousandEyes Test",
"type" : "voice",
"jitterBuffer" : 40,
"dscpId" : "0",
"duration" : 5,
"dscp" : "Best Effort (DSCP 0)",
"modifiedBy" : "user@user.com",
"testName" : "ThousandEyes Test",
"numPathTraces" : 3,
"liveShare" : false,
"savedEvent" : true,
"labels" : [ "9842", "1283" ],
"tags" : [ "c6b78e57-81a2-4c5f-a11a-d96c3c664d55", "c6b78e57-81a2-4c5f-a11a-d96c3c664d55" ],
"agents" : [ {
"agentId" : "125",
"sourceIpAddress" : "1.1.1.1"
}, {
"agentId" : "125",
"sourceIpAddress" : "1.1.1.1"
} ],
"codec" : "G.711 @ 64 Kbps",
"codecId" : "0",
"createdDate" : "2022-07-17T22:00:54Z",
"createdBy" : "user@user.com",
"port" : 1024,
"randomizedStartTime" : false,
"modifiedDate" : "2022-07-17T22:00:54Z",
"targetAgentId" : "281474976710706",
"testId" : "281474976710706",
"sharedWithAccounts" : [ "1234", "12345" ]
}
"""
voice_instant_test_request = thousandeyes_sdk.instant_tests.models.VoiceInstantTestRequest.from_json(request_body_json)
aid = '1234'
expand = [thousandeyes_sdk.instant_tests.ExpandInstantTestOptions()]
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.create_voice_instant_test(
voice_instant_test_request=voice_instant_test_request,
aid=aid,
expand=expand,
_headers=self.te_headers("create_voice_instant_test", error_status="401"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_create_voice_instant_test_error_403(self) -> None:
"""Integration test for create_voice_instant_test error path (HTTP 403)"""
request_body_json = """
{
"_links" : {
"testResults" : [ {
"href" : "https://api.thousandeyes.com/v7/test-results/281474976710706/network"
}, {
"href" : "https://api.thousandeyes.com/v7/test-results/281474976710706/path-vis"
} ],
"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"
}
},
"description" : "ThousandEyes Test",
"type" : "voice",
"jitterBuffer" : 40,
"dscpId" : "0",
"duration" : 5,
"dscp" : "Best Effort (DSCP 0)",
"modifiedBy" : "user@user.com",
"testName" : "ThousandEyes Test",
"numPathTraces" : 3,
"liveShare" : false,
"savedEvent" : true,
"labels" : [ "9842", "1283" ],
"tags" : [ "c6b78e57-81a2-4c5f-a11a-d96c3c664d55", "c6b78e57-81a2-4c5f-a11a-d96c3c664d55" ],
"agents" : [ {
"agentId" : "125",
"sourceIpAddress" : "1.1.1.1"
}, {
"agentId" : "125",
"sourceIpAddress" : "1.1.1.1"
} ],
"codec" : "G.711 @ 64 Kbps",
"codecId" : "0",
"createdDate" : "2022-07-17T22:00:54Z",
"createdBy" : "user@user.com",
"port" : 1024,
"randomizedStartTime" : false,
"modifiedDate" : "2022-07-17T22:00:54Z",
"targetAgentId" : "281474976710706",
"testId" : "281474976710706",
"sharedWithAccounts" : [ "1234", "12345" ]
}
"""
voice_instant_test_request = thousandeyes_sdk.instant_tests.models.VoiceInstantTestRequest.from_json(request_body_json)
aid = '1234'
expand = [thousandeyes_sdk.instant_tests.ExpandInstantTestOptions()]
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.create_voice_instant_test(
voice_instant_test_request=voice_instant_test_request,
aid=aid,
expand=expand,
_headers=self.te_headers("create_voice_instant_test", error_status="403"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_create_voice_instant_test_error_404(self) -> None:
"""Integration test for create_voice_instant_test error path (HTTP 404)"""
request_body_json = """
{
"_links" : {
"testResults" : [ {
"href" : "https://api.thousandeyes.com/v7/test-results/281474976710706/network"
}, {
"href" : "https://api.thousandeyes.com/v7/test-results/281474976710706/path-vis"
} ],
"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"
}
},
"description" : "ThousandEyes Test",
"type" : "voice",
"jitterBuffer" : 40,
"dscpId" : "0",
"duration" : 5,
"dscp" : "Best Effort (DSCP 0)",
"modifiedBy" : "user@user.com",
"testName" : "ThousandEyes Test",
"numPathTraces" : 3,
"liveShare" : false,
"savedEvent" : true,
"labels" : [ "9842", "1283" ],
"tags" : [ "c6b78e57-81a2-4c5f-a11a-d96c3c664d55", "c6b78e57-81a2-4c5f-a11a-d96c3c664d55" ],
"agents" : [ {
"agentId" : "125",
"sourceIpAddress" : "1.1.1.1"
}, {
"agentId" : "125",
"sourceIpAddress" : "1.1.1.1"
} ],
"codec" : "G.711 @ 64 Kbps",
"codecId" : "0",
"createdDate" : "2022-07-17T22:00:54Z",
"createdBy" : "user@user.com",
"port" : 1024,
"randomizedStartTime" : false,
"modifiedDate" : "2022-07-17T22:00:54Z",
"targetAgentId" : "281474976710706",
"testId" : "281474976710706",
"sharedWithAccounts" : [ "1234", "12345" ]
}
"""
voice_instant_test_request = thousandeyes_sdk.instant_tests.models.VoiceInstantTestRequest.from_json(request_body_json)
aid = '1234'
expand = [thousandeyes_sdk.instant_tests.ExpandInstantTestOptions()]
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.create_voice_instant_test(
voice_instant_test_request=voice_instant_test_request,
aid=aid,
expand=expand,
_headers=self.te_headers("create_voice_instant_test", error_status="404"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_create_voice_instant_test_error_429(self) -> None:
"""Integration test for create_voice_instant_test error path (HTTP 429)"""
request_body_json = """
{
"_links" : {
"testResults" : [ {
"href" : "https://api.thousandeyes.com/v7/test-results/281474976710706/network"
}, {
"href" : "https://api.thousandeyes.com/v7/test-results/281474976710706/path-vis"
} ],
"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"
}
},
"description" : "ThousandEyes Test",
"type" : "voice",
"jitterBuffer" : 40,
"dscpId" : "0",
"duration" : 5,
"dscp" : "Best Effort (DSCP 0)",
"modifiedBy" : "user@user.com",
"testName" : "ThousandEyes Test",
"numPathTraces" : 3,
"liveShare" : false,
"savedEvent" : true,
"labels" : [ "9842", "1283" ],
"tags" : [ "c6b78e57-81a2-4c5f-a11a-d96c3c664d55", "c6b78e57-81a2-4c5f-a11a-d96c3c664d55" ],
"agents" : [ {
"agentId" : "125",
"sourceIpAddress" : "1.1.1.1"
}, {
"agentId" : "125",
"sourceIpAddress" : "1.1.1.1"
} ],
"codec" : "G.711 @ 64 Kbps",
"codecId" : "0",
"createdDate" : "2022-07-17T22:00:54Z",
"createdBy" : "user@user.com",
"port" : 1024,
"randomizedStartTime" : false,
"modifiedDate" : "2022-07-17T22:00:54Z",
"targetAgentId" : "281474976710706",
"testId" : "281474976710706",
"sharedWithAccounts" : [ "1234", "12345" ]
}
"""
voice_instant_test_request = thousandeyes_sdk.instant_tests.models.VoiceInstantTestRequest.from_json(request_body_json)
aid = '1234'
expand = [thousandeyes_sdk.instant_tests.ExpandInstantTestOptions()]
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.create_voice_instant_test(
voice_instant_test_request=voice_instant_test_request,
aid=aid,
expand=expand,
_headers=self.te_headers("create_voice_instant_test", error_status="429"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_create_voice_instant_test_error_500(self) -> None:
"""Integration test for create_voice_instant_test error path (HTTP 500)"""
request_body_json = """
{
"_links" : {
"testResults" : [ {
"href" : "https://api.thousandeyes.com/v7/test-results/281474976710706/network"
}, {
"href" : "https://api.thousandeyes.com/v7/test-results/281474976710706/path-vis"
} ],
"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"
}
},
"description" : "ThousandEyes Test",
"type" : "voice",
"jitterBuffer" : 40,
"dscpId" : "0",
"duration" : 5,
"dscp" : "Best Effort (DSCP 0)",
"modifiedBy" : "user@user.com",
"testName" : "ThousandEyes Test",
"numPathTraces" : 3,
"liveShare" : false,
"savedEvent" : true,
"labels" : [ "9842", "1283" ],
"tags" : [ "c6b78e57-81a2-4c5f-a11a-d96c3c664d55", "c6b78e57-81a2-4c5f-a11a-d96c3c664d55" ],
"agents" : [ {
"agentId" : "125",
"sourceIpAddress" : "1.1.1.1"
}, {
"agentId" : "125",
"sourceIpAddress" : "1.1.1.1"
} ],
"codec" : "G.711 @ 64 Kbps",
"codecId" : "0",
"createdDate" : "2022-07-17T22:00:54Z",
"createdBy" : "user@user.com",
"port" : 1024,
"randomizedStartTime" : false,
"modifiedDate" : "2022-07-17T22:00:54Z",
"targetAgentId" : "281474976710706",
"testId" : "281474976710706",
"sharedWithAccounts" : [ "1234", "12345" ]
}
"""
voice_instant_test_request = thousandeyes_sdk.instant_tests.models.VoiceInstantTestRequest.from_json(request_body_json)
aid = '1234'
expand = [thousandeyes_sdk.instant_tests.ExpandInstantTestOptions()]
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.create_voice_instant_test(
voice_instant_test_request=voice_instant_test_request,
aid=aid,
expand=expand,
_headers=self.te_headers("create_voice_instant_test", error_status="500"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
def test_create_voice_instant_test_error_502(self) -> None:
"""Integration test for create_voice_instant_test error path (HTTP 502)"""
request_body_json = """
{
"_links" : {
"testResults" : [ {
"href" : "https://api.thousandeyes.com/v7/test-results/281474976710706/network"
}, {
"href" : "https://api.thousandeyes.com/v7/test-results/281474976710706/path-vis"
} ],
"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"
}
},
"description" : "ThousandEyes Test",
"type" : "voice",
"jitterBuffer" : 40,
"dscpId" : "0",
"duration" : 5,
"dscp" : "Best Effort (DSCP 0)",
"modifiedBy" : "user@user.com",
"testName" : "ThousandEyes Test",
"numPathTraces" : 3,
"liveShare" : false,
"savedEvent" : true,
"labels" : [ "9842", "1283" ],
"tags" : [ "c6b78e57-81a2-4c5f-a11a-d96c3c664d55", "c6b78e57-81a2-4c5f-a11a-d96c3c664d55" ],
"agents" : [ {
"agentId" : "125",
"sourceIpAddress" : "1.1.1.1"
}, {
"agentId" : "125",
"sourceIpAddress" : "1.1.1.1"
} ],
"codec" : "G.711 @ 64 Kbps",
"codecId" : "0",
"createdDate" : "2022-07-17T22:00:54Z",
"createdBy" : "user@user.com",
"port" : 1024,
"randomizedStartTime" : false,
"modifiedDate" : "2022-07-17T22:00:54Z",
"targetAgentId" : "281474976710706",
"testId" : "281474976710706",
"sharedWithAccounts" : [ "1234", "12345" ]
}
"""
voice_instant_test_request = thousandeyes_sdk.instant_tests.models.VoiceInstantTestRequest.from_json(request_body_json)
aid = '1234'
expand = [thousandeyes_sdk.instant_tests.ExpandInstantTestOptions()]
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.create_voice_instant_test(
voice_instant_test_request=voice_instant_test_request,
aid=aid,
expand=expand,
_headers=self.te_headers("create_voice_instant_test", error_status="502"),
)
assert_constructed_model_matches_example_json(context.exception.data, expected_error)
if __name__ == '__main__':
unittest.main()

View File

@ -0,0 +1,7 @@
import sys
from pathlib import Path
_repo_root = Path(__file__).resolve().parents[2]
_core_test_support = _repo_root / "thousandeyes-sdk-core" / "test"
if str(_core_test_support) not in sys.path:
sys.path.insert(0, str(_core_test_support))

View File

@ -0,0 +1,37 @@
# coding: utf-8
"""
Internet Insights API
**Note:** All Internet Insights APIs are not available for ThousandEyes for Government instance. We are happy to announce the release of the Internet Insights API set. This limited release includes endpoints that: * Make our catalog provider and Internet outage data accessible to API users. * Provide access to advanced filtering, which is part of our next-generation API efforts to allow API users to fine-tune queries across all of our APIs in a consistent manner. Internet Insights provide visibility into core Internet infrastructure, including ISPs, DNS providers, IaaS, CDNs , and SaaS providers. It tracks the macro-level impact of Internet events on individual users and enterprise networks connecting at the edge of the Internet. These events include Outages, Routing hijacks and leaks, DDoS attacks, And political interference, among others. Future releases of the Internet Insights API set will further unlock access to core Internet Insights functionality, unlocking potential integrations to enrich customer process flows. For more information about Internet Insights, see the [Internet Insights](https://docs.thousandeyes.com/product-documentation/internet-insights).
Generated by OpenAPI Generator (https://openapi-generator.tech)
Do not edit the class manually.
""" # noqa: E501
import unittest
from thousandeyes_sdk.core.api_client import ApiClient
from thousandeyes_sdk.core.configuration import Configuration
from sdk_test_support.mock_server import ERROR_STATUS_HEADER, OPERATION_ID_HEADER, MockApiServer
from .mock_manifest import OPERATION_MANIFEST
class IntegrationTestBase(unittest.TestCase):
def setUp(self) -> None:
self.server = MockApiServer(OPERATION_MANIFEST)
self.server.start()
configuration = Configuration(host=self.server.base_url, access_token="test-token")
self.api_client = ApiClient(configuration=configuration)
def tearDown(self) -> None:
self.server.stop()
def te_headers(self, operation_id: str, error_status=None):
headers = {OPERATION_ID_HEADER: operation_id}
if error_status is not None:
headers[ERROR_STATUS_HEADER] = error_status
return headers

Some files were not shown because too many files have changed in this diff Show More