git.fiddlerwoaroof.com
jsonrpc/tests/test_jsonutil.py
d149e5b8
 #  
 #  Copyright (c) 2011 Edward Langley
 #  All rights reserved.
 #  
 #  Redistribution and use in source and binary forms, with or without
 #  modification, are permitted provided that the following conditions
 #  are met:
 #  
 #  Redistributions of source code must retain the above copyright notice,
 #  this list of conditions and the following disclaimer.
 #  
 #  Redistributions in binary form must reproduce the above copyright
 #  notice, this list of conditions and the following disclaimer in the
 #  documentation and/or other materials provided with the distribution.
 #  
 #  Neither the name of the project's author nor the names of its
 #  contributors may be used to endorse or promote products derived from
 #  this software without specific prior written permission.
 #  
 #  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 #  "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 #  LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
 #  FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
 #  HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
 #  SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
 #  TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
 #  PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
 #  LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
 #  NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
 #  SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 #  
 #
 import json
cc11cbe4
 from twisted.trial import unittest
d149e5b8
 import collections
 
 from jsonrpc import jsonutil
 
 class testobj(object):
 	value = 'This is the json value'
 	def json_equivalent(self): return self.value
 
8445cb9a
 class TestJSONUTIL(unittest.TestCase):
d149e5b8
 
 	def setUp(self):
 		# simple tests
 		self.lis = [1,2,3]
 		self.jlis = json.dumps(self.lis)
 		self.int = 1
 		self.jint = json.dumps(self.int)
 		self.str = 'asdasd'
 		self.jstr = json.dumps(self.str)
 		self.none = None
 		self.jnone = json.dumps(self.none)
 
 		# more complicated tests
 		self.obj1 = dict(a=1,b=2,c=3)
 		self.jobj1 = json.dumps(self.obj1)
 		self.obj2 = dict(a=[1,2,3],b={2:2,3:3,4:4},c=(3,4,5))
 		self.jobj2 = json.dumps(self.obj2)
 
 		# extended functionality
 		self.obj3 = dict(a=set([1]),b=frozenset([2]),c=[1,2,3])
 		self.obj3_roundtrip = dict( (k,list(v)) for k,v in self.obj3.items())
 
 		self.obj4 = testobj()
 		self.jobj4 = json.dumps(testobj.value)
 
 	def test_encode(self):
 		self.assertEqual(jsonutil.encode(self.lis), self.jlis)
 		self.assertEqual(jsonutil.encode(self.int), self.jint)
 		self.assertEqual(jsonutil.encode(self.str), self.jstr)
 		self.assertEqual(jsonutil.encode(self.none), self.jnone)
 
 		self.assertEqual(jsonutil.encode(self.obj1), self.jobj1)
 		self.assertEqual(jsonutil.encode(self.obj2), self.jobj2)
 		self.assertEqual(jsonutil.encode(self.obj4), self.jobj4)
 
 	def test_decode(self):
 		self.assertEqual(jsonutil.decode(self.jlis), self.lis)
 		self.assertEqual(jsonutil.decode(self.jint), self.int)
 		self.assertEqual(jsonutil.decode(self.jstr), self.str)
 		self.assertEqual(jsonutil.decode(self.jnone), self.none)
 
 		self.assertEqual(jsonutil.decode(self.jobj1), self.obj1)
 		self.assertEqual(jsonutil.decode(self.jobj2), json.loads(self.jobj2))
 		self.assertEqual(jsonutil.decode(self.jobj4), testobj.value)
 
 	def test_roundtrip(self):
 		self.assertEqual(jsonutil.decode(jsonutil.encode(self.lis)), self.lis)
 		self.assertEqual(jsonutil.decode(jsonutil.encode(self.int)), self.int)
 		self.assertEqual(jsonutil.decode(jsonutil.encode(self.str)), self.str)
 		self.assertEqual(jsonutil.decode(jsonutil.encode(self.none)), self.none)
 
 		self.assertEqual(jsonutil.decode(jsonutil.encode(self.obj3)), self.obj3_roundtrip)
 
 if __name__ == '__main__':
 	unittest.main()