summaryrefslogtreecommitdiffstats
path: root/netwerk/test/unit/test_multipart_byteranges.js
blob: 475aced456a3d3d438a3eac96f1c253383d467d6 (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
"use strict";

const { HttpServer } = ChromeUtils.importESModule(
  "resource://testing-common/httpd.sys.mjs"
);

var httpserver = null;

ChromeUtils.defineLazyGetter(this, "uri", function () {
  return "http://localhost:" + httpserver.identity.primaryPort + "/multipart";
});

function make_channel(url) {
  return NetUtil.newChannel({ uri: url, loadUsingSystemPrincipal: true });
}

var multipartBody =
  "--boundary\r\n" +
  "Content-type: text/plain\r\n" +
  "Content-range: bytes 0-2/10\r\n" +
  "\r\n" +
  "aaa\r\n" +
  "--boundary\r\n" +
  "Content-type: text/plain\r\n" +
  "Content-range: bytes 3-7/10\r\n" +
  "\r\n" +
  "bbbbb" +
  "\r\n" +
  "--boundary\r\n" +
  "Content-type: text/plain\r\n" +
  "Content-range: bytes  8-9/10\r\n" +
  "\r\n" +
  "cc" +
  "\r\n" +
  "--boundary--";

function contentHandler(metadata, response) {
  response.setHeader(
    "Content-Type",
    'multipart/byteranges; boundary="boundary"'
  );
  response.bodyOutputStream.write(multipartBody, multipartBody.length);
}

var numTests = 2;
var testNum = 0;

var testData = [
  {
    data: "aaa",
    type: "text/plain",
    isByteRangeRequest: true,
    startRange: 0,
    endRange: 2,
  },
  {
    data: "bbbbb",
    type: "text/plain",
    isByteRangeRequest: true,
    startRange: 3,
    endRange: 7,
  },
  {
    data: "cc",
    type: "text/plain",
    isByteRangeRequest: true,
    startRange: 8,
    endRange: 9,
  },
];

function responseHandler(request, buffer) {
  Assert.equal(buffer, testData[testNum].data);
  Assert.equal(
    request.QueryInterface(Ci.nsIChannel).contentType,
    testData[testNum].type
  );
  Assert.equal(
    request.QueryInterface(Ci.nsIByteRangeRequest).isByteRangeRequest,
    testData[testNum].isByteRangeRequest
  );
  Assert.equal(
    request.QueryInterface(Ci.nsIByteRangeRequest).startRange,
    testData[testNum].startRange
  );
  Assert.equal(
    request.QueryInterface(Ci.nsIByteRangeRequest).endRange,
    testData[testNum].endRange
  );
  if (++testNum == numTests) {
    httpserver.stop(do_test_finished);
  }
}

var multipartListener = {
  _buffer: "",

  QueryInterface: ChromeUtils.generateQI([
    "nsIStreamListener",
    "nsIRequestObserver",
  ]),

  onStartRequest(request) {
    this._buffer = "";
  },

  onDataAvailable(request, stream, offset, count) {
    try {
      this._buffer = this._buffer.concat(read_stream(stream, count));
      dump("BUFFEEE: " + this._buffer + "\n\n");
    } catch (ex) {
      do_throw("Error in onDataAvailable: " + ex);
    }
  },

  onStopRequest(request, status) {
    try {
      responseHandler(request, this._buffer);
    } catch (ex) {
      do_throw("Error in closure function: " + ex);
    }
  },
};

function run_test() {
  httpserver = new HttpServer();
  httpserver.registerPathHandler("/multipart", contentHandler);
  httpserver.start(-1);

  var streamConv = Cc["@mozilla.org/streamConverters;1"].getService(
    Ci.nsIStreamConverterService
  );
  var conv = streamConv.asyncConvertData(
    "multipart/byteranges",
    "*/*",
    multipartListener,
    null
  );

  var chan = make_channel(uri);
  chan.asyncOpen(conv, null);
  do_test_pending();
}