Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
michael@0 | 1 | <!DOCTYPE HTML> |
michael@0 | 2 | <html> |
michael@0 | 3 | <head> |
michael@0 | 4 | <meta charset="utf-8"> |
michael@0 | 5 | <title>Test for DataStore - basic operation on a readonly db</title> |
michael@0 | 6 | <script type="application/javascript" src="/tests/SimpleTest/SimpleTest.js"></script> |
michael@0 | 7 | <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/> |
michael@0 | 8 | </head> |
michael@0 | 9 | <body> |
michael@0 | 10 | <div id="container"></div> |
michael@0 | 11 | <script type="application/javascript;version=1.7"> |
michael@0 | 12 | |
michael@0 | 13 | var gHostedManifestURL1 = 'http://test/tests/dom/datastore/tests/file_app.sjs?template=file_app2.template.webapp&testToken=file_event_receiver.html'; |
michael@0 | 14 | var gHostedManifestURL2 = 'http://example.com/tests/dom/datastore/tests/file_app.sjs?testToken=file_event_maker.html'; |
michael@0 | 15 | var gApps = []; |
michael@0 | 16 | |
michael@0 | 17 | function cbError() { |
michael@0 | 18 | ok(false, "Error callback invoked"); |
michael@0 | 19 | finish(); |
michael@0 | 20 | } |
michael@0 | 21 | |
michael@0 | 22 | function installApp(manifest) { |
michael@0 | 23 | var request = navigator.mozApps.install(manifest); |
michael@0 | 24 | request.onerror = cbError; |
michael@0 | 25 | request.onsuccess = function() { |
michael@0 | 26 | gApps.push(request.result); |
michael@0 | 27 | runTest(); |
michael@0 | 28 | } |
michael@0 | 29 | } |
michael@0 | 30 | |
michael@0 | 31 | function uninstallApp(app) { |
michael@0 | 32 | // Uninstall the app |
michael@0 | 33 | var request = navigator.mozApps.mgmt.uninstall(app); |
michael@0 | 34 | request.onerror = cbError; |
michael@0 | 35 | request.onsuccess = function() { |
michael@0 | 36 | runTest(); |
michael@0 | 37 | } |
michael@0 | 38 | } |
michael@0 | 39 | |
michael@0 | 40 | function testApp() { |
michael@0 | 41 | var ifr = document.createElement('iframe'); |
michael@0 | 42 | ifr.setAttribute('mozbrowser', 'true'); |
michael@0 | 43 | ifr.setAttribute('mozapp', gApps[0].manifestURL); |
michael@0 | 44 | ifr.setAttribute('src', gApps[0].manifest.launch_path); |
michael@0 | 45 | var domParent = document.getElementById('container'); |
michael@0 | 46 | |
michael@0 | 47 | // Set us up to listen for messages from the app. |
michael@0 | 48 | var listener = function(e) { |
michael@0 | 49 | var message = e.detail.message; |
michael@0 | 50 | if (/^OK/.exec(message)) { |
michael@0 | 51 | ok(true, "Message from app: " + message); |
michael@0 | 52 | } else if (/KO/.exec(message)) { |
michael@0 | 53 | ok(false, "Message from app: " + message); |
michael@0 | 54 | } else if (/READY/.exec(message)) { |
michael@0 | 55 | ok(true, "App ready"); |
michael@0 | 56 | testApp2(); |
michael@0 | 57 | } else if (/DONE/.exec(message)) { |
michael@0 | 58 | ok(true, "Messaging from app complete"); |
michael@0 | 59 | ifr.removeEventListener('mozbrowsershowmodalprompt', listener); |
michael@0 | 60 | domParent.removeChild(ifr); |
michael@0 | 61 | runTest(); |
michael@0 | 62 | } |
michael@0 | 63 | } |
michael@0 | 64 | |
michael@0 | 65 | // This event is triggered when the app calls "alert". |
michael@0 | 66 | ifr.addEventListener('mozbrowsershowmodalprompt', listener, false); |
michael@0 | 67 | domParent.appendChild(ifr); |
michael@0 | 68 | } |
michael@0 | 69 | |
michael@0 | 70 | function testApp2() { |
michael@0 | 71 | var ifr = document.createElement('iframe'); |
michael@0 | 72 | ifr.setAttribute('mozbrowser', 'true'); |
michael@0 | 73 | ifr.setAttribute('mozapp', gApps[1].manifestURL); |
michael@0 | 74 | ifr.setAttribute('src', gApps[1].manifest.launch_path); |
michael@0 | 75 | var domParent = document.getElementById('container'); |
michael@0 | 76 | |
michael@0 | 77 | // Set us up to listen for messages from the app. |
michael@0 | 78 | var listener = function(e) { |
michael@0 | 79 | var message = e.detail.message; |
michael@0 | 80 | if (/^OK/.exec(message)) { |
michael@0 | 81 | ok(true, "Message from app: " + message); |
michael@0 | 82 | } else if (/KO/.exec(message)) { |
michael@0 | 83 | ok(false, "Message from app: " + message); |
michael@0 | 84 | } else if (/DONE/.exec(message)) { |
michael@0 | 85 | ok(true, "Messaging from app complete"); |
michael@0 | 86 | ifr.removeEventListener('mozbrowsershowmodalprompt', listener); |
michael@0 | 87 | domParent.removeChild(ifr); |
michael@0 | 88 | } |
michael@0 | 89 | } |
michael@0 | 90 | |
michael@0 | 91 | // This event is triggered when the app calls "alert". |
michael@0 | 92 | ifr.addEventListener('mozbrowsershowmodalprompt', listener, false); |
michael@0 | 93 | domParent.appendChild(ifr); |
michael@0 | 94 | } |
michael@0 | 95 | |
michael@0 | 96 | var tests = [ |
michael@0 | 97 | // Permissions |
michael@0 | 98 | function() { |
michael@0 | 99 | SpecialPowers.pushPermissions( |
michael@0 | 100 | [{ "type": "browser", "allow": 1, "context": document }, |
michael@0 | 101 | { "type": "embed-apps", "allow": 1, "context": document }, |
michael@0 | 102 | { "type": "webapps-manage", "allow": 1, "context": document }], runTest); |
michael@0 | 103 | }, |
michael@0 | 104 | |
michael@0 | 105 | // Preferences |
michael@0 | 106 | function() { |
michael@0 | 107 | SpecialPowers.pushPrefEnv({"set": [["dom.datastore.enabled", true], |
michael@0 | 108 | ["dom.ipc.browser_frames.oop_by_default", true], |
michael@0 | 109 | ["dom.testing.ignore_ipc_principal", true], |
michael@0 | 110 | ["dom.testing.datastore_enabled_for_hosted_apps", true]]}, runTest); |
michael@0 | 111 | }, |
michael@0 | 112 | |
michael@0 | 113 | function() { |
michael@0 | 114 | SpecialPowers.setAllAppsLaunchable(true); |
michael@0 | 115 | SpecialPowers.setBoolPref("dom.mozBrowserFramesEnabled", true); |
michael@0 | 116 | runTest(); |
michael@0 | 117 | }, |
michael@0 | 118 | |
michael@0 | 119 | // No confirmation needed when an app is installed |
michael@0 | 120 | function() { |
michael@0 | 121 | SpecialPowers.autoConfirmAppInstall(runTest); |
michael@0 | 122 | }, |
michael@0 | 123 | |
michael@0 | 124 | // Installing the apps |
michael@0 | 125 | function() { installApp(gHostedManifestURL1); }, |
michael@0 | 126 | function() { installApp(gHostedManifestURL2); }, |
michael@0 | 127 | |
michael@0 | 128 | // Run tests in apps |
michael@0 | 129 | testApp, |
michael@0 | 130 | |
michael@0 | 131 | // Uninstall the apps |
michael@0 | 132 | function() { uninstallApp(gApps[0]); }, |
michael@0 | 133 | function() { uninstallApp(gApps[1]); }, |
michael@0 | 134 | ]; |
michael@0 | 135 | |
michael@0 | 136 | function runTest() { |
michael@0 | 137 | if (!tests.length) { |
michael@0 | 138 | finish(); |
michael@0 | 139 | return; |
michael@0 | 140 | } |
michael@0 | 141 | |
michael@0 | 142 | var test = tests.shift(); |
michael@0 | 143 | test(); |
michael@0 | 144 | } |
michael@0 | 145 | |
michael@0 | 146 | function finish() { |
michael@0 | 147 | SimpleTest.finish(); |
michael@0 | 148 | } |
michael@0 | 149 | |
michael@0 | 150 | if (SpecialPowers.isMainProcess()) { |
michael@0 | 151 | SpecialPowers.Cu.import("resource://gre/modules/DataStoreChangeNotifier.jsm"); |
michael@0 | 152 | } |
michael@0 | 153 | |
michael@0 | 154 | SimpleTest.waitForExplicitFinish(); |
michael@0 | 155 | runTest(); |
michael@0 | 156 | </script> |
michael@0 | 157 | </body> |
michael@0 | 158 | </html> |