2012-04-28 00:42:03 +00:00
|
|
|
from libpathod import utils
|
2012-06-09 03:08:51 +00:00
|
|
|
import tutils
|
2012-04-28 00:42:03 +00:00
|
|
|
|
2013-01-05 02:25:09 +00:00
|
|
|
|
|
|
|
def test_membool():
|
|
|
|
m = utils.MemBool()
|
|
|
|
assert not m.v
|
|
|
|
assert m(1)
|
|
|
|
assert m.v == 1
|
|
|
|
assert m(2)
|
|
|
|
assert m.v == 2
|
|
|
|
|
|
|
|
|
2012-07-23 03:03:56 +00:00
|
|
|
def test_parse_size():
|
|
|
|
assert utils.parse_size("100") == 100
|
|
|
|
assert utils.parse_size("100k") == 100 * 1024
|
2015-05-30 00:03:13 +00:00
|
|
|
tutils.raises("invalid size spec", utils.parse_size, "foo")
|
|
|
|
tutils.raises("invalid size spec", utils.parse_size, "100kk")
|
2012-07-23 03:03:56 +00:00
|
|
|
|
2012-04-28 00:42:03 +00:00
|
|
|
|
2012-06-09 03:08:51 +00:00
|
|
|
def test_parse_anchor_spec():
|
2012-06-24 04:38:32 +00:00
|
|
|
assert utils.parse_anchor_spec("foo=200") == ("foo", "200")
|
2015-05-30 05:43:01 +00:00
|
|
|
assert utils.parse_anchor_spec("foo") is None
|
2012-04-28 00:42:03 +00:00
|
|
|
|
|
|
|
|
2012-06-09 03:08:51 +00:00
|
|
|
def test_data_path():
|
|
|
|
tutils.raises(ValueError, utils.data.path, "nonexistent")
|
2012-07-23 04:39:25 +00:00
|
|
|
|
|
|
|
|
2012-07-24 22:44:21 +00:00
|
|
|
def test_inner_repr():
|
|
|
|
assert utils.inner_repr("\x66") == "\x66"
|
|
|
|
assert utils.inner_repr(u"foo") == "foo"
|
|
|
|
|
|
|
|
|
2012-07-23 04:39:25 +00:00
|
|
|
def test_escape_unprintables():
|
|
|
|
s = "".join([chr(i) for i in range(255)])
|
|
|
|
e = utils.escape_unprintables(s)
|
|
|
|
assert e.encode('ascii')
|
|
|
|
assert not "PATHOD_MARKER" in e
|