summaryrefslogtreecommitdiffstats
path: root/testing/webcompat/interventions/tests/test_1631811_datastudio.py
blob: adb68d9e2055ad1daba95b2001eae363a039381c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
import pytest

# the problem is intermittent, so we have to try loading the page a few times
# and check whether a SecurityError was thrown by any of them, and that text
# in the iframe didn't load in order to be relatively sure that it failed.
# The problem seems even more intermittent on Android, so not running there.


URL = "https://ageor.dipot.com/2020/03/Covid-19-in-Greece.html"
FRAME_FINAL_URL = "lookerstudio.google.com/embed/reporting/"
FRAME_TEXT = "Coranavirus SARS-CoV-2 (Covid-19) in Greece"
FAIL_CONSOLE_MSG = "SecurityError"


async def checkFrameFailsToLoadForAnyAttempt(client, timeout=10):
    for i in range(5):
        promise = await client.promise_frame_listener(FRAME_FINAL_URL, timeout=timeout)
        await client.navigate(URL, wait="none")
        frame = await promise
        if frame is None:
            return True
        if not await frame.await_text(FRAME_TEXT, is_displayed=True, timeout=5):
            return True
        if await client.is_console_message(FAIL_CONSOLE_MSG):
            return True
    return False


@pytest.mark.skip_platforms("android")
@pytest.mark.asyncio
@pytest.mark.with_interventions
async def test_enabled(client):
    assert not await checkFrameFailsToLoadForAnyAttempt(client, timeout=None)


@pytest.mark.skip_platforms("android")
@pytest.mark.asyncio
@pytest.mark.without_interventions
async def test_disabled(client):
    assert await checkFrameFailsToLoadForAnyAttempt(client)