Skip to content

Commit bb4e0ed

Browse files
committed
vsicurl.py: fix compatibility with curl 8.13.0rc1
We wrongly formatted HTTP response header line (omitting the reason, and foremost the space before the optional reason). The change of https://github.com/curl/curl/pull/16520/files#diff-14c8235d370910f1781de1a00ed1957ec948e84e88fdc52db87bd4eb7c7167ffR3896 no longer tolerates this
1 parent e073382 commit bb4e0ed

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

autotest/gcore/vsicurl.py

+5-5
Original file line numberDiff line numberDiff line change
@@ -426,7 +426,7 @@ def test_vsicurl_test_redirect_with_expires(server):
426426
current_time = 1500
427427

428428
def method(request):
429-
response = "HTTP/1.1 302\r\n"
429+
response = "HTTP/1.1 302 Found\r\n"
430430
response += "Server: foo\r\n"
431431
response += (
432432
"Date: "
@@ -473,7 +473,7 @@ def method(request):
473473
request.end_headers()
474474
else:
475475
# After a failed attempt on a HEAD, the client should go there
476-
response = "HTTP/1.1 200\r\n"
476+
response = "HTTP/1.1 200 OK\r\n"
477477
response += "Server: foo\r\n"
478478
response += (
479479
"Date: "
@@ -590,7 +590,7 @@ def test_vsicurl_test_redirect_x_amz(server):
590590
current_time = 1500
591591

592592
def method(request):
593-
response = "HTTP/1.1 302\r\n"
593+
response = "HTTP/1.1 302 Found\r\n"
594594
response += "Server: foo\r\n"
595595
response += (
596596
"Date: "
@@ -640,7 +640,7 @@ def method(request):
640640
request.end_headers()
641641
else:
642642
# After a failed attempt on a HEAD, the client should go there
643-
response = "HTTP/1.1 200\r\n"
643+
response = "HTTP/1.1 200 OK\r\n"
644644
response += "Server: foo\r\n"
645645
response += (
646646
"Date: "
@@ -1369,7 +1369,7 @@ def test_vsicurl_test_CPL_VSIL_CURL_USE_HEAD_NO(server):
13691369
handler.add("GET", "/test_CPL_VSIL_CURL_USE_HEAD_NO/", 404)
13701370

13711371
def method(request):
1372-
response = "HTTP/1.1 200\r\n"
1372+
response = "HTTP/1.1 200 OK\r\n"
13731373
response += "Server: foo\r\n"
13741374
response += "Content-type: text/plain\r\n"
13751375
response += "Content-Length: 1000000\r\n"

0 commit comments

Comments
 (0)