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 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62
|
import simplejson
def test_listrecursion():
x = []
x.append(x)
try:
simplejson.dumps(x)
except ValueError:
pass
else:
assert False, "didn't raise ValueError on list recursion"
x = []
y = [x]
x.append(y)
try:
simplejson.dumps(x)
except ValueError:
pass
else:
assert False, "didn't raise ValueError on alternating list recursion"
y = []
x = [y, y]
# ensure that the marker is cleared
simplejson.dumps(x)
def test_dictrecursion():
x = {}
x["test"] = x
try:
simplejson.dumps(x)
except ValueError:
pass
else:
assert False, "didn't raise ValueError on dict recursion"
x = {}
y = {"a": x, "b": x}
# ensure that the marker is cleared
simplejson.dumps(x)
class TestObject:
pass
class RecursiveJSONEncoder(simplejson.JSONEncoder):
recurse = False
def default(self, o):
if o is TestObject:
if self.recurse:
return [TestObject]
else:
return 'TestObject'
simplejson.JSONEncoder.default(o)
def test_defaultrecursion():
enc = RecursiveJSONEncoder()
assert enc.encode(TestObject) == '"TestObject"'
enc.recurse = True
try:
enc.encode(TestObject)
except ValueError:
pass
else:
assert False, "didn't raise ValueError on default recursion"
|