fune/toolkit/modules/tests/browser/browser_Battery.js
Kris Maglione 918ed6c474 Bug 1431533: Part 5a - Auto-rewrite code to use ChromeUtils import methods. r=florian
This was done using the following script:
37e3803c7a/processors/chromeutils-import.jsm

MozReview-Commit-ID: 1Nc3XDu0wGl

--HG--
extra : source : 12fc4dee861c812fd2bd032c63ef17af61800c70
extra : intermediate-source : 34c999fa006bffe8705cf50c54708aa21a962e62
extra : histedit_source : b2be2c5e5d226e6c347312456a6ae339c1e634b0
2018-01-29 15:20:18 -08:00

51 lines
1.8 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";
var {GetBattery, Debugging} = ChromeUtils.import("resource://gre/modules/Battery.jsm", {});
ChromeUtils.import("resource://gre/modules/Services.jsm", this);
function test() {
waitForExplicitFinish();
is(Debugging.fake, false, "Battery spoofing is initially false");
GetBattery().then(function(battery) {
for (let k of ["charging", "chargingTime", "dischargingTime", "level"]) {
let backup = battery[k];
try {
battery[k] = "__magic__";
} catch (e) {
// We are testing that we cannot set battery to new values
// when "use strict" is enabled, this throws a TypeError
if (e.name != "TypeError")
throw e;
}
is(battery[k], backup, "Setting battery " + k + " preference without spoofing enabled should fail");
}
Debugging.fake = true;
// reload again to get the fake one
GetBattery().then(function(battery) {
battery.charging = true;
battery.chargingTime = 100;
battery.level = 0.5;
ok(battery.charging, "Test for charging setter");
is(battery.chargingTime, 100, "Test for chargingTime setter");
is(battery.level, 0.5, "Test for level setter");
battery.charging = false;
battery.dischargingTime = 50;
battery.level = 0.7;
ok(!battery.charging, "Test for charging setter");
is(battery.dischargingTime, 50, "Test for dischargingTime setter");
is(battery.level, 0.7, "Test for level setter");
// Resetting the value to make the test run successful
// for multiple runs in same browser session.
Debugging.fake = false;
finish();
});
});
}