diff options
author | Yann Ylavic <ylavic@apache.org> | 2023-07-07 10:21:21 +0200 |
---|---|---|
committer | Yann Ylavic <ylavic@apache.org> | 2023-07-07 10:21:21 +0200 |
commit | ac622813b2e8f2546b7a79a63a11dcbdf3a3bd0f (patch) | |
tree | 612c5c01e5ababb96d0fbe0e8dbb615b38b17773 /test/modules/md/test_780_tailscale.py | |
parent | Add application/vnd.geogebra.slides mime type (diff) | |
download | apache2-ac622813b2e8f2546b7a79a63a11dcbdf3a3bd0f.tar.xz apache2-ac622813b2e8f2546b7a79a63a11dcbdf3a3bd0f.zip |
pytests: Ignore log errors/warnings per function.
It's easier to control errors at the function scope and it avoids ignored
errors/warnings to propagate to the following tests (i.e. mask further
unexpected errors).
github: closes #371
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1910844 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'test/modules/md/test_780_tailscale.py')
-rw-r--r-- | test/modules/md/test_780_tailscale.py | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/test/modules/md/test_780_tailscale.py b/test/modules/md/test_780_tailscale.py index 84a266b2eb..27a2df474a 100644 --- a/test/modules/md/test_780_tailscale.py +++ b/test/modules/md/test_780_tailscale.py @@ -140,6 +140,12 @@ class TestTailscale: assert md['renewal']['last']['status-description'] == 'No such file or directory' assert md['renewal']['last']['detail'] == \ f"tailscale socket not available, may not be up: {socket_path}" + # + env.httpd_error_log.ignore_recent( + lognos = [ + "AH10056" # retrieving certificate from tailscale + ] + ) # create a MD using `tailscale` as protocol, path to faker, should succeed def test_md_780_002(self, env): @@ -184,3 +190,9 @@ class TestTailscale: assert md['renewal']['errors'] > 0 assert md['renewal']['last']['status-description'] == 'No such file or directory' assert md['renewal']['last']['detail'] == "retrieving certificate from tailscale" + # + env.httpd_error_log.ignore_recent( + lognos = [ + "AH10056" # retrieving certificate from tailscale + ] + ) |