Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
michael@0 | 1 | /* This Source Code Form is subject to the terms of the Mozilla Public |
michael@0 | 2 | * License, v. 2.0. If a copy of the MPL was not distributed with this |
michael@0 | 3 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
michael@0 | 4 | |
michael@0 | 5 | const gTests = [ |
michael@0 | 6 | test_getTopWin, |
michael@0 | 7 | test_getBoolPref, |
michael@0 | 8 | test_openNewTabWith, |
michael@0 | 9 | test_openUILink |
michael@0 | 10 | ]; |
michael@0 | 11 | |
michael@0 | 12 | function test () { |
michael@0 | 13 | waitForExplicitFinish(); |
michael@0 | 14 | executeSoon(runNextTest); |
michael@0 | 15 | } |
michael@0 | 16 | |
michael@0 | 17 | function runNextTest() { |
michael@0 | 18 | if (gTests.length) { |
michael@0 | 19 | let testFun = gTests.shift(); |
michael@0 | 20 | info("Running " + testFun.name); |
michael@0 | 21 | testFun() |
michael@0 | 22 | } |
michael@0 | 23 | else { |
michael@0 | 24 | finish(); |
michael@0 | 25 | } |
michael@0 | 26 | } |
michael@0 | 27 | |
michael@0 | 28 | function test_getTopWin() { |
michael@0 | 29 | is(getTopWin(), window, "got top window"); |
michael@0 | 30 | runNextTest(); |
michael@0 | 31 | } |
michael@0 | 32 | |
michael@0 | 33 | |
michael@0 | 34 | function test_getBoolPref() { |
michael@0 | 35 | is(getBoolPref("browser.search.openintab", false), false, "getBoolPref"); |
michael@0 | 36 | is(getBoolPref("this.pref.doesnt.exist", true), true, "getBoolPref fallback"); |
michael@0 | 37 | is(getBoolPref("this.pref.doesnt.exist", false), false, "getBoolPref fallback #2"); |
michael@0 | 38 | runNextTest(); |
michael@0 | 39 | } |
michael@0 | 40 | |
michael@0 | 41 | function test_openNewTabWith() { |
michael@0 | 42 | openNewTabWith("http://example.com/"); |
michael@0 | 43 | let tab = gBrowser.selectedTab = gBrowser.tabs[1]; |
michael@0 | 44 | tab.linkedBrowser.addEventListener("load", function onLoad(event) { |
michael@0 | 45 | tab.linkedBrowser.removeEventListener("load", onLoad, true); |
michael@0 | 46 | is(tab.linkedBrowser.currentURI.spec, "http://example.com/", "example.com loaded"); |
michael@0 | 47 | gBrowser.removeCurrentTab(); |
michael@0 | 48 | runNextTest(); |
michael@0 | 49 | }, true); |
michael@0 | 50 | } |
michael@0 | 51 | |
michael@0 | 52 | function test_openUILink() { |
michael@0 | 53 | let tab = gBrowser.selectedTab = gBrowser.addTab("about:blank"); |
michael@0 | 54 | tab.linkedBrowser.addEventListener("load", function onLoad(event) { |
michael@0 | 55 | tab.linkedBrowser.removeEventListener("load", onLoad, true); |
michael@0 | 56 | is(tab.linkedBrowser.currentURI.spec, "http://example.org/", "example.org loaded"); |
michael@0 | 57 | gBrowser.removeCurrentTab(); |
michael@0 | 58 | runNextTest(); |
michael@0 | 59 | }, true); |
michael@0 | 60 | |
michael@0 | 61 | openUILink("http://example.org/"); // defaults to "current" |
michael@0 | 62 | } |