forked from mirrors/gecko-dev
We weren't checking properly undefined value, which was hiding issues in some tests. The helpers are fixed and a few test modified to make them pass. Differential Revision: https://phabricator.services.mozilla.com/D119096
46 lines
1.4 KiB
JavaScript
46 lines
1.4 KiB
JavaScript
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
"use strict";
|
|
|
|
/* import-globals-from ../../../../client/shared/test/shared-head.js */
|
|
|
|
Services.scriptloader.loadSubScript(
|
|
"chrome://mochitests/content/browser/devtools/client/shared/test/shared-head.js",
|
|
this
|
|
);
|
|
|
|
function checkObject(object, expected) {
|
|
if (object && object.getGrip) {
|
|
object = object.getGrip();
|
|
}
|
|
|
|
for (const name of Object.keys(expected)) {
|
|
const expectedValue = expected[name];
|
|
const value = object[name];
|
|
checkValue(name, value, expectedValue);
|
|
}
|
|
}
|
|
|
|
function checkValue(name, value, expected) {
|
|
if (expected === null) {
|
|
is(value, null, `'${name}' is null`);
|
|
} else if (expected === undefined) {
|
|
is(value, expected, `'${name}' is undefined`);
|
|
} else if (
|
|
typeof expected == "string" ||
|
|
typeof expected == "number" ||
|
|
typeof expected == "boolean"
|
|
) {
|
|
is(value, expected, "property '" + name + "'");
|
|
} else if (expected instanceof RegExp) {
|
|
ok(expected.test(value), name + ": " + expected + " matched " + value);
|
|
} else if (Array.isArray(expected)) {
|
|
info("checking array for property '" + name + "'");
|
|
checkObject(value, expected);
|
|
} else if (typeof expected == "object") {
|
|
info("checking object for property '" + name + "'");
|
|
checkObject(value, expected);
|
|
}
|
|
}
|