File: test_csp_error_messages.html

package info (click to toggle)
firefox 149.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 4,767,760 kB
  • sloc: cpp: 7,416,064; javascript: 6,752,859; ansic: 3,774,850; python: 1,250,473; xml: 641,578; asm: 439,191; java: 186,617; sh: 56,634; makefile: 18,856; objc: 13,092; perl: 12,763; pascal: 5,960; yacc: 4,583; cs: 3,846; lex: 1,720; ruby: 1,002; php: 436; lisp: 258; awk: 105; sql: 66; sed: 53; csh: 10; exp: 6
file content (81 lines) | stat: -rw-r--r-- 2,339 bytes parent folder | download | duplicates (13)
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
<!doctype html>
<html>
<head>
  <meta charset="utf-8">
  <title>Test some specialized CSP errors</title>
  <script src="/tests/SimpleTest/SimpleTest.js"></script>
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
</head>
<body>

<iframe id="cspframe"></iframe>

<script class="testbody" type="text/javascript">
SimpleTest.waitForExplicitFinish();

function cleanup() {
  SpecialPowers.postConsoleSentinel();
  SimpleTest.finish();
};

let errors = [];
function add(name) {
  ok(!errors.includes(name), `duplicate error for ${name}`);
  errors.push(name);
}

SpecialPowers.registerConsoleListener(msg => {
  if (!msg.errorMessage) {
    return;
  }

  let {errorMessage} = msg;
  function contains(str) {
    ok(errorMessage.includes(str), `error message contains "${str}"`);
  }

  if (errorMessage.includes("(script-src-attr)")) {
    contains("blocked an event handler");
    contains("from being executed");
    contains("Source: alert('onload');");
    contains("'sha256-DZiWoZjxgAy1DmtJHfc8u0JhSZm1YuniGAI+cc1R2x0='");
    add("event handler");
  } else if (errorMessage.includes("(img-src)")) {
    contains("blocked the loading of a resource");
    contains("/image.png");
    add("image");
  } else if (errorMessage.includes("an inline script")) {
    contains("(script-src-elem)");
    contains("from being executed");
    contains("'sha256-DOE4qvVpP5+5S6sGuxFDf68+sW1dM9qbvA+i2Feh/Y8='");
    add("inline script");
  } else if (errorMessage.includes("a script")) {
    contains("(script-src-elem)");
    contains("from being executed");
    contains("/script.js");
    add("script");
  } else if (errorMessage.includes("(worker-src)")) {
    contains("(worker-src)");
    contains("from being executed");
    contains("/worker.js");
    add("worker");
  } else if (errorMessage.includes("a JavaScript eval")) {
    contains("(script-src)");
    contains("from being executed");
    contains("Missing 'unsafe-eval'")
    add("eval");
  } else if (errorMessage.includes("an inline style")) {
    contains("(style-src-attr)");
    contains("'sha256-C8uD/9cXZAvqgnwxgdb67jgkSDq7f8xjP8F6lhY1Gtk='");
    add("style attribute");
  }

  if (errors.length == 7) {
    SimpleTest.executeSoon(cleanup);
  }
});

document.getElementById('cspframe').src = 'file_csp_error_messages.html';
</script>
</body>
</html>