Skip to content

Commit

Permalink
adapt tests in OS specifics behaviors (err msg)
Browse files Browse the repository at this point in the history
  • Loading branch information
Ousret committed Mar 20, 2024
1 parent 1ff2be7 commit 8037485
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 23 deletions.
6 changes: 1 addition & 5 deletions tests/test_meta.py
Original file line number Diff line number Diff line change
@@ -1,16 +1,13 @@
import pytest

from httpie.models import ELAPSED_TIME_LABEL, ELAPSED_DNS_RESOLUTION_LABEL, ELAPSED_ESTABLISH_CONN, ELAPSED_REQUEST_SEND, ELAPSED_TLS_HANDSHAKE
from httpie.models import ELAPSED_TIME_LABEL
from httpie.output.formatters.colors import PIE_STYLE_NAMES
from .utils import http, MockEnvironment, COLOR


def test_meta_elapsed_time(httpbin):
r = http('--meta', httpbin + '/delay/1')
assert f'{ELAPSED_TIME_LABEL}: 1.' in r
assert ELAPSED_DNS_RESOLUTION_LABEL in r
assert ELAPSED_ESTABLISH_CONN in r
assert ELAPSED_REQUEST_SEND in r


def test_meta_extended_tls(remote_httpbin_secure):
Expand All @@ -21,7 +18,6 @@ def test_meta_extended_tls(remote_httpbin_secure):
assert 'Certificate validity' in r
assert 'Issuer' in r
assert 'Revocation status' in r
assert ELAPSED_TLS_HANDSHAKE in r


@pytest.mark.parametrize('style', ['auto', 'fruity', *PIE_STYLE_NAMES])
Expand Down
24 changes: 7 additions & 17 deletions tests/test_network.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,19 +10,21 @@ def test_ensure_interface_parameter(httpbin):
tolerate_error_exit_status=True
)

assert "Cannot assign requested address" in r.stderr
assert r.exit_status != 0
assert "assign requested address" in r.stderr or "The requested address is not valid in its context" in r.stderr


def test_ensure_local_port_parameter(httpbin):
"""We ensure that HTTPie properly wire local-port by passing a port that
require elevated privilege. thus, we expect an error."""
does not exist. thus, we expect an error."""
r = http(
"--local-port=89",
"--local-port=70000",
httpbin + "/get",
tolerate_error_exit_status=True
)

assert "Permission denied" in r.stderr
assert r.exit_status != 0
assert "port must be 0-65535" in r.stderr


def test_ensure_interface_and_port_parameters(httpbin):
Expand All @@ -32,17 +34,5 @@ def test_ensure_interface_and_port_parameters(httpbin):
httpbin + "/get",
)

assert r.exit_status == 0
assert HTTP_OK in r


def test_ensure_ipv6_toggle_parameter(httpbin):
"""This test is made to ensure we are effectively passing the IPv6-only flag to
Niquests. Our test server listen exclusively on IPv4."""
r = http(
"-6",
httpbin + "/get",
tolerate_error_exit_status=True,
)

assert r.exit_status != 0
assert "Name or service not known" in r.stderr
2 changes: 1 addition & 1 deletion tests/test_resolver.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@ def test_ensure_override_resolver_used(remote_httpbin):
tolerate_error_exit_status=True
)

assert "Request timed out" in r.stderr
assert "Request timed out" in r.stderr or "A socket operation was attempted to an unreachable network" in r.stderr

0 comments on commit 8037485

Please sign in to comment.