blob: b95c38453b1cdefc2a4154b1bdf0178cab17fd92 [file] [log] [blame]
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
<html>
<head>
<script src="../../../resources/js-test-pre.js"></script>
</head>
<body>
<script>
description("Tests that the PositionOptions.maximumAge parameter is correctly applied.");
var mockLatitude = 51.478;
var mockLongitude = -0.166;
var mockAccuracy = 100.0;
var mockMessage = 'test';
var position;
var error;
function checkPosition(p) {
debug('');
position = p;
shouldBe('position.coords.latitude', 'mockLatitude');
shouldBe('position.coords.longitude', 'mockLongitude');
shouldBe('position.coords.accuracy', 'mockAccuracy');
}
function checkError(e) {
debug('');
error = e;
shouldBe('error.code', 'error.POSITION_UNAVAILABLE');
shouldBe('error.message', 'mockMessage');
}
if (window.testRunner) {
testRunner.setGeolocationPermission(true);
testRunner.setMockGeolocationPosition(mockLatitude, mockLongitude, mockAccuracy);
} else
debug('This test can not be run without the testRunner');
// Initialize the cached Position
navigator.geolocation.getCurrentPosition(function(p) {
checkPosition(p);
testZeroMaximumAge();
}, function(e) {
testFailed('Error callback invoked unexpectedly');
finishJSTest();
});
function testZeroMaximumAge() {
// Update the position provided by the mock service.
if (window.testRunner)
testRunner.setMockGeolocationPosition(++mockLatitude, ++mockLongitude, ++mockAccuracy);
// The default maximumAge is zero, so we expect the updated position from the service.
navigator.geolocation.getCurrentPosition(function(p) {
checkPosition(p);
testNonZeroMaximumAge();
}, function(e) {
testFailed('Error callback invoked unexpectedly');
finishJSTest();
});
}
function testNonZeroMaximumAge() {
// Update the mock service to report an error.
if (window.testRunner)
testRunner.setMockGeolocationPositionUnavailableError(mockMessage);
// The maximumAge is non-zero, so we expect the cached position, not the error from the service.
navigator.geolocation.getCurrentPosition(function(p) {
checkPosition(p);
testZeroMaximumAgeError();
}, function(e) {
testFailed('Error callback invoked unexpectedly');
finishJSTest();
}, {maximumAge: 1000});
}
function testZeroMaximumAgeError() {
// The default maximumAge is zero, so we expect the error from the service.
navigator.geolocation.getCurrentPosition(function(p) {
testFailed('Success callback invoked unexpectedly');
finishJSTest();
}, function(e) {
checkError(e);
finishJSTest();
});
}
window.jsTestIsAsync = true;
</script>
<script src="../../../resources/js-test-post.js"></script>
</body>
</html>