# 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}"
# 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}"
# 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()
# 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()
# 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]