Пример #1
0
    def test_post_and_get_are_different(self):
        req = HTTPRequest("/hello")
        resp_partial = functools.partial(HTTPResponse,
                buffer=StringIO("response value"))
        RequestCollection.add(req, resp_partial)

        AsyncHTTPStubClient().fetch("/hello", self.stop, method="POST")
        response = self.wait()
        self.assertEqual(response.code, 404)
Пример #2
0
    def test_post_and_get_are_different(self):
        req = HTTPRequest("/hello")
        resp_partial = functools.partial(HTTPResponse,
                                         buffer=StringIO("response value"))
        RequestCollection.add(req, resp_partial)

        AsyncHTTPStubClient().fetch("/hello", self.stop, method="POST")
        response = self.wait()
        self.assertEqual(response.code, 404)
Пример #3
0
 def test_fetch_string_converts_to_request_object(self):
     req = HTTPRequest("/hello")
     resp_partial = functools.partial(HTTPResponse,
             buffer=StringIO("response value"))
     RequestCollection.add(req, resp_partial)
     client = AsyncHTTPStubClient()
     client.fetch("/hello", self.stop)
     response = self.wait()
     self.assertEqual(response.code, 200)
     self.assertEqual(response.body, "response value")
Пример #4
0
 def test_fetch_string_converts_to_request_object(self):
     req = HTTPRequest("/hello")
     resp_partial = functools.partial(HTTPResponse,
                                      code=200,
                                      buffer=StringIO("response value"))
     RequestCollection.add(req, resp_partial)
     client = AsyncHTTPStubClient()
     client.fetch("/hello", self.stop)
     response = self.wait()
     self.assertEqual(response.code, 200)
     self.assertEqual(response.body, "response value")
Пример #5
0
 def test_return_with_body_json(self):
     st = stub("/hello").and_return(body_json={'name': 'somebody'})
     resp_partial = RequestCollection.find(st.request)
     resp = resp_partial(st.request)
     self.assertEqual(json.loads(resp.body).get('name'), 'somebody')
Пример #6
0
 def test_stub_with_method(self):
     st = stub("/hello", method="POST").and_return(body="anything")
     resp_partial = RequestCollection.find(st.request)
     self.assertNotEqual(resp_partial, None)
Пример #7
0
 def test_no_return_args(self):
     st = stub("/hello").and_return()
     resp_partial = RequestCollection.find(st.request)
     resp = resp_partial(st.request)
     self.assertEqual(resp.body, b'')
Пример #8
0
 def test_stub_with_method(self):
     st = stub("/hello", method="POST").and_return(body=b"anything")
     resp_partial = RequestCollection.find(st.request)
     self.assertNotEqual(resp_partial, None)
Пример #9
0
 def setUp(self):
     super(ClientTest, self).setUp()
     RequestCollection.reset()
Пример #10
0
 def test_add(self):
     req = HTTPRequest("/hello")
     RequestCollection.add(req, "response val")
     val = RequestCollection._requests["/hello"]["GET"][0]
     self.assertEqual(val, "response val")
Пример #11
0
 def test_reset(self):
     req = HTTPRequest("http://www.example.com:8000/hello")
     RequestCollection.add(req, "response val")
     RequestCollection.reset()
     self.assertEqual(len(RequestCollection._requests), 0)
Пример #12
0
 def test_remove(self):
     req = HTTPRequest("http://www.example.com:8000/hello")
     RequestCollection.add(req, "response val")
     RequestCollection.remove(req)
     val = RequestCollection.find(req)
     self.assertEqual(val, None)
Пример #13
0
 def test_add_with_absolute_url(self):
     req = HTTPRequest("http://www.example.com:8000/hello")
     RequestCollection.add(req, "response val")
     val = RequestCollection._requests["/hello"]["GET"][0]
     self.assertEqual(val, "response val")
Пример #14
0
 def test_add(self):
     req = HTTPRequest("/hello")
     RequestCollection.add(req, "response val")
     val = RequestCollection._requests["/hello"]["GET"][0]
     self.assertEqual(val, "response val")
Пример #15
0
 def test_no_return_args(self):
     st = stub("/hello").and_return()
     resp_partial = RequestCollection.find(st.request)
     resp = resp_partial(st.request)
     self.assertEqual(resp.body, '') 
Пример #16
0
 def test_set_response_code_in_stub(self):
     st = stub("/hello").and_return(code=418)
     resp_partial = RequestCollection.find(st.request)
     resp = resp_partial(st.request)
     self.assertEqual(resp.code, 418)
Пример #17
0
 def test_add_with_absolute_url(self):
     req = HTTPRequest("http://www.example.com:8000/hello")
     RequestCollection.add(req, "response val")
     val = RequestCollection._requests["/hello"]["GET"][0]
     self.assertEqual(val, "response val")
Пример #18
0
 def test_remove(self):
     req = HTTPRequest("http://www.example.com:8000/hello")
     RequestCollection.add(req, "response val")
     RequestCollection.remove(req)
     val = RequestCollection.find(req)
     self.assertEqual(val, None)
Пример #19
0
 def test_reset(self):
     req = HTTPRequest("http://www.example.com:8000/hello")
     RequestCollection.add(req, "response val")
     RequestCollection.reset()
     self.assertEqual(len(RequestCollection._requests), 0)
Пример #20
0
 def test_stub_no_return_doesnt_add_to_collection(self):
     st = stub("/hello")
     self.assertNotEqual(st.request, None)
     resp_partial = RequestCollection.find(st.request)
     self.assertEqual(resp_partial, None)
Пример #21
0
 def test_no_body(self):
     st = stub("/hello").and_return(body=None)
     resp_partial = RequestCollection.find(st.request)
     resp = resp_partial(st.request, 200)
     self.assertEqual(resp.body, '') 
Пример #22
0
 def test_return_with_body_json(self):
     st = stub("/hello").and_return(body_json={'name': 'somebody'})
     resp_partial = RequestCollection.find(st.request)
     resp = resp_partial(st.request)
     self.assertEqual(
         json.loads(resp.body.decode()).get('name'), 'somebody')
Пример #23
0
 def test_stub_no_return_doesnt_add_to_collection(self):
     st = stub("/hello")
     self.assertNotEqual(st.request, None)
     resp_partial = RequestCollection.find(st.request)
     self.assertEqual(resp_partial, None)
Пример #24
0
 def test_set_response_code_in_stub(self):
     st = stub("/hello").and_return(code=418)
     resp_partial = RequestCollection.find(st.request)
     resp = resp_partial(st.request)
     self.assertEqual(resp.code, 418)
Пример #25
0
 def setUp(self):
     super(ClientTest, self).setUp()
     RequestCollection.reset()