summaryrefslogtreecommitdiffstats
path: root/dom/manifest/test/common.js
blob: 50f27c119ae36df501a13df4a6247bebfe97d939 (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
/**
 * Common infrastructure for manifest tests.
 **/
"use strict";
const { ManifestProcessor } = SpecialPowers.ChromeUtils.importESModule(
  "resource://gre/modules/ManifestProcessor.sys.mjs"
);
const processor = ManifestProcessor;
const manifestURL = new URL(document.location.origin + "/manifest.json");
const docURL = document.location;
const seperators =
  "\u2028\u2029\u0020\u00A0\u1680\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200A\u202F\u205F\u3000";
const lineTerminators = "\u000D\u000A\u2028\u2029";
const whiteSpace = `${seperators}${lineTerminators}`;
const typeTests = [1, null, {}, [], false];
const data = {
  jsonText: "{}",
  manifestURL,
  docURL,
};

const validThemeColors = [
  ["maroon", "#800000ff"],
  ["#f00", "#ff0000ff"],
  ["#ff0000", "#ff0000ff"],
  ["rgb(255,0,0)", "#ff0000ff"],
  ["rgb(255,0,0,1)", "#ff0000ff"],
  ["rgb(255,0,0,1.0)", "#ff0000ff"],
  ["rgb(255,0,0,100%)", "#ff0000ff"],
  ["rgb(255 0 0)", "#ff0000ff"],
  ["rgb(255 0 0 / 1)", "#ff0000ff"],
  ["rgb(255 0 0 / 1.0)", "#ff0000ff"],
  ["rgb(255 0 0 / 100%)", "#ff0000ff"],
  ["rgb(100%, 0%, 0%)", "#ff0000ff"],
  ["rgb(100%, 0%, 0%, 1)", "#ff0000ff"],
  ["rgb(100%, 0%, 0%, 1.0)", "#ff0000ff"],
  ["rgb(100%, 0%, 0%, 100%)", "#ff0000ff"],
  ["rgb(100% 0% 0%)", "#ff0000ff"],
  ["rgb(100% 0% 0% / 1)", "#ff0000ff"],
  ["rgb(100%, 0%, 0%, 1.0)", "#ff0000ff"],
  ["rgb(100%, 0%, 0%, 100%)", "#ff0000ff"],
  ["rgb(300,0,0)", "#ff0000ff"],
  ["rgb(300 0 0)", "#ff0000ff"],
  ["rgb(255,-10,0)", "#ff0000ff"],
  ["rgb(110%, 0%, 0%)", "#ff0000ff"],
  ["rgba(255,0,0)", "#ff0000ff"],
  ["rgba(255,0,0,1)", "#ff0000ff"],
  ["rgba(255 0 0 / 1)", "#ff0000ff"],
  ["rgba(100%,0%,0%,1)", "#ff0000ff"],
  ["rgba(0,0,255,0.5)", "#0000ff80"],
  ["rgba(100%, 50%, 0%, 0.1)", "#ff80001a"],
  ["hsl(120, 100%, 50%)", "#00ff00ff"],
  ["hsl(120 100% 50%)", "#00ff00ff"],
  ["hsl(120, 100%, 50%, 1.0)", "#00ff00ff"],
  ["hsl(120 100% 50% / 1.0)", "#00ff00ff"],
  ["hsla(120, 100%, 50%)", "#00ff00ff"],
  ["hsla(120 100% 50%)", "#00ff00ff"],
  ["hsla(120, 100%, 50%, 1.0)", "#00ff00ff"],
  ["hsla(120 100% 50% / 1.0)", "#00ff00ff"],
  ["hsl(120deg, 100%, 50%)", "#00ff00ff"],
  ["hsl(133.33333333grad, 100%, 50%)", "#00ff00ff"],
  ["hsl(2.0943951024rad, 100%, 50%)", "#00ff00ff"],
  ["hsl(0.3333333333turn, 100%, 50%)", "#00ff00ff"],
];

function setupManifest(key, value) {
  const manifest = {};
  manifest[key] = value;
  data.jsonText = JSON.stringify(manifest);
}

function testValidColors(key) {
  validThemeColors.forEach(item => {
    const [manifest_color, parsed_color] = item;
    setupManifest(key, manifest_color);
    const result = processor.process(data);

    is(
      result[key],
      parsed_color,
      `Expect ${key} to be returned for ${manifest_color}`
    );
  });

  // Trim tests
  validThemeColors.forEach(item => {
    const [manifest_color, parsed_color] = item;
    const expandedThemeColor = `${seperators}${lineTerminators}${manifest_color}${lineTerminators}${seperators}`;
    setupManifest(key, expandedThemeColor);
    const result = processor.process(data);

    is(
      result[key],
      parsed_color,
      `Expect trimmed ${key} to be returned for ${manifest_color}`
    );
  });
}

const invalidThemeColors = [
  "marooon",
  "f000000",
  "#ff00000",
  "rgb(100, 0%, 0%)",
  "rgb(255,0)",
  "rbg(255,-10,0)",
  "rgb(110, 0%, 0%)",
  "(255,0,0) }",
  "rgba(255)",
  " rgb(100%,0%,0%) }",
  "hsl(120, 100%, 50)",
  "hsl(120, 100%, 50.0)",
  "hsl 120, 100%, 50%",
  "hsla{120, 100%, 50%, 1}",
];

function testInvalidColors(key) {
  typeTests.forEach(type => {
    setupManifest(key, type);
    const result = processor.process(data);

    is(
      result[key],
      undefined,
      `Expect non-string ${key} to be undefined: ${typeof type}.`
    );
  });

  invalidThemeColors.forEach(manifest_color => {
    setupManifest(key, manifest_color);
    const result = processor.process(data);

    is(
      result[key],
      undefined,
      `Expect ${key} to be undefined: ${manifest_color}.`
    );
  });
}