summaryrefslogtreecommitdiff
path: root/tests/test_natsort_key.py
blob: 6b56bb1e7962fe35dc03d775e1a06b0a9f7068ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# -*- coding: utf-8 -*-
"""These test the utils.py functions."""

from hypothesis import given
from hypothesis.strategies import binary, floats, integers, lists, text
from natsort.utils import natsort_key


def str_func(x):
    if isinstance(x, str):
        return x
    else:
        raise TypeError("Not a str!")


def fail(_):
    raise AssertionError("This should never be reached!")


@given(floats(allow_nan=False) | integers())
def test_natsort_key_with_numeric_input_takes_number_path(x):
    assert natsort_key(x, None, str_func, fail, lambda y: y) is x


@given(binary().filter(bool))
def test_natsort_key_with_bytes_input_takes_bytes_path(x):
    assert natsort_key(x, None, str_func, lambda y: y, fail) is x


@given(text())
def test_natsort_key_with_text_input_takes_string_path(x):
    assert natsort_key(x, None, str_func, fail, fail) is x


@given(lists(elements=text(), min_size=1, max_size=10))
def test_natsort_key_with_nested_input_takes_nested_path(x):
    assert natsort_key(x, None, str_func, fail, fail) == tuple(x)


@given(text())
def test_natsort_key_with_key_argument_applies_key_before_processing(x):
    assert natsort_key(x, len, str_func, fail, lambda y: y) == len(x)