import pytest
from webdriver.bidi.modules.script import ContextTarget

pytestmark = pytest.mark.asyncio


async def test_contexts(bidi_session, new_tab, top_context,
        get_current_timezone,
        default_timezone, some_timezone):
    # Set timezone override.
    await bidi_session.emulation.set_timezone_override(
        contexts=[new_tab["context"]],
        timezone=some_timezone
    )

    # Assert timezone emulated only in the required context.
    assert await get_current_timezone(new_tab) == some_timezone
    assert await get_current_timezone(top_context) == default_timezone

    # Reset timezone override.
    await bidi_session.emulation.set_timezone_override(
        contexts=[new_tab["context"]],
        timezone=None)

    # Assert the timezone is restored to the initial one.
    assert await get_current_timezone(new_tab) == default_timezone
    assert await get_current_timezone(top_context) == default_timezone


async def test_multiple_contexts(bidi_session, new_tab, get_current_timezone,
        default_timezone, some_timezone):
    new_context = await bidi_session.browsing_context.create(type_hint="tab")

    # Set timezone override.
    await bidi_session.emulation.set_timezone_override(
        contexts=[new_tab["context"], new_context["context"]],
        timezone=some_timezone
    )

    # Assert timezone emulated in all the required contexts.
    assert await get_current_timezone(new_tab) == some_timezone
    assert await get_current_timezone(new_context) == some_timezone

    # Reset timezone override.
    await bidi_session.emulation.set_timezone_override(
        contexts=[new_tab["context"], new_context["context"]],
        timezone=None)

    # Assert the timezone is restored to the initial one.
    assert await get_current_timezone(new_tab) == default_timezone
    assert await get_current_timezone(new_context) == default_timezone


@pytest.mark.parametrize("domain", ["", "alt"], ids=["same_origin", "cross_origin"])
async def test_iframe(
    bidi_session,
    new_tab,
    domain,
    inline,
    get_current_timezone,
    some_timezone,
    another_timezone,
    iframe
):
    # Set timezone override.
    await bidi_session.emulation.set_timezone_override(
        contexts=[new_tab["context"]],
        timezone=some_timezone
    )

    # Assert timezone emulated in the required context.
    assert await get_current_timezone(new_tab) == some_timezone

    page_url = inline(iframe("<div id='in-iframe'>foo</div>", domain=domain))

    # Load the page with iframes.
    await bidi_session.browsing_context.navigate(
        context=new_tab["context"],
        url=page_url,
        wait="complete",
    )

    contexts = await bidi_session.browsing_context.get_tree(root=new_tab["context"])
    iframe = contexts[0]["children"][0]

    # Assert timezone is emulated in the iframe context.
    assert await get_current_timezone(iframe) == some_timezone

    sandbox_name = "test"
    # Assert timezone is emulated in the newly created sandbox in the iframe context.
    assert await get_current_timezone(iframe, sandbox_name) == some_timezone

    # Set another timezone override.
    await bidi_session.emulation.set_timezone_override(
        contexts=[new_tab["context"]], timezone=another_timezone
    )

    # Assert timezone is emulated in the iframe context.
    assert await get_current_timezone(iframe) == another_timezone
    # Assert timezone is emulated in the existing sandbox in the iframe context.
    assert await get_current_timezone(iframe, sandbox_name) == another_timezone


async def test_timezone_override_applies_to_new_sandbox(
    bidi_session, new_tab, some_timezone, get_current_timezone
):
    await bidi_session.emulation.set_timezone_override(
        contexts=[new_tab["context"]], timezone=some_timezone
    )

    # Make sure the override got applied to the newly created sandbox.
    assert await get_current_timezone(new_tab, "test") == some_timezone


async def test_timezone_override_applies_to_existing_sandbox(
    bidi_session,
    new_tab,
    default_timezone,
    another_timezone,
    get_current_timezone
):
    sandbox_name = "test"

    # Create a sandbox.
    assert await get_current_timezone(new_tab, sandbox_name) == default_timezone

    await bidi_session.emulation.set_timezone_override(
        contexts=[new_tab["context"]], timezone=another_timezone
    )

    # Make sure the override got applied to the existing sandbox.
    assert await get_current_timezone(new_tab, sandbox_name) == another_timezone
