File: test_blob_data_schemes.html

package info (click to toggle)
thunderbird 1%3A115.16.0esr-1~deb12u1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 3,476,252 kB
  • sloc: cpp: 6,972,150; javascript: 5,209,211; ansic: 3,507,222; python: 1,137,609; asm: 432,531; xml: 205,149; java: 175,761; sh: 116,485; makefile: 22,152; perl: 13,971; objc: 12,561; yacc: 4,583; pascal: 2,840; lex: 1,720; ruby: 1,075; exp: 762; sql: 666; awk: 580; php: 436; lisp: 430; sed: 70; csh: 10
file content (89 lines) | stat: -rw-r--r-- 2,386 bytes parent folder | download | duplicates (20)
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>