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 file, |
michael@0 | 3 | * You can obtain one at http://mozilla.org/MPL/2.0/. */ |
michael@0 | 4 | |
michael@0 | 5 | function run_test() { |
michael@0 | 6 | // we are testing worker startup specifically |
michael@0 | 7 | do_test_pending(); |
michael@0 | 8 | add_test(testStartupDisabled); |
michael@0 | 9 | add_test(testEnableAfterStartup); |
michael@0 | 10 | do_initialize_social(false, run_next_test); |
michael@0 | 11 | } |
michael@0 | 12 | |
michael@0 | 13 | function testStartupDisabled() { |
michael@0 | 14 | // wait on startup before continuing |
michael@0 | 15 | do_check_false(Social.enabled, "Social is disabled"); |
michael@0 | 16 | do_check_eq(Social.providers.length, 0, "zero social providers available"); |
michael@0 | 17 | run_next_test(); |
michael@0 | 18 | } |
michael@0 | 19 | |
michael@0 | 20 | function testEnableAfterStartup() { |
michael@0 | 21 | do_add_providers(function () { |
michael@0 | 22 | do_check_true(Social.enabled, "Social is enabled"); |
michael@0 | 23 | do_check_eq(Social.providers.length, 2, "two social providers available"); |
michael@0 | 24 | do_check_true(Social.providers[0].enabled, "provider 0 is enabled"); |
michael@0 | 25 | do_check_true(Social.providers[1].enabled, "provider 1 is enabled"); |
michael@0 | 26 | do_test_finished(); |
michael@0 | 27 | run_next_test(); |
michael@0 | 28 | }); |
michael@0 | 29 | } |