Exemplo n.º 1
0
    def setUp(self):
        super(JSONPRCWSGIApplicationTestSuite, self).setUp()

        def adder(a, b):
            return a + b

        self.app = JSONPRCWSGIApplication(JSONRPC20Serializer)
        self.app.register_function(adder)
class JSONPRCWSGIApplicationTestSuite(TestCase):

    def setUp(self):
        super(JSONPRCWSGIApplicationTestSuite, self).setUp()

        def adder(a, b):
            return a + b

        self.app = JSONPRCWSGIApplication(JSONRPC20Serializer)
        self.app.register_function(adder)

    def test_handle_wsgi_request(self):

        request1 = JSONRPC20Serializer.assemble_request(
            'adder',
            (2, 3)
        )
        request2 = JSONRPC20Serializer.assemble_request(
            'adder',
            (4, 3)
        )
        requests_string = JSONRPC20Serializer.json_dumps([request1, request2])

        environ = MockWSGIEnviron(
            requests_string,
            [
                ('CONTENT_TYPE', 'application/json'),
                ('CONTENT_LENGTH', len(requests_string))
            ]
        )
        start_response = MockWSGIStartResponse()

        response_iterable = self.app(environ, start_response)

        assert response_iterable

        response_string = ''.join(response_iterable)
        responses_data = JSONRPC20Serializer.json_loads(response_string)

        assert len(responses_data) == 2

        response_json = responses_data[0]
        assert 'error' not in response_json
        assert response_json['id'] == request1['id']
        assert response_json['result'] == 5

        response_json = responses_data[1]
        assert 'error' not in response_json
        assert response_json['id'] == request2['id']
        assert response_json['result'] == 7
Exemplo n.º 3
0
    def setUp(self):
        super(JSONPRCWebClientTestSuite, self).setUp()

        server_app = JSONPRCWSGIApplication()
        server_app['echo'] = lambda a: a

        self.url = 'http://example.com/rpc'
        self.cl = WebClient(self.url)
    def setUp(self):
        super(JSONPRCWSGIApplicationTestSuite, self).setUp()

        def adder(a, b):
            return a + b

        self.app = JSONPRCWSGIApplication(JSONRPC20Serializer)
        self.app.register_function(adder)
Exemplo n.º 5
0
class JSONPRCWSGIApplicationTestSuite(TestCase):
    def setUp(self):
        super(JSONPRCWSGIApplicationTestSuite, self).setUp()

        def adder(a, b):
            return a + b

        self.app = JSONPRCWSGIApplication(JSONRPC20Serializer)
        self.app.register_function(adder)

    def test_handle_wsgi_request(self):

        request1 = JSONRPC20Serializer.assemble_request('adder', (2, 3))
        request2 = JSONRPC20Serializer.assemble_request('adder', (4, 3))
        requests_string = JSONRPC20Serializer.json_dumps([request1, request2])

        environ = MockWSGIEnviron(requests_string,
                                  [('CONTENT_TYPE', 'application/json'),
                                   ('CONTENT_LENGTH', len(requests_string))])
        start_response = MockWSGIStartResponse()

        response_iterable = self.app(environ, start_response)

        assert response_iterable

        response_string = ''.join(response_iterable)
        responses_data = JSONRPC20Serializer.json_loads(response_string)

        assert len(responses_data) == 2

        response_json = responses_data[0]
        assert 'error' not in response_json
        assert response_json['id'] == request1['id']
        assert response_json['result'] == 5

        response_json = responses_data[1]
        assert 'error' not in response_json
        assert response_json['id'] == request2['id']
        assert response_json['result'] == 7