Skip to content

Commit

Permalink
Fetch: redo Content-Length parser test names
Browse files Browse the repository at this point in the history
See whatwg/fetch#1183 for context.
  • Loading branch information
annevk committed Mar 5, 2021
1 parent 0d5b360 commit 34f0fc0
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions fetch/content-length/parsing.window.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,16 @@ promise_test(() => {
}, "Loading JSON…");

function runTests(testUnits) {
testUnits.forEach(testUnit => {
const input = encodeURIComponent(testUnit.input);
testUnits.forEach(({ input, output }) => {
promise_test(t => {
const result = fetch("resources/content-length.py?length=" + input);
if (testUnit.output === null) {
const result = fetch(`resources/content-length.py?length=${encodeURIComponent(input)}`);
if (output === null) {
return promise_rejects_js(t, TypeError, result);
} else {
return result.then(res => res.text()).then(text => {
assert_equals(text.length, testUnit.output);
assert_equals(text.length, output);
});
}
}, input);
}, `Input: ${format_value(input)}. Expected: ${output === null ? "network error" : output}.`);
});
}

0 comments on commit 34f0fc0

Please sign in to comment.