Beispiel #1
0
    def test_put_permission_fail(self, mock_update, mock_abort):
        """Api should return information about permission."""
        with app.test_request_context(json=self.post_valid_data):
            mock_update.return_value = False
            Permission.put(1)

            mock_abort.assert_called_once_with(404, message=self.update_fail_msg)
Beispiel #2
0
    def test_get_permission(self, mock_get_permission):
        """Api should return information about permission."""
        mock_get_permission.return_value = self.valid_test_data[0]
        response = Permission.get(1)

        self.assertEqual(response.status_code, 200)
        self.assertEqual(response.json['id'], self.valid_test_data[0]['id'])
        self.assertEqual(response.json['name'], self.valid_test_data[0]['name'])
Beispiel #3
0
    def test_put_permission_success(self,  mock_update):
        """Api should return information about permission."""
        with app.test_request_context(json=self.post_valid_data):

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

            self.assertEqual(response.status_code, 201)
            self.assertEqual(response.json['message'], self.update_success_msg)
Beispiel #4
0
    def test_get_permission_not_exist(self, mock_get_permission, mock_abort):
        """Api should return information about permission."""
        mock_get_permission.return_value = None
        Permission.get(1)

        mock_abort.assert_called_once_with(404, message="No such permission with ID=1")
Beispiel #5
0
    def test_get_permission_wrong_id_case2(self, mock_abort):
        """Api should return information about permission."""
        Permission.get(-1)

        mock_abort.assert_called_once_with(404, message="No such permission with ID=-1")
Beispiel #6
0
    def test_put_permission_wrong_json(self, mock_abort):
        """Api should return information about permission."""
        with app.test_request_context(json=self.wrong_json):
            Permission.put(1)

            mock_abort.assert_called_once_with(404, message=self.wrong_json_msg)
Beispiel #7
0
    def test_put_permission_not_valid(self, mock_abort):
        """Api should return information about permission."""
        with app.test_request_context(json=self.post_invalid_data):
            Permission.put(1)

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