|
1 /* This Source Code Form is subject to the terms of the Mozilla Public |
|
2 * License, v. 2.0. If a copy of the MPL was not distributed with this |
|
3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
|
4 |
|
5 'use strict'; |
|
6 |
|
7 const { id, preferencesBranch } = require('sdk/self'); |
|
8 const simple = require('sdk/simple-prefs'); |
|
9 const service = require('sdk/preferences/service'); |
|
10 const { AddonManager } = require('chrome').Cu.import('resource://gre/modules/AddonManager.jsm'); |
|
11 |
|
12 exports.testPreferencesBranch = function(assert) { |
|
13 assert.equal(preferencesBranch, 'human-readable', 'preferencesBranch is human-readable'); |
|
14 |
|
15 assert.equal(simple.prefs.test42, true, 'test42 is true'); |
|
16 |
|
17 simple.prefs.test43 = 'movie'; |
|
18 assert.equal(service.get('extensions.human-readable.test43'), 'movie', 'test43 is a movie'); |
|
19 |
|
20 } |
|
21 |
|
22 // from `/test/test-self.js`, adapted to `sdk/test/assert` API |
|
23 exports.testSelfID = function(assert, done) { |
|
24 |
|
25 assert.equal(typeof(id), 'string', 'self.id is a string'); |
|
26 assert.ok(id.length > 0, 'self.id not empty'); |
|
27 |
|
28 AddonManager.getAddonByID(id, function(addon) { |
|
29 assert.ok(addon, 'found addon with self.id'); |
|
30 done(); |
|
31 }); |
|
32 |
|
33 } |
|
34 |
|
35 require('sdk/test/runner').runTestsFromModule(module); |