summaryrefslogtreecommitdiffstats
path: root/dom/ipc/tests/test_blob_sliced_from_child_process.html
blob: 0dec1d84c7a604a863890c501032c82de59da823 (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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
<!DOCTYPE html>
<html>
  <head>
    <title>Test for slicing blobs that originated in a child process</title>
    <script type="application/javascript" src="/tests/SimpleTest/SimpleTest.js">
    </script>
    <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
  </head>
  <body onload="setup();">
    <script type="application/javascript;version=1.7">
"use strict";

function childFrameScript() {
  "use strict";

  Components.utils.importGlobalProperties(["Blob"]);

  const messageName = "test:blob-slice-test";
  const blobData = ["So", " ", "many", " ", "blobs!"];
  const blobText = blobData.join("");
  const blobType = "text/plain";

  let blob = new Blob(blobData, { type: blobType });

  let sliceText = blobData[2][1] + blobData[2][2];
  let sliceIndex = blobText.indexOf(sliceText);

  let firstSliceStart = blobData[0].length + blobData[1].length;
  let firstSliceEnd = firstSliceStart + blobData[2].length;

  let slice = blob.slice(firstSliceStart, firstSliceEnd, blobType);

  let secondSliceStart = blobData[2].indexOf("a");
  let secondSliceEnd = secondSliceStart + 2;

  slice = slice.slice(secondSliceStart, secondSliceEnd, blobType);

  sendAsyncMessage(messageName, { blob: blob });
  sendAsyncMessage(messageName, { slice: slice });
}

function parentFrameScript(mm) {
  const messageName = "test:blob-slice-test";
  const blobData = ["So", " ", "many", " ", "blobs!"];
  const blobText = blobData.join("");
  const blobType = "text/plain";

  const sliceText = "an";

  let receivedBlob = false;
  let receivedSlice = false;

  let finishedTestingBlob = false;
  let finishedTestingSlice = false;

  mm.addMessageListener(messageName, function(message) {
    if ("blob" in message.data) {
      is(receivedBlob, false, "Have not yet received Blob");
      is(receivedSlice, false, "Have not yet received Slice");
      is(finishedTestingBlob, false, "Have not yet finished testing Blob");
      is(finishedTestingSlice, false, "Have not yet finished testing Slice");

      receivedBlob = true;

      let blob = message.data.blob;

      ok(blob instanceof Blob, "Received a Blob");
      is(blob.size, blobText.length, "Blob has correct size");
      is(blob.type, blobType, "Blob has correct type");

      let slice = blob.slice(blobText.length -
                                blobData[blobData.length - 1].length,
                              blob.size,
                              blobType);

      ok(slice instanceof Blob, "Slice returned a Blob");
      is(slice.size,
          blobData[blobData.length - 1].length,
          "Slice has correct size");
      is(slice.type, blobType, "Slice has correct type");

      let reader = new FileReader();
      reader.onload = function() {
        is(reader.result,
            blobData[blobData.length - 1],
            "Slice has correct data");

        finishedTestingBlob = true;

        if (finishedTestingSlice) {
          SimpleTest.finish();
        }
      };
      reader.readAsText(slice);

      return;
    }

    if ("slice" in message.data) {
      is(receivedBlob, true, "Already received Blob");
      is(receivedSlice, false, "Have not yet received Slice");
      is(finishedTestingSlice, false, "Have not yet finished testing Slice");

      receivedSlice = true;

      let slice = message.data.slice;

      ok(slice instanceof Blob, "Received a Blob for slice");
      is(slice.size, sliceText.length, "Slice has correct size");
      is(slice.type, blobType, "Slice has correct type");

      let reader = new FileReader();
      reader.onload = function() {
        is(reader.result, sliceText, "Slice has correct data");

        let slice2 = slice.slice(1, 2, blobType);

        ok(slice2 instanceof Blob, "Slice returned a Blob");
        is(slice2.size, 1, "Slice has correct size");
        is(slice2.type, blobType, "Slice has correct type");

        let reader2 = new FileReader();
        reader2.onload = function() {
          is(reader2.result, sliceText[1], "Slice has correct data");

          finishedTestingSlice = true;

          if (finishedTestingBlob) {
            SimpleTest.finish();
          }
        };
        reader2.readAsText(slice2);
      };
      reader.readAsText(slice);

      return;
    }

    ok(false, "Received a bad message: " + JSON.stringify(message.data));
  });

  mm.loadFrameScript("data:,(" + childFrameScript.toString() + ")();",
                      false);
}

function setup() {
  info("Got load event");

  SpecialPowers.pushPrefEnv(
    { set: [ ["dom.ipc.browser_frames.oop_by_default", true],
              ["dom.mozBrowserFramesEnabled", true],
              ["network.disable.ipc.security", true],
              ["browser.pagethumbnails.capturing_disabled", true] ] },
    function() {
      info("Prefs set");

      SpecialPowers.pushPermissions(
        [ { type: "browser", allow: true, context: document } ],
        function() {
          info("Permissions set");

          let iframe = document.createElement("iframe");
          SpecialPowers.wrap(iframe).mozbrowser = true;
          iframe.id = "iframe";
          iframe.src =
            "data:text/html,<!DOCTYPE HTML><html><body></body></html>";

          iframe.addEventListener("mozbrowserloadend", function() {
            info("Starting tests");

            let mm = SpecialPowers.getBrowserFrameMessageManager(iframe)
            parentFrameScript(mm);
          });

          document.body.appendChild(iframe);
        }
      );
    }
  );
}

SimpleTest.waitForExplicitFinish();
  </script>
  </body>
</html>