Пример #1
0
 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)
Пример #2
0
 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)
Пример #3
0
 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)
Пример #4
0
 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)
Пример #5
0
 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')
Пример #6
0
 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')
Пример #7
0
    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)
Пример #8
0
    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)
Пример #9
0
 def test_process_response_queue_full(self):
     pusher = Pusher()
     response = self._create_mocked_response(notification='QueueFull')
     with self.assertRaises(QueueFullError):
         pusher._processResponse(response)
Пример #10
0
 def test_proces_response_suppressed(self):
     pusher = Pusher()
     response = self._create_mocked_response(notification='Suppressed')
     status = pusher._processResponse(response)
     self.assertEqual(status.notification, 'Suppressed')
Пример #11
0
 def test_process_response_unknown_status(self):
     pusher = Pusher()
     response = self._create_mocked_response(notification='foo')
     with self.assertRaises(InvalidResponseError):
         pusher._processResponse(response)
Пример #12
0
 def test_process_response_throttled(self):
     pusher = Pusher()
     response = self._create_mocked_response(code=406,
                                             notification='Dropped')
     with self.assertRaises(ThrottlingLimitError):
         pusher._processResponse(response)
Пример #13
0
 def test_process_response_queue_full(self):
     pusher = Pusher()
     response = self._create_mocked_response(notification='QueueFull')
     with self.assertRaises(QueueFullError):
         pusher._processResponse(response)
Пример #14
0
 def test_proces_response_suppressed(self):
     pusher = Pusher()
     response = self._create_mocked_response(notification='Suppressed')
     status = pusher._processResponse(response)
     self.assertEqual(status.notification, 'Suppressed')
Пример #15
0
 def test_process_response_unknown_status(self):
     pusher = Pusher()
     response = self._create_mocked_response(notification='foo')
     with self.assertRaises(InvalidResponseError):
         pusher._processResponse(response)
Пример #16
0
 def test_process_response_throttled(self):
     pusher = Pusher()
     response = self._create_mocked_response(code=406,
                                             notification='Dropped')
     with self.assertRaises(ThrottlingLimitError):
         pusher._processResponse(response)