from copy import deepcopy

import pytest
from tests.bidi.browsing_context import navigate_and_assert

pytestmark = pytest.mark.asyncio


async def test_insecure_certificate(
    configuration, url, create_custom_profile, geckodriver
):
    # Create a fresh profile without any item in the certificate storage so that
    # loading a HTTPS page will cause an insecure certificate error
    custom_profile = create_custom_profile(clone=False)

    # Capability matching not implemented yet for WebDriver BiDi (bug 1713784)
    config = deepcopy(configuration)
    config["capabilities"]["acceptInsecureCerts"] = False

    driver = geckodriver(config=config, profile=custom_profile)
    driver.new_session()

    bidi_session = driver.session.bidi_session
    await bidi_session.start()

    contexts = await bidi_session.browsing_context.get_tree(max_depth=0)
    await navigate_and_assert(
        bidi_session,
        contexts[0],
        url("/common/blank.html", protocol="https"),
        expected_error=True,
    )

    # If the error page hasn't fully loaded yet, running a BiDi command
    # in most of the cases will trigger an error like:
    #     `AbortError: Actor 'MessageHandlerFrame' destroyed before query`
    result = await bidi_session.browsing_context.locate_nodes(
        context=contexts[0]["context"],
        locator={"type": "css", "value": "body"},
    )
    assert len(result["nodes"]) > 0


async def test_invalid_content_encoding(bidi_session, new_tab, inline):
    await navigate_and_assert(
        bidi_session,
        new_tab,
        f"{inline('<div>foo')}&pipe=header(Content-Encoding,gzip)",
        expected_error=True,
    )

    # If the error page hasn't fully loaded yet, running a BiDi command
    # in most of the cases will trigger an error like:
    #     `AbortError: Actor 'MessageHandlerFrame' destroyed before query`
    result = await bidi_session.browsing_context.locate_nodes(
        context=new_tab["context"],
        locator={"type": "css", "value": "body"},
    )
    assert len(result["nodes"]) > 0
