diff options
author | 2023-07-02 23:24:15 -0400 | |
---|---|---|
committer | 2023-07-02 20:24:15 -0700 | |
commit | c21fadf9bcc939dcf7d949cda86c974481b5f609 (patch) | |
tree | 8506f5b8b96ae6ce3d6721929f5a44b560c187c4 /test/js/web/fetch/fetch.test.ts | |
parent | 0db31c2b435ab7cd4d09810c2a2b22969c7366c5 (diff) | |
download | bun-c21fadf9bcc939dcf7d949cda86c974481b5f609.tar.gz bun-c21fadf9bcc939dcf7d949cda86c974481b5f609.tar.zst bun-c21fadf9bcc939dcf7d949cda86c974481b5f609.zip |
set content-length 0 in some cases (#3503)
Diffstat (limited to 'test/js/web/fetch/fetch.test.ts')
-rw-r--r-- | test/js/web/fetch/fetch.test.ts | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/test/js/web/fetch/fetch.test.ts b/test/js/web/fetch/fetch.test.ts index 4d529b231..6b87cc613 100644 --- a/test/js/web/fetch/fetch.test.ts +++ b/test/js/web/fetch/fetch.test.ts @@ -387,6 +387,25 @@ describe("fetch", () => { }).toThrow("fetch() request with GET/HEAD/OPTIONS method cannot have body."); }), ); + + it("content length is inferred", async () => { + startServer({ + fetch(req) { + return new Response(req.headers.get("content-length")); + }, + hostname: "localhost", + }); + + // POST with body + const url = `http://${server.hostname}:${server.port}`; + const response = await fetch(url, { method: "POST", body: "buntastic" }); + expect(response.status).toBe(200); + expect(await response.text()).toBe("9"); + + const response2 = await fetch(url, { method: "POST", body: "" }); + expect(response2.status).toBe(200); + expect(await response2.text()).toBe("0"); + }); }); it("simultaneous HTTPS fetch", async () => { |