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 supportsString = Cc["@mozilla.org/supports-string;1"] |
michael@0 | 11 | .createInstance(Ci.nsISupportsString); |
michael@0 | 12 | |
michael@0 | 13 | let settings = require("gcli/settings"); |
michael@0 | 14 | |
michael@0 | 15 | const TEST_URI = "data:text/html;charset=utf-8,gcli-pref3"; |
michael@0 | 16 | |
michael@0 | 17 | function test() { |
michael@0 | 18 | return Task.spawn(spawnTest).then(finish, helpers.handleError); |
michael@0 | 19 | } |
michael@0 | 20 | |
michael@0 | 21 | function spawnTest() { |
michael@0 | 22 | let options = yield helpers.openTab(TEST_URI); |
michael@0 | 23 | yield helpers.openToolbar(options); |
michael@0 | 24 | |
michael@0 | 25 | let remoteHostOrig = prefBranch.getComplexValue("devtools.debugger.remote-host", |
michael@0 | 26 | Ci.nsISupportsString).data; |
michael@0 | 27 | info("originally: devtools.debugger.remote-host = " + remoteHostOrig); |
michael@0 | 28 | |
michael@0 | 29 | yield helpers.audit(options, [ |
michael@0 | 30 | { |
michael@0 | 31 | setup: 'pref show devtools.debugger.remote-host', |
michael@0 | 32 | check: { |
michael@0 | 33 | args: { |
michael@0 | 34 | setting: { value: settings.getSetting("devtools.debugger.remote-host") } |
michael@0 | 35 | }, |
michael@0 | 36 | }, |
michael@0 | 37 | exec: { |
michael@0 | 38 | output: new RegExp("^devtools\.debugger\.remote-host: " + remoteHostOrig + "$"), |
michael@0 | 39 | }, |
michael@0 | 40 | }, |
michael@0 | 41 | { |
michael@0 | 42 | setup: 'pref set devtools.debugger.remote-host e.com', |
michael@0 | 43 | check: { |
michael@0 | 44 | args: { |
michael@0 | 45 | setting: { value: settings.getSetting("devtools.debugger.remote-host") }, |
michael@0 | 46 | value: { value: "e.com" } |
michael@0 | 47 | }, |
michael@0 | 48 | }, |
michael@0 | 49 | exec: { |
michael@0 | 50 | output: '', |
michael@0 | 51 | }, |
michael@0 | 52 | }, |
michael@0 | 53 | { |
michael@0 | 54 | setup: 'pref show devtools.debugger.remote-host', |
michael@0 | 55 | check: { |
michael@0 | 56 | args: { |
michael@0 | 57 | setting: { value: settings.getSetting("devtools.debugger.remote-host") } |
michael@0 | 58 | }, |
michael@0 | 59 | }, |
michael@0 | 60 | exec: { |
michael@0 | 61 | output: new RegExp("^devtools\.debugger\.remote-host: e.com$"), |
michael@0 | 62 | }, |
michael@0 | 63 | post: function() { |
michael@0 | 64 | var ecom = prefBranch.getComplexValue("devtools.debugger.remote-host", |
michael@0 | 65 | Ci.nsISupportsString).data; |
michael@0 | 66 | is(ecom, "e.com", "devtools.debugger.remote-host is e.com"); |
michael@0 | 67 | } |
michael@0 | 68 | }, |
michael@0 | 69 | { |
michael@0 | 70 | setup: 'pref set devtools.debugger.remote-host moz.foo', |
michael@0 | 71 | check: { |
michael@0 | 72 | args: { |
michael@0 | 73 | setting: { value: settings.getSetting("devtools.debugger.remote-host") }, |
michael@0 | 74 | value: { value: "moz.foo" } |
michael@0 | 75 | }, |
michael@0 | 76 | }, |
michael@0 | 77 | exec: { |
michael@0 | 78 | output: '', |
michael@0 | 79 | }, |
michael@0 | 80 | }, |
michael@0 | 81 | { |
michael@0 | 82 | setup: 'pref show devtools.debugger.remote-host', |
michael@0 | 83 | check: { |
michael@0 | 84 | args: { |
michael@0 | 85 | setting: { value: settings.getSetting("devtools.debugger.remote-host") } |
michael@0 | 86 | }, |
michael@0 | 87 | }, |
michael@0 | 88 | exec: { |
michael@0 | 89 | output: new RegExp("^devtools\.debugger\.remote-host: moz.foo$"), |
michael@0 | 90 | }, |
michael@0 | 91 | post: function() { |
michael@0 | 92 | var mozfoo = prefBranch.getComplexValue("devtools.debugger.remote-host", |
michael@0 | 93 | Ci.nsISupportsString).data; |
michael@0 | 94 | is(mozfoo, "moz.foo", "devtools.debugger.remote-host is moz.foo"); |
michael@0 | 95 | } |
michael@0 | 96 | }, |
michael@0 | 97 | ]); |
michael@0 | 98 | |
michael@0 | 99 | supportsString.data = remoteHostOrig; |
michael@0 | 100 | prefBranch.setComplexValue("devtools.debugger.remote-host", |
michael@0 | 101 | Ci.nsISupportsString, supportsString); |
michael@0 | 102 | |
michael@0 | 103 | yield helpers.closeToolbar(options); |
michael@0 | 104 | yield helpers.closeTab(options); |
michael@0 | 105 | } |