Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
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/. */
5 'use strict';
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');
12 exports.testPreferencesBranch = function(assert) {
13 assert.equal(preferencesBranch, 'human-readable', 'preferencesBranch is human-readable');
15 assert.equal(simple.prefs.test42, true, 'test42 is true');
17 simple.prefs.test43 = 'movie';
18 assert.equal(service.get('extensions.human-readable.test43'), 'movie', 'test43 is a movie');
20 }
22 // from `/test/test-self.js`, adapted to `sdk/test/assert` API
23 exports.testSelfID = function(assert, done) {
25 assert.equal(typeof(id), 'string', 'self.id is a string');
26 assert.ok(id.length > 0, 'self.id not empty');
28 AddonManager.getAddonByID(id, function(addon) {
29 assert.ok(addon, 'found addon with self.id');
30 done();
31 });
33 }
35 require('sdk/test/runner').runTestsFromModule(module);