mirror of
https://github.com/ansible/awx.git
synced 2026-02-12 07:04:45 -03:30
32 lines
1.5 KiB
Python
32 lines
1.5 KiB
Python
import pytest
|
|
|
|
from django.test.utils import override_settings
|
|
from awx.api.versioning import reverse
|
|
|
|
|
|
@pytest.mark.django_db
|
|
def test_change_400_error_log(caplog, post, admin_user):
|
|
with override_settings(API_400_ERROR_LOG_FORMAT='Test'):
|
|
post(url=reverse('api:setting_logging_test'), data={}, user=admin_user, expect=409)
|
|
assert 'Test' in caplog.text
|
|
|
|
|
|
@pytest.mark.django_db
|
|
def test_bad_400_error_log(caplog, post, admin_user):
|
|
with override_settings(API_400_ERROR_LOG_FORMAT="Not good {junk}"):
|
|
post(url=reverse('api:setting_logging_test'), data={}, user=admin_user, expect=409)
|
|
assert "Unable to format API_400_ERROR_LOG_FORMAT setting, defaulting log message: 'junk'" in caplog.text
|
|
assert 'status 409 received by user admin attempting to access /api/v2/settings/logging/test/ from 127.0.0.1' in caplog.text
|
|
|
|
|
|
@pytest.mark.django_db
|
|
def test_custom_400_error_log(caplog, post, admin_user):
|
|
with override_settings(API_400_ERROR_LOG_FORMAT="{status_code} {error}"):
|
|
post(url=reverse('api:setting_logging_test'), data={}, user=admin_user, expect=409)
|
|
assert '409 Logging not enabled' in caplog.text
|
|
|
|
|
|
# The above tests the generation function with a dict/object.
|
|
# The tower-qa test tests.api.inventories.test_inventory_update.TestInventoryUpdate.test_update_all_inventory_sources_with_nonfunctional_sources tests the function with a list
|
|
# Someday it would be nice to test the else condition (not a dict/list) but we need to find an API test which will do this. For now it was added just as a catch all
|