summaryrefslogtreecommitdiffstats
path: root/testing/webcompat/interventions/tests/test_1610344_directv_com_co.py
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--testing/webcompat/interventions/tests/test_1610344_directv_com_co.py47
1 files changed, 47 insertions, 0 deletions
diff --git a/testing/webcompat/interventions/tests/test_1610344_directv_com_co.py b/testing/webcompat/interventions/tests/test_1610344_directv_com_co.py
new file mode 100644
index 0000000000..d832eb33d2
--- /dev/null
+++ b/testing/webcompat/interventions/tests/test_1610344_directv_com_co.py
@@ -0,0 +1,47 @@
+import pytest
+
+URL = "https://www.directv.com.co/"
+IFRAME_CSS = "#main-iframe"
+INCOMPATIBLE_CSS = ".browser-compatible.compatible.incompatible"
+BLOCKED_TEXT = "blocked by the security rules"
+DENIED_TEXT = "not available in your region"
+FORBIDDEN_TEXT = "403 Forbidden"
+
+
+async def check_unsupported_visibility(client, should_show):
+ await client.navigate(URL)
+
+ # their region-block page sometimes wraps the content in an iframe
+ frame = client.find_css(IFRAME_CSS)
+ if frame:
+ client.switch_frame(frame)
+
+ denied, blocked, forbidden, incompatible = client.await_first_element_of(
+ [
+ client.text(DENIED_TEXT),
+ client.text(BLOCKED_TEXT),
+ client.text(FORBIDDEN_TEXT),
+ client.css(INCOMPATIBLE_CSS),
+ ]
+ )
+
+ if denied or blocked or forbidden:
+ pytest.skip("Region-locked, cannot test. Try using a VPN set to USA.")
+ return
+
+ shown = client.is_displayed(incompatible)
+ assert (should_show and shown) or (not should_show and not shown)
+
+
+@pytest.mark.skip_platforms("android")
+@pytest.mark.asyncio
+@pytest.mark.with_interventions
+async def test_enabled(client):
+ await check_unsupported_visibility(client, should_show=False)
+
+
+@pytest.mark.skip_platforms("android")
+@pytest.mark.asyncio
+@pytest.mark.without_interventions
+async def test_disabled(client):
+ await check_unsupported_visibility(client, should_show=True)