Esempio n. 1
0
 def test_client_can_make_request(self, mock_request):
     mock_request.return_value = self.success_mocked_response
     client = ToshlClient('abcd1234')
     client._make_request('/me', 'GET')
     mock_request.assert_called_once_with(
         headers={'Authorization': 'Bearer abcd1234'},
         method='GET', params=None, url='https://api.toshl.com/me')
Esempio n. 2
0
    def test_account_not_found_raises_exception(self, mock_request):
        mock_response = mock.Mock()
        expected_dict = {
            'error_id': 'error.object.not_found',
            'description': 'Object with id 111 not found.'
        }
        mock_response.json.return_value = expected_dict
        mock_response.status_code = 404
        mock_request.return_value = mock_response

        client = ToshlClient('abcd1234')

        with self.assertRaises(ToshlException) as ex:
            client._make_request('/accounts/111', 'GET')

        assert ex.exception.status_code == 404
        assert ex.exception.error_id == 'error.object.not_found'
        assert ex.exception.error_description == 'Object with id 111 not found.'
        assert ex.exception.extra_info is None
Esempio n. 3
0
    def test_client_request_raises_exception_on_400(self, mock_request):
        mock_response = mock.Mock()
        expected_dict = {
            'error_id': 'exception_id',
            'description': 'Exception description'
        }
        mock_response.json.return_value = expected_dict
        mock_response.status_code = 400
        mock_request.return_value = mock_response

        client = ToshlClient('abcd1234')

        with self.assertRaises(ToshlException) as ex:
            client._make_request('/me', 'GET')

        assert ex.exception.status_code == 400
        assert ex.exception.error_id == 'exception_id'
        assert ex.exception.error_description == 'Exception description'
        assert ex.exception.extra_info is None
Esempio n. 4
0
    def test_client_request_raises_exception_with_extra_info(
            self, mock_request):
        mock_response = mock.Mock()
        expected_dict = {
            'error_id': 'exception_id',
            'description': 'Exception description',
            "fields": [
                {
                    "field": "amount",
                    "error": "Amount cannot be zero."
                },
                {
                    "field": "category",
                    "error": "Please select at least one category."
                }
            ]
        }
        mock_response.json.return_value = expected_dict
        mock_response.status_code = 400
        mock_request.return_value = mock_response

        client = ToshlClient('abcd1234')

        with self.assertRaises(ToshlException) as ex:
            client._make_request('/me', 'GET')

        assert ex.exception.status_code == 400
        assert ex.exception.error_id == 'exception_id'
        assert ex.exception.error_description == 'Exception description'
        assert ex.exception.extra_info == [
            {
                "field": "amount",
                "error": "Amount cannot be zero."
            },
            {
                "field": "category",
                "error": "Please select at least one category."
            }
        ]
Esempio n. 5
0
 def test_client_set_auth_token_correctly(self, mock_request):
     mock_request.return_value = self.success_mocked_response
     client = ToshlClient('AAABBBCCCDDD')
     client._make_request('/me', 'GET', params={'a': 'foo1', 'b': 'foo2'})
     assert mock_request.call_args[1]['headers']['Authorization'] == \
         'Bearer AAABBBCCCDDD'