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 | /* Any copyright is dedicated to the Public Domain. |
michael@0 | 2 | * http://creativecommons.org/publicdomain/zero/1.0/ */ |
michael@0 | 3 | |
michael@0 | 4 | // Tests that the pref commands work |
michael@0 | 5 | |
michael@0 | 6 | let prefBranch = Cc["@mozilla.org/preferences-service;1"] |
michael@0 | 7 | .getService(Ci.nsIPrefService).getBranch(null) |
michael@0 | 8 | .QueryInterface(Ci.nsIPrefBranch2); |
michael@0 | 9 | |
michael@0 | 10 | let settings = require("gcli/settings"); |
michael@0 | 11 | |
michael@0 | 12 | const TEST_URI = "data:text/html;charset=utf-8,gcli-pref2"; |
michael@0 | 13 | |
michael@0 | 14 | function test() { |
michael@0 | 15 | return Task.spawn(spawnTest).then(finish, helpers.handleError); |
michael@0 | 16 | } |
michael@0 | 17 | |
michael@0 | 18 | function spawnTest() { |
michael@0 | 19 | let options = yield helpers.openTab(TEST_URI); |
michael@0 | 20 | yield helpers.openToolbar(options); |
michael@0 | 21 | |
michael@0 | 22 | let tabSizeOrig = prefBranch.getIntPref("devtools.editor.tabsize"); |
michael@0 | 23 | info("originally: devtools.editor.tabsize = " + tabSizeOrig); |
michael@0 | 24 | |
michael@0 | 25 | yield helpers.audit(options, [ |
michael@0 | 26 | { |
michael@0 | 27 | setup: 'pref show devtools.editor.tabsize', |
michael@0 | 28 | check: { |
michael@0 | 29 | args: { |
michael@0 | 30 | setting: { value: settings.getSetting("devtools.editor.tabsize") } |
michael@0 | 31 | }, |
michael@0 | 32 | }, |
michael@0 | 33 | exec: { |
michael@0 | 34 | output: "devtools.editor.tabsize: " + tabSizeOrig, |
michael@0 | 35 | }, |
michael@0 | 36 | }, |
michael@0 | 37 | { |
michael@0 | 38 | setup: 'pref set devtools.editor.tabsize 20', |
michael@0 | 39 | check: { |
michael@0 | 40 | args: { |
michael@0 | 41 | setting: { value: settings.getSetting("devtools.editor.tabsize") }, |
michael@0 | 42 | value: { value: 20 } |
michael@0 | 43 | }, |
michael@0 | 44 | }, |
michael@0 | 45 | exec: { |
michael@0 | 46 | output: '', |
michael@0 | 47 | }, |
michael@0 | 48 | post: function() { |
michael@0 | 49 | is(prefBranch.getIntPref("devtools.editor.tabsize"), 20, |
michael@0 | 50 | "devtools.editor.tabsize is 20"); |
michael@0 | 51 | } |
michael@0 | 52 | }, |
michael@0 | 53 | { |
michael@0 | 54 | setup: 'pref show devtools.editor.tabsize', |
michael@0 | 55 | check: { |
michael@0 | 56 | args: { |
michael@0 | 57 | setting: { value: settings.getSetting("devtools.editor.tabsize") } |
michael@0 | 58 | }, |
michael@0 | 59 | }, |
michael@0 | 60 | exec: { |
michael@0 | 61 | output: "devtools.editor.tabsize: 20", |
michael@0 | 62 | } |
michael@0 | 63 | }, |
michael@0 | 64 | { |
michael@0 | 65 | setup: 'pref set devtools.editor.tabsize 1', |
michael@0 | 66 | check: { |
michael@0 | 67 | args: { |
michael@0 | 68 | setting: { value: settings.getSetting("devtools.editor.tabsize") }, |
michael@0 | 69 | value: { value: 1 } |
michael@0 | 70 | }, |
michael@0 | 71 | }, |
michael@0 | 72 | exec: { |
michael@0 | 73 | output: '', |
michael@0 | 74 | }, |
michael@0 | 75 | }, |
michael@0 | 76 | { |
michael@0 | 77 | setup: 'pref show devtools.editor.tabsize', |
michael@0 | 78 | check: { |
michael@0 | 79 | args: { |
michael@0 | 80 | setting: { value: settings.getSetting("devtools.editor.tabsize") } |
michael@0 | 81 | }, |
michael@0 | 82 | }, |
michael@0 | 83 | exec: { |
michael@0 | 84 | output: "devtools.editor.tabsize: 1", |
michael@0 | 85 | }, |
michael@0 | 86 | post: function() { |
michael@0 | 87 | is(prefBranch.getIntPref("devtools.editor.tabsize"), 1, |
michael@0 | 88 | "devtools.editor.tabsize is 1"); |
michael@0 | 89 | } |
michael@0 | 90 | }, |
michael@0 | 91 | ]); |
michael@0 | 92 | |
michael@0 | 93 | prefBranch.setIntPref("devtools.editor.tabsize", tabSizeOrig); |
michael@0 | 94 | |
michael@0 | 95 | yield helpers.closeToolbar(options); |
michael@0 | 96 | yield helpers.closeTab(options); |
michael@0 | 97 | } |