2007-08-10 12:52:50 -07:00
|
|
|
/* run some tests on the data: protocol handler */
|
|
|
|
|
|
|
|
const Cc = Components.classes;
|
|
|
|
const Ci = Components.interfaces;
|
|
|
|
const Cr = Components.results;
|
|
|
|
|
2007-08-21 10:28:22 -07:00
|
|
|
// The behaviour wrt spaces is:
|
|
|
|
// - Textual content keeps all spaces
|
|
|
|
// - Other content strips unescaped spaces
|
|
|
|
// - Base64 content strips escaped and unescaped spaces
|
2007-08-10 12:52:50 -07:00
|
|
|
var urls = [
|
2007-08-21 10:28:22 -07:00
|
|
|
["data:,foo", "text/plain", "foo"],
|
|
|
|
["data:application/octet-stream,foo bar", "application/octet-stream", "foobar"],
|
|
|
|
["data:application/octet-stream,foo%20bar", "application/octet-stream", "foo bar"],
|
|
|
|
["data:application/xhtml+xml,foo bar", "application/xhtml+xml", "foo bar"],
|
|
|
|
["data:application/xhtml+xml,foo%20bar", "application/xhtml+xml", "foo bar"],
|
|
|
|
["data:text/plain,foo%00 bar", "text/plain", "foo\x00 bar"],
|
|
|
|
["data:text/plain;base64,Zm9 vI%20GJ%0Dhc%0Ag==", "text/plain", "foo bar"]
|
2007-08-10 12:52:50 -07:00
|
|
|
];
|
|
|
|
|
|
|
|
function run_next_test() {
|
|
|
|
test_array[test_index++]();
|
|
|
|
}
|
|
|
|
|
|
|
|
function run_test() {
|
|
|
|
dump("*** run_test\n");
|
|
|
|
|
2007-08-21 10:28:22 -07:00
|
|
|
function on_read_complete(request, data, idx) {
|
2007-08-10 12:52:50 -07:00
|
|
|
dump("*** run_test.on_read_complete\n");
|
|
|
|
|
2007-08-21 10:28:22 -07:00
|
|
|
if (request.nsIChannel.contentType != urls[idx][1])
|
|
|
|
do_throw("Type mismatch! Is <" + chan.contentType + ">, should be <" + urls[idx][1] + ">");
|
2007-08-10 12:52:50 -07:00
|
|
|
|
|
|
|
/* read completed successfully. now compare the data. */
|
2007-08-21 10:28:22 -07:00
|
|
|
if (data != urls[idx][2])
|
2007-08-10 12:52:50 -07:00
|
|
|
do_throw("Stream contents do not match with direct read!");
|
|
|
|
do_test_finished();
|
|
|
|
}
|
|
|
|
|
|
|
|
var ios = Cc["@mozilla.org/network/io-service;1"].
|
|
|
|
getService(Ci.nsIIOService);
|
|
|
|
for (var i = 0; i < urls.length; ++i) {
|
|
|
|
dump("*** opening channel " + i + "\n");
|
|
|
|
do_test_pending();
|
|
|
|
var chan = ios.newChannel(urls[i][0], "", null);
|
|
|
|
chan.contentType = "foo/bar"; // should be ignored
|
2007-08-24 11:08:37 -07:00
|
|
|
chan.asyncOpen(new ChannelListener(on_read_complete, i), null);
|
2007-08-10 12:52:50 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|