mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
174 lines
5.5 KiB
XML
174 lines
5.5 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=898647
|
|
-->
|
|
<window title="Mozilla Bug 898647"
|
|
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=898647"
|
|
target="_blank">Mozilla Bug 898647</a>
|
|
</body>
|
|
|
|
<script type="application/javascript">
|
|
<![CDATA[
|
|
|
|
/** Test for Bug 898647 **/
|
|
|
|
"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");
|
|
|
|
let zipPath = OS.Path.join(OS.Constants.Path.profileDir, "sample.zip");
|
|
|
|
let manifest = {
|
|
name: "Sample packaged app",
|
|
version: "0.1a",
|
|
size: 777,
|
|
package_path: "/sample.zip",
|
|
};
|
|
|
|
let app = {
|
|
name: "Sample packaged app",
|
|
manifestURL: "http://example.com/sample.manifest",
|
|
manifest: manifest,
|
|
updateManifest: manifest,
|
|
origin: "http://example.com/",
|
|
categories: [],
|
|
installOrigin: "http://example.com/",
|
|
receipts: [],
|
|
installTime: Date.now(),
|
|
};
|
|
|
|
let testAppInfo = new TestAppInfo(app);
|
|
|
|
let runTest = Task.async(function*() {
|
|
// Get to a clean state before the test
|
|
yield testAppInfo.cleanup();
|
|
|
|
SimpleTest.registerCleanupFunction(() => testAppInfo.cleanup());
|
|
|
|
setDryRunPref();
|
|
|
|
let zipFile = yield OS.File.open(zipPath, { create: true });
|
|
yield zipFile.close();
|
|
|
|
let nativeApp = new NativeApp(app, manifest, app.categories);
|
|
ok(nativeApp, "NativeApp object created");
|
|
|
|
info("Test update for an application that isn't installed");
|
|
try {
|
|
yield nativeApp.prepareUpdate(manifest, zipPath);
|
|
ok(false, "Didn't thrown");
|
|
} catch (ex) {
|
|
is(ex, "The application isn't installed", "Exception thrown");
|
|
}
|
|
|
|
testAppInfo.profileDir = nativeApp.createProfile();
|
|
ok(testAppInfo.profileDir && testAppInfo.profileDir.exists(), "Profile directory created");
|
|
ok((yield OS.File.exists(testAppInfo.profilesIni)), "profiles.ini file 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, zipPath);
|
|
while (!WebappOSUtils.isLaunchable(app)) {
|
|
yield wait(1000);
|
|
}
|
|
ok(true, "App launchable");
|
|
ok((yield checkFiles(testAppInfo.installedFiles)), "Files correctly written");
|
|
is(WebappOSUtils.getInstallPath(app), testAppInfo.installPath, "getInstallPath == installPath");
|
|
|
|
let stat = yield OS.File.stat(testAppInfo.installPath);
|
|
let installTime = stat.lastModificationDate;
|
|
|
|
// Wait one second, otherwise the last modification date is the same.
|
|
yield wait(1000);
|
|
|
|
// Reinstall application
|
|
info("Test reinstallation");
|
|
|
|
zipFile = yield OS.File.open(zipPath, { create: true });
|
|
yield zipFile.close();
|
|
|
|
yield nativeApp.install(manifest, zipPath);
|
|
while (!WebappOSUtils.isLaunchable(app)) {
|
|
yield wait(1000);
|
|
}
|
|
ok(true, "App launchable");
|
|
ok((yield checkFiles(testAppInfo.installedFiles)), "Installation not corrupted");
|
|
ok((yield checkFiles(testAppInfo.tempUpdatedFiles)), "Files correctly written in the update subdirectory");
|
|
|
|
yield nativeApp.applyUpdate();
|
|
while (!WebappOSUtils.isLaunchable(app)) {
|
|
yield wait(1000);
|
|
}
|
|
ok(true, "App launchable");
|
|
ok((yield checkFiles(testAppInfo.installedFiles)), "Installation not corrupted");
|
|
ok(!(yield OS.File.exists(OS.Path.join(testAppInfo.installPath, "update"))), "Update directory removed");
|
|
ok((yield checkDateHigherThan(testAppInfo.updatedFiles, installTime)), "Modification date higher");
|
|
|
|
stat = yield OS.File.stat(testAppInfo.installPath);
|
|
installTime = stat.lastModificationDate;
|
|
|
|
// Wait one second, otherwise the last modification date is the same.
|
|
yield wait(1000);
|
|
|
|
// Update application
|
|
info("Test update");
|
|
|
|
zipFile = yield OS.File.open(zipPath, { create: true });
|
|
yield zipFile.close();
|
|
|
|
yield nativeApp.prepareUpdate(manifest, zipPath);
|
|
while (!WebappOSUtils.isLaunchable(app)) {
|
|
yield wait(1000);
|
|
}
|
|
ok(true, "App launchable");
|
|
ok((yield checkFiles(testAppInfo.installedFiles)), "Installation not corrupted");
|
|
ok((yield checkFiles(testAppInfo.tempUpdatedFiles)), "Files correctly written in the update subdirectory");
|
|
|
|
yield nativeApp.applyUpdate();
|
|
while (!WebappOSUtils.isLaunchable(app)) {
|
|
yield wait(1000);
|
|
}
|
|
ok(true, "App launchable");
|
|
ok((yield checkFiles(testAppInfo.installedFiles)), "Installation not corrupted");
|
|
ok(!(yield OS.File.exists(OS.Path.join(testAppInfo.installPath, "update"))), "Update directory removed");
|
|
ok((yield checkDateHigherThan(testAppInfo.updatedFiles, installTime)), "Modification date higher");
|
|
|
|
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>
|