Bug 803713 - Skip the SP after finding it. r=biesi

This commit is contained in:
Masatoshi Kimura 2012-12-20 21:47:40 +09:00
parent 9b2002d57a
commit b28f651cde
3 changed files with 127 additions and 1 deletions

View File

@ -987,10 +987,13 @@ nsMultiMixedConv::ParseHeaders(nsIChannel *aChannel, char *&aPtr,
// pass the bytes-unit and the SP
char *range = (char *) strchr(colon + 2, ' ');
if (!range)
return NS_ERROR_FAILURE;
do {
range++;
} while (*range == ' ');
if (range[0] == '*'){
mByteRangeStart = mByteRangeEnd = 0;
}

View File

@ -0,0 +1,122 @@
const Cc = Components.classes;
const Ci = Components.interfaces;
const Cu = Components.utils;
const Cr = Components.results;
Cu.import("resource://testing-common/httpd.js");
var httpserver = null;
var uri = "http://localhost:4444/multipart";
function make_channel(url) {
var ios = Cc["@mozilla.org/network/io-service;1"].
getService(Ci.nsIIOService);
return ios.newChannel(url, "", null);
}
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 make_channel(url) {
var ios = Cc["@mozilla.org/network/io-service;1"].
getService(Ci.nsIIOService);
return ios.newChannel(url, "", null);
}
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)
{
do_check_eq(buffer, testData[testNum].data);
do_check_eq(request.QueryInterface(Ci.nsIChannel).contentType,
testData[testNum].type);
do_check_eq(request.QueryInterface(Ci.nsIByteRangeRequest).isByteRangeRequest,
testData[testNum].isByteRangeRequest);
do_check_eq(request.QueryInterface(Ci.nsIByteRangeRequest).startRange,
testData[testNum].startRange);
do_check_eq(request.QueryInterface(Ci.nsIByteRangeRequest).endRange,
testData[testNum].endRange);
if (++testNum == numTests)
httpserver.stop(do_test_finished);
}
var multipartListener = {
_buffer: "",
QueryInterface: function(iid) {
if (iid.equals(Components.interfaces.nsIStreamListener) ||
iid.equals(Components.interfaces.nsIRequestObserver) ||
iid.equals(Components.interfaces.nsISupports))
return this;
throw Components.results.NS_ERROR_NO_INTERFACE;
},
onStartRequest: function(request, context) {
this._buffer = "";
},
onDataAvailable: function(request, context, 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: function(request, context, 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(4444);
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();
}

View File

@ -148,6 +148,7 @@ skip-if = os == "android"
[test_mismatch_last-modified.js]
[test_MIME_params.js]
[test_mozTXTToHTMLConv.js]
[test_multipart_byteranges.js]
[test_multipart_streamconv.js]
[test_multipart_streamconv_missing_lead_boundary.js]
[test_nestedabout_serialize.js]