12345678910111213141516171819202122232425 |
- import os
- import pytest
- pytestmark = pytest.mark.skipif(
- True,
- reason="This test intefers with the other tests, and might no longer be needed."
- )
- def test_unknown_virtual_host_is_503(docker_compose, nginxproxy):
- r = nginxproxy.get("http://unknown.nginx.container.docker/")
- assert r.status_code == 503
- def test_forwards_to_whoami(docker_compose, nginxproxy):
- r = nginxproxy.get("http://whoami.nginx.container.docker/")
- assert r.status_code == 200
- whoami_container = docker_compose.containers.get("whoami")
- assert r.text == f"I'm {whoami_container.id[:12]}\n"
- if __name__ == "__main__":
- import doctest
- doctest.testmod()
|