mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 707696 - Windows test suite. r=taras
This commit is contained in:
parent
b4012976cd
commit
e3025d29f8
@ -6,12 +6,10 @@ function log(text) {
|
||||
}
|
||||
|
||||
function send(message) {
|
||||
log("Sending "+JSON.stringify(message)+ ", lastError: " + ctypes.winLastError);
|
||||
self.postMessage(message);
|
||||
}
|
||||
|
||||
self.onmessage = function(msg) {
|
||||
log("received message "+JSON.stringify(msg.data));
|
||||
self.onmessage = function(msg) {
|
||||
log("ignored message "+JSON.stringify(msg.data));
|
||||
};
|
||||
@ -21,6 +19,7 @@ self.onmessage = function(msg) {
|
||||
test_OpenClose();
|
||||
test_CreateFile();
|
||||
test_ReadWrite();
|
||||
test_path();
|
||||
finish();
|
||||
};
|
||||
|
||||
@ -209,3 +208,64 @@ function test_ReadWrite()
|
||||
isnot(result, 0, "test_ReadWrite: output remove succeeded");
|
||||
ok(true, "test_ReadWrite cleanup complete");
|
||||
}
|
||||
|
||||
function test_path()
|
||||
{
|
||||
ok(true, "test_path: starting");
|
||||
is(OS.Win.Path.basename("a\\b"), "b", "basename of a\\b");
|
||||
is(OS.Win.Path.basename("a\\b\\"), "", "basename of a\\b\\");
|
||||
is(OS.Win.Path.basename("abc"), "abc", "basename of abc");
|
||||
is(OS.Win.Path.dirname("a\\b"), "a", "dirname of a\\b");
|
||||
is(OS.Win.Path.dirname("a\\b\\"), "a\\b", "dirname of a\\b\\");
|
||||
is(OS.Win.Path.dirname("a\\\\\\\\b"), "a", "dirname of a\\\\\\b");
|
||||
is(OS.Win.Path.dirname("abc"), ".", "dirname of abc");
|
||||
is(OS.Win.Path.normalize("\\a\\b\\c"), "\\a\\b\\c", "normalize \\a\\b\\c");
|
||||
is(OS.Win.Path.normalize("\\a\\b\\\\\\\\c"), "\\a\\b\\c", "normalize \\a\\b\\\\\\\\c");
|
||||
is(OS.Win.Path.normalize("\\a\\b\\c\\\\\\"), "\\a\\b\\c", "normalize \\a\\b\\c\\\\\\");
|
||||
is(OS.Win.Path.normalize("\\a\\b\\c\\..\\..\\..\\d\\e\\f"), "\\d\\e\\f", "normalize \\a\\b\\c\\..\\..\\..\\d\\e\\f");
|
||||
is(OS.Win.Path.normalize("a\\b\\c\\..\\..\\..\\d\\e\\f"), "d\\e\\f", "normalize a\\b\\c\\..\\..\\..\\d\\e\\f");
|
||||
let error = false;
|
||||
try {
|
||||
OS.Win.Path.normalize("\\a\\b\\c\\..\\..\\..\\..\\d\\e\\f");
|
||||
} catch (x) {
|
||||
error = true;
|
||||
}
|
||||
ok(error, "cannot normalize \\a\\b\\c\\..\\..\\..\\..\\d\\e\\f");
|
||||
is(OS.Win.Path.join("\\tmp", "foo", "bar"), "\\tmp\\foo\\bar", "join \\tmp,foo,bar");
|
||||
is(OS.Win.Path.join("\\tmp", "\\foo", "bar"), "\\foo\\bar", "join \\tmp,\\foo,bar");
|
||||
|
||||
is(OS.Win.Path.basename("c:a\\b"), "b", "basename of c:a\\b");
|
||||
is(OS.Win.Path.basename("c:a\\b\\"), "", "basename of c:a\\b\\");
|
||||
is(OS.Win.Path.basename("c:abc"), "abc", "basename of c:abc");
|
||||
is(OS.Win.Path.dirname("c:a\\b"), "c:a", "dirname of c:a\\b");
|
||||
is(OS.Win.Path.dirname("c:a\\b\\"), "c:a\\b", "dirname of c:a\\b\\");
|
||||
is(OS.Win.Path.dirname("c:a\\\\\\\\b"), "c:a", "dirname of c:a\\\\\\b");
|
||||
is(OS.Win.Path.dirname("c:abc"), "c:", "dirname of c:abc");
|
||||
let options = {
|
||||
winNoDrive: true
|
||||
};
|
||||
is(OS.Win.Path.dirname("c:a\\b", options), "a", "dirname of c:a\\b");
|
||||
is(OS.Win.Path.dirname("c:a\\b\\", options), "a\\b", "dirname of c:a\\b\\");
|
||||
is(OS.Win.Path.dirname("c:a\\\\\\\\b", options), "a", "dirname of c:a\\\\\\b");
|
||||
is(OS.Win.Path.dirname("c:abc", options), ".", "dirname of c:abc");
|
||||
|
||||
is(OS.Win.Path.normalize("c:\\a\\b\\c"), "c:\\a\\b\\c", "normalize c:\\a\\b\\c");
|
||||
is(OS.Win.Path.normalize("c:\\a\\b\\\\\\\\c"), "c:\\a\\b\\c", "normalize c:\\a\\b\\\\\\\\c");
|
||||
is(OS.Win.Path.normalize("c:\\\\\\\\a\\b\\c"), "c:\\a\\b\\c", "normalize c:\\\\\\a\\b\\c");
|
||||
is(OS.Win.Path.normalize("c:\\a\\b\\c\\\\\\"), "c:\\a\\b\\c", "normalize c:\\a\\b\\c\\\\\\");
|
||||
is(OS.Win.Path.normalize("c:\\a\\b\\c\\..\\..\\..\\d\\e\\f"), "c:\\d\\e\\f", "normalize c:\\a\\b\\c\\..\\..\\..\\d\\e\\f");
|
||||
is(OS.Win.Path.normalize("c:a\\b\\c\\..\\..\\..\\d\\e\\f"), "c:d\\e\\f", "normalize c:a\\b\\c\\..\\..\\..\\d\\e\\f");
|
||||
error = false;
|
||||
try {
|
||||
OS.Win.Path.normalize("c:\\a\\b\\c\\..\\..\\..\\..\\d\\e\\f");
|
||||
} catch (x) {
|
||||
error = true;
|
||||
}
|
||||
ok(error, "cannot normalize c:\\a\\b\\c\\..\\..\\..\\..\\d\\e\\f");
|
||||
is(OS.Win.Path.join("c:\\tmp", "foo", "bar"), "c:\\tmp\\foo\\bar", "join c:\\tmp,foo,bar");
|
||||
is(OS.Win.Path.join("c:\\tmp", "\\foo", "bar"), "c:\\foo\\bar", "join c:\\tmp,\\foo,bar");
|
||||
is(OS.Win.Path.join("c:\\tmp", "c:\\foo", "bar"), "c:\\foo\\bar", "join c:\\tmp,c:\\foo,bar");
|
||||
is(OS.Win.Path.join("c:\\tmp", "c:foo", "bar"), "c:foo\\bar", "join c:\\tmp,c:foo,bar");
|
||||
|
||||
ok(true, "test_path: complete");
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user