mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2025-12-06 14:36:50 +00:00
* CP-2189 Update SDK names for admin and monitors modules * CP-2189 Move client to core * CP-2189 Change client to core
1330 lines
59 KiB
Python
1330 lines
59 KiB
Python
# coding: utf-8
|
|
|
|
"""
|
|
Endpoint Test Results API
|
|
|
|
Retrieve results for scheduled and dynamic tests on endpoint agents.
|
|
|
|
The version of the OpenAPI document: 7.0.6
|
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
|
|
Do not edit the class manually.
|
|
""" # noqa: E501
|
|
|
|
|
|
import json
|
|
import unittest
|
|
import thousandeyes_sdk.endpoint_test_results.models
|
|
|
|
from .test_utils import assert_constructed_model_matches_example_json
|
|
from thousandeyes_sdk.endpoint_test_results.api.network_scheduled_tests_results_api import NetworkScheduledTestsResultsApi
|
|
|
|
|
|
class TestNetworkScheduledTestsResultsApi(unittest.TestCase):
|
|
"""NetworkScheduledTestsResultsApi unit test stubs"""
|
|
|
|
def setUp(self) -> None:
|
|
self.api = NetworkScheduledTestsResultsApi()
|
|
|
|
def tearDown(self) -> None:
|
|
pass
|
|
|
|
def test_filter_scheduled_test_network_results_models_validation(self) -> None:
|
|
"""Test case for filter_scheduled_test_network_results request and response models"""
|
|
request_body_json = """
|
|
{
|
|
"searchSort" : [ {
|
|
"sort" : "round-id",
|
|
"order" : "desc"
|
|
}, {
|
|
"sort" : "round-id",
|
|
"order" : "desc"
|
|
} ],
|
|
"searchFilters" : {
|
|
"agentId" : [ "52455b09-ff1b-4849-8194-99026cc890e0", "52455b09-ff1b-4849-8194-99026cc890e0" ]
|
|
},
|
|
"thresholdFilter" : {
|
|
"conditionalOperator" : "and",
|
|
"filters" : [ {
|
|
"name" : "loss",
|
|
"value" : 10.0,
|
|
"operator" : "gte"
|
|
}, {
|
|
"name" : "loss",
|
|
"value" : 10.0,
|
|
"operator" : "gte"
|
|
} ]
|
|
}
|
|
}"""
|
|
|
|
request_loaded_json = json.loads(request_body_json)
|
|
request_from_json = thousandeyes_sdk.endpoint_test_results.models.TestsDataRoundsSearch.from_json(request_body_json)
|
|
assert_constructed_model_matches_example_json(request_from_json, request_loaded_json)
|
|
|
|
response_body_json = """
|
|
{
|
|
"test" : {
|
|
"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"
|
|
}
|
|
},
|
|
"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"
|
|
} ],
|
|
"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",
|
|
"port" : 80,
|
|
"isEnabled" : true,
|
|
"modifiedDate" : "2022-07-17T22:00:54Z",
|
|
"interval" : 120,
|
|
"testId" : "281474976710706",
|
|
"aid" : "1234",
|
|
"agentSelectorConfig" : {
|
|
"agentSelectorType" : "all-agents",
|
|
"maxMachines" : 10
|
|
},
|
|
"hasPathTraceInSession" : true,
|
|
"testName" : "Test name"
|
|
},
|
|
"totalHits" : 12,
|
|
"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"
|
|
}
|
|
},
|
|
"results" : [ {
|
|
"originalTargetProfile" : {
|
|
"protocol" : "tcp",
|
|
"remotePort" : 80,
|
|
"remoteIpAddress" : "120.98.134.7"
|
|
},
|
|
"agentId" : "861b7557-cd57-4bbb-b648-00bddf88ef49",
|
|
"isIcmpBlocked" : true,
|
|
"avgLatency" : 167.04,
|
|
"minLatency" : 167.0,
|
|
"vpnProfile" : {
|
|
"vpnClientNetworkRange" : [ "9.88.37.27", "9.88.37.27" ],
|
|
"vpnGatewayAddress" : "120.98.134.7",
|
|
"vpnType" : "cisco-anyconnect",
|
|
"vpnClientAddresses" : [ "184.81.113.85", "13.129.91.62" ]
|
|
},
|
|
"maxLatency" : 168.0,
|
|
"loss" : 0.0,
|
|
"systemMetrics" : {
|
|
"cpuUtilization" : {
|
|
"min" : 0.22,
|
|
"median" : 0.61,
|
|
"max" : 0.75,
|
|
"mean" : 0.55,
|
|
"count" : 150,
|
|
"stdDev" : 0.01
|
|
},
|
|
"physicalMemoryTotalBytes" : 1024,
|
|
"startTimeMs" : 1581508857327,
|
|
"physicalMemoryUsedBytes" : {
|
|
"min" : 1.2,
|
|
"median" : 1.85,
|
|
"max" : 2.5,
|
|
"mean" : 1.77,
|
|
"count" : 155,
|
|
"stdDev" : 0.25
|
|
},
|
|
"endTimeMs" : 1581508867333
|
|
},
|
|
"jitter" : 0.076808,
|
|
"serverIp" : "185.199.108.153",
|
|
"networkProfile" : {
|
|
"previousInterface" : {
|
|
"publicIpAddress" : "84.255.241.1",
|
|
"publicIpRange" : "84.255.241.0-84.255.241.255",
|
|
"ipAddress" : "10.0.0.13",
|
|
"hardwareType" : "wireless",
|
|
"localPrefix" : "10.0.0.0",
|
|
"interfaceName" : "en0",
|
|
"subnetMask" : "255.255.255.0",
|
|
"dnsServers" : [ "8.8.8.8", "8.8.8.4" ]
|
|
},
|
|
"ethernetProfile" : {
|
|
"linkSpeed" : 860
|
|
},
|
|
"publicIpAddress" : "84.255.241.1",
|
|
"publicIpRange" : "84.255.241.0-84.255.241.255",
|
|
"ipAddress" : "10.0.0.13",
|
|
"hardwareType" : "wireless",
|
|
"localPrefix" : "10.0.0.0",
|
|
"proxyProfile" : {
|
|
"method" : "System",
|
|
"proxies" : [ {
|
|
"bypass" : "*.local;169.254/16",
|
|
"proxy" : "<direct>"
|
|
}, {
|
|
"bypass" : "*.local;169.254/16",
|
|
"proxy" : "<direct>"
|
|
} ]
|
|
},
|
|
"subnetMask" : "255.255.255.0",
|
|
"error" : "An operation timed out.",
|
|
"wirelessProfile" : {
|
|
"rssi" : -38,
|
|
"bssid" : "4c:ba:ba:f4:fa:fa",
|
|
"vendor" : "Cisco",
|
|
"txRate" : 130,
|
|
"channel" : 1,
|
|
"noise" : -95,
|
|
"phyMode" : "802.11n",
|
|
"ssid" : "Internet for the masses",
|
|
"quality" : 100
|
|
},
|
|
"interfaceName" : "en0",
|
|
"dnsServers" : [ "8.8.8.8", "8.8.8.4" ],
|
|
"gateway" : "10.0.0.1"
|
|
},
|
|
"aid" : "1234",
|
|
"roundId" : 1384309800,
|
|
"errorDetails" : "Error"
|
|
}, {
|
|
"originalTargetProfile" : {
|
|
"protocol" : "tcp",
|
|
"remotePort" : 80,
|
|
"remoteIpAddress" : "120.98.134.7"
|
|
},
|
|
"agentId" : "861b7557-cd57-4bbb-b648-00bddf88ef49",
|
|
"isIcmpBlocked" : true,
|
|
"avgLatency" : 167.04,
|
|
"minLatency" : 167.0,
|
|
"vpnProfile" : {
|
|
"vpnClientNetworkRange" : [ "9.88.37.27", "9.88.37.27" ],
|
|
"vpnGatewayAddress" : "120.98.134.7",
|
|
"vpnType" : "cisco-anyconnect",
|
|
"vpnClientAddresses" : [ "184.81.113.85", "13.129.91.62" ]
|
|
},
|
|
"maxLatency" : 168.0,
|
|
"loss" : 0.0,
|
|
"systemMetrics" : {
|
|
"cpuUtilization" : {
|
|
"min" : 0.22,
|
|
"median" : 0.61,
|
|
"max" : 0.75,
|
|
"mean" : 0.55,
|
|
"count" : 150,
|
|
"stdDev" : 0.01
|
|
},
|
|
"physicalMemoryTotalBytes" : 1024,
|
|
"startTimeMs" : 1581508857327,
|
|
"physicalMemoryUsedBytes" : {
|
|
"min" : 1.2,
|
|
"median" : 1.85,
|
|
"max" : 2.5,
|
|
"mean" : 1.77,
|
|
"count" : 155,
|
|
"stdDev" : 0.25
|
|
},
|
|
"endTimeMs" : 1581508867333
|
|
},
|
|
"jitter" : 0.076808,
|
|
"serverIp" : "185.199.108.153",
|
|
"networkProfile" : {
|
|
"previousInterface" : {
|
|
"publicIpAddress" : "84.255.241.1",
|
|
"publicIpRange" : "84.255.241.0-84.255.241.255",
|
|
"ipAddress" : "10.0.0.13",
|
|
"hardwareType" : "wireless",
|
|
"localPrefix" : "10.0.0.0",
|
|
"interfaceName" : "en0",
|
|
"subnetMask" : "255.255.255.0",
|
|
"dnsServers" : [ "8.8.8.8", "8.8.8.4" ]
|
|
},
|
|
"ethernetProfile" : {
|
|
"linkSpeed" : 860
|
|
},
|
|
"publicIpAddress" : "84.255.241.1",
|
|
"publicIpRange" : "84.255.241.0-84.255.241.255",
|
|
"ipAddress" : "10.0.0.13",
|
|
"hardwareType" : "wireless",
|
|
"localPrefix" : "10.0.0.0",
|
|
"proxyProfile" : {
|
|
"method" : "System",
|
|
"proxies" : [ {
|
|
"bypass" : "*.local;169.254/16",
|
|
"proxy" : "<direct>"
|
|
}, {
|
|
"bypass" : "*.local;169.254/16",
|
|
"proxy" : "<direct>"
|
|
} ]
|
|
},
|
|
"subnetMask" : "255.255.255.0",
|
|
"error" : "An operation timed out.",
|
|
"wirelessProfile" : {
|
|
"rssi" : -38,
|
|
"bssid" : "4c:ba:ba:f4:fa:fa",
|
|
"vendor" : "Cisco",
|
|
"txRate" : 130,
|
|
"channel" : 1,
|
|
"noise" : -95,
|
|
"phyMode" : "802.11n",
|
|
"ssid" : "Internet for the masses",
|
|
"quality" : 100
|
|
},
|
|
"interfaceName" : "en0",
|
|
"dnsServers" : [ "8.8.8.8", "8.8.8.4" ],
|
|
"gateway" : "10.0.0.1"
|
|
},
|
|
"aid" : "1234",
|
|
"roundId" : 1384309800,
|
|
"errorDetails" : "Error"
|
|
} ],
|
|
"startDate" : "2022-07-17T22:00:54Z"
|
|
}"""
|
|
|
|
response_loaded_json = json.loads(response_body_json)
|
|
response_from_json = thousandeyes_sdk.endpoint_test_results.models.NetworkTestResults.from_json(response_body_json)
|
|
assert_constructed_model_matches_example_json(response_from_json, response_loaded_json)
|
|
|
|
def test_filter_scheduled_tests_network_results_models_validation(self) -> None:
|
|
"""Test case for filter_scheduled_tests_network_results request and response models"""
|
|
request_body_json = """
|
|
{
|
|
"searchSort" : [ {
|
|
"sort" : "round-id",
|
|
"order" : "desc"
|
|
}, {
|
|
"sort" : "round-id",
|
|
"order" : "desc"
|
|
} ],
|
|
"searchFilters" : {
|
|
"agentId" : [ "52455b09-ff1b-4849-8194-99026cc890e0", "52455b09-ff1b-4849-8194-99026cc890e0" ],
|
|
"testId" : [ "5", "5" ]
|
|
},
|
|
"thresholdFilter" : {
|
|
"conditionalOperator" : "and",
|
|
"filters" : [ {
|
|
"name" : "loss",
|
|
"value" : 10.0,
|
|
"operator" : "gte"
|
|
}, {
|
|
"name" : "loss",
|
|
"value" : 10.0,
|
|
"operator" : "gte"
|
|
} ]
|
|
}
|
|
}"""
|
|
|
|
request_loaded_json = json.loads(request_body_json)
|
|
request_from_json = thousandeyes_sdk.endpoint_test_results.models.MultiTestIdTestsDataRoundsSearch.from_json(request_body_json)
|
|
assert_constructed_model_matches_example_json(request_from_json, request_loaded_json)
|
|
|
|
response_body_json = """
|
|
{
|
|
"totalHits" : 12,
|
|
"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"
|
|
}
|
|
},
|
|
"results" : [ {
|
|
"originalTargetProfile" : {
|
|
"protocol" : "tcp",
|
|
"remotePort" : 80,
|
|
"remoteIpAddress" : "120.98.134.7"
|
|
},
|
|
"agentId" : "861b7557-cd57-4bbb-b648-00bddf88ef49",
|
|
"isIcmpBlocked" : true,
|
|
"avgLatency" : 167.04,
|
|
"minLatency" : 167.0,
|
|
"vpnProfile" : {
|
|
"vpnClientNetworkRange" : [ "9.88.37.27", "9.88.37.27" ],
|
|
"vpnGatewayAddress" : "120.98.134.7",
|
|
"vpnType" : "cisco-anyconnect",
|
|
"vpnClientAddresses" : [ "184.81.113.85", "13.129.91.62" ]
|
|
},
|
|
"maxLatency" : 168.0,
|
|
"loss" : 0.0,
|
|
"systemMetrics" : {
|
|
"cpuUtilization" : {
|
|
"min" : 0.22,
|
|
"median" : 0.61,
|
|
"max" : 0.75,
|
|
"mean" : 0.55,
|
|
"count" : 150,
|
|
"stdDev" : 0.01
|
|
},
|
|
"physicalMemoryTotalBytes" : 1024,
|
|
"startTimeMs" : 1581508857327,
|
|
"physicalMemoryUsedBytes" : {
|
|
"min" : 1.2,
|
|
"median" : 1.85,
|
|
"max" : 2.5,
|
|
"mean" : 1.77,
|
|
"count" : 155,
|
|
"stdDev" : 0.25
|
|
},
|
|
"endTimeMs" : 1581508867333
|
|
},
|
|
"jitter" : 0.076808,
|
|
"serverIp" : "185.199.108.153",
|
|
"networkProfile" : {
|
|
"previousInterface" : {
|
|
"publicIpAddress" : "84.255.241.1",
|
|
"publicIpRange" : "84.255.241.0-84.255.241.255",
|
|
"ipAddress" : "10.0.0.13",
|
|
"hardwareType" : "wireless",
|
|
"localPrefix" : "10.0.0.0",
|
|
"interfaceName" : "en0",
|
|
"subnetMask" : "255.255.255.0",
|
|
"dnsServers" : [ "8.8.8.8", "8.8.8.4" ]
|
|
},
|
|
"ethernetProfile" : {
|
|
"linkSpeed" : 860
|
|
},
|
|
"publicIpAddress" : "84.255.241.1",
|
|
"publicIpRange" : "84.255.241.0-84.255.241.255",
|
|
"ipAddress" : "10.0.0.13",
|
|
"hardwareType" : "wireless",
|
|
"localPrefix" : "10.0.0.0",
|
|
"proxyProfile" : {
|
|
"method" : "System",
|
|
"proxies" : [ {
|
|
"bypass" : "*.local;169.254/16",
|
|
"proxy" : "<direct>"
|
|
}, {
|
|
"bypass" : "*.local;169.254/16",
|
|
"proxy" : "<direct>"
|
|
} ]
|
|
},
|
|
"subnetMask" : "255.255.255.0",
|
|
"error" : "An operation timed out.",
|
|
"wirelessProfile" : {
|
|
"rssi" : -38,
|
|
"bssid" : "4c:ba:ba:f4:fa:fa",
|
|
"vendor" : "Cisco",
|
|
"txRate" : 130,
|
|
"channel" : 1,
|
|
"noise" : -95,
|
|
"phyMode" : "802.11n",
|
|
"ssid" : "Internet for the masses",
|
|
"quality" : 100
|
|
},
|
|
"interfaceName" : "en0",
|
|
"dnsServers" : [ "8.8.8.8", "8.8.8.4" ],
|
|
"gateway" : "10.0.0.1"
|
|
},
|
|
"aid" : "1234",
|
|
"roundId" : 1384309800,
|
|
"errorDetails" : "Error"
|
|
}, {
|
|
"originalTargetProfile" : {
|
|
"protocol" : "tcp",
|
|
"remotePort" : 80,
|
|
"remoteIpAddress" : "120.98.134.7"
|
|
},
|
|
"agentId" : "861b7557-cd57-4bbb-b648-00bddf88ef49",
|
|
"isIcmpBlocked" : true,
|
|
"avgLatency" : 167.04,
|
|
"minLatency" : 167.0,
|
|
"vpnProfile" : {
|
|
"vpnClientNetworkRange" : [ "9.88.37.27", "9.88.37.27" ],
|
|
"vpnGatewayAddress" : "120.98.134.7",
|
|
"vpnType" : "cisco-anyconnect",
|
|
"vpnClientAddresses" : [ "184.81.113.85", "13.129.91.62" ]
|
|
},
|
|
"maxLatency" : 168.0,
|
|
"loss" : 0.0,
|
|
"systemMetrics" : {
|
|
"cpuUtilization" : {
|
|
"min" : 0.22,
|
|
"median" : 0.61,
|
|
"max" : 0.75,
|
|
"mean" : 0.55,
|
|
"count" : 150,
|
|
"stdDev" : 0.01
|
|
},
|
|
"physicalMemoryTotalBytes" : 1024,
|
|
"startTimeMs" : 1581508857327,
|
|
"physicalMemoryUsedBytes" : {
|
|
"min" : 1.2,
|
|
"median" : 1.85,
|
|
"max" : 2.5,
|
|
"mean" : 1.77,
|
|
"count" : 155,
|
|
"stdDev" : 0.25
|
|
},
|
|
"endTimeMs" : 1581508867333
|
|
},
|
|
"jitter" : 0.076808,
|
|
"serverIp" : "185.199.108.153",
|
|
"networkProfile" : {
|
|
"previousInterface" : {
|
|
"publicIpAddress" : "84.255.241.1",
|
|
"publicIpRange" : "84.255.241.0-84.255.241.255",
|
|
"ipAddress" : "10.0.0.13",
|
|
"hardwareType" : "wireless",
|
|
"localPrefix" : "10.0.0.0",
|
|
"interfaceName" : "en0",
|
|
"subnetMask" : "255.255.255.0",
|
|
"dnsServers" : [ "8.8.8.8", "8.8.8.4" ]
|
|
},
|
|
"ethernetProfile" : {
|
|
"linkSpeed" : 860
|
|
},
|
|
"publicIpAddress" : "84.255.241.1",
|
|
"publicIpRange" : "84.255.241.0-84.255.241.255",
|
|
"ipAddress" : "10.0.0.13",
|
|
"hardwareType" : "wireless",
|
|
"localPrefix" : "10.0.0.0",
|
|
"proxyProfile" : {
|
|
"method" : "System",
|
|
"proxies" : [ {
|
|
"bypass" : "*.local;169.254/16",
|
|
"proxy" : "<direct>"
|
|
}, {
|
|
"bypass" : "*.local;169.254/16",
|
|
"proxy" : "<direct>"
|
|
} ]
|
|
},
|
|
"subnetMask" : "255.255.255.0",
|
|
"error" : "An operation timed out.",
|
|
"wirelessProfile" : {
|
|
"rssi" : -38,
|
|
"bssid" : "4c:ba:ba:f4:fa:fa",
|
|
"vendor" : "Cisco",
|
|
"txRate" : 130,
|
|
"channel" : 1,
|
|
"noise" : -95,
|
|
"phyMode" : "802.11n",
|
|
"ssid" : "Internet for the masses",
|
|
"quality" : 100
|
|
},
|
|
"interfaceName" : "en0",
|
|
"dnsServers" : [ "8.8.8.8", "8.8.8.4" ],
|
|
"gateway" : "10.0.0.1"
|
|
},
|
|
"aid" : "1234",
|
|
"roundId" : 1384309800,
|
|
"errorDetails" : "Error"
|
|
} ],
|
|
"startDate" : "2022-07-17T22:00:54Z"
|
|
}"""
|
|
|
|
response_loaded_json = json.loads(response_body_json)
|
|
response_from_json = thousandeyes_sdk.endpoint_test_results.models.MultiTestIdNetworkTestResults.from_json(response_body_json)
|
|
assert_constructed_model_matches_example_json(response_from_json, response_loaded_json)
|
|
|
|
def test_get_scheduled_test_path_vis_agent_round_results_models_validation(self) -> None:
|
|
"""Test case for get_scheduled_test_path_vis_agent_round_results request and response models"""
|
|
|
|
response_body_json = """
|
|
{
|
|
"test" : {
|
|
"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"
|
|
}
|
|
},
|
|
"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"
|
|
} ],
|
|
"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",
|
|
"port" : 80,
|
|
"isEnabled" : true,
|
|
"modifiedDate" : "2022-07-17T22:00:54Z",
|
|
"interval" : 120,
|
|
"testId" : "281474976710706",
|
|
"aid" : "1234",
|
|
"agentSelectorConfig" : {
|
|
"agentSelectorType" : "all-agents",
|
|
"maxMachines" : 10
|
|
},
|
|
"hasPathTraceInSession" : true,
|
|
"testName" : "Test name"
|
|
},
|
|
"_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"
|
|
}
|
|
},
|
|
"results" : [ {
|
|
"originalTargetProfile" : {
|
|
"protocol" : "tcp",
|
|
"remotePort" : 80,
|
|
"remoteIpAddress" : "120.98.134.7"
|
|
},
|
|
"server" : "www.google.com:443",
|
|
"agentId" : "861b7557-cd57-4bbb-b648-00bddf88ef49",
|
|
"asnDetails" : {
|
|
"asName" : "ThousandEyes, Inc",
|
|
"asNumber" : 394101
|
|
},
|
|
"vpnProfile" : {
|
|
"vpnClientNetworkRange" : [ "9.88.37.27", "9.88.37.27" ],
|
|
"vpnGatewayAddress" : "120.98.134.7",
|
|
"vpnType" : "cisco-anyconnect",
|
|
"vpnClientAddresses" : [ "184.81.113.85", "13.129.91.62" ]
|
|
},
|
|
"sourcePrefix" : "196.40.96.0/20",
|
|
"systemMetrics" : {
|
|
"cpuUtilization" : {
|
|
"min" : 0.22,
|
|
"median" : 0.61,
|
|
"max" : 0.75,
|
|
"mean" : 0.55,
|
|
"count" : 150,
|
|
"stdDev" : 0.01
|
|
},
|
|
"physicalMemoryTotalBytes" : 1024,
|
|
"startTimeMs" : 1581508857327,
|
|
"physicalMemoryUsedBytes" : {
|
|
"min" : 1.2,
|
|
"median" : 1.85,
|
|
"max" : 2.5,
|
|
"mean" : 1.77,
|
|
"count" : 155,
|
|
"stdDev" : 0.25
|
|
},
|
|
"endTimeMs" : 1581508867333
|
|
},
|
|
"sourceIp" : "196.40.106.237",
|
|
"pathTraces" : [ {
|
|
"hops" : [ {
|
|
"rdns" : "core-router1.cpt2.host-h.net",
|
|
"prefix" : "196.40.96.0/20",
|
|
"responseTime" : 1,
|
|
"hop" : 1,
|
|
"ipAddress" : "196.40.106.237",
|
|
"location" : "Cape Town, South Africa",
|
|
"network" : "HETZNER (Pty) Ltd (AS 37153)"
|
|
}, {
|
|
"rdns" : "core-router1.cpt2.host-h.net",
|
|
"prefix" : "196.40.96.0/20",
|
|
"responseTime" : 1,
|
|
"hop" : 1,
|
|
"ipAddress" : "196.40.106.237",
|
|
"location" : "Cape Town, South Africa",
|
|
"network" : "HETZNER (Pty) Ltd (AS 37153)"
|
|
} ],
|
|
"pathId" : "4711301366345855606023718047703941305741293841502186803"
|
|
}, {
|
|
"hops" : [ {
|
|
"rdns" : "core-router1.cpt2.host-h.net",
|
|
"prefix" : "196.40.96.0/20",
|
|
"responseTime" : 1,
|
|
"hop" : 1,
|
|
"ipAddress" : "196.40.106.237",
|
|
"location" : "Cape Town, South Africa",
|
|
"network" : "HETZNER (Pty) Ltd (AS 37153)"
|
|
}, {
|
|
"rdns" : "core-router1.cpt2.host-h.net",
|
|
"prefix" : "196.40.96.0/20",
|
|
"responseTime" : 1,
|
|
"hop" : 1,
|
|
"ipAddress" : "196.40.106.237",
|
|
"location" : "Cape Town, South Africa",
|
|
"network" : "HETZNER (Pty) Ltd (AS 37153)"
|
|
} ],
|
|
"pathId" : "4711301366345855606023718047703941305741293841502186803"
|
|
} ],
|
|
"vpnPathTraces" : [ {
|
|
"hops" : [ {
|
|
"rdns" : "core-router1.cpt2.host-h.net",
|
|
"prefix" : "196.40.96.0/20",
|
|
"responseTime" : 1,
|
|
"hop" : 1,
|
|
"ipAddress" : "196.40.106.237",
|
|
"location" : "Cape Town, South Africa",
|
|
"network" : "HETZNER (Pty) Ltd (AS 37153)"
|
|
}, {
|
|
"rdns" : "core-router1.cpt2.host-h.net",
|
|
"prefix" : "196.40.96.0/20",
|
|
"responseTime" : 1,
|
|
"hop" : 1,
|
|
"ipAddress" : "196.40.106.237",
|
|
"location" : "Cape Town, South Africa",
|
|
"network" : "HETZNER (Pty) Ltd (AS 37153)"
|
|
} ],
|
|
"pathId" : "4711301366345855606023718047703941305741293841502186803"
|
|
}, {
|
|
"hops" : [ {
|
|
"rdns" : "core-router1.cpt2.host-h.net",
|
|
"prefix" : "196.40.96.0/20",
|
|
"responseTime" : 1,
|
|
"hop" : 1,
|
|
"ipAddress" : "196.40.106.237",
|
|
"location" : "Cape Town, South Africa",
|
|
"network" : "HETZNER (Pty) Ltd (AS 37153)"
|
|
}, {
|
|
"rdns" : "core-router1.cpt2.host-h.net",
|
|
"prefix" : "196.40.96.0/20",
|
|
"responseTime" : 1,
|
|
"hop" : 1,
|
|
"ipAddress" : "196.40.106.237",
|
|
"location" : "Cape Town, South Africa",
|
|
"network" : "HETZNER (Pty) Ltd (AS 37153)"
|
|
} ],
|
|
"pathId" : "4711301366345855606023718047703941305741293841502186803"
|
|
} ],
|
|
"serverIp" : "185.199.108.153",
|
|
"networkProfile" : {
|
|
"previousInterface" : {
|
|
"publicIpAddress" : "84.255.241.1",
|
|
"publicIpRange" : "84.255.241.0-84.255.241.255",
|
|
"ipAddress" : "10.0.0.13",
|
|
"hardwareType" : "wireless",
|
|
"localPrefix" : "10.0.0.0",
|
|
"interfaceName" : "en0",
|
|
"subnetMask" : "255.255.255.0",
|
|
"dnsServers" : [ "8.8.8.8", "8.8.8.4" ]
|
|
},
|
|
"ethernetProfile" : {
|
|
"linkSpeed" : 860
|
|
},
|
|
"publicIpAddress" : "84.255.241.1",
|
|
"publicIpRange" : "84.255.241.0-84.255.241.255",
|
|
"ipAddress" : "10.0.0.13",
|
|
"hardwareType" : "wireless",
|
|
"localPrefix" : "10.0.0.0",
|
|
"proxyProfile" : {
|
|
"method" : "System",
|
|
"proxies" : [ {
|
|
"bypass" : "*.local;169.254/16",
|
|
"proxy" : "<direct>"
|
|
}, {
|
|
"bypass" : "*.local;169.254/16",
|
|
"proxy" : "<direct>"
|
|
} ]
|
|
},
|
|
"subnetMask" : "255.255.255.0",
|
|
"error" : "An operation timed out.",
|
|
"wirelessProfile" : {
|
|
"rssi" : -38,
|
|
"bssid" : "4c:ba:ba:f4:fa:fa",
|
|
"vendor" : "Cisco",
|
|
"txRate" : 130,
|
|
"channel" : 1,
|
|
"noise" : -95,
|
|
"phyMode" : "802.11n",
|
|
"ssid" : "Internet for the masses",
|
|
"quality" : 100
|
|
},
|
|
"interfaceName" : "en0",
|
|
"dnsServers" : [ "8.8.8.8", "8.8.8.4" ],
|
|
"gateway" : "10.0.0.1"
|
|
},
|
|
"aid" : "1234",
|
|
"roundId" : 1384309800
|
|
}, {
|
|
"originalTargetProfile" : {
|
|
"protocol" : "tcp",
|
|
"remotePort" : 80,
|
|
"remoteIpAddress" : "120.98.134.7"
|
|
},
|
|
"server" : "www.google.com:443",
|
|
"agentId" : "861b7557-cd57-4bbb-b648-00bddf88ef49",
|
|
"asnDetails" : {
|
|
"asName" : "ThousandEyes, Inc",
|
|
"asNumber" : 394101
|
|
},
|
|
"vpnProfile" : {
|
|
"vpnClientNetworkRange" : [ "9.88.37.27", "9.88.37.27" ],
|
|
"vpnGatewayAddress" : "120.98.134.7",
|
|
"vpnType" : "cisco-anyconnect",
|
|
"vpnClientAddresses" : [ "184.81.113.85", "13.129.91.62" ]
|
|
},
|
|
"sourcePrefix" : "196.40.96.0/20",
|
|
"systemMetrics" : {
|
|
"cpuUtilization" : {
|
|
"min" : 0.22,
|
|
"median" : 0.61,
|
|
"max" : 0.75,
|
|
"mean" : 0.55,
|
|
"count" : 150,
|
|
"stdDev" : 0.01
|
|
},
|
|
"physicalMemoryTotalBytes" : 1024,
|
|
"startTimeMs" : 1581508857327,
|
|
"physicalMemoryUsedBytes" : {
|
|
"min" : 1.2,
|
|
"median" : 1.85,
|
|
"max" : 2.5,
|
|
"mean" : 1.77,
|
|
"count" : 155,
|
|
"stdDev" : 0.25
|
|
},
|
|
"endTimeMs" : 1581508867333
|
|
},
|
|
"sourceIp" : "196.40.106.237",
|
|
"pathTraces" : [ {
|
|
"hops" : [ {
|
|
"rdns" : "core-router1.cpt2.host-h.net",
|
|
"prefix" : "196.40.96.0/20",
|
|
"responseTime" : 1,
|
|
"hop" : 1,
|
|
"ipAddress" : "196.40.106.237",
|
|
"location" : "Cape Town, South Africa",
|
|
"network" : "HETZNER (Pty) Ltd (AS 37153)"
|
|
}, {
|
|
"rdns" : "core-router1.cpt2.host-h.net",
|
|
"prefix" : "196.40.96.0/20",
|
|
"responseTime" : 1,
|
|
"hop" : 1,
|
|
"ipAddress" : "196.40.106.237",
|
|
"location" : "Cape Town, South Africa",
|
|
"network" : "HETZNER (Pty) Ltd (AS 37153)"
|
|
} ],
|
|
"pathId" : "4711301366345855606023718047703941305741293841502186803"
|
|
}, {
|
|
"hops" : [ {
|
|
"rdns" : "core-router1.cpt2.host-h.net",
|
|
"prefix" : "196.40.96.0/20",
|
|
"responseTime" : 1,
|
|
"hop" : 1,
|
|
"ipAddress" : "196.40.106.237",
|
|
"location" : "Cape Town, South Africa",
|
|
"network" : "HETZNER (Pty) Ltd (AS 37153)"
|
|
}, {
|
|
"rdns" : "core-router1.cpt2.host-h.net",
|
|
"prefix" : "196.40.96.0/20",
|
|
"responseTime" : 1,
|
|
"hop" : 1,
|
|
"ipAddress" : "196.40.106.237",
|
|
"location" : "Cape Town, South Africa",
|
|
"network" : "HETZNER (Pty) Ltd (AS 37153)"
|
|
} ],
|
|
"pathId" : "4711301366345855606023718047703941305741293841502186803"
|
|
} ],
|
|
"vpnPathTraces" : [ {
|
|
"hops" : [ {
|
|
"rdns" : "core-router1.cpt2.host-h.net",
|
|
"prefix" : "196.40.96.0/20",
|
|
"responseTime" : 1,
|
|
"hop" : 1,
|
|
"ipAddress" : "196.40.106.237",
|
|
"location" : "Cape Town, South Africa",
|
|
"network" : "HETZNER (Pty) Ltd (AS 37153)"
|
|
}, {
|
|
"rdns" : "core-router1.cpt2.host-h.net",
|
|
"prefix" : "196.40.96.0/20",
|
|
"responseTime" : 1,
|
|
"hop" : 1,
|
|
"ipAddress" : "196.40.106.237",
|
|
"location" : "Cape Town, South Africa",
|
|
"network" : "HETZNER (Pty) Ltd (AS 37153)"
|
|
} ],
|
|
"pathId" : "4711301366345855606023718047703941305741293841502186803"
|
|
}, {
|
|
"hops" : [ {
|
|
"rdns" : "core-router1.cpt2.host-h.net",
|
|
"prefix" : "196.40.96.0/20",
|
|
"responseTime" : 1,
|
|
"hop" : 1,
|
|
"ipAddress" : "196.40.106.237",
|
|
"location" : "Cape Town, South Africa",
|
|
"network" : "HETZNER (Pty) Ltd (AS 37153)"
|
|
}, {
|
|
"rdns" : "core-router1.cpt2.host-h.net",
|
|
"prefix" : "196.40.96.0/20",
|
|
"responseTime" : 1,
|
|
"hop" : 1,
|
|
"ipAddress" : "196.40.106.237",
|
|
"location" : "Cape Town, South Africa",
|
|
"network" : "HETZNER (Pty) Ltd (AS 37153)"
|
|
} ],
|
|
"pathId" : "4711301366345855606023718047703941305741293841502186803"
|
|
} ],
|
|
"serverIp" : "185.199.108.153",
|
|
"networkProfile" : {
|
|
"previousInterface" : {
|
|
"publicIpAddress" : "84.255.241.1",
|
|
"publicIpRange" : "84.255.241.0-84.255.241.255",
|
|
"ipAddress" : "10.0.0.13",
|
|
"hardwareType" : "wireless",
|
|
"localPrefix" : "10.0.0.0",
|
|
"interfaceName" : "en0",
|
|
"subnetMask" : "255.255.255.0",
|
|
"dnsServers" : [ "8.8.8.8", "8.8.8.4" ]
|
|
},
|
|
"ethernetProfile" : {
|
|
"linkSpeed" : 860
|
|
},
|
|
"publicIpAddress" : "84.255.241.1",
|
|
"publicIpRange" : "84.255.241.0-84.255.241.255",
|
|
"ipAddress" : "10.0.0.13",
|
|
"hardwareType" : "wireless",
|
|
"localPrefix" : "10.0.0.0",
|
|
"proxyProfile" : {
|
|
"method" : "System",
|
|
"proxies" : [ {
|
|
"bypass" : "*.local;169.254/16",
|
|
"proxy" : "<direct>"
|
|
}, {
|
|
"bypass" : "*.local;169.254/16",
|
|
"proxy" : "<direct>"
|
|
} ]
|
|
},
|
|
"subnetMask" : "255.255.255.0",
|
|
"error" : "An operation timed out.",
|
|
"wirelessProfile" : {
|
|
"rssi" : -38,
|
|
"bssid" : "4c:ba:ba:f4:fa:fa",
|
|
"vendor" : "Cisco",
|
|
"txRate" : 130,
|
|
"channel" : 1,
|
|
"noise" : -95,
|
|
"phyMode" : "802.11n",
|
|
"ssid" : "Internet for the masses",
|
|
"quality" : 100
|
|
},
|
|
"interfaceName" : "en0",
|
|
"dnsServers" : [ "8.8.8.8", "8.8.8.4" ],
|
|
"gateway" : "10.0.0.1"
|
|
},
|
|
"aid" : "1234",
|
|
"roundId" : 1384309800
|
|
} ]
|
|
}"""
|
|
|
|
response_loaded_json = json.loads(response_body_json)
|
|
response_from_json = thousandeyes_sdk.endpoint_test_results.models.PathVisDetailTestResults.from_json(response_body_json)
|
|
assert_constructed_model_matches_example_json(response_from_json, response_loaded_json)
|
|
|
|
def test_get_scheduled_test_path_vis_results_models_validation(self) -> None:
|
|
"""Test case for get_scheduled_test_path_vis_results request and response models"""
|
|
|
|
response_body_json = """
|
|
{
|
|
"test" : {
|
|
"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"
|
|
}
|
|
},
|
|
"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"
|
|
} ],
|
|
"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",
|
|
"port" : 80,
|
|
"isEnabled" : true,
|
|
"modifiedDate" : "2022-07-17T22:00:54Z",
|
|
"interval" : 120,
|
|
"testId" : "281474976710706",
|
|
"aid" : "1234",
|
|
"agentSelectorConfig" : {
|
|
"agentSelectorType" : "all-agents",
|
|
"maxMachines" : 10
|
|
},
|
|
"hasPathTraceInSession" : true,
|
|
"testName" : "Test name"
|
|
},
|
|
"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"
|
|
}
|
|
},
|
|
"results" : [ {
|
|
"originalTargetProfile" : {
|
|
"protocol" : "tcp",
|
|
"remotePort" : 80,
|
|
"remoteIpAddress" : "120.98.134.7"
|
|
},
|
|
"server" : "www.google.com:443",
|
|
"agentId" : "861b7557-cd57-4bbb-b648-00bddf88ef49",
|
|
"asnDetails" : {
|
|
"asName" : "ThousandEyes, Inc",
|
|
"asNumber" : 394101
|
|
},
|
|
"vpnProfile" : {
|
|
"vpnClientNetworkRange" : [ "9.88.37.27", "9.88.37.27" ],
|
|
"vpnGatewayAddress" : "120.98.134.7",
|
|
"vpnType" : "cisco-anyconnect",
|
|
"vpnClientAddresses" : [ "184.81.113.85", "13.129.91.62" ]
|
|
},
|
|
"sourcePrefix" : "196.40.96.0/20",
|
|
"systemMetrics" : {
|
|
"cpuUtilization" : {
|
|
"min" : 0.22,
|
|
"median" : 0.61,
|
|
"max" : 0.75,
|
|
"mean" : 0.55,
|
|
"count" : 150,
|
|
"stdDev" : 0.01
|
|
},
|
|
"physicalMemoryTotalBytes" : 1024,
|
|
"startTimeMs" : 1581508857327,
|
|
"physicalMemoryUsedBytes" : {
|
|
"min" : 1.2,
|
|
"median" : 1.85,
|
|
"max" : 2.5,
|
|
"mean" : 1.77,
|
|
"count" : 155,
|
|
"stdDev" : 0.25
|
|
},
|
|
"endTimeMs" : 1581508867333
|
|
},
|
|
"sourceIp" : "196.40.106.237",
|
|
"pathTraces" : [ {
|
|
"numberOfHops" : 15,
|
|
"responseTime" : 1500,
|
|
"ipAddress" : "196.40.106.237",
|
|
"pathId" : "1230899668701775614109128428722974545787322404682781961521"
|
|
}, {
|
|
"numberOfHops" : 15,
|
|
"responseTime" : 1500,
|
|
"ipAddress" : "196.40.106.237",
|
|
"pathId" : "1230899668701775614109128428722974545787322404682781961521"
|
|
} ],
|
|
"serverIp" : "185.199.108.153",
|
|
"networkProfile" : {
|
|
"previousInterface" : {
|
|
"publicIpAddress" : "84.255.241.1",
|
|
"publicIpRange" : "84.255.241.0-84.255.241.255",
|
|
"ipAddress" : "10.0.0.13",
|
|
"hardwareType" : "wireless",
|
|
"localPrefix" : "10.0.0.0",
|
|
"interfaceName" : "en0",
|
|
"subnetMask" : "255.255.255.0",
|
|
"dnsServers" : [ "8.8.8.8", "8.8.8.4" ]
|
|
},
|
|
"ethernetProfile" : {
|
|
"linkSpeed" : 860
|
|
},
|
|
"publicIpAddress" : "84.255.241.1",
|
|
"publicIpRange" : "84.255.241.0-84.255.241.255",
|
|
"ipAddress" : "10.0.0.13",
|
|
"hardwareType" : "wireless",
|
|
"localPrefix" : "10.0.0.0",
|
|
"proxyProfile" : {
|
|
"method" : "System",
|
|
"proxies" : [ {
|
|
"bypass" : "*.local;169.254/16",
|
|
"proxy" : "<direct>"
|
|
}, {
|
|
"bypass" : "*.local;169.254/16",
|
|
"proxy" : "<direct>"
|
|
} ]
|
|
},
|
|
"subnetMask" : "255.255.255.0",
|
|
"error" : "An operation timed out.",
|
|
"wirelessProfile" : {
|
|
"rssi" : -38,
|
|
"bssid" : "4c:ba:ba:f4:fa:fa",
|
|
"vendor" : "Cisco",
|
|
"txRate" : 130,
|
|
"channel" : 1,
|
|
"noise" : -95,
|
|
"phyMode" : "802.11n",
|
|
"ssid" : "Internet for the masses",
|
|
"quality" : 100
|
|
},
|
|
"interfaceName" : "en0",
|
|
"dnsServers" : [ "8.8.8.8", "8.8.8.4" ],
|
|
"gateway" : "10.0.0.1"
|
|
},
|
|
"location" : "San Francisco Area",
|
|
"aid" : "1234",
|
|
"roundId" : 1384309800
|
|
}, {
|
|
"originalTargetProfile" : {
|
|
"protocol" : "tcp",
|
|
"remotePort" : 80,
|
|
"remoteIpAddress" : "120.98.134.7"
|
|
},
|
|
"server" : "www.google.com:443",
|
|
"agentId" : "861b7557-cd57-4bbb-b648-00bddf88ef49",
|
|
"asnDetails" : {
|
|
"asName" : "ThousandEyes, Inc",
|
|
"asNumber" : 394101
|
|
},
|
|
"vpnProfile" : {
|
|
"vpnClientNetworkRange" : [ "9.88.37.27", "9.88.37.27" ],
|
|
"vpnGatewayAddress" : "120.98.134.7",
|
|
"vpnType" : "cisco-anyconnect",
|
|
"vpnClientAddresses" : [ "184.81.113.85", "13.129.91.62" ]
|
|
},
|
|
"sourcePrefix" : "196.40.96.0/20",
|
|
"systemMetrics" : {
|
|
"cpuUtilization" : {
|
|
"min" : 0.22,
|
|
"median" : 0.61,
|
|
"max" : 0.75,
|
|
"mean" : 0.55,
|
|
"count" : 150,
|
|
"stdDev" : 0.01
|
|
},
|
|
"physicalMemoryTotalBytes" : 1024,
|
|
"startTimeMs" : 1581508857327,
|
|
"physicalMemoryUsedBytes" : {
|
|
"min" : 1.2,
|
|
"median" : 1.85,
|
|
"max" : 2.5,
|
|
"mean" : 1.77,
|
|
"count" : 155,
|
|
"stdDev" : 0.25
|
|
},
|
|
"endTimeMs" : 1581508867333
|
|
},
|
|
"sourceIp" : "196.40.106.237",
|
|
"pathTraces" : [ {
|
|
"numberOfHops" : 15,
|
|
"responseTime" : 1500,
|
|
"ipAddress" : "196.40.106.237",
|
|
"pathId" : "1230899668701775614109128428722974545787322404682781961521"
|
|
}, {
|
|
"numberOfHops" : 15,
|
|
"responseTime" : 1500,
|
|
"ipAddress" : "196.40.106.237",
|
|
"pathId" : "1230899668701775614109128428722974545787322404682781961521"
|
|
} ],
|
|
"serverIp" : "185.199.108.153",
|
|
"networkProfile" : {
|
|
"previousInterface" : {
|
|
"publicIpAddress" : "84.255.241.1",
|
|
"publicIpRange" : "84.255.241.0-84.255.241.255",
|
|
"ipAddress" : "10.0.0.13",
|
|
"hardwareType" : "wireless",
|
|
"localPrefix" : "10.0.0.0",
|
|
"interfaceName" : "en0",
|
|
"subnetMask" : "255.255.255.0",
|
|
"dnsServers" : [ "8.8.8.8", "8.8.8.4" ]
|
|
},
|
|
"ethernetProfile" : {
|
|
"linkSpeed" : 860
|
|
},
|
|
"publicIpAddress" : "84.255.241.1",
|
|
"publicIpRange" : "84.255.241.0-84.255.241.255",
|
|
"ipAddress" : "10.0.0.13",
|
|
"hardwareType" : "wireless",
|
|
"localPrefix" : "10.0.0.0",
|
|
"proxyProfile" : {
|
|
"method" : "System",
|
|
"proxies" : [ {
|
|
"bypass" : "*.local;169.254/16",
|
|
"proxy" : "<direct>"
|
|
}, {
|
|
"bypass" : "*.local;169.254/16",
|
|
"proxy" : "<direct>"
|
|
} ]
|
|
},
|
|
"subnetMask" : "255.255.255.0",
|
|
"error" : "An operation timed out.",
|
|
"wirelessProfile" : {
|
|
"rssi" : -38,
|
|
"bssid" : "4c:ba:ba:f4:fa:fa",
|
|
"vendor" : "Cisco",
|
|
"txRate" : 130,
|
|
"channel" : 1,
|
|
"noise" : -95,
|
|
"phyMode" : "802.11n",
|
|
"ssid" : "Internet for the masses",
|
|
"quality" : 100
|
|
},
|
|
"interfaceName" : "en0",
|
|
"dnsServers" : [ "8.8.8.8", "8.8.8.4" ],
|
|
"gateway" : "10.0.0.1"
|
|
},
|
|
"location" : "San Francisco Area",
|
|
"aid" : "1234",
|
|
"roundId" : 1384309800
|
|
} ],
|
|
"startDate" : "2022-07-17T22:00:54Z"
|
|
}"""
|
|
|
|
response_loaded_json = json.loads(response_body_json)
|
|
response_from_json = thousandeyes_sdk.endpoint_test_results.models.PathVisTestResults.from_json(response_body_json)
|
|
assert_constructed_model_matches_example_json(response_from_json, response_loaded_json)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|