mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-27 02:47:31 +09:00
import FIREFOX_52_6_0esr_RELEASE from mozilla-esr52 hg repo
This commit is contained in:
commit
dcd9973243
150858 changed files with 23884658 additions and 0 deletions
115
netwerk/test/unit/test_bug484684.js
Normal file
115
netwerk/test/unit/test_bug484684.js
Normal file
|
|
@ -0,0 +1,115 @@
|
|||
const URL = "ftp://localhost/bug464884/";
|
||||
|
||||
const tests = [
|
||||
// standard ls unix format
|
||||
["-rw-rw-r-- 1 500 500 0 Jan 01 2000 file1\r\n" +
|
||||
"-rw-rw-r-- 1 500 500 0 Jan 01 2000 file2\r\n",
|
||||
|
||||
"300: " + URL + "\n" +
|
||||
"200: filename content-length last-modified file-type\n" +
|
||||
"201: \"file1\" 0 Sat%2C%2001%20Jan%202000%2000%3A00%3A00 FILE \n" +
|
||||
"201: \"%20file2\" 0 Sat%2C%2001%20Jan%202000%2000%3A00%3A00 FILE \n"],
|
||||
// old Hellsoft unix format
|
||||
["-[RWCEMFA] supervisor 214059 Jan 01 2000 file1\r\n" +
|
||||
"-[RWCEMFA] supervisor 214059 Jan 01 2000 file2\r\n",
|
||||
|
||||
"300: " + URL + "\n" +
|
||||
"200: filename content-length last-modified file-type\n" +
|
||||
"201: \"file1\" 214059 Sat%2C%2001%20Jan%202000%2000%3A00%3A00 FILE \n" +
|
||||
"201: \"file2\" 214059 Sat%2C%2001%20Jan%202000%2000%3A00%3A00 FILE \n"],
|
||||
// new Hellsoft unix format
|
||||
["- [RWCEAFMS] jrd 192 Jan 01 2000 file1\r\n"+
|
||||
"- [RWCEAFMS] jrd 192 Jan 01 2000 file2\r\n",
|
||||
|
||||
"300: " + URL + "\n" +
|
||||
"200: filename content-length last-modified file-type\n" +
|
||||
"201: \"file1\" 192 Sat%2C%2001%20Jan%202000%2000%3A00%3A00 FILE \n" +
|
||||
"201: \"%20file2\" 192 Sat%2C%2001%20Jan%202000%2000%3A00%3A00 FILE \n"],
|
||||
// DOS format with correct offsets
|
||||
["01-01-00 01:00AM <DIR> dir1\r\n" +
|
||||
"01-01-00 01:00AM <JUNCTION> junction1 -> foo1\r\n" +
|
||||
"01-01-00 01:00AM 95077 file1\r\n" +
|
||||
"01-01-00 01:00AM <DIR> dir2\r\n" +
|
||||
"01-01-00 01:00AM <JUNCTION> junction2 -> foo2\r\n" +
|
||||
"01-01-00 01:00AM 95077 file2\r\n",
|
||||
|
||||
"300: " + URL + "\n" +
|
||||
"200: filename content-length last-modified file-type\n" +
|
||||
"201: \"dir1\" 0 Sat%2C%2001%20Jan%202000%2001%3A00%3A00 DIRECTORY \n" +
|
||||
"201: \"junction1\" Sat%2C%2001%20Jan%202000%2001%3A00%3A00 SYMBOLIC-LINK \n" +
|
||||
"201: \"file1\" 95077 Sat%2C%2001%20Jan%202000%2001%3A00%3A00 FILE \n" +
|
||||
"201: \"%20dir2\" 0 Sat%2C%2001%20Jan%202000%2001%3A00%3A00 DIRECTORY \n" +
|
||||
"201: \"%20junction2\" Sat%2C%2001%20Jan%202000%2001%3A00%3A00 SYMBOLIC-LINK \n" +
|
||||
"201: \"%20file2\" 95077 Sat%2C%2001%20Jan%202000%2001%3A00%3A00 FILE \n"],
|
||||
// DOS format with wrong offsets
|
||||
["01-01-00 01:00AM <DIR> dir1\r\n" +
|
||||
"01-01-00 01:00AM <DIR> dir2\r\n" +
|
||||
"01-01-00 01:00AM <DIR> dir3\r\n" +
|
||||
"01-01-00 01:00AM <JUNCTION> junction1 -> foo1\r\n" +
|
||||
"01-01-00 01:00AM <JUNCTION> junction2 -> foo2\r\n" +
|
||||
"01-01-00 01:00AM <JUNCTION> junction3 -> foo3\r\n" +
|
||||
"01-01-00 01:00AM 95077 file1\r\n" +
|
||||
"01-01-00 01:00AM 95077 file2\r\n",
|
||||
|
||||
"300: " + URL + "\n" +
|
||||
"200: filename content-length last-modified file-type\n" +
|
||||
"201: \"dir1\" 0 Sat%2C%2001%20Jan%202000%2001%3A00%3A00 DIRECTORY \n" +
|
||||
"201: \"dir2\" 0 Sat%2C%2001%20Jan%202000%2001%3A00%3A00 DIRECTORY \n" +
|
||||
"201: \"dir3\" 0 Sat%2C%2001%20Jan%202000%2001%3A00%3A00 DIRECTORY \n" +
|
||||
"201: \"junction1\" Sat%2C%2001%20Jan%202000%2001%3A00%3A00 SYMBOLIC-LINK \n" +
|
||||
"201: \"junction2\" Sat%2C%2001%20Jan%202000%2001%3A00%3A00 SYMBOLIC-LINK \n" +
|
||||
"201: \"junction3\" Sat%2C%2001%20Jan%202000%2001%3A00%3A00 SYMBOLIC-LINK \n" +
|
||||
"201: \"file1\" 95077 Sat%2C%2001%20Jan%202000%2001%3A00%3A00 FILE \n" +
|
||||
"201: \"file2\" 95077 Sat%2C%2001%20Jan%202000%2001%3A00%3A00 FILE \n"]
|
||||
]
|
||||
|
||||
function checkData(request, data, ctx) {
|
||||
do_check_eq(tests[0][1], data);
|
||||
tests.shift();
|
||||
do_execute_soon(next_test);
|
||||
}
|
||||
|
||||
function storeData(status, entry) {
|
||||
var scs = Cc["@mozilla.org/streamConverters;1"].
|
||||
getService(Ci.nsIStreamConverterService);
|
||||
var converter = scs.asyncConvertData("text/ftp-dir", "application/http-index-format",
|
||||
new ChannelListener(checkData, null, CL_ALLOW_UNKNOWN_CL), null);
|
||||
|
||||
var stream = Cc["@mozilla.org/io/string-input-stream;1"].
|
||||
createInstance(Ci.nsIStringInputStream);
|
||||
stream.data = tests[0][0];
|
||||
|
||||
var url = {
|
||||
password: "",
|
||||
asciiSpec: URL,
|
||||
QueryInterface: XPCOMUtils.generateQI([Ci.nsIURI])
|
||||
};
|
||||
|
||||
var channel = {
|
||||
URI: url,
|
||||
contentLength: -1,
|
||||
pending: true,
|
||||
isPending: function() {
|
||||
return this.pending;
|
||||
},
|
||||
QueryInterface: XPCOMUtils.generateQI([Ci.nsIChannel])
|
||||
};
|
||||
|
||||
converter.onStartRequest(channel, null);
|
||||
converter.onDataAvailable(channel, null, stream, 0, 0);
|
||||
channel.pending = false;
|
||||
converter.onStopRequest(channel, null, Cr.NS_OK);
|
||||
}
|
||||
|
||||
function next_test() {
|
||||
if (tests.length == 0)
|
||||
do_test_finished();
|
||||
else {
|
||||
storeData();
|
||||
}
|
||||
}
|
||||
|
||||
function run_test() {
|
||||
do_execute_soon(next_test);
|
||||
do_test_pending();
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue