(self, env, path, status, lognos: Optional[List[str]])
| 72 | ["/cgi-bin/%25%32%65%25%32%65/%25%32%65%25%32%65/h2_env.py", 404, ["AH01264"]], |
| 73 | ]) |
| 74 | def test_core_001_04(self, env, path, status, lognos: Optional[List[str]]): |
| 75 | url = env.mkurl("https", "test1", path) |
| 76 | r = env.curl_get(url) |
| 77 | assert r.response["status"] == status |
| 78 | # |
| 79 | if lognos is not None: |
| 80 | env.httpd_error_log.ignore_recent(lognos = lognos) |
| 81 | |
| 82 | # check handling of %2f url encodings that are not decoded by default |
| 83 | @pytest.mark.parametrize(["host", "path", "status"], [ |
nothing calls this directly
no test coverage detected