def test_process_response_disconnected(self): pusher = Pusher() response = self._create_mocked_response(code=412, notification='Dropped', device='Disconnected') with self.assertRaises(DeviceDisconnectedError): pusher._processResponse(response)
def test_process_response_expired(self): pusher = Pusher() response = self._create_mocked_response(code=404, notification='Dropped', subscription='Expired') with self.assertRaises(SubscriptionExpiredError): pusher._processResponse(response)
def test_process_response_received(self): pusher = Pusher() response = self._create_mocked_response() status = pusher._processResponse(response) self.assertEqual(status.notification, 'Received') self.assertEqual(status.subscription, 'Active') self.assertEqual(status.device, 'Connected')
def test_send_unprocessable(self): pusher = Pusher() notification = self._create_mocked_notification() response = self._create_mocked_response(code=400) pusher._agent.request = Mock(return_value=response) pusher._processResponse = Mock() pusher._processErrorResponse = Mock() pusher.send(notification) pusher._processErrorResponse.assert_called_once_with(response) self.assertFalse(pusher._processResponse.called)
def test_process_response_queue_full(self): pusher = Pusher() response = self._create_mocked_response(notification='QueueFull') with self.assertRaises(QueueFullError): pusher._processResponse(response)
def test_proces_response_suppressed(self): pusher = Pusher() response = self._create_mocked_response(notification='Suppressed') status = pusher._processResponse(response) self.assertEqual(status.notification, 'Suppressed')
def test_process_response_unknown_status(self): pusher = Pusher() response = self._create_mocked_response(notification='foo') with self.assertRaises(InvalidResponseError): pusher._processResponse(response)
def test_process_response_throttled(self): pusher = Pusher() response = self._create_mocked_response(code=406, notification='Dropped') with self.assertRaises(ThrottlingLimitError): pusher._processResponse(response)