# 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. The version of the OpenAPI document: 7.0.14 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 .test_utils import assert_constructed_model_matches_example_json from thousandeyes_sdk.endpoint_instant_tests.api.http_server_instant_scheduled_test_api import HttpServerInstantScheduledTestApi class TestHttpServerInstantScheduledTestApi(unittest.TestCase): """HttpServerInstantScheduledTestApi unit test stubs""" def setUp(self) -> None: self.api = HttpServerInstantScheduledTestApi() def tearDown(self) -> None: pass def test_create_http_server_scheduled_instant_test_models_validation(self) -> None: """Test case for create_http_server_scheduled_instant_test request and response models""" request_body_json = """ { "hasPing" : true, "verifyCertificate" : false, "agentSelectorType" : "all-agents", "maxMachines" : 10, "httpTimeLimit" : 5000, "endpointAgentLabels" : [ "567", "214" ], "url" : "www.example.com", "tcpProbeMode" : "auto", "agents" : [ "0a3b9998-dc3a-4ff2-b50d-ac4a7cd986e1", "66eec0f1-72b4-4755-aa83-3aed61d17f3c" ], "protocol" : "icmp", "password" : "password", "port" : 80, "hasTraceroute" : true, "targetResponseTime" : 1000, "authType" : "none", "hasPathTraceInSession" : true, "testName" : "Test name", "username" : "username", "sslVersionId" : "0" }""" request_loaded_json = json.loads(request_body_json) request_from_json = thousandeyes_sdk.endpoint_instant_tests.models.EndpointHttpServerInstantTest.from_json(request_body_json) assert_constructed_model_matches_example_json(request_from_json, request_loaded_json) response_body_json = """ { "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" } }, "alertRules" : [ { "severity" : "major", "roundsViolatingOutOf" : 5, "roundsViolatingRequired" : 2, "isDefault" : true, "expression" : "((hops((hopDelay >= 100 ms))))", "alertType" : "http-server", "minimumSourcesPct" : 99, "ruleName" : "The End of the Internet", "minimumSources" : 10, "roundsViolatingMode" : "exact", "ruleId" : "127094", "direction" : "to-target" }, { "severity" : "major", "roundsViolatingOutOf" : 5, "roundsViolatingRequired" : 2, "isDefault" : true, "expression" : "((hops((hopDelay >= 100 ms))))", "alertType" : "http-server", "minimumSourcesPct" : 99, "ruleName" : "The End of the Internet", "minimumSources" : 10, "roundsViolatingMode" : "exact", "ruleId" : "127094", "direction" : "to-target" } ], "httpTimeLimit" : 5000, "type" : "http-server", "protocol" : "icmp", "httpVersion" : 2, "followRedirects" : true, "contentRegex" : "(regex)+", "authType" : "none", "testName" : "Test name", "verifyCertificate" : false, "userAgent" : "curl", "networkMeasurements" : true, "tcpProbeMode" : "auto", "url" : "www.example.com", "labels" : [ { "labelId" : "961", "name" : "Artem label", "isBuiltin" : false }, { "labelId" : "961", "name" : "Artem label", "isBuiltin" : false } ], "createdDate" : "2022-07-17T22:00:54Z", "postBody" : "body", "port" : 80, "isEnabled" : true, "modifiedDate" : "2022-07-17T22:00:54Z", "interval" : 120, "testId" : "281474976710706", "aid" : "1234", "agentSelectorConfig" : { "agentSelectorType" : "all-agents", "maxMachines" : 10 }, "hasPathTraceInSession" : true, "httpTargetTime" : 100, "username" : "username", "sslVersionId" : "0" }""" response_loaded_json = json.loads(response_body_json) response_from_json = thousandeyes_sdk.endpoint_instant_tests.models.EndpointHttpServerTest.from_json(response_body_json) assert_constructed_model_matches_example_json(response_from_json, response_loaded_json) if __name__ == '__main__': unittest.main()