summaryrefslogtreecommitdiffstats
path: root/devtools/shared/commands/script/tests/head.js
blob: 50635e45022f2c889862107390469a2594dc18bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
/* 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";

Services.scriptloader.loadSubScript(
  "chrome://mochitests/content/browser/devtools/client/shared/test/shared-head.js",
  this
);

function checkObject(object, expected, message) {
  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, message);
  }
}

function checkValue(name, value, expected, message) {
  if (message) {
    message = ` for '${message}'`;
  }

  if (expected === null) {
    is(value, null, `'${name}' is null${message}`);
  } else if (expected === undefined) {
    is(value, expected, `'${name}' is undefined${message}`);
  } else if (
    typeof expected == "string" ||
    typeof expected == "number" ||
    typeof expected == "boolean"
  ) {
    is(value, expected, "property '" + name + "'" + message);
  } else if (expected instanceof RegExp) {
    ok(
      expected.test(value),
      name + ": " + expected + " matched " + value + message
    );
  } else if (Array.isArray(expected)) {
    info("checking array for property '" + name + "'" + message);
    checkObject(value, expected, message);
  } else if (typeof expected == "object") {
    info("checking object for property '" + name + "'" + message);
    checkObject(value, expected, message);
  }
}