зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1449255: Part 27 - Remove test_bug566626, which seems unnecessary. r=aswan
MozReview-Commit-ID: CqChkPZpDUS --HG-- extra : rebase_source : 3a2a6bc619e90cf573bb17bcd8e14b0f3fb69061
This commit is contained in:
Родитель
57761d6598
Коммит
8c623c8122
|
@ -1,113 +0,0 @@
|
|||
/* Any copyright is dedicated to the Public Domain.
|
||||
* http://creativecommons.org/publicdomain/zero/1.0/
|
||||
*/
|
||||
|
||||
// This verifies that multiple calls to the async API return fully formed
|
||||
// add-ons
|
||||
|
||||
var addon1 = {
|
||||
id: "addon1@tests.mozilla.org",
|
||||
version: "1.0",
|
||||
name: "Test 1",
|
||||
bootstrap: true,
|
||||
targetApplications: [{
|
||||
id: "xpcshell@tests.mozilla.org",
|
||||
minVersion: "1",
|
||||
maxVersion: "1"
|
||||
}]
|
||||
};
|
||||
|
||||
const profileDir = gProfD.clone();
|
||||
profileDir.append("extensions");
|
||||
|
||||
var gAddon;
|
||||
|
||||
// Sets up the profile by installing an add-on.
|
||||
function run_test() {
|
||||
do_test_pending();
|
||||
|
||||
createAppInfo("xpcshell@tests.mozilla.org", "XPCShell", "1", "1.9.2");
|
||||
|
||||
writeInstallRDFForExtension(addon1, profileDir);
|
||||
|
||||
startupManager();
|
||||
|
||||
run_test_1();
|
||||
}
|
||||
|
||||
// Verifies that multiple calls to get an add-on at various stages of execution
|
||||
// return an add-on with a valid name.
|
||||
function run_test_1() {
|
||||
var count = 0;
|
||||
|
||||
AddonManager.getAddonByID("addon1@tests.mozilla.org", function(a1) {
|
||||
Assert.notEqual(a1, null);
|
||||
Assert.equal(a1.name, "Test 1");
|
||||
|
||||
if (count == 0)
|
||||
gAddon = a1;
|
||||
else
|
||||
Assert.equal(a1, gAddon);
|
||||
count++;
|
||||
if (count == 4)
|
||||
run_test_2();
|
||||
});
|
||||
|
||||
AddonManager.getAddonByID("addon1@tests.mozilla.org", function(a1) {
|
||||
Assert.notEqual(a1, null);
|
||||
Assert.equal(a1.name, "Test 1");
|
||||
|
||||
if (count == 0)
|
||||
gAddon = a1;
|
||||
else
|
||||
Assert.equal(a1, gAddon);
|
||||
count++;
|
||||
if (count == 4)
|
||||
run_test_2();
|
||||
});
|
||||
|
||||
executeSoon(function() {
|
||||
AddonManager.getAddonByID("addon1@tests.mozilla.org", function(a1) {
|
||||
Assert.notEqual(a1, null);
|
||||
Assert.equal(a1.name, "Test 1");
|
||||
|
||||
if (count == 0)
|
||||
gAddon = a1;
|
||||
else
|
||||
Assert.equal(a1, gAddon);
|
||||
count++;
|
||||
if (count == 4)
|
||||
run_test_2();
|
||||
});
|
||||
});
|
||||
|
||||
executeSoon(function() {
|
||||
executeSoon(function() {
|
||||
AddonManager.getAddonByID("addon1@tests.mozilla.org", function(a1) {
|
||||
Assert.notEqual(a1, null);
|
||||
Assert.equal(a1.name, "Test 1");
|
||||
|
||||
if (count == 0)
|
||||
gAddon = a1;
|
||||
else
|
||||
Assert.equal(a1, gAddon);
|
||||
count++;
|
||||
if (count == 4)
|
||||
run_test_2();
|
||||
});
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
// Verifies that a subsequent call gets the same add-on from the cache
|
||||
function run_test_2() {
|
||||
AddonManager.getAddonByID("addon1@tests.mozilla.org", function(a1) {
|
||||
Assert.notEqual(a1, null);
|
||||
Assert.equal(a1.name, "Test 1");
|
||||
|
||||
Assert.equal(a1, gAddon);
|
||||
|
||||
executeSoon(do_test_finished);
|
||||
});
|
||||
|
||||
}
|
|
@ -76,7 +76,6 @@ skip-if = true # Bug 1358846 Bug 1365021 Bug 676992
|
|||
[test_bootstrap_const.js]
|
||||
[test_bootstrap_globals.js]
|
||||
[test_bootstrapped_chrome_manifest.js]
|
||||
[test_bug566626.js]
|
||||
[test_cache_certdb.js]
|
||||
run-if = addon_signing
|
||||
[test_cacheflush.js]
|
||||
|
|
Загрузка…
Ссылка в новой задаче