summaryrefslogtreecommitdiffstats
path: root/dom/tests/mochitest/localstorage/interOriginTest2.js
blob: d675475c76ba8f476f57d8731641f2506a9c422a (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
var t = async_test(document.title);

var frameLoadsPending = 2;

var callMasterFrame = true;
var testDone = false;

var masterFrameOrigin = "";
var slaveFrameOrigin = "";

var failureRegExp = new RegExp("^FAILURE");

const framePath = "/tests/dom/tests/mochitest/localstorage/";

window.addEventListener("message", onMessageReceived);

function onMessageReceived(event) {
  switch (event.data) {
    // Indication of the frame onload event
    case "frame loaded":
      if (--frameLoadsPending) {
        break;
      }

    // Indication of successfully finished step of a test
    // Just fall through...
    case "perf":
      if (callMasterFrame) {
        masterFrame.postMessage("step", masterFrameOrigin);
      } else {
        slaveFrame.postMessage("step", slaveFrameOrigin);
      }
      callMasterFrame = !callMasterFrame;
      break;

    // Indication of all test parts finish (from any of the frames)
    case "done":
      if (testDone) {
        break;
      }

      testDone = true;
      t.done();
      break;

    // Any other message indicates error, succes or todo message of a test
    default:
      t.step(function () {
        assert_true(!event.data.match(failureRegExp), event.data);
      });
      break;
  }
}