summaryrefslogtreecommitdiffstats
path: root/dom/security/test/csp/test_csp_error_messages.html
blob: 51be37e7c0617590ce8170238f0bfcc8c89cd680 (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
<!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');");
    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");
    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");
  }

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

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