summaryrefslogtreecommitdiffstats
path: root/dom/security/test/csp/test_blob_data_schemes.html
blob: 37a22db0508660440673badf3a45e1cee6980958 (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
<!DOCTYPE HTML>
<html>
<head>
  <title>Bug 1086999 - Wildcard should not match blob:, data:</title>
  <!-- Including SimpleTest.js so we can use waitForExplicitFinish !-->
  <script src="/tests/SimpleTest/SimpleTest.js"></script>
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
</head>
<body>
  <iframe style="width:100%;" id="testframe"></iframe>

<script class="testbody" type="text/javascript">

/* Description of the test:
 * We load an image using a data: and a blob: scheme and make
 * sure a CSP containing a single ASTERISK (*) does not allowlist
 * those loads. The single ASTERISK character should not match a
 * URI's scheme of a type designating globally unique identifier
 * (such as blob:, data:, or filesystem:)
 */

var tests = [
  {
    policy : "default-src 'unsafe-inline' blob: data:",
    expected : "allowed",
  },
  {
    policy : "default-src 'unsafe-inline' *",
    expected : "blocked"
  }
];

var testIndex = 0;
var messageCounter = 0;
var curTest;

// onError handler is over-reporting, hence we make sure that
// we get an error for both testcases: data and blob before we
// move on to the next test.
var dataRan = false;
var blobRan = false;

// a postMessage handler to communicate the results back to the parent.
window.addEventListener("message", receiveMessage);

function receiveMessage(event)
{
  is(event.data.result, curTest.expected, event.data.scheme + " should be " + curTest.expected);

  if (event.data.scheme === "data") {
    dataRan = true;
  }
  if (event.data.scheme === "blob") {
    blobRan = true;
  }
  if (dataRan && blobRan) {
    loadNextTest();
  }
}

function loadNextTest() {
  if (testIndex === tests.length) {
    window.removeEventListener("message", receiveMessage);
    SimpleTest.finish();
    return;
  }

  dataRan = false;
  blobRan = false;

  curTest = tests[testIndex++];
  // reset the messageCounter to make sure we receive all the postMessages from the iframe
  messageCounter = 0;

  var src = "file_testserver.sjs";
  // append the file that should be served
  src += "?file=" + escape("tests/dom/security/test/csp/file_blob_data_schemes.html");
  // append the CSP that should be used to serve the file
  src += "&csp=" + escape(curTest.policy);

  document.getElementById("testframe").src = src;
}

SimpleTest.waitForExplicitFinish();
loadNextTest();

</script>
</body>
</html>