debian-python-anyjson/tests/test_implementations.py

58 lines
1.6 KiB
Python

from nose.tools import assert_raises
import anyjson
modnames = [e[0] for e in anyjson._modules]
def test_default_serialization():
assert anyjson.dumps([1,2,3]).replace(" ", "") == "[1,2,3]"
assert anyjson.serialize([1,2,3]).replace(" ", "") == "[1,2,3]"
def test_default_deserialization():
assert anyjson.loads("[1,2,3]") == [1,2,3]
assert anyjson.deserialize("[1,2,3]") == [1,2,3]
def test_forced_serialization():
for name in modnames:
try:
anyjson.force_implementation(name)
except ImportError:
continue # module can't be tested, try next
assert anyjson.dumps([1,2,3]).replace(" ", "") == "[1,2,3]"
assert anyjson.serialize([1,2,3]).replace(" ", "") == "[1,2,3]"
def test_forced_deserialization():
for name in modnames:
try:
anyjson.force_implementation(name)
except ImportError:
continue # module can't be tested, try next
assert anyjson.loads("[1,2,3]") == [1,2,3]
assert anyjson.deserialize("[1,2,3]") == [1,2,3]
def test_exceptions():
for name in modnames:
try:
anyjson.force_implementation(name)
except ImportError:
continue # module can't be tested, try next
assert_raises(TypeError, anyjson.dumps, [object()])
assert_raises(TypeError, anyjson.serialize, [object()])
assert_raises(ValueError, anyjson.loads, "[")
assert_raises(ValueError, anyjson.deserialize, "[")
def test_json_loads_unicode():
try:
anyjson.force_implementation("json")
except ImportError:
return
assert "foo" in anyjson.loads(u'{"foo": "bar"}')