-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ab4d184
commit f12ac86
Showing
3 changed files
with
21 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ | |
|
||
|
||
def install_ca(): | ||
run( | ||
run([ | ||
str(get_asset_path("grooveproxy")), | ||
"install-ca", | ||
) | ||
]) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,32 @@ | ||
import pytest | ||
from playwright._impl._api_types import Error as PlaywrightError | ||
|
||
from groove.proxy import ProxyFailureError | ||
from groove.proxy import ProxyFailureError, Groove | ||
|
||
|
||
@pytest.mark.xfail(reason="TLS certificate blocked", raises=ProxyFailureError) | ||
def test_tls_addons(proxy, context): | ||
def test_tls_addons(proxy: Groove, context): | ||
""" | ||
Test TLS addons | ||
""" | ||
page = context.new_page() | ||
|
||
proxy.tape_start() | ||
|
||
try: | ||
page.goto("https://www.google.com:443/") | ||
except PlaywrightError as e: | ||
if "net::ERR_EMPTY_RESPONSE" in e.message: | ||
raise ProxyFailureError() | ||
|
||
# Get the page | ||
tape_session = proxy.tape_get() | ||
|
||
assert len(tape_session.records) > 1 | ||
|
||
main_page = [ | ||
record | ||
for record in tape_session.records | ||
if record.request.url.strip("/") == "https://www.google.com:443" | ||
] | ||
|
||
assert len(main_page[0].response.body) > 0 |