Files
@ 5b6d00b0beab
Branch filter:
Location: majic-ansible-roles/roles/wsgi_website/molecule/default/tests/test_parameters_mandatory.py - annotation
5b6d00b0beab
1.4 KiB
text/x-python
MAR-170: Always enforce use of HTTPS in the wsgi_server role:
- Dropped the enforce_https parameter.
- Updated tests.
- Updated release notes.
- Dropped the enforce_https parameter.
- Updated tests.
- Updated release notes.
b5ed796b566a 998aab91d6b4 998aab91d6b4 998aab91d6b4 998aab91d6b4 998aab91d6b4 d62b3adec462 998aab91d6b4 998aab91d6b4 a1e0221d24e7 998aab91d6b4 998aab91d6b4 998aab91d6b4 998aab91d6b4 998aab91d6b4 998aab91d6b4 998aab91d6b4 998aab91d6b4 a1e0221d24e7 998aab91d6b4 998aab91d6b4 998aab91d6b4 998aab91d6b4 998aab91d6b4 998aab91d6b4 c8d4251a6ea5 998aab91d6b4 998aab91d6b4 a1e0221d24e7 998aab91d6b4 998aab91d6b4 998aab91d6b4 998aab91d6b4 a1e0221d24e7 998aab91d6b4 998aab91d6b4 998aab91d6b4 998aab91d6b4 a1e0221d24e7 998aab91d6b4 998aab91d6b4 998aab91d6b4 | import os
import testinfra.utils.ansible_runner
testinfra_hosts = testinfra.utils.ansible_runner.AnsibleRunner(
os.environ['MOLECULE_INVENTORY_FILE']).get_hosts('parameters-mandatory')
def test_index_page(host):
"""
Tests if index page is served correctly. This covers:
- Basic WSGI application operation.
- Handling of environment variables.
- Handling of proxy headers.
"""
page = host.run('curl -H "Accept-Encoding: plain" https://parameters-mandatory/')
assert page.rc == 0
assert "This is the WSGI application at parameters-mandatory." in page.stdout
assert "Requested URL was: https://parameters-mandatory/" in page.stdout
assert "MY_ENV_VAR: None" in page.stdout
assert "Accept-Encoding: plain" in page.stdout
assert "Python version: 2." in page.stdout
def test_static_file_serving(host):
"""
Tests serving of static files.
"""
page = host.run('curl https://parameters-mandatory/static/static_file.txt')
assert page.rc == 0
assert "This is the WSGI application at parameters-mandatory." in page.stdout
assert "Requested URL was: https://parameters-mandatory/static/static_file.txt" in page.stdout
page = host.run('curl https://parameters-mandatory/media/media_file.txt')
assert page.rc == 0
assert "This is the WSGI application at parameters-mandatory." in page.stdout
assert "Requested URL was: https://parameters-mandatory/media/media_file.txt" in page.stdout
|