Преглед на файлове

test: clarify wildcard host custom conf tests

Nicolas Duchon преди 1 месец
родител
ревизия
21c63b5e50
променени са 2 файла, в които са добавени 6 реда и са изтрити 2 реда
  1. 3 1
      test/test_custom/test_location-per-vhost.py
  2. 3 1
      test/test_custom/test_per-vhost.py

+ 3 - 1
test/test_custom/test_location-per-vhost.py

@@ -24,9 +24,11 @@ def test_custom_conf_applies_to_wildcard(docker_compose, nginxproxy):
     r = nginxproxy.get("http://foo.nginx-proxy.example/port")
     assert r.status_code == 200
     assert r.text == "answer from port 84\n"
-    assert "X-test" not in r.headers
+    # we should get the config from *.nginx-proxy.example_location.conf
     assert "X-test-2" in r.headers
     assert "baz" == r.headers["X-test-2"]
+    # but not the config from web1.nginx-proxy.example_location.conf
+    assert "X-test" not in r.headers
 
 def test_custom_conf_does_not_apply_to_web2(docker_compose, nginxproxy):
     r = nginxproxy.get("http://web2.nginx-proxy.example/port")

+ 3 - 1
test/test_custom/test_per-vhost.py

@@ -24,9 +24,11 @@ def test_custom_conf_applies_to_wildcard(docker_compose, nginxproxy):
     r = nginxproxy.get("http://foo.nginx-proxy.example/port")
     assert r.status_code == 200
     assert r.text == "answer from port 84\n"
-    assert "X-test" not in r.headers
+    # we should get the config from *.nginx-proxy.example.conf
     assert "X-test-2" in r.headers
     assert "baz" == r.headers["X-test-2"]
+    # but not the config from web1.nginx-proxy.example.conf
+    assert "X-test" not in r.headers
 
 def test_custom_conf_does_not_apply_to_web2(docker_compose, nginxproxy):
     r = nginxproxy.get("http://web2.nginx-proxy.example/port")