summaryrefslogtreecommitdiffstats
path: root/toolkit/components/extensions/test/browser/browser_ext_themes_dynamic_onUpdated.js
blob: 34c7162810bab38f2ffe4b39976e09ec9ad6eebb (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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
"use strict";

// This test checks whether browser.theme.onUpdated works correctly with different
// types of dynamic theme updates.

// PNG image data for a simple red dot.
const BACKGROUND_1 =
  "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAAHElEQVQI12P4//8/w38GIAXDIBKE0DHxgljNBAAO9TXL0Y4OHwAAAABJRU5ErkJggg==";
// PNG image data for the Mozilla dino head.
const BACKGROUND_2 =
  "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAAK/INwWK6QAAABl0RVh0U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAAHWSURBVHjaYvz//z8DJQAggJiQOe/fv2fv7Oz8rays/N+VkfG/iYnJfyD/1+rVq7ffu3dPFpsBAAHEAHIBCJ85c8bN2Nj4vwsDw/8zQLwKiO8CcRoQu0DxqlWrdsHUwzBAAIGJmTNnPgYa9j8UqhFElwPxf2MIDeIrKSn9FwSJoRkAEEAM0DD4DzMAyPi/G+QKY4hh5WAXGf8PDQ0FGwJ22d27CjADAAIIrLmjo+MXA9R2kAHvGBA2wwx6B8W7od6CeQcggKCmCEL8bgwxYCbUIGTDVkHDBia+CuotgACCueD3TDQN75D4xmAvCoK9ARMHBzAw0AECiBHkAlC0Mdy7x9ABNA3obAZXIAa6iKEcGlMVQHwWyjYuL2d4v2cPg8vZswx7gHyAAAK7AOif7SAbOqCmn4Ha3AHFsIDtgPq/vLz8P4MSkJ2W9h8ggBjevXvHDo4FQUQg/kdypqCg4H8lUIACnQ/SOBMYI8bAsAJFPcj1AAEEjwVQqLpAbXmH5BJjqI0gi9DTAAgDBBCcAVLkgmQ7yKCZxpCQxqUZhAECCJ4XgMl493ug21ZD+aDAXH0WLM4A9MZPXJkJIIAwTAR5pQMalaCABQUULttBGCCAGCnNzgABBgAMJ5THwGvJLAAAAABJRU5ErkJggg==";

add_task(async function test_on_updated() {
  let extension = ExtensionTestUtils.loadExtension({
    async background() {
      const ACCENT_COLOR_1 = "#a14040";
      const TEXT_COLOR_1 = "#fac96e";

      const ACCENT_COLOR_2 = "#03fe03";
      const TEXT_COLOR_2 = "#0ef325";

      const theme1 = {
        images: {
          theme_frame: "image1.png",
        },
        colors: {
          frame: ACCENT_COLOR_1,
          tab_background_text: TEXT_COLOR_1,
        },
      };

      const theme2 = {
        images: {
          theme_frame: "image2.png",
        },
        colors: {
          frame: ACCENT_COLOR_2,
          tab_background_text: TEXT_COLOR_2,
        },
      };

      function testTheme1(returnedTheme) {
        browser.test.assertTrue(
          returnedTheme.images.theme_frame.includes("image1.png"),
          "Theme 1 theme_frame image should be applied"
        );
        browser.test.assertEq(
          ACCENT_COLOR_1,
          returnedTheme.colors.frame,
          "Theme 1 frame color should be applied"
        );
        browser.test.assertEq(
          TEXT_COLOR_1,
          returnedTheme.colors.tab_background_text,
          "Theme 1 tab_background_text color should be applied"
        );
      }

      function testTheme2(returnedTheme) {
        browser.test.assertTrue(
          returnedTheme.images.theme_frame.includes("image2.png"),
          "Theme 2 theme_frame image should be applied"
        );
        browser.test.assertEq(
          ACCENT_COLOR_2,
          returnedTheme.colors.frame,
          "Theme 2 frame color should be applied"
        );
        browser.test.assertEq(
          TEXT_COLOR_2,
          returnedTheme.colors.tab_background_text,
          "Theme 2 tab_background_text color should be applied"
        );
      }

      const firstWin = await browser.windows.getCurrent();
      const secondWin = await browser.windows.create();

      const onceThemeUpdated = () =>
        new Promise(resolve => {
          const listener = updateInfo => {
            browser.theme.onUpdated.removeListener(listener);
            resolve(updateInfo);
          };
          browser.theme.onUpdated.addListener(listener);
        });

      browser.test.log("Testing update with no windowId parameter");
      let updateInfo1 = onceThemeUpdated();
      await browser.theme.update(theme1);
      updateInfo1 = await updateInfo1;
      testTheme1(updateInfo1.theme);
      browser.test.assertTrue(
        !updateInfo1.windowId,
        "No window id on first update"
      );

      browser.test.log("Testing update with windowId parameter");
      let updateInfo2 = onceThemeUpdated();
      await browser.theme.update(secondWin.id, theme2);
      updateInfo2 = await updateInfo2;
      testTheme2(updateInfo2.theme);
      browser.test.assertEq(
        secondWin.id,
        updateInfo2.windowId,
        "window id on second update"
      );

      browser.test.log("Testing reset with windowId parameter");
      let updateInfo3 = onceThemeUpdated();
      await browser.theme.reset(firstWin.id);
      updateInfo3 = await updateInfo3;
      browser.test.assertEq(
        0,
        Object.keys(updateInfo3.theme).length,
        "Empty theme given on reset"
      );
      browser.test.assertEq(
        firstWin.id,
        updateInfo3.windowId,
        "window id on third update"
      );

      browser.test.log("Testing reset with no windowId parameter");
      let updateInfo4 = onceThemeUpdated();
      await browser.theme.reset();
      updateInfo4 = await updateInfo4;
      browser.test.assertEq(
        0,
        Object.keys(updateInfo4.theme).length,
        "Empty theme given on reset"
      );
      browser.test.assertTrue(
        !updateInfo4.windowId,
        "no window id on fourth update"
      );

      browser.test.log("Cleaning up test");
      await browser.windows.remove(secondWin.id);
      browser.test.notifyPass("onUpdated");
    },
    manifest: {
      permissions: ["theme"],
    },
    files: {
      "image1.png": BACKGROUND_1,
      "image2.png": BACKGROUND_2,
    },
  });

  await extension.startup();
  await extension.awaitFinish("onUpdated");
  await extension.unload();
});