2014-05-21 11:29:43 +04:00
|
|
|
<!DOCTYPE html>
|
|
|
|
|
|
|
|
<html>
|
|
|
|
|
|
|
|
<head>
|
|
|
|
<meta charset="utf8">
|
|
|
|
<title></title>
|
|
|
|
|
|
|
|
<script type="application/javascript" src="chrome://mochikit/content/tests/SimpleTest/SimpleTest.js"></script>
|
|
|
|
<script type="application/javascript" src="chrome://mochikit/content/chrome-harness.js"></script>
|
|
|
|
<script type="application/javascript;version=1.8" src="head.js"></script>
|
|
|
|
<link rel="stylesheet" type="text/css" href="chrome://mochikit/content/tests/SimpleTest/test.css">
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
|
|
|
|
|
|
|
<script type="application/javascript;version=1.8">
|
|
|
|
window.onload = function() {
|
|
|
|
SimpleTest.waitForExplicitFinish();
|
|
|
|
|
2015-03-10 18:30:00 +03:00
|
|
|
Task.spawn(function*() {
|
|
|
|
let win = yield openWebIDE();
|
|
|
|
let packagedAppLocation = getTestFilePath("app");
|
2014-05-21 11:29:43 +04:00
|
|
|
|
2015-03-10 18:30:00 +03:00
|
|
|
yield win.AppProjects.load();
|
|
|
|
is(win.AppProjects.store.object.projects.length, 0, "IDB is empty");
|
2014-06-12 10:47:35 +04:00
|
|
|
|
2015-03-10 18:30:00 +03:00
|
|
|
info("to call importPackagedApp(" + packagedAppLocation + ")");
|
|
|
|
ok(!win.UI._busyPromise, "UI is not busy");
|
2014-06-12 10:47:36 +04:00
|
|
|
|
2015-03-10 18:30:00 +03:00
|
|
|
yield win.projectList.importPackagedApp(packagedAppLocation);
|
|
|
|
yield waitForUpdate(win, "project-validated");
|
2014-05-21 11:29:43 +04:00
|
|
|
|
2015-03-10 18:30:00 +03:00
|
|
|
let project = win.AppManager.selectedProject;
|
|
|
|
is(project.location, packagedAppLocation, "Location is valid");
|
|
|
|
is(project.name, "A name (in app directory)", "name field has been updated");
|
|
|
|
is(project.manifest.launch_path, "/index.html", "manifest found. launch_path valid.");
|
|
|
|
is(project.manifest.description, "desc", "manifest found. description valid");
|
2014-05-21 11:29:43 +04:00
|
|
|
|
2015-03-10 18:30:00 +03:00
|
|
|
yield nextTick();
|
2014-05-21 11:29:43 +04:00
|
|
|
|
2015-03-10 18:30:00 +03:00
|
|
|
let hostedAppManifest = TEST_BASE + "hosted_app.manifest";
|
|
|
|
yield win.projectList.importHostedApp(hostedAppManifest);
|
|
|
|
yield waitForUpdate(win, "project-validated");
|
2014-05-21 11:29:43 +04:00
|
|
|
|
2015-03-10 18:30:00 +03:00
|
|
|
project = win.AppManager.selectedProject;
|
|
|
|
is(project.location, hostedAppManifest, "Location is valid");
|
|
|
|
is(project.name, "hosted manifest name property", "name field has been updated");
|
2014-05-21 11:29:43 +04:00
|
|
|
|
2015-03-10 18:30:00 +03:00
|
|
|
yield nextTick();
|
2014-09-18 10:14:00 +04:00
|
|
|
|
2015-03-10 18:30:00 +03:00
|
|
|
hostedAppManifest = TEST_BASE + "/app";
|
|
|
|
yield win.projectList.importHostedApp(hostedAppManifest);
|
|
|
|
yield waitForUpdate(win, "project-validated");
|
2014-09-18 10:14:00 +04:00
|
|
|
|
2015-03-10 18:30:00 +03:00
|
|
|
project = win.AppManager.selectedProject;
|
|
|
|
ok(project.location.endsWith('manifest.webapp'), "The manifest was found and the project was updated");
|
2014-09-18 10:14:00 +04:00
|
|
|
|
2015-03-10 18:30:00 +03:00
|
|
|
info("opening panel");
|
|
|
|
yield win.Cmds.showProjectPanel();
|
|
|
|
info("panel open");
|
2014-05-21 11:29:43 +04:00
|
|
|
|
2015-03-10 18:30:00 +03:00
|
|
|
let panelNode = win.document.querySelector("#project-panel");
|
|
|
|
let items = panelNode.querySelectorAll(".panel-item");
|
|
|
|
// 3 controls, + 2 projects
|
|
|
|
is(items.length, 6, "6 projects in panel");
|
|
|
|
is(items[3].getAttribute("label"), "A name (in app directory)", "Panel label is correct");
|
|
|
|
is(items[4].getAttribute("label"), "hosted manifest name property", "Panel label is correct");
|
2014-05-21 11:29:43 +04:00
|
|
|
|
2015-03-10 18:30:00 +03:00
|
|
|
yield closeWebIDE(win);
|
2014-05-21 11:29:43 +04:00
|
|
|
|
2015-03-10 18:30:00 +03:00
|
|
|
yield removeAllProjects();
|
2014-05-21 11:29:43 +04:00
|
|
|
|
2015-03-10 18:30:00 +03:00
|
|
|
SimpleTest.finish();
|
2014-06-12 10:47:36 +04:00
|
|
|
}).then(null, e => {
|
|
|
|
ok(false, "Exception: " + e);
|
|
|
|
SimpleTest.finish();
|
2014-05-21 11:29:43 +04:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
</script>
|
|
|
|
</body>
|
|
|
|
</html>
|