1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-25 15:29:32 -05:00

tests: re-enable disabled Response.formData test (#11453)

This commit is contained in:
Luca Casonato 2021-07-20 00:11:50 +02:00 committed by GitHub
parent 7d69f06db8
commit 55632266e9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 22 additions and 25 deletions

View file

@ -275,7 +275,7 @@ unitTest(
await response.formData();
},
TypeError,
"Invalid form data",
"Body can not be decoded as form data",
);
},
);

View file

@ -43,18 +43,17 @@ unitTest(async function responseBlob() {
assertEquals(await blob.arrayBuffer(), new Uint8Array([1, 2, 3]).buffer);
});
// TODO(lucacasonato): re-enable test once #10002 is fixed.
unitTest({ ignore: true }, async function responseFormData() {
unitTest(async function responseFormData() {
const input = new FormData();
input.append("hello", "world");
const response = new Response(input, {
headers: { "content-type": "application/x-www-form-urlencoded" },
});
const response = new Response(input);
const contentType = response.headers.get("content-type")!;
assert(contentType.startsWith("multipart/form-data"));
const formDataPromise = response.formData();
assert(formDataPromise instanceof Promise);
const formData = await formDataPromise;
assert(formData instanceof FormData);
assertEquals(formData, input);
assertEquals([...formData], [...input]);
});
unitTest(function customInspectFunction(): void {

View file

@ -285,7 +285,6 @@
type: mimeType !== null ? mimesniff.serializeMimeType(mimeType) : "",
});
case "FormData": {
if (mimeType !== null) {
if (mimeType !== null) {
const essence = mimesniff.essence(mimeType);
if (essence === "multipart/form-data") {
@ -305,8 +304,7 @@
),
);
}
}
throw new TypeError("Invalid form data");
throw new TypeError("Body can not be decoded as form data");
}
throw new TypeError("Missing content type");
}