summaryrefslogtreecommitdiffstats
path: root/browser/components/uitour/test/browser_UITour_colorway.js
blob: ede28a38b0e42122083e13fe1090f18e6749db32 (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
66
67
68
69
70
71
72
73
74
/* Any copyright is dedicated to the Public Domain.
 * http://creativecommons.org/publicdomain/zero/1.0/ */

"use strict";

var gTestTab;
var gContentAPI;
add_task(setup_UITourTest);

// Tests assume there's at least 1 builtin theme with colorway id.
const { BuiltInThemes } = ChromeUtils.importESModule(
  "resource:///modules/BuiltInThemes.sys.mjs"
);
const COLORWAY_IDS = [...BuiltInThemes.builtInThemeMap.keys()].filter(
  id =>
    id.endsWith("-colorway@mozilla.org") && !BuiltInThemes.themeIsExpired(id)
);

add_UITour_task(async function test_getColorways() {
  const data = await getConfigurationPromise("colorway");

  ok(
    Array.isArray(data),
    "getConfiguration result should be an array of colorways"
  );
});

add_UITour_task(async function test_setColorway_unknown() {
  await gContentAPI.setConfiguration("colorway", "unknown");

  ok(
    (await AddonManager.getAddonByID("default-theme@mozilla.org")).isActive,
    "gContentAPI did not activate unknown colorway"
  );
});

add_UITour_task(async function test_setColorway() {
  const id = COLORWAY_IDS.at(0);
  if (!id) {
    info("No colorways to test");
    return;
  }

  await gContentAPI.setConfiguration("colorway", id);

  ok(
    (await AddonManager.getAddonByID(id)).isActive,
    `gContentAPI activated colorway ${id}`
  );
});

add_UITour_task(async function test_anotherColorway() {
  const id = COLORWAY_IDS.at(-1);
  if (!id) {
    info("No colorways to test");
    return;
  }

  await gContentAPI.setConfiguration("colorway", id);

  ok(
    (await AddonManager.getAddonByID(id)).isActive,
    `gContentAPI activated another colorway ${id}`
  );
});

add_UITour_task(async function test_resetColorway() {
  await gContentAPI.setConfiguration("colorway");

  ok(
    (await AddonManager.getAddonByID("default-theme@mozilla.org")).isActive,
    "gContentAPI reset colorway to original theme"
  );
});