Skip to content

Commit

Permalink
🧪 Integrate Hypothesis in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
webknjaz committed Jun 8, 2023
1 parent 1f2cd22 commit b68147b
Show file tree
Hide file tree
Showing 2 changed files with 75 additions and 0 deletions.
1 change: 1 addition & 0 deletions requirements/test.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
-e .
hypothesis >= 6.0
idna==3.4
multidict==6.0.4
pytest==7.3.1
Expand Down
74 changes: 74 additions & 0 deletions tests/test_quoting.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
import pytest
from hypothesis import HealthCheck, assume, example, given, settings
from hypothesis import strategies as st

from yarl._quoting import NO_EXTENSIONS
from yarl._quoting_py import _Quoter as _PyQuoter
Expand Down Expand Up @@ -448,3 +450,75 @@ def test_quoter_path_with_plus(quoter):
def test_unquoter_path_with_plus(unquoter):
s = "/test/x+y%2Bz/:+%2B/"
assert "/test/x+y+z/:++/" == unquoter(unsafe="+")(s)


@example(
# quoter=_PyQuoter,
# unquoter=_PyUnquoter,
text_input="0",
safe="",
unsafe="0",
protected="",
qs=False,
requote=False,
)
@settings(suppress_health_check=(HealthCheck.function_scoped_fixture,))
@given(
text_input=st.text(),
safe=st.text(alphabet=st.characters(max_codepoint=127)),
unsafe=st.text(),
protected=st.text(alphabet=st.characters(max_codepoint=127)),
qs=st.booleans(),
requote=st.booleans(),
)
def test_quote_unquote_parameter(
quoter: _PyQuoter,
unquoter: _PyUnquoter,
safe: str,
unsafe: str,
protected: str,
qs: bool,
requote: bool,
text_input: str,
) -> None:
quote = quoter(safe=safe, protected=protected, qs=qs, requote=requote)
unquote = unquoter(unsafe=unsafe, qs=qs)

text_quoted = quote(text_input)
assume(all(unsafe_char not in text_quoted for unsafe_char in unsafe))
text_output = unquote(text_quoted)

assert text_input == text_output


if not NO_EXTENSIONS and False:
test_quote_unquote_parameter = example(
quoter=_PyQuoter,
unquoter=_CUnquoter,
text_input="0",
safe="",
unsafe="0",
protected="",
qs=False,
requote=False,
)(test_quote_unquote_parameter)
test_quote_unquote_parameter = example(
quoter=_CQuoter,
unquoter=_PyUnquoter,
text_input="0",
safe="",
unsafe="0",
protected="",
qs=False,
requote=False,
)(test_quote_unquote_parameter)
test_quote_unquote_parameter = example(
quoter=_CQuoter,
unquoter=_CUnquoter,
text_input="0",
safe="",
unsafe="0",
protected="",
qs=False,
requote=False,
)(test_quote_unquote_parameter)

0 comments on commit b68147b

Please sign in to comment.