Created
September 16, 2025 15:12
-
-
Save jangia/4bbf4e8f1e5954c6ffbff6eea1e43e25 to your computer and use it in GitHub Desktop.
test_custom_assertion_error_message.py
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import requests | |
from http import HTTPStatus | |
def test_default_assertion_message(): | |
user = {"email": "<EMAIL>", "is_happy": False} | |
assert user["is_happy"] is True | |
# > assert user["is_happy"] is True | |
# E assert False is True | |
def test_custom_assertion_message(): | |
user = {"email": "<EMAIL>", "is_happy": False} | |
assert user["is_happy"] is True, "Failure: user is not happy!" | |
# > assert user["is_happy"] is True, "Failure: user is not happy!" | |
# E AssertionError: Failure: user is not happy! | |
# E assert False is True | |
def test_weather_api_bad_request_with_default_assertion_message(): | |
url = "https://api.openweathermap.org/data/2.5/weather" | |
params = {"q": "London"} | |
response = requests.get(url, params=params) | |
assert response.status_code == HTTPStatus.OK | |
# > assert response.status_code == HTTPStatus.OK | |
# E assert 401 == <HTTPStatus.OK: 200> | |
# E + where 401 = <Response [401]>.status_code | |
# E + and <HTTPStatus.OK: 200> = HTTPStatus.OK | |
def test_weather_api_bad_request_with_custom_assertion_message(): | |
url = "https://api.openweathermap.org/data/2.5/weather" | |
params = {"q": "London"} | |
response = requests.get(url, params=params) | |
assert response.status_code == HTTPStatus.OK, response.text | |
# > assert response.status_code == HTTPStatus.OK, response.text | |
# E AssertionError: {"cod":401, "message": "Invalid API key. Please see https://openweathermap.org/faq#error401 for more info."} | |
# E assert 401 == <HTTPStatus.OK: 200> | |
# E + where 401 = <Response [401]>.status_code | |
# E + and <HTTPStatus.OK: 200> = HTTPStatus.OK |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment