Index: third_party/WebKit/LayoutTests/battery-status/api-defined.html |
diff --git a/third_party/WebKit/LayoutTests/battery-status/api-defined.html b/third_party/WebKit/LayoutTests/battery-status/api-defined.html |
index 29343a225bef63fee73841cdf7c183d8b50dad2d..3dfb9ae309eb839e17d4f213d2a2c0a9e33e69cf 100644 |
--- a/third_party/WebKit/LayoutTests/battery-status/api-defined.html |
+++ b/third_party/WebKit/LayoutTests/battery-status/api-defined.html |
@@ -2,18 +2,27 @@ |
<html> |
<body> |
<script src="../resources/js-test.js"></script> |
-<script src="../resources/mojo-helpers.js"></script> |
-<script src="resources/mock-battery-monitor.js"></script> |
<script> |
description("Test basic API definitions."); |
if (!window.testRunner) |
debug('This test cannot be run without the TestRunner'); |
+if (!window.internals) |
+ debug('This test cannot be run without the window.internals'); |
// Clean-up any unused battery manager objects from previous tests. |
gc(); |
jsTestIsAsync = true; |
testRunner.waitUntilDone(); |
+ |
+var mockBatteryInfo; |
+function setAndFireMockBatteryInfo(charging, chargingTime, dischargingTime, level) { |
+ mockBatteryInfo = { charging: charging, |
+ chargingTime: chargingTime, |
+ dischargingTime: dischargingTime, |
+ level: level }; |
+ window.internals.updateBatteryStatus(charging, chargingTime, dischargingTime, level); |
+} |
var battery; |
function batteryStatusSuccess(batteryManager) { |
@@ -27,7 +36,10 @@ |
shouldBeDefined("battery.dischargingTime"); |
shouldBeDefined("battery.level"); |
- testIfBatteryStatusIsUpToDate(batteryManager); |
+ shouldBe('battery.charging', 'mockBatteryInfo.charging'); |
+ shouldBe('battery.chargingTime', 'mockBatteryInfo.chargingTime'); |
+ shouldBe('battery.dischargingTime', 'mockBatteryInfo.dischargingTime'); |
+ shouldBe('battery.level', 'mockBatteryInfo.level'); |
shouldBeTrue("typeof battery.onchargingchange == 'object'"); |
shouldBeTrue("typeof battery.onchargingtimechange == 'object'"); |
@@ -42,14 +54,16 @@ |
setTimeout(finishJSTest, 0); |
} |
-var promise; |
-mockBatteryMonitorReady.then(() => { |
- promise = navigator.getBattery(); |
- shouldBeDefined("promise"); |
- shouldBeDefined("promise.then"); |
- promise.then(batteryStatusSuccess, batteryStatusFailure); |
- setAndFireMockBatteryInfo(false, 10, 20, 0.5); |
-}); |
+function batteryStatusFailure() { |
+ testFailed('failed to successfully resolve the promise'); |
+ setTimeout(finishJSTest, 0); |
+} |
+ |
+promise = navigator.getBattery(); |
+shouldBeDefined("promise"); |
+shouldBeDefined("promise.then"); |
+promise.then(batteryStatusSuccess, batteryStatusFailure); |
+setAndFireMockBatteryInfo(false, 10, 20, 0.5); |
</script> |
</body> |
</html> |