def test_send_notification_successfully(self): self.called = False def mock_request(*args, **kwargs): self.called = True return MockResponse(201), None handler = CufPub() http_conn = HttpConnection(handler) endpoint = handler.config_get("url") payload_body = {"a":"b"} self.stubs.Set(httplib2.Http, 'request', mock_request) http_conn.send_notification(endpoint, endpoint, payload_body)
def test_send_notification_successfully(self): self.called = False def mock_request(*args, **kwargs): self.called = True return MockResponse(201), None handler = CufPub() http_conn = HttpConnection(handler) endpoint = handler.config_get("url") payload_body = {"a": "b"} self.stubs.Set(httplib2.Http, 'request', mock_request) http_conn.send_notification(endpoint, endpoint, payload_body)
def test_response_status_400_raises_invalid_content_exception(self): self.called = False def mock_request(*args, **kwargs): self.called = True return MockResponse(400), None handler = CufPub() http_conn = HttpConnection(handler) endpoint = handler.config_get("url") payload_body = {"a":"b"} self.stubs.Set(httplib2.Http, 'request', mock_request) self.assertRaises(InvalidContentException, http_conn.send_notification, endpoint, endpoint, payload_body)
def test_duplicate_entry_to_atomhopper_response_409(self): self.called = False def mock_request(*args, **kwargs): self.called = True return MockResponse(409), None handler = CufPub() http_conn = HttpConnection(handler) endpoint = handler.config_get("url") payload_body = {"a":"b"} self.stubs.Set(httplib2.Http, 'request', mock_request) status = http_conn.send_notification(endpoint, endpoint, payload_body) self.assertEqual(status,409)
def test_response_too_large_error_and_status_is_201_does_not_raise_exception(self): self.called = False def mock_request(*args, **kwargs): self.called = True raise http_util.ResponseTooLargeError("desc",MockResponse(201), "content") handler = CufPub() http_conn = HttpConnection(handler) endpoint = handler.config_get("url") payload_body = {"a":"b"} self.stubs.Set(httplib2.Http, 'request', mock_request) http_conn.send_notification(endpoint, endpoint, payload_body)
def test_response_other_than_201_or_400_raises_exception(self): self.called = False def mock_request(*args, **kwargs): self.called = True return MockResponse(405), None handler = CufPub() http_conn = HttpConnection(handler) endpoint = handler.config_get("url") payload_body = {"a":"b"} self.stubs.Set(httplib2.Http, 'request', mock_request) self.assertRaises(MessageDeliveryFailed,http_conn.send_notification, endpoint, endpoint, payload_body)
def test_response_other_than_201_raises_exception(self): self.called = False def mock_request(*args, **kwargs): self.called = True return MockResponse(400), None handler = CufPub() http_conn = HttpConnection(handler) endpoint = handler.config_get("url") payload_body = {"a": "b"} self.stubs.Set(httplib2.Http, 'request', mock_request) self.assertRaises(MessageDeliveryFailed, http_conn.send_notification, endpoint, endpoint, payload_body)
def test_response_401_raises_unauthorized_exception(self): self.called = False def mock_request(*args, **kwargs): self.called = True return MockResponse(401), None handler = CufPub() http_conn = HttpConnection(handler) endpoint = handler.config_get("url") payload_body = {"a": "b"} self.stubs.Set(httplib2.Http, 'request', mock_request) self.assertRaises(UnauthorizedException, http_conn.send_notification, endpoint, endpoint, payload_body)
def test_duplicate_entry_to_atomhopper_response_409(self): self.called = False def mock_request(*args, **kwargs): self.called = True return MockResponse(409), None handler = CufPub() http_conn = HttpConnection(handler) endpoint = handler.config_get("url") payload_body = {"a": "b"} self.stubs.Set(httplib2.Http, 'request', mock_request) status = http_conn.send_notification(endpoint, endpoint, payload_body) self.assertEqual(status, 409)
def test_response_too_large_error_and_status_is_201_does_not_raise_exception( self): self.called = False def mock_request(*args, **kwargs): self.called = True raise http_util.ResponseTooLargeError("desc", MockResponse(201), "content") handler = CufPub() http_conn = HttpConnection(handler) endpoint = handler.config_get("url") payload_body = {"a": "b"} self.stubs.Set(httplib2.Http, 'request', mock_request) http_conn.send_notification(endpoint, endpoint, payload_body)
def test_send_notification_successfully(self): self.called = False content = ("""<atom:entry xmlns:atom="http://www.w3.org/2005/Atom">""" """<atom:id>urn:uuid:95347e4d-4737-4438-b774-6a9219d78d2a</atom:id>""" """</atom:entry>""") def mock_request(*args, **kwargs): self.called = True return MockResponse(201), content handler = CufPub() http_conn = HttpConnection(handler) endpoint = handler.config_get("url") payload_body = {"a":"b"} self.mox.ReplayAll() self.stubs.Set(httplib2.Http, 'request', mock_request) http_conn.send_notification(endpoint, endpoint, payload_body) self.mox.VerifyAll()
def test_send_notification_successfully(self): self.called = False content = ( """<atom:entry xmlns:atom="http://www.w3.org/2005/Atom">""" """<atom:id>urn:uuid:95347e4d-4737-4438-b774-6a9219d78d2a</atom:id>""" """</atom:entry>""") def mock_request(*args, **kwargs): self.called = True return MockResponse(201), content handler = CufPub() http_conn = HttpConnection(handler) endpoint = handler.config_get("url") payload_body = {"a": "b"} self.mox.ReplayAll() self.stubs.Set(httplib2.Http, 'request', mock_request) http_conn.send_notification(endpoint, endpoint, payload_body) self.mox.VerifyAll()