-
Notifications
You must be signed in to change notification settings - Fork 3.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Part 4: Migrate tests for custom data
Porting only the `data` test since there is a behavior mismatch for `icon`. Differential Revision: https://phabricator.services.mozilla.com/D169319 bugzilla-url: https://bugzilla.mozilla.org/show_bug.cgi?id=1781588 gecko-commit: 8f48638b3afe76768df717b6ebf04b8717962726 gecko-reviewers: smaug
- Loading branch information
1 parent
aba25a6
commit 302313d
Showing
3 changed files
with
80 additions
and
0 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
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,66 @@ | ||
var fakeCustomData = (function() { | ||
var buffer = new ArrayBuffer(2); | ||
new DataView(buffer).setInt16(0, 42, true); | ||
var canvas = document.createElement("canvas"); | ||
canvas.width = canvas.height = 100; | ||
var context = canvas.getContext("2d"); | ||
|
||
var map = new Map(); | ||
var set = new Set(); | ||
map.set("test", 42); | ||
set.add(4); | ||
set.add(2); | ||
|
||
return { | ||
primitives: { | ||
a: 123, | ||
b: "test", | ||
c: true, | ||
d: [1, 2, 3], | ||
}, | ||
date: new Date(2013, 2, 1, 1, 10), | ||
regexp: new RegExp("[^.]+"), | ||
arrayBuffer: buffer, | ||
imageData: context.createImageData(100, 100), | ||
map, | ||
set, | ||
}; | ||
})(); | ||
|
||
function assert_custom_data(dataObj) { | ||
assert_equals(typeof dataObj, "object", "data should be a JS object"); | ||
assert_equals( | ||
JSON.stringify(dataObj.primitives), | ||
JSON.stringify(fakeCustomData.primitives), | ||
"data.primitives should be preserved" | ||
); | ||
assert_equals( | ||
dataObj.date.toDateString(), | ||
fakeCustomData.date.toDateString(), | ||
"data.date should be preserved" | ||
); | ||
assert_equals( | ||
dataObj.regexp.exec("http://www.domain.com")[0].substr(7), | ||
"www", | ||
"data.regexp should be preserved" | ||
); | ||
assert_equals( | ||
new Int16Array(dataObj.arrayBuffer)[0], | ||
42, | ||
"data.arrayBuffer should be preserved" | ||
); | ||
assert_equals( | ||
JSON.stringify(dataObj.imageData.data), | ||
JSON.stringify(fakeCustomData.imageData.data), | ||
"data.imageData should be preserved" | ||
) | ||
assert_equals( | ||
dataObj.map.get("test"), | ||
42, | ||
"data.map should be preserved" | ||
); | ||
assert_true( | ||
dataObj.set.has(4) && dataObj.set.has(2), | ||
"data.set should be preserved" | ||
); | ||
} |
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