aboutsummaryrefslogtreecommitdiffstats
path: root/test/pathod/test_utils.py
blob: 8026a5762cb384502ebb50c9dfcf6ea052eb3c81 (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
from pathod import utils
import tutils

import six


def test_membool():
    m = utils.MemBool()
    assert not m.v
    assert m(1)
    assert m.v == 1
    assert m(2)
    assert m.v == 2


def test_parse_size():
    assert utils.parse_size("100") == 100
    assert utils.parse_size("100k") == 100 * 1024
    tutils.raises("invalid size spec", utils.parse_size, "foo")
    tutils.raises("invalid size spec", utils.parse_size, "100kk")


def test_parse_anchor_spec():
    assert utils.parse_anchor_spec("foo=200") == ("foo", "200")
    assert utils.parse_anchor_spec("foo") is None


def test_data_path():
    tutils.raises(ValueError, utils.data.path, "nonexistent")


def test_escape_unprintables():
    s = bytes(range(256))
    if six.PY2:
        s = "".join([chr(i) for i in range(255)])
    e = utils.escape_unprintables(s)
    assert e.encode('ascii')
    assert "PATHOD_MARKER" not in e