[Webkit-unassigned] [Bug 279079] [WebDriver][GLIB] Cookies tests failing to store cookies
bugzilla-daemon at webkit.org
bugzilla-daemon at webkit.org
Wed Sep 4 22:17:25 PDT 2024
https://bugs.webkit.org/show_bug.cgi?id=279079
--- Comment #1 from Lauro Moura <lmoura at igalia.com> ---
Other tests affected:
imported/selenium/py/test/selenium/webdriver/common/cookie_tests.py::test_add_cookie[wpewebkit]
imported/selenium/py/test/selenium/webdriver/common/cookie_tests.py::test_get_all_cookies[wpewebkit]
imported/selenium/py/test/selenium/webdriver/common/cookie_tests.py::test_should_not_delete_cookies_with_asimilar_name[wpewebkit]
For these, look like they're also triggering an issue in the teardown, by issuing "delete session" after the failure, which in turn is triggering an infinite loop of failures in "delete cookies" calls:
For example:
selenium.webdriver.remote.remote_connection: [DEBUG] Finished Request
selenium.webdriver.remote.remote_connection: [DEBUG] POST http://localhost:49781/session/3a9a4f07-df91-40ba-9fa6-78e3ebbdc589/url {'url': 'http://127.0.0.1:8001/simpleTest.html'}
urllib3.connectionpool: [DEBUG] http://localhost:49781 "POST /session/3a9a4f07-df91-40ba-9fa6-78e3ebbdc589/url HTTP/1.1" 200 14
selenium.webdriver.remote.remote_connection: [DEBUG] Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Server': 'WebKitWebDriver', 'Date': 'Thu, 05 Sep 2024 05:08:10 GMT', 'Content-Type': 'application/json; charset=utf-8', 'Cache-Control': 'no-cache', 'Content-Length': '14'})
selenium.webdriver.remote.remote_connection: [DEBUG] Finished Request
selenium.webdriver.remote.remote_connection: [DEBUG] POST http://localhost:49781/session/3a9a4f07-df91-40ba-9fa6-78e3ebbdc589/cookie {'cookie': {'name': 'foo', 'value': 'bar', 'domain': '127.0.0.1', 'path': '/', 'secure': False}}
urllib3.connectionpool: [DEBUG] http://localhost:49781 "POST /session/3a9a4f07-df91-40ba-9fa6-78e3ebbdc589/cookie HTTP/1.1" 200 14
selenium.webdriver.remote.remote_connection: [DEBUG] Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Server': 'WebKitWebDriver', 'Date': 'Thu, 05 Sep 2024 05:08:11 GMT', 'Content-Type': 'application/json; charset=utf-8', 'Cache-Control': 'no-cache', 'Content-Length': '14'})
selenium.webdriver.remote.remote_connection: [DEBUG] Finished Request
selenium.webdriver.remote.remote_connection: [DEBUG] POST http://localhost:49781/session/3a9a4f07-df91-40ba-9fa6-78e3ebbdc589/execute/sync {'script': 'return document.cookie', 'args': []}
urllib3.connectionpool: [DEBUG] http://localhost:49781 "POST /session/3a9a4f07-df91-40ba-9fa6-78e3ebbdc589/execute/sync HTTP/1.1" 200 12
selenium.webdriver.remote.remote_connection: [DEBUG] Remote response: status=200 | data={"value":""} | headers=HTTPHeaderDict({'Server': 'WebKitWebDriver', 'Date': 'Thu, 05 Sep 2024 05:08:11 GMT', 'Content-Type': 'application/json; charset=utf-8', 'Cache-Control': 'no-cache', 'Content-Length': '12'})
selenium.webdriver.remote.remote_connection: [DEBUG] Finished Request
FAILEDselenium.webdriver.remote.remote_connection: [DEBUG] DELETE http://localhost:49781/session/3a9a4f07-df91-40ba-9fa6-78e3ebbdc589 {}
urllib3.connectionpool: [DEBUG] http://localhost:49781 "DELETE /session/3a9a4f07-df91-40ba-9fa6-78e3ebbdc589 HTTP/1.1" 200 14
selenium.webdriver.remote.remote_connection: [DEBUG] Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Server': 'WebKitWebDriver', 'Date': 'Thu, 05 Sep 2024 05:08:11 GMT', 'Content-Type': 'application/json; charset=utf-8', 'Cache-Control': 'no-cache', 'Content-Length': '14'})
selenium.webdriver.remote.remote_connection: [DEBUG] Finished Request
selenium.webdriver.remote.remote_connection: [DEBUG] DELETE http://localhost:49781/session/3a9a4f07-df91-40ba-9fa6-78e3ebbdc589/cookie {}
urllib3.connectionpool: [DEBUG] Starting new HTTP connection (1): localhost:49781
urllib3.util.retry: [DEBUG] Incremented Retry for (url='/session/3a9a4f07-df91-40ba-9fa6-78e3ebbdc589/cookie'): Retry(total=2, connect=None, read=None, redirect=None, status=None)
urllib3.connectionpool: [WARNING] Retrying (Retry(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7cd93854ca50>: Failed to establish a new connection: [Errno 111] Connection refused')': /session/3a9a4f07-df91
-40ba-9fa6-78e3ebbdc589/cookie
urllib3.connectionpool: [DEBUG] Starting new HTTP connection (2): localhost:49781
urllib3.util.retry: [DEBUG] Incremented Retry for (url='/session/3a9a4f07-df91-40ba-9fa6-78e3ebbdc589/cookie'): Retry(total=1, connect=None, read=None, redirect=None, status=None)
urllib3.connectionpool: [WARNING] Retrying (Retry(total=1, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7cd9385b1150>: Failed to establish a new connection: [Errno 111] Connection refused')': /session/3a9a4f07-df91
-40ba-9fa6-78e3ebbdc589/cookie
urllib3.connectionpool: [DEBUG] Starting new HTTP connection (3): localhost:49781
urllib3.util.retry: [DEBUG] Incremented Retry for (url='/session/3a9a4f07-df91-40ba-9fa6-78e3ebbdc589/cookie'): Retry(total=0, connect=None, read=None, redirect=None, status=None)
urllib3.connectionpool: [WARNING] Retrying (Retry(total=0, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7cd9385b25d0>: Failed to establish a new connection: [Errno 111] Connection refused')': /session/3a9a4f07-df91
-40ba-9fa6-78e3ebbdc589/cookie
urllib3.connectionpool: [DEBUG] Starting new HTTP connection (4): localhost:49781
--
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.webkit.org/pipermail/webkit-unassigned/attachments/20240905/d72627b7/attachment.htm>
More information about the webkit-unassigned
mailing list