summaryrefslogtreecommitdiff
path: root/test-suite
diff options
context:
space:
mode:
authorChristopher Baines <mail@cbaines.net>2022-06-30 19:15:53 +0100
committerLudovic Courtès <ludo@gnu.org>2022-07-04 11:22:11 +0200
commit9a3353a993e8b73312a0005278f12c67cffa9854 (patch)
tree5b7776d51f03f40ae99d4b144932677f05051ae7 /test-suite
parenta84d8f6473979e5967e7eafa0a46ab74e12cc036 (diff)
downloadguile-9a3353a993e8b73312a0005278f12c67cffa9854.tar.gz
web: Handle ending CRLF (\r\n) for chunked input and output ports.
The chunked transfer encoding specifies the chunked body ends with CRLF. This is in addition to the CRLF at the end of the last chunk, so there should be CRLF twice at the end of the chunked body: https://datatracker.ietf.org/doc/html/rfc2616#section-3.6.1 * module/web/http.scm (make-chunked-input-port): Read two extra bytes at the end of the chunked input. (make-chunked-output-port): Write the missing \r\n when closing the port. * test-suite/tests/web-http.test (chunked encoding): Add missing \r\n to test data. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'test-suite')
-rw-r--r--test-suite/tests/web-http.test4
1 files changed, 2 insertions, 2 deletions
diff --git a/test-suite/tests/web-http.test b/test-suite/tests/web-http.test
index 5c6a954b9..3c2acf11c 100644
--- a/test-suite/tests/web-http.test
+++ b/test-suite/tests/web-http.test
@@ -426,7 +426,7 @@
'((basic (realm . "guile")))))
(with-test-prefix "chunked encoding"
- (let* ((s "5\r\nFirst\r\nA\r\n line\n Sec\r\n8\r\nond line\r\n0\r\n")
+ (let* ((s "5\r\nFirst\r\nA\r\n line\n Sec\r\n8\r\nond line\r\n0\r\n\r\n")
(p (make-chunked-input-port (open-input-string s))))
(pass-if-equal
"First line\n Second line"
@@ -502,4 +502,4 @@
(force-output out-chunked)
(display "Third chunk" out-chunked)
(close-port out-chunked))))
- "b\r\nFirst chunk\r\nc\r\nSecond chunk\r\nb\r\nThird chunk\r\n0\r\n"))
+ "b\r\nFirst chunk\r\nc\r\nSecond chunk\r\nb\r\nThird chunk\r\n0\r\n\r\n"))