Skip to content

Commit 1b0af49

Browse files
committed
Bug 1467737 [wpt PR 11401] - Consolidate label conversion tests + add timeLog, a=testonly
Automatic update from web-platform-testsConsolidate console label conversion tests + add timeLog -- wpt-commits: 38ef0a35c3890876923fe96d34e5ebbb56c4e568 wpt-pr: 11401 UltraBlame original commit: b431f227a27055736e45654319a27f30571af954
1 parent 7bd401e commit 1b0af49

File tree

4 files changed

+39
-125
lines changed

4 files changed

+39
-125
lines changed

testing/web-platform/meta/MANIFEST.json

+10-24
Original file line numberDiff line numberDiff line change
@@ -312674,16 +312674,6 @@
312674312674
{}
312675312675
]
312676312676
],
312677-
"console/console-counting-label-conversion.any.js": [
312678-
[
312679-
"/console/console-counting-label-conversion.any.html",
312680-
{}
312681-
],
312682-
[
312683-
"/console/console-counting-label-conversion.any.worker.html",
312684-
{}
312685-
]
312686-
],
312687312677
"console/console-is-a-namespace.any.js": [
312688312678
[
312689312679
"/console/console-is-a-namespace.any.html",
@@ -312694,23 +312684,23 @@
312694312684
{}
312695312685
]
312696312686
],
312697-
"console/console-tests-historical.any.js": [
312687+
"console/console-label-conversion.any.js": [
312698312688
[
312699-
"/console/console-tests-historical.any.html",
312689+
"/console/console-label-conversion.any.html",
312700312690
{}
312701312691
],
312702312692
[
312703-
"/console/console-tests-historical.any.worker.html",
312693+
"/console/console-label-conversion.any.worker.html",
312704312694
{}
312705312695
]
312706312696
],
312707-
"console/console-time-label-conversion.any.js": [
312697+
"console/console-tests-historical.any.js": [
312708312698
[
312709-
"/console/console-time-label-conversion.any.html",
312699+
"/console/console-tests-historical.any.html",
312710312700
{}
312711312701
],
312712312702
[
312713-
"/console/console-time-label-conversion.any.worker.html",
312703+
"/console/console-tests-historical.any.worker.html",
312714312704
{}
312715312705
]
312716312706
],
@@ -436087,14 +436077,14 @@
436087436077
"587de5bb8dcb002025244e8058b52d4ba0b1bdd3",
436088436078
"manual"
436089436079
],
436090-
"console/console-counting-label-conversion.any.js": [
436091-
"a48d28ca0a1d6c5c50dc5d29521563a44beb6590",
436092-
"testharness"
436093-
],
436094436080
"console/console-is-a-namespace.any.js": [
436095436081
"9ad845184a6dd40b1ab64992ca514dbf4736c930",
436096436082
"testharness"
436097436083
],
436084+
"console/console-label-conversion.any.js": [
436085+
"66b683e11b294518c3057ff371fe7f8a0b00dafb",
436086+
"testharness"
436087+
],
436098436088
"console/console-number-format-specifiers-symbol-manual.html": [
436099436089
"a0b0c97ec5312027ff0152536458071254235d01",
436100436090
"manual"
@@ -436107,10 +436097,6 @@
436107436097
"ee18f8a672534b478ca15990026638a73588fcf4",
436108436098
"testharness"
436109436099
],
436110-
"console/console-time-label-conversion.any.js": [
436111-
"5e2ca9e9dca88c6de32408b461f3f4c54c586031",
436112-
"testharness"
436113-
],
436114436100
"content-security-policy/META.yml": [
436115436101
"5819f0331b11875efb46ad15e02d28f59770cc9d",
436116436102
"support"

testing/web-platform/tests/console/console-counting-label-conversion.any.js

-55
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
"use strict";
2+
3+
4+
5+
const methods = ['count', 'countReset', 'time', 'timeLog', 'timeEnd'];
6+
7+
for (const method of methods) {
8+
test(() => {
9+
let labelToStringCalled = false;
10+
11+
console[method]({
12+
toString() {
13+
labelToStringCalled = true;
14+
}
15+
});
16+
17+
assert_true(labelToStringCalled, `${method}() must call toString() on label when label is an object`);
18+
}, `console.${method}()'s label gets converted to string via label.toString() when label is an object`);
19+
20+
test(() => {
21+
assert_throws({name: 'Error'}, () => {
22+
console[method]({
23+
toString() {
24+
throw new Error('conversion error');
25+
}
26+
});
27+
}, `${method} must re-throw any exceptions thrown by label.toString() conversion`);
28+
}, `console.${method}() throws exceptions generated by erroneous label.toString() conversion`);
29+
}

testing/web-platform/tests/console/console-time-label-conversion.any.js

-46
This file was deleted.

0 commit comments

Comments
 (0)