Exemplo n.º 1
0
    def test_put_location_fail(self, mock_update, mock_abort):
        """Api should return information about location."""
        with app.test_request_context(json=self.post_valid_data):
            mock_update.return_value = False
            Location.put(1)

            mock_abort.assert_called_once_with(404, message=self.update_fail_msg)
Exemplo n.º 2
0
    def test_put_location_success(self,  mock_update):
        """Api should return information about location."""
        with app.test_request_context(json=self.post_valid_data):

            mock_update.return_value = True
            response = Location.put(1)

            self.assertEqual(response.status_code, 201)
            self.assertEqual(response.json['message'], self.update_success_msg)
Exemplo n.º 3
0
    def test_put_location_wrong_json(self, mock_abort):
        """Api should return information about location."""
        with app.test_request_context(json=self.wrong_json):
            Location.put(1)

            mock_abort.assert_called_once_with(404, message=self.wrong_json_msg)
Exemplo n.º 4
0
    def test_put_location_not_valid(self, mock_abort):
        """Api should return information about location."""
        with app.test_request_context(json=self.post_invalid_data):
            Location.put(1)

            mock_abort.assert_called_once_with(404, message=self.not_valid_json_msg)