]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
tests: another sync of the http2 tests
authorStefan Eissing <icing@apache.org>
Fri, 30 Jun 2023 08:29:27 +0000 (08:29 +0000)
committerStefan Eissing <icing@apache.org>
Fri, 30 Jun 2023 08:29:27 +0000 (08:29 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1910702 13f79535-47bb-0310-9956-ffa450edef68

test/modules/http2/test_003_get.py
test/modules/http2/test_600_h2proxy.py

index 57c3775bfd0fb8e6bfaefa501d304ea17f1a9524..572c4fb702304972c889fbab411d104591943ef2 100644 (file)
@@ -251,8 +251,6 @@ content-type: text/html
 
     # produce an error during response body
     def test_h2_003_71(self, env, repeat):
-        if env.httpd_is_at_least('2.5.0'):
-            pytest.skip("needs fix in core protocol handling")
         url = env.mkurl("https", "cgi", "/h2test/error?body_error=timeout")
         r = env.curl_get(url)
         assert r.exit_code != 0, f"{r}"
@@ -262,8 +260,6 @@ content-type: text/html
 
     # produce an error, fail to generate an error bucket
     def test_h2_003_72(self, env, repeat):
-        if env.httpd_is_at_least('2.5.0'):
-            pytest.skip("needs fix in core protocol handling")
         url = env.mkurl("https", "cgi", "/h2test/error?body_error=timeout&error_bucket=0")
         r = env.curl_get(url)
         assert r.exit_code != 0, f"{r}"
index 4f071cc4376dd21b0f756a28dbd1731bc7357963..48c6f7493a2a74c2bc6b097013ef846335591f3d 100644 (file)
@@ -153,8 +153,6 @@ class TestH2Proxy:
 
     # produce an error during response body
     def test_h2_600_31(self, env, repeat):
-        if env.httpd_is_at_least('2.5.0'):
-            pytest.skip("needs fix in core protocol handling")
         conf = H2Conf(env)
         conf.add_vhost_cgi(h2proxy_self=True)
         conf.install()
@@ -168,8 +166,6 @@ class TestH2Proxy:
 
     # produce an error, fail to generate an error bucket
     def test_h2_600_32(self, env, repeat):
-        if env.httpd_is_at_least('2.5.0'):
-            pytest.skip("needs fix in core protocol handling")
         conf = H2Conf(env)
         conf.add_vhost_cgi(h2proxy_self=True)
         conf.install()
@@ -179,4 +175,4 @@ class TestH2Proxy:
         # depending on when the error is detect in proxying, if may RST the
         # stream (exit_code != 0) or give a 503 response.
         if r.exit_code == 0:
-            assert r.response['status'] == 503
+            assert r.response['status'] in [502, 503]