Title: [289039] trunk/WebDriverTests
Revision
289039
Author
carlo...@webkit.org
Date
2022-02-03 03:30:39 -0800 (Thu, 03 Feb 2022)

Log Message

Unreviewed. Add missing file after r288871.

* imported/w3c/webdriver/tests/bidi/session_subscribe/subscribe.py: Added.

Modified Paths

Added Paths

Diff

Modified: trunk/WebDriverTests/ChangeLog (289038 => 289039)


--- trunk/WebDriverTests/ChangeLog	2022-02-03 10:13:42 UTC (rev 289038)
+++ trunk/WebDriverTests/ChangeLog	2022-02-03 11:30:39 UTC (rev 289039)
@@ -1,3 +1,9 @@
+2022-02-03  Carlos Garcia Campos  <cgar...@igalia.com>
+
+        Unreviewed. Add missing file after r288871.
+
+        * imported/w3c/webdriver/tests/bidi/session_subscribe/subscribe.py: Added.
+
 2022-02-01  Carlos Garcia Campos  <cgar...@igalia.com>
 
         Unreviewed. Update W3C WebDriver imported tests.

Added: trunk/WebDriverTests/imported/w3c/webdriver/tests/bidi/session_subscribe/subscribe.py (0 => 289039)


--- trunk/WebDriverTests/imported/w3c/webdriver/tests/bidi/session_subscribe/subscribe.py	                        (rev 0)
+++ trunk/WebDriverTests/imported/w3c/webdriver/tests/bidi/session_subscribe/subscribe.py	2022-02-03 11:30:39 UTC (rev 289039)
@@ -0,0 +1,70 @@
+import asyncio
+
+import pytest
+
+from webdriver.bidi.error import InvalidArgumentException
+
+
+@pytest.mark.asyncio
+async def test_params_empty(bidi_session, send_blocking_command):
+    with pytest.raises(InvalidArgumentException):
+        response = await send_blocking_command("session.subscribe", {})
+
+
+@pytest.mark.asyncio
+@pytest.mark.parametrize("value", [None, True, "foo", 42, {}])
+async def test_params_events_invalid_type(bidi_session, send_blocking_command, value):
+    with pytest.raises(InvalidArgumentException):
+        response = await send_blocking_command("session.subscribe", {"events": value})
+
+
+@pytest.mark.asyncio
+async def test_params_events_empty(bidi_session):
+    response = await bidi_session.session.subscribe(events=[])
+    assert response == {}
+
+
+@pytest.mark.asyncio
+@pytest.mark.parametrize("value", [None, True, 42, [], {}])
+async def test_params_events_value_invalid_type(send_blocking_command, value):
+    with pytest.raises(InvalidArgumentException):
+        response = await send_blocking_command("session.subscribe", {"events": [value]})
+
+
+@pytest.mark.asyncio
+@pytest.mark.parametrize("value", ["", "foo", "foo.bar"])
+async def test_params_events_value_invalid_event_name(send_blocking_command, value):
+    with pytest.raises(InvalidArgumentException):
+        response = await send_blocking_command("session.subscribe", {"events": [value]})
+
+
+@pytest.mark.asyncio
+@pytest.mark.parametrize("value", [None, True, "foo", 42, {}])
+async def test_params_contexts_invalid_type(bidi_session, send_blocking_command, value):
+    with pytest.raises(InvalidArgumentException):
+        response = await send_blocking_command(
+            "session.subscribe",
+            {
+                "events": [],
+                "contexts": value,
+            }
+        )
+
+
+@pytest.mark.asyncio
+async def test_params_contexts_empty(bidi_session):
+    response = await bidi_session.session.subscribe(events=[], contexts=[])
+    assert response == {}
+
+
+@pytest.mark.asyncio
+@pytest.mark.parametrize("value", [None, True, 42, [], {}])
+async def test_params_contexts_value_invalid_type(send_blocking_command, value):
+    with pytest.raises(InvalidArgumentException):
+        response = await send_blocking_command(
+            "session.subscribe",
+            {
+                "events": [],
+                "contexts": [value],
+            }
+        )
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to