summaryrefslogtreecommitdiffstats
path: root/dom/xhr/tests/file_XHRSendData.sjs
diff options
context:
space:
mode:
Diffstat (limited to 'dom/xhr/tests/file_XHRSendData.sjs')
-rw-r--r--dom/xhr/tests/file_XHRSendData.sjs34
1 files changed, 34 insertions, 0 deletions
diff --git a/dom/xhr/tests/file_XHRSendData.sjs b/dom/xhr/tests/file_XHRSendData.sjs
new file mode 100644
index 0000000000..a39d888fdc
--- /dev/null
+++ b/dom/xhr/tests/file_XHRSendData.sjs
@@ -0,0 +1,34 @@
+const CC = Components.Constructor;
+const BinaryInputStream = CC(
+ "@mozilla.org/binaryinputstream;1",
+ "nsIBinaryInputStream",
+ "setInputStream"
+);
+
+function handleRequest(request, response) {
+ if (request.hasHeader("Content-Type")) {
+ response.setHeader(
+ "Result-Content-Type",
+ request.getHeader("Content-Type")
+ );
+ }
+
+ response.setHeader("Content-Type", "text/plain; charset=ISO-8859-1");
+
+ var body = new BinaryInputStream(request.bodyInputStream);
+ var avail;
+ var bytes = [];
+ while ((avail = body.available()) > 0) {
+ Array.prototype.push.apply(bytes, body.readByteArray(avail));
+ }
+
+ var data = String.fromCharCode.apply(null, bytes);
+ response.setHeader("Result-Content-Length", "" + data.length);
+ if (data.includes("TEST_REDIRECT_STR")) {
+ var newURL = "http://" + data.split("&url=")[1];
+ response.setStatusLine(null, 307, "redirect");
+ response.setHeader("Location", newURL, false);
+ } else {
+ response.write(data);
+ }
+}