зеркало из https://github.com/mozilla/gecko-dev.git
223 строки
6.8 KiB
XML
223 строки
6.8 KiB
XML
<?xml version="1.0"?>
|
|
<?xml-stylesheet type="text/css" href="chrome://global/skin"?>
|
|
<?xml-stylesheet type="text/css" href="/tests/SimpleTest/test.css"?>
|
|
<!--
|
|
https://bugzilla.mozilla.org/show_bug.cgi?id=981249
|
|
-->
|
|
<window title="Mozilla Bug 981249"
|
|
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
|
|
<script type="application/javascript"
|
|
src="chrome://mochikit/content/tests/SimpleTest/SimpleTest.js"></script>
|
|
<script type="application/javascript" src="head.js"/>
|
|
|
|
<!-- test results are displayed in the html:body -->
|
|
<body xmlns="http://www.w3.org/1999/xhtml">
|
|
<a href="https://bugzilla.mozilla.org/show_bug.cgi?id=981249"
|
|
target="_blank">Mozilla Bug 981249</a>
|
|
</body>
|
|
|
|
<script type="application/javascript">
|
|
<![CDATA[
|
|
|
|
/** Test for Bug 981249 **/
|
|
|
|
"use strict";
|
|
|
|
SimpleTest.waitForExplicitFinish();
|
|
|
|
Cu.import("resource://gre/modules/Services.jsm");
|
|
Cu.import("resource://gre/modules/NativeApp.jsm");
|
|
Cu.import("resource://gre/modules/WebappOSUtils.jsm");
|
|
Cu.import("resource://gre/modules/Promise.jsm");
|
|
|
|
let manifest = {
|
|
name: "test_desktop_hosted_launch",
|
|
launch_path: "/chrome/toolkit/webapps/tests/app.sjs?appreq",
|
|
};
|
|
|
|
let app = {
|
|
name: "test_desktop_hosted_launch",
|
|
manifestURL: "http://127.0.0.1:8888/sample.manifest",
|
|
manifest: manifest,
|
|
origin: "http://127.0.0.1:8888/",
|
|
categories: [],
|
|
installOrigin: "http://127.0.0.1:8888/",
|
|
receipts: [],
|
|
installTime: Date.now(),
|
|
};
|
|
|
|
let profileDir;
|
|
let installPath;
|
|
let exePath;
|
|
let appProcess = Cc["@mozilla.org/process/util;1"].
|
|
createInstance(Ci.nsIProcess);
|
|
|
|
let cleanup;
|
|
|
|
if (LINUX) {
|
|
installPath = OS.Path.join(OS.Constants.Path.homeDir, "." + WebappOSUtils.getUniqueName(app));
|
|
exePath = OS.Path.join(installPath, "webapprt-stub");
|
|
|
|
let xdg_data_home = Cc["@mozilla.org/process/environment;1"].
|
|
getService(Ci.nsIEnvironment).
|
|
get("XDG_DATA_HOME");
|
|
if (!xdg_data_home) {
|
|
xdg_data_home = OS.Path.join(OS.Constants.Path.homeDir, ".local", "share");
|
|
}
|
|
|
|
let desktopINI = OS.Path.join(xdg_data_home, "applications",
|
|
"owa-" + WebappOSUtils.getUniqueName(app) + ".desktop");
|
|
|
|
cleanup = function() {
|
|
return Task.spawn(function*() {
|
|
if (appProcess.isRunning) {
|
|
appProcess.kill();
|
|
}
|
|
|
|
if (profileDir) {
|
|
yield OS.File.removeDir(profileDir.parent.path, { ignoreAbsent: true });
|
|
}
|
|
|
|
yield OS.File.removeDir(installPath, { ignoreAbsent: true });
|
|
|
|
yield OS.File.remove(desktopINI, { ignoreAbsent: true });
|
|
});
|
|
};
|
|
} else if (WIN) {
|
|
installPath = OS.Path.join(OS.Constants.Path.winAppDataDir, WebappOSUtils.getUniqueName(app));
|
|
exePath = OS.Path.join(installPath, "test_desktop_hosted_launch.exe");
|
|
|
|
let desktopShortcut = OS.Path.join(OS.Constants.Path.desktopDir, "test_desktop_hosted_launch.lnk");
|
|
let startMenuShortcut = OS.Path.join(OS.Constants.Path.winStartMenuProgsDir, "test_desktop_hosted_launch.lnk");
|
|
|
|
cleanup = function() {
|
|
return Task.spawn(function*() {
|
|
if (appProcess.isRunning) {
|
|
appProcess.kill();
|
|
}
|
|
|
|
let uninstallKey;
|
|
try {
|
|
uninstallKey = Cc["@mozilla.org/windows-registry-key;1"].
|
|
createInstance(Ci.nsIWindowsRegKey);
|
|
uninstallKey.open(uninstallKey.ROOT_KEY_CURRENT_USER,
|
|
"SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Uninstall",
|
|
uninstallKey.ACCESS_WRITE);
|
|
if (uninstallKey.hasChild(WebappOSUtils.getUniqueName(app))) {
|
|
uninstallKey.removeChild(WebappOSUtils.getUniqueName(app));
|
|
}
|
|
} catch (e) {
|
|
} finally {
|
|
if (uninstallKey) {
|
|
uninstallKey.close();
|
|
}
|
|
}
|
|
|
|
let removed = false;
|
|
do {
|
|
try {
|
|
if (profileDir) {
|
|
yield OS.File.removeDir(profileDir.parent.parent.path, { ignoreAbsent: true });
|
|
}
|
|
|
|
yield OS.File.removeDir(installPath, { ignoreAbsent: true });
|
|
|
|
yield OS.File.remove(desktopShortcut, { ignoreAbsent: true });
|
|
yield OS.File.remove(startMenuShortcut, { ignoreAbsent: true });
|
|
|
|
removed = true;
|
|
} catch (ex if ex instanceof OS.File.Error &&
|
|
(ex.winLastError == OS.Constants.Win.ERROR_ACCESS_DENIED ||
|
|
ex.winLastError == OS.Constants.Win.ERROR_SHARING_VIOLATION)) {
|
|
// Wait 100 ms before attempting to remove again.
|
|
yield wait(100);
|
|
}
|
|
} while (!removed);
|
|
});
|
|
};
|
|
} else if (MAC) {
|
|
installPath = OS.Path.join(OS.Constants.Path.homeDir, "Applications", "test_desktop_hosted_launch.app");
|
|
exePath = OS.Path.join(installPath, "Contents", "MacOS", "webapprt");
|
|
|
|
let appProfileDir = OS.Path.join(OS.Constants.Path.macUserLibDir, "Application Support",
|
|
WebappOSUtils.getUniqueName(app));
|
|
|
|
cleanup = function() {
|
|
return Task.spawn(function*() {
|
|
if (appProcess.isRunning) {
|
|
appProcess.kill();
|
|
}
|
|
|
|
if (profileDir) {
|
|
yield OS.File.removeDir(profileDir.parent.path, { ignoreAbsent: true });
|
|
}
|
|
|
|
yield OS.File.removeDir(installPath, { ignoreAbsent: true });
|
|
|
|
yield OS.File.removeDir(appProfileDir, { ignoreAbsent: true });
|
|
});
|
|
};
|
|
}
|
|
|
|
let runTest = Task.async(function*() {
|
|
// Get to a clean state before the test
|
|
yield cleanup();
|
|
|
|
SimpleTest.registerCleanupFunction(cleanup);
|
|
|
|
setDryRunPref();
|
|
|
|
let nativeApp = new NativeApp(app, manifest, app.categories);
|
|
ok(nativeApp, "NativeApp object created");
|
|
|
|
profileDir = nativeApp.createProfile();
|
|
ok(profileDir && profileDir.exists(), "Profile directory created");
|
|
|
|
// On Mac build servers, we don't have enough privileges to write to /Applications,
|
|
// so we install apps in a user-owned directory.
|
|
if (MAC) {
|
|
nativeApp._rootInstallDir = OS.Path.join(OS.Constants.Path.homeDir, "Applications");
|
|
yield OS.File.makeDir(nativeApp._rootInstallDir, { ignoreExisting: true });
|
|
}
|
|
|
|
// Install application
|
|
info("Test installation");
|
|
yield nativeApp.install(manifest);
|
|
while (!WebappOSUtils.isLaunchable(app)) {
|
|
yield wait(1000);
|
|
}
|
|
ok(true, "App launchable");
|
|
|
|
let exeFile = getFile(exePath);
|
|
|
|
ok(exeFile.isExecutable(), "webapprt executable is executable");
|
|
|
|
let appClosed = false;
|
|
|
|
appProcess.init(exeFile)
|
|
appProcess.runAsync([], 0, () => appClosed = true);
|
|
|
|
while (!(yield wasAppSJSAccessed()) && !appClosed) {
|
|
yield wait(1000);
|
|
}
|
|
ok(!appClosed, "App was launched and is still running");
|
|
|
|
SimpleTest.finish();
|
|
});
|
|
|
|
// The test doesn't work yet on Mac OS X 10.6 machines.
|
|
// See bug 993690.
|
|
if (MAC_106) {
|
|
todo(false, "The test doesn't work on Mac OS X 10.6 machines");
|
|
SimpleTest.finish();
|
|
} else {
|
|
runTest().then(null, function(e) {
|
|
ok(false, "Error during test: " + e);
|
|
SimpleTest.finish();
|
|
});
|
|
}
|
|
|
|
]]>
|
|
</script>
|
|
</window>
|