# coding: utf-8 """ Test Results API Get test result metrics for Cloud and Enterprise Agent tests. The version of the OpenAPI document: 7.0.4 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. """ # noqa: E501 import unittest from thousandeyes_sdk.test_results.models.web_transaction_page_detail_test_result import WebTransactionPageDetailTestResult class TestWebTransactionPageDetailTestResult(unittest.TestCase): """WebTransactionPageDetailTestResult unit test stubs""" def setUp(self): pass def tearDown(self): pass def make_instance(self, include_optional) -> WebTransactionPageDetailTestResult: """Test WebTransactionPageDetailTestResult include_option is a boolean, when False only required params are included, when True both required and optional params are included """ # uncomment below to create an instance of `WebTransactionPageDetailTestResult` """ model = WebTransactionPageDetailTestResult() if include_optional: return WebTransactionPageDetailTestResult( var_date = '2022-07-17T22:00:54Z', round_id = 1384309800, links = None, start_time = 1384309800, end_time = 1384309800, agent = thousandeyes_sdk.test_results.models.agent.Agent( agent_id = '281474976710706', agent_name = 'thousandeyes-stg-va-254', country_id = 'US', location = 'San Francisco Bay Area', ), component_errors = 5, transaction_time = 2379, error_type = 'None', error_details = 'Connection error', markers = [ thousandeyes_sdk.test_results.models.marker.Marker( name = 'SearchForWebdriver', duration = 56, ) ], pages = [ thousandeyes_sdk.test_results.models.page.Page( page_num = 0, page_name = 'Google', component_count = 136, error_count = 0, duration = 1117.5660001039505, ) ], har = {"log":{"creator":{"name":"ThousandEyes DB Exporter"},"entries":[{"pageref":"page_0","request":{"headers":[{"name":":authority","value":"google.com"},{"name":":method","value":"GET"},{"name":":path","value":"/"},{"name":":scheme","value":"https"},{"name":"accept","value":"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8"},{"name":"accept-encoding","value":"gzip, deflate, br"},{"name":"accept-language","value":"en-US,en;q=0.9"},{"name":"upgrade-insecure-requests","value":"1"},{"name":"user-agent","value":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.83 Safari/537.36"},{"name":"x-thousandeyes-agent","value":"yes"}],"method":"GET","url":"https://google.com/"},"response":{"bodySize":220,"content":{"mimeType":"text/html","size":220},"headers":[{"name":"alt-svc","value":"quic=\":443\"; ma=2592000; v=\"46,43\",h3-Q050=\":443\"; ma=2592000,h3-Q049=\":443\"; ma=2592000,h3-Q048=\":443\"; ma=2592000,h3-Q046=\":443\"; ma=2592000,h3-Q043=\":443\"; ma=2592000"},{"name":"cache-control","value":"public, max-age=2592000"},{"name":"content-length","value":"220"},{"name":"content-type","value":"text/html; charset=UTF-8"},{"name":"date","value":"Fri, 15 Nov 2019 16:41:54 GMT"},{"name":"expires","value":"Sun, 15 Dec 2019 16:41:54 GMT"},{"name":"location","value":"https://www.google.com/"},{"name":"server","value":"gws"},{"name":"status","value":"301"},{"name":"x-frame-options","value":"SAMEORIGIN"},{"name":"x-xss-protection","value":"0"}],"headersSize":471,"redirectURL":"","status":301,"statusText":"MOVED_PERMANENTLY"},"serverIPAddress":"172.217.6.110","startedDateTime":"2019-11-15T16:41:54.798Z","time":71,"timings":{"blocked":2,"connect":16,"dns":1,"receive":1,"send":0,"ssl":14,"wait":50}},{"pageref":"page_0","request":{"headers":[{"name":":authority","value":"www.google.com"},{"name":":method","value":"GET"},{"name":":path","value":"/"},{"name":":scheme","value":"https"},{"name":"accept","value":"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8"},{"name":"accept-encoding","value":"gzip, deflate, br"},{"name":"accept-language","value":"en-US,en;q=0.9"},{"name":"upgrade-insecure-requests","value":"1"},{"name":"user-agent","value":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.83 Safari/537.36"},{"name":"x-thousandeyes-agent","value":"yes"}],"method":"GET","url":"https://www.google.com/"},"response":{"bodySize":65214,"content":{"mimeType":"text/html","size":225039},"headers":[{"name":"alt-svc","value":"quic=\":443\"; ma=2592000; v=\"46,43\",h3-Q050=\":443\"; ma=2592000,h3-Q049=\":443\"; ma=2592000,h3-Q048=\":443\"; ma=2592000,h3-Q046=\":443\"; ma=2592000,h3-Q043=\":443\"; ma=2592000"},{"name":"cache-control","value":"private, max-age=0"},{"name":"content-encoding","value":"br"},{"name":"content-length","value":"65214"},{"name":"content-type","value":"text/html; charset=UTF-8"},{"name":"date","value":"Fri, 15 Nov 2019 16:41:54 GMT"},{"name":"expires","value":"-1"},{"name":"p3p","value":"CP=\"This is not a P3P policy! See g.co/p3phelp for more info.\""},{"name":"server","value":"gws"},{"name":"set-cookie","value":"(removed)"},{"name":"status","value":"200"},{"name":"strict-transport-security","value":"max-age=31536000"},{"name":"x-frame-options","value":"SAMEORIGIN"},{"name":"x-xss-protection","value":"0"}],"headersSize":915,"redirectURL":"","status":200,"statusText":"OK"},"serverIPAddress":"172.217.4.196","startedDateTime":"2019-11-15T16:41:54.870Z","time":182,"timings":{"blocked":2,"connect":4,"dns":0,"receive":58,"send":0,"ssl":2,"wait":118}}],"pages":[{"id":"page_0","pageTimings":{"onContentLoad":367,"onLoad":737},"responseCode":0,"startedDateTime":"2019-11-15T16:41:54.796Z","title":"Google"}],"version":"1.2"}} ) else: return WebTransactionPageDetailTestResult( ) """ def testWebTransactionPageDetailTestResult(self): """Test WebTransactionPageDetailTestResult""" # inst_req_only = self.make_instance(include_optional=False) # inst_req_and_optional = self.make_instance(include_optional=True) if __name__ == '__main__': unittest.main()