Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(160)

Side by Side Diff: third_party/WebKit/LayoutTests/fast/dom/Geolocation/script-tests/delayed-permission-allowed.js

Issue 1948033003: Convert most geolocation layout tests to use a JS mock implementation. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@permission-disconnect
Patch Set: Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 description("Tests that when a position is available, no callbacks are invoked u ntil permission is allowed."); 1 description("Tests that when a position is available, no callbacks are invoked u ntil permission is allowed.");
2 2
3 if (!window.testRunner || !window.internals) 3 if (!window.testRunner || !window.mojo)
4 debug('This test can not run without testRunner or internals'); 4 debug('This test can not run without testRunner or mojo');
5 5
6 internals.setGeolocationClientMock(document); 6 geolocationServiceMock.then(mock => {
7 internals.setGeolocationPosition(document, 51.478, -0.166, 100); 7 mock.setGeolocationPosition(51.478, -0.166, 100);
8 8
9 var permissionSet = false; 9 var permissionSet = false;
10 10
11 function allowPermission() { 11 function allowPermission() {
12 permissionSet = true; 12 permissionSet = true;
13 internals.setGeolocationPermission(document, true); 13 mock.setGeolocationPermission(true);
14 } 14 }
15 15
16 navigator.geolocation.getCurrentPosition(function() { 16 navigator.geolocation.getCurrentPosition(function() {
17 if (permissionSet) { 17 if (permissionSet) {
18 testPassed('Success callback invoked'); 18 testPassed('Success callback invoked');
19 finishJSTest();
20 return;
21 }
22 testFailed('Success callback invoked unexpectedly');
19 finishJSTest(); 23 finishJSTest();
20 return; 24 }, function() {
21 } 25 testFailed('Error callback invoked unexpectedly');
22 testFailed('Success callback invoked unexpectedly'); 26 finishJSTest();
23 finishJSTest(); 27 });
24 }, function() { 28 window.setTimeout(allowPermission, 100);
25 testFailed('Error callback invoked unexpectedly');
26 finishJSTest();
27 }); 29 });
28 window.setTimeout(allowPermission, 100);
29 30
30 window.jsTestIsAsync = true; 31 window.jsTestIsAsync = true;
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698