2
0

test_05_errors.py 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. #!/usr/bin/env python3
  2. # -*- coding: utf-8 -*-
  3. #***************************************************************************
  4. # _ _ ____ _
  5. # Project ___| | | | _ \| |
  6. # / __| | | | |_) | |
  7. # | (__| |_| | _ <| |___
  8. # \___|\___/|_| \_\_____|
  9. #
  10. # Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al.
  11. #
  12. # This software is licensed as described in the file COPYING, which
  13. # you should have received as part of this distribution. The terms
  14. # are also available at https://curl.se/docs/copyright.html.
  15. #
  16. # You may opt to use, copy, modify, merge, publish, distribute and/or sell
  17. # copies of the Software, and permit persons to whom the Software is
  18. # furnished to do so, under the terms of the COPYING file.
  19. #
  20. # This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
  21. # KIND, either express or implied.
  22. #
  23. # SPDX-License-Identifier: curl
  24. #
  25. ###########################################################################
  26. #
  27. import json
  28. import logging
  29. from typing import Optional, Tuple, List, Dict
  30. import pytest
  31. from testenv import Env, CurlClient, ExecResult
  32. log = logging.getLogger(__name__)
  33. @pytest.mark.skipif(condition=not Env.httpd_is_at_least('2.4.55'),
  34. reason=f"httpd version too old for this: {Env.httpd_version()}")
  35. class TestErrors:
  36. @pytest.fixture(autouse=True, scope='class')
  37. def _class_scope(self, env, httpd, nghttpx):
  38. if env.have_h3():
  39. nghttpx.start_if_needed()
  40. httpd.clear_extra_configs()
  41. httpd.reload()
  42. # download 1 file, check that we get CURLE_PARTIAL_FILE
  43. @pytest.mark.parametrize("proto", ['http/1.1', 'h2', 'h3'])
  44. def test_05_01_partial_1(self, env: Env, httpd, nghttpx, repeat,
  45. proto):
  46. if proto == 'h3' and not env.have_h3():
  47. pytest.skip("h3 not supported")
  48. if proto == 'h3' and env.curl_uses_lib('msh3'):
  49. pytest.skip("msh3 stalls here")
  50. count = 1
  51. curl = CurlClient(env=env)
  52. urln = f'https://{env.authority_for(env.domain1, proto)}' \
  53. f'/curltest/tweak?id=[0-{count - 1}]'\
  54. '&chunks=3&chunk_size=16000&body_error=reset'
  55. r = curl.http_download(urls=[urln], alpn_proto=proto, extra_args=[
  56. '--retry', '0'
  57. ])
  58. r.check_exit_code(False)
  59. invalid_stats = []
  60. for idx, s in enumerate(r.stats):
  61. if 'exitcode' not in s or s['exitcode'] not in [18, 56, 92, 95]:
  62. invalid_stats.append(f'request {idx} exit with {s["exitcode"]}')
  63. assert len(invalid_stats) == 0, f'failed: {invalid_stats}'
  64. # download files, check that we get CURLE_PARTIAL_FILE for all
  65. @pytest.mark.parametrize("proto", ['h2', 'h3'])
  66. def test_05_02_partial_20(self, env: Env, httpd, nghttpx, repeat,
  67. proto):
  68. if proto == 'h3' and not env.have_h3():
  69. pytest.skip("h3 not supported")
  70. if proto == 'h3' and env.curl_uses_lib('msh3'):
  71. pytest.skip("msh3 stalls here")
  72. count = 20
  73. curl = CurlClient(env=env)
  74. urln = f'https://{env.authority_for(env.domain1, proto)}' \
  75. f'/curltest/tweak?id=[0-{count - 1}]'\
  76. '&chunks=5&chunk_size=16000&body_error=reset'
  77. r = curl.http_download(urls=[urln], alpn_proto=proto, extra_args=[
  78. '--retry', '0', '--parallel',
  79. ])
  80. r.check_exit_code(False)
  81. assert len(r.stats) == count, f'did not get all stats: {r}'
  82. invalid_stats = []
  83. for idx, s in enumerate(r.stats):
  84. if 'exitcode' not in s or s['exitcode'] not in [18, 55, 56, 92, 95]:
  85. invalid_stats.append(f'request {idx} exit with {s["exitcode"]}\n{s}')
  86. assert len(invalid_stats) == 0, f'failed: {invalid_stats}'
  87. # access a resource that, on h2, RST the stream with HTTP_1_1_REQUIRED
  88. def test_05_03_required(self, env: Env, httpd, nghttpx, repeat):
  89. curl = CurlClient(env=env)
  90. proto = 'http/1.1'
  91. urln = f'https://{env.authority_for(env.domain1, proto)}/curltest/1_1'
  92. r = curl.http_download(urls=[urln], alpn_proto=proto)
  93. r.check_exit_code(0)
  94. r.check_response(http_status=200, count=1)
  95. proto = 'h2'
  96. urln = f'https://{env.authority_for(env.domain1, proto)}/curltest/1_1'
  97. r = curl.http_download(urls=[urln], alpn_proto=proto)
  98. r.check_exit_code(0)
  99. r.check_response(http_status=200, count=1)
  100. # check that we did a downgrade
  101. assert r.stats[0]['http_version'] == '1.1', r.dump_logs()