mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-07 12:15:51 +00:00
eba25816af
--HG-- rename : addon-sdk/source/test/fixtures/test-page-worker.html => addon-sdk/source/test/addons/e10s-content/data/test-page-worker.html rename : addon-sdk/source/test/fixtures/test-page-worker.js => addon-sdk/source/test/addons/e10s-content/data/test-page-worker.js rename : addon-sdk/source/test/addons/places/favicon-helpers.js => addon-sdk/source/test/addons/places/lib/favicon-helpers.js rename : addon-sdk/source/test/addons/places/httpd.js => addon-sdk/source/test/addons/places/lib/httpd.js rename : addon-sdk/source/test/addons/places/places-helper.js => addon-sdk/source/test/addons/places/lib/places-helper.js rename : addon-sdk/source/test/addons/places/tests/test-places-utils.js => addon-sdk/source/test/addons/places/lib/test-places-utils.js rename : addon-sdk/source/test/fixtures/test-page-worker.html => addon-sdk/source/test/fixtures/addon-sdk/data/test-page-worker.html rename : addon-sdk/source/test/fixtures/test-page-worker.js => addon-sdk/source/test/fixtures/addon-sdk/data/test-page-worker.js
50 lines
1.9 KiB
JavaScript
50 lines
1.9 KiB
JavaScript
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
'use strict';
|
|
|
|
const { env } = require('sdk/system/environment');
|
|
const { Cc, Ci } = require('chrome');
|
|
const { get, set, exists } = Cc['@mozilla.org/process/environment;1'].
|
|
getService(Ci.nsIEnvironment);
|
|
|
|
exports['test exists'] = function(assert) {
|
|
assert.equal('PATH' in env, exists('PATH'),
|
|
'PATH environment variable is defined');
|
|
assert.equal('FOO1' in env, exists('FOO1'),
|
|
'FOO1 environment variable is not defined');
|
|
set('FOO1', 'foo');
|
|
assert.equal('FOO1' in env, true,
|
|
'FOO1 environment variable was set');
|
|
set('FOO1', null);
|
|
assert.equal('FOO1' in env, false,
|
|
'FOO1 environment variable was unset');
|
|
};
|
|
|
|
exports['test get'] = function(assert) {
|
|
assert.equal(env.PATH, get('PATH'), 'PATH env variable matches');
|
|
assert.equal(env.BAR2, undefined, 'BAR2 env variable is not defined');
|
|
set('BAR2', 'bar');
|
|
assert.equal(env.BAR2, 'bar', 'BAR2 env variable was set');
|
|
set('BAR2', null);
|
|
assert.equal(env.BAR2, undefined, 'BAR2 env variable was unset');
|
|
};
|
|
|
|
exports['test set'] = function(assert) {
|
|
assert.equal(get('BAZ3'), '', 'BAZ3 env variable is not set');
|
|
assert.equal(env.BAZ3, undefined, 'BAZ3 is not set');
|
|
env.BAZ3 = 'baz';
|
|
assert.equal(env.BAZ3, get('BAZ3'), 'BAZ3 env variable is set');
|
|
assert.equal(get('BAZ3'), 'baz', 'BAZ3 env variable was set to "baz"');
|
|
};
|
|
|
|
exports['test unset'] = function(assert) {
|
|
env.BLA4 = 'bla';
|
|
assert.equal(env.BLA4, 'bla', 'BLA4 env variable is set');
|
|
assert.equal(delete env.BLA4, true, 'BLA4 env variable is removed');
|
|
assert.equal(env.BLA4, undefined, 'BLA4 env variable is unset');
|
|
assert.equal('BLA4' in env, false, 'BLA4 env variable no longer exists' );
|
|
};
|
|
|
|
require('sdk/test').run(exports);
|