-
Notifications
You must be signed in to change notification settings - Fork 29.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test: update user-timing web-platform tests
PR-URL: #48321 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Filip Skokan <panva.ip@gmail.com>
- Loading branch information
Showing
9 changed files
with
75 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 2 additions & 0 deletions
2
test/fixtures/wpt/user-timing/idlharness-shadowrealm.window.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
// META: script=/resources/idlharness-shadowrealm.js | ||
idl_test_shadowrealm(["user-timing"], ["hr-time", "performance-timeline", "dom"]); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,50 @@ | ||
test(function() { | ||
assert_throws_js(TypeError, function() { self.performance.mark("mark1", 123); }, "Number passed as a dict argument should cause type-error.") | ||
}, "Number should be rejected as the mark-options.") | ||
// If you're testing an API that constructs a PerformanceMark, add your test here. | ||
// See the for loop below for details. | ||
const markConstructionTests = [ | ||
{ | ||
testName: "Number should be rejected as the mark-options.", | ||
testFunction: function(newMarkFunction) { | ||
assert_throws_js(TypeError, function() { newMarkFunction("mark1", 123); }, "Number passed as a dict argument should cause type-error."); | ||
}, | ||
}, | ||
|
||
test(function() { | ||
assert_throws_js(TypeError, function() { self.performance.mark("mark1", NaN); }, "NaN passed as a dict argument should cause type-error.") | ||
}, "NaN should be rejected as the mark-options.") | ||
{ | ||
testName: "NaN should be rejected as the mark-options.", | ||
testFunction: function(newMarkFunction) { | ||
assert_throws_js(TypeError, function() { newMarkFunction("mark1", NaN); }, "NaN passed as a dict argument should cause type-error."); | ||
}, | ||
}, | ||
|
||
test(function() { | ||
assert_throws_js(TypeError, function() { self.performance.mark("mark1", Infinity); }, "Infinity passed as a dict argument should cause type-error.") | ||
}, "Infinity should be rejected as the mark-options.") | ||
{ | ||
testName: "Infinity should be rejected as the mark-options.", | ||
testFunction: function(newMarkFunction) { | ||
assert_throws_js(TypeError, function() { newMarkFunction("mark1", Infinity); }, "Infinity passed as a dict argument should cause type-error."); | ||
}, | ||
}, | ||
|
||
test(function() { | ||
assert_throws_js(TypeError, function() { self.performance.mark("mark1", "string"); }, "String passed as a dict argument should cause type-error.") | ||
}, "String should be rejected as the mark-options.") | ||
{ | ||
testName: "String should be rejected as the mark-options.", | ||
testFunction: function(newMarkFunction) { | ||
assert_throws_js(TypeError, function() { newMarkFunction("mark1", "string"); }, "String passed as a dict argument should cause type-error.") | ||
}, | ||
}, | ||
|
||
{ | ||
testName: "Negative startTime in mark-options should be rejected", | ||
testFunction: function(newMarkFunction) { | ||
assert_throws_js(TypeError, function() { newMarkFunction("mark1", {startTime: -1}); }, "Negative startTime should cause type-error.") | ||
}, | ||
}, | ||
]; | ||
|
||
// There are multiple function calls that can construct a mark using the same arguments so we run | ||
// each test on each construction method here, avoiding duplication. | ||
for (let testInfo of markConstructionTests) { | ||
test(function() { | ||
testInfo.testFunction(self.performance.mark); | ||
}, `[performance.mark]: ${testInfo.testName}`); | ||
|
||
test(function() { | ||
testInfo.testFunction((markName, obj) => new PerformanceMark(markName, obj)); | ||
}, `[new PerformanceMark]: ${testInfo.testName}`); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters