Ejemplo n.º 1
0
 def json(self, data):
     if isinstance(data, GeneratorType):
         out = ''.join([r for r in self.genstreamer(data)])
         return out
     thunker = JSONThunker()
     data = thunker.thunk(data)
     return JsonWrapper.dumps(data)
Ejemplo n.º 2
0
class testThunking(unittest.TestCase):
    """
    Direct tests of thunking standard python type
    """
    def setUp(self):
        self.thunker = JSONThunker()

    def roundTrip(self, data):
        encoded = self.thunker.thunk(data)
        decoded = self.thunker.unthunk(encoded)
        self.assertEqual( data, decoded )

    @runboth
    def testStr(self):
        self.roundTrip('hello')

    @runboth
    def testList(self):
        self.roundTrip([123, 456])

    @runboth
    def testDict(self):
        self.roundTrip({'abc':123, 'def':456})
        self.roundTrip({'abc':123, 456:'def'})

    @runboth
    def testSet(self):
        self.roundTrip(set([]))
        self.roundTrip(set([123, 'abc']))
Ejemplo n.º 3
0
class testJSONThunker(unittest.TestCase):
    """
    Direct tests of thunking standard python type
    """
    def setUp(self):
        self.thunker = JSONThunker()

    def roundTrip(self, data):
        encoded = self.thunker.thunk(data)
        decoded = self.thunker.unthunk(encoded)
        self.assertEqual(data, decoded)

    def testStr(self):
        self.roundTrip('hello')

    def testList(self):
        self.roundTrip([123, 456])

    def testDict(self):
        self.roundTrip({'abc': 123, 'def': 456})
        self.roundTrip({'abc': 123, 456: 'def'})

    def testSet(self):
        self.roundTrip(set([]))
        self.roundTrip(set([123, 'abc']))
Ejemplo n.º 4
0
 def json(self, data):
     if isinstance(data, GeneratorType):
         out = ''.join([r for r in self.genstreamer(data)])
         return out
     thunker = JSONThunker()
     data = thunker.thunk(data)
     return json.dumps(data)
Ejemplo n.º 5
0
 def encode(self, data):
     """
     encode data as json
     """
     encoder = JSONEncoder()
     thunker = JSONThunker()
     thunked = thunker.thunk(data)
     return encoder.encode(thunked)
Ejemplo n.º 6
0
 def encode(self, data):
     """
     encode data as json
     """
     encoder = JSONEncoder()
     thunker = JSONThunker()
     thunked = thunker.thunk(data)
     return encoder.encode(thunked)
Ejemplo n.º 7
0
 def wrapper(self, data, expires, contentType="application/json+thunk"):
     data = func(self, data)
     try:
         thunker = JSONThunker()
         data = thunker.thunk(data)
         jsondata = json.dumps(data)
         _setCherryPyHeaders(jsondata, contentType, expires)
         return jsondata
     except Exception:
         raise
Ejemplo n.º 8
0
 def wrapper(self, data, expires, contentType="application/json+thunk"):
     data = func(self, data)
     try:
         thunker = JSONThunker()
         data = thunker.thunk(data)
         jsondata = json.dumps(data)
         _setCherryPyHeaders(jsondata, contentType, expires)
         return jsondata
     except Exception:
         raise
Ejemplo n.º 9
0
 def decode(self, data):
     """
     decode the data to python from json
     """
     if data:
         decoder = JSONDecoder()
         thunker = JSONThunker()
         data = decoder.decode(data)
         unthunked = thunker.unthunk(data)
         return unthunked
     return {}
Ejemplo n.º 10
0
 def decode(self, data):
     """
     decode the data to python from json
     """
     if data:
         decoder = JSONDecoder()
         thunker = JSONThunker()
         data = decoder.decode(data)
         unthunked = thunker.unthunk(data)
         return unthunked
     else:
         return {}
Ejemplo n.º 11
0
 def decode(self, data):
     """
     decode the data to python from json
     """
     if data:
         decoder = JSONDecoder()
         thunker = JSONThunker()
         if sys.version_info[0] == 3:
             data = decodeBytesToUnicode(data)
         data = decoder.decode(data)
         unthunked = thunker.unthunk(data)
         return unthunked
     return {}
Ejemplo n.º 12
0
 def jsonThunkerDecoder(self, data):
     if data:
         thunker = JSONThunker()
         return thunker.unthunk(JsonWrapper.loads(data))
     else:
         return {}
Ejemplo n.º 13
0
    def jsonThunkerHandler(self, args, kwargs):

        args, kwargs = self.jsonHandler(args, kwargs)
        kwargs = JSONThunker().unthunk(kwargs)
        return args, kwargs
Ejemplo n.º 14
0
 def json(self, data):
     thunker = JSONThunker()
     data = thunker.thunk(data)
     return JsonWrapper.dumps(data)
Ejemplo n.º 15
0
 def setUp(self):
     self.thunker = JSONThunker()
Ejemplo n.º 16
0
 def setUp(self):
     self.thunker = JSONThunker()
Ejemplo n.º 17
0
 def jsonThunkerDecoder(self, data):
     if data:
         thunker = JSONThunker()
         return thunker.unthunk(JsonWrapper.loads(data))
     else:
         return {}
Ejemplo n.º 18
0
 def json(self, data):
     thunker = JSONThunker()
     data = thunker.thunk(data)
     return JsonWrapper.dumps(data)