mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
4e55362a90
Map the modules directory to services-sync instead of weave and update imports.
16 lines
597 B
JavaScript
16 lines
597 B
JavaScript
_("Make sure makeGUID makes guids of the right length/characters");
|
|
Cu.import("resource://services-sync/util.js");
|
|
|
|
function run_test() {
|
|
// XXX this could cause random failures as guids arent always unique...
|
|
_("Create a bunch of guids to make sure they don't conflict");
|
|
let guids = [];
|
|
for (let i = 0; i < 1000; i++) {
|
|
let newGuid = Utils.makeGUID();
|
|
_("Making sure guid has the right length without special characters:", newGuid);
|
|
do_check_eq(encodeURIComponent(newGuid).length, 10);
|
|
do_check_true(guids.every(function(g) g != newGuid));
|
|
guids.push(newGuid);
|
|
}
|
|
}
|