Exemplo n.º 1
0
 def test_to_json_with_date_format_value(self):
     fixture = {"date": datetime.datetime(1900, 3, 8, 2)}
     expected = {"date": {"_value": "1900-03-08T02:00:00",
                          "_type": "datetime"}}
     actual = rpc.RPCJSONSerializer().to_json(fixture)
     actual = jsonutils.loads(actual)
     for k in expected['date']:
         self.assertEqual(expected['date'][k], actual['date'][k])
Exemplo n.º 2
0
 def test_to_json_with_more_deep_format(self):
     fixture = {"is_public": True, "name": [{"name1": "test"}]}
     expected = {"is_public": True, "name": [{"name1": "test"}]}
     actual = rpc.RPCJSONSerializer().to_json(fixture)
     actual = wsgi.JSONResponseSerializer().to_json(fixture)
     actual = jsonutils.loads(actual)
     for k in expected:
         self.assertEqual(expected[k], actual[k])
Exemplo n.º 3
0
 def test_default(self):
     fixture = {"key": "value"}
     response = webob.Response()
     rpc.RPCJSONSerializer().default(response, fixture)
     self.assertEqual(response.status_int, 200)
     content_types = filter(lambda h: h[0] == 'Content-Type',
                            response.headerlist)
     self.assertEqual(len(content_types), 1)
     self.assertEqual(response.content_type, 'application/json')
     self.assertEqual(response.body, '{"key": "value"}')
Exemplo n.º 4
0
 def test_default(self):
     fixture = {"key": "value"}
     response = webob.Response()
     rpc.RPCJSONSerializer().default(response, fixture)
     self.assertEqual(http.OK, response.status_int)
     content_types = [h for h in response.headerlist
                      if h[0] == 'Content-Type']
     self.assertEqual(1, len(content_types))
     self.assertEqual('application/json', response.content_type)
     self.assertEqual(b'{"key": "value"}', response.body)
Exemplo n.º 5
0
def create_api():
    deserializer = rpc.RPCJSONDeserializer()
    serializer = rpc.RPCJSONSerializer()
    controller = rpc.Controller()
    controller.register(FakeResource())
    res = wsgi.Resource(controller, deserializer, serializer)

    mapper = routes.Mapper()
    mapper.connect("/rpc", controller=res,
                   conditions=dict(method=["POST"]),
                   action="__call__")
    return test_utils.FakeAuthMiddleware(wsgi.Router(mapper), is_admin=True)
Exemplo n.º 6
0
 def test_to_json(self):
     fixture = {"key": "value"}
     expected = b'{"key": "value"}'
     actual = rpc.RPCJSONSerializer().to_json(fixture)
     self.assertEqual(expected, actual)
Exemplo n.º 7
0
def create_resource():
    """Images resource factory method."""
    deserializer = rpc.RPCJSONDeserializer()
    serializer = rpc.RPCJSONSerializer()
    return wsgi.Resource(Controller(), deserializer, serializer)
Exemplo n.º 8
0
 def test_to_json_with_more_deep_format(self):
     fixture = {"is_public": True, "name": [{"name1": "test"}]}
     expected = '{"is_public": true, "name": [{"name1": "test"}]}'
     actual = rpc.RPCJSONSerializer().to_json(fixture)
     self.assertEqual(actual, expected)
Exemplo n.º 9
0
 def test_to_json_with_date_format_value(self):
     fixture = {"date": datetime.datetime(1900, 3, 8, 2)}
     expected = ('{"date": {"_value": "1900-03-08T02:00:00.000000", '
                 '"_type": "datetime"}}')
     actual = rpc.RPCJSONSerializer().to_json(fixture)
     self.assertEqual(actual, expected)