summaryrefslogtreecommitdiffstats
path: root/dom/xhr/tests/xhr2_worker.js
blob: d355020c93b13d1d1a12de12186a523a4b3cbfd5 (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
/**
 * Any copyright is dedicated to the Public Domain.
 * http://creativecommons.org/publicdomain/zero/1.0/
 */

onmessage = function(event) {
  const url = event.data;

  var xhr = new XMLHttpRequest();
  xhr.open("GET", url, false);
  xhr.send();

  const refText = xhr.responseText;

  function getResponse(type) {
    var xhr = new XMLHttpRequest();
    xhr.open("GET", url, false);
    if (type !== undefined) {
      xhr.responseType = type;
    }
    xhr.send();
    return xhr.response;
  }

  if (getResponse() != refText) {
    throw new Error("unset responseType failed");
  }

  if (getResponse("") != refText) {
    throw new Error("'' responseType failed");
  }

  if (getResponse("text") != refText) {
    throw new Error("'text' responseType failed");
  }

  var array = new Uint8Array(getResponse("arraybuffer"));
  if (String.fromCharCode.apply(String, array) != refText) {
    throw new Error("'arraybuffer' responseType failed");
  }

  var blob = getResponse("blob");
  if (new FileReaderSync().readAsText(blob) != refText) {
    throw new Error("'blob' responseType failed");
  }

  // Make sure that we get invalid state exceptions when getting the wrong
  // property.

  function testResponseTextException(type) {
    var xhr = new XMLHttpRequest();
    xhr.open("GET", url, false);
    xhr.responseType = type;
    xhr.send();

    var exception;

    try {
      xhr.responseText;
    }
    catch(e) {
      exception = e;
    }

    if (!exception) {
      throw new Error("Failed to throw when getting responseText on '" + type +
                      "' type");
    }

    if (exception.name != "InvalidStateError") {
      throw new Error("Unexpected error when getting responseText on '" + type +
                      "' type");
    }

    if (exception.code != DOMException.INVALID_STATE_ERR) {
      throw new Error("Unexpected error code when getting responseText on '" + type +
                      "' type");
    }
  }

  testResponseTextException("arraybuffer");
  testResponseTextException("blob");

  // Make sure "document" works, but returns text.
  xhr = new XMLHttpRequest();

  if (xhr.responseType != "text") {
    throw new Error("Default value for responseType is wrong!");
  }

  xhr.open("GET", url, false);
  xhr.responseType = "document";
  xhr.send();

  if (xhr.responseText != refText) {
    throw new Error("'document' type not working correctly");
  }

  // Make sure setting responseType before open or after send fails.
  var exception;

  xhr = new XMLHttpRequest();
  xhr.open("GET", url);
  xhr.responseType = "text";
  xhr.onload = function(event) {
    if (event.target.response != refText) {
      throw new Error("Bad response!");
    }

    xhr = new XMLHttpRequest();
    xhr.open("GET", url);
    xhr.responseType = "moz-chunked-text";

    var lastIndex = 0;
    xhr.onprogress = function(event) {
      if (refText.substr(lastIndex, xhr.response.length) != xhr.response) {
        throw new Error("Bad chunk!");
      }

      lastIndex += xhr.response.length;
    };

    xhr.onload = function(event) {
      if (lastIndex != refText.length) {
        throw new Error("Didn't see all the data!");
      }

      setTimeout(function() {
        if (xhr.response !== null) {
          throw new Error("Should have gotten null response outside of event!");
        }
        postMessage("done");
      }, 0);
    }

    xhr.send(null);
  };
  xhr.send();

  exception = null;

  try {
    xhr.responseType = "arraybuffer";
  }
  catch(e) {
    exception = e;
  }

  if (!exception) {
    throw new Error("Failed to throw when setting responseType after " +
                    "calling send()");
  }

  if (exception.name != "InvalidStateError") {
    throw new Error("Unexpected error when setting responseType after " +
                    "calling send()");
  }

  if (exception.code != DOMException.INVALID_STATE_ERR) {
    throw new Error("Unexpected error code when setting responseType after " +
                    "calling send()");
  }
}