-
Notifications
You must be signed in to change notification settings - Fork 1.6k
/
test_error.py
39 lines (29 loc) · 1.2 KB
/
test_error.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
import pytest
from flask import Flask
from application.error import bad_request, response_error
@pytest.fixture
def app():
app = Flask(__name__)
return app
def test_bad_request_with_message(app):
with app.app_context():
message = "Invalid input"
response = bad_request(status_code=400, message=message)
assert response.status_code == 400
assert response.json == {'error': 'Bad Request', 'message': message}
def test_bad_request_without_message(app):
with app.app_context():
response = bad_request(status_code=400)
assert response.status_code == 400
assert response.json == {'error': 'Bad Request'}
def test_response_error_with_message(app):
with app.app_context():
message = "Something went wrong"
response = response_error(code_status=500, message=message)
assert response.status_code == 500
assert response.json == {'error': 'Internal Server Error', 'message': message}
def test_response_error_without_message(app):
with app.app_context():
response = response_error(code_status=500)
assert response.status_code == 500
assert response.json == {'error': 'Internal Server Error'}