summaryrefslogtreecommitdiffstats
path: root/devtools/client/inspector/test/browser_inspector_highlighter-by-type.js
blob: c9e67c8ecadc9dd88ec1ce42bf78c8cc6b251d15 (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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
/* 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";

// Check that custom highlighters can be retrieved by type and that they expose
// the expected API.

const TEST_URL = "data:text/html;charset=utf-8,custom highlighters";

add_task(async function () {
  const { inspector } = await openInspectorForURL(TEST_URL);

  await manyInstancesOfCustomHighlighters(inspector);
  await showHideMethodsAreAvailable(inspector);
  await unknownHighlighterTypeShouldntBeAccepted(inspector);
});

async function manyInstancesOfCustomHighlighters({ inspectorFront }) {
  const h1 = await inspectorFront.getHighlighterByType("BoxModelHighlighter");
  const h2 = await inspectorFront.getHighlighterByType("BoxModelHighlighter");
  ok(h1 !== h2, "getHighlighterByType returns new instances every time (1)");

  const h3 = await inspectorFront.getHighlighterByType(
    "CssTransformHighlighter"
  );
  const h4 = await inspectorFront.getHighlighterByType(
    "CssTransformHighlighter"
  );
  ok(h3 !== h4, "getHighlighterByType returns new instances every time (2)");
  ok(
    h3 !== h1 && h3 !== h2,
    "getHighlighterByType returns new instances every time (3)"
  );
  ok(
    h4 !== h1 && h4 !== h2,
    "getHighlighterByType returns new instances every time (4)"
  );

  await h1.finalize();
  await h2.finalize();
  await h3.finalize();
  await h4.finalize();
}

async function showHideMethodsAreAvailable({ inspectorFront }) {
  const h1 = await inspectorFront.getHighlighterByType("BoxModelHighlighter");
  const h2 = await inspectorFront.getHighlighterByType(
    "CssTransformHighlighter"
  );

  ok("show" in h1, "Show method is present on the front API");
  ok("show" in h2, "Show method is present on the front API");
  ok("hide" in h1, "Hide method is present on the front API");
  ok("hide" in h2, "Hide method is present on the front API");

  await h1.finalize();
  await h2.finalize();
}

async function unknownHighlighterTypeShouldntBeAccepted({ inspectorFront }) {
  const h = await inspectorFront.getHighlighterByType("whatever");
  ok(!h, "No highlighter was returned for the invalid type");
}