1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
|
// Copyright (c) 2009 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "base/string_util.h"
#include "base/waitable_event.h"
#include "chrome/browser/app_modal_dialog.h"
#include "chrome/browser/browser.h"
#include "chrome/browser/browser_list.h"
#include "chrome/browser/dom_operation_notification_details.h"
#include "chrome/browser/geolocation/geolocation_content_settings_map.h"
#include "chrome/browser/geolocation/location_arbitrator.h"
#include "chrome/browser/geolocation/location_provider.h"
#include "chrome/browser/geolocation/mock_location_provider.h"
#include "chrome/browser/profile.h"
#include "chrome/browser/renderer_host/render_view_host.h"
#include "chrome/browser/tab_contents/tab_contents.h"
#include "chrome/common/chrome_paths.h"
#include "chrome/common/chrome_switches.h"
#include "chrome/common/geoposition.h"
#include "chrome/common/notification_details.h"
#include "chrome/common/notification_service.h"
#include "chrome/common/notification_type.h"
#include "chrome/common/render_messages.h"
#include "chrome/test/in_process_browser_test.h"
#include "chrome/test/ui_test_utils.h"
#include "net/base/net_util.h"
// Used to block until an iframe is loaded via a javascript call.
// Note: NavigateToURLBlockUntilNavigationsComplete doesn't seem to work for
// multiple embedded iframes, as notifications seem to be 'batched'. Instead, we
// load and wait one single frame here by calling a javascript function.
class IFrameLoader : public NotificationObserver {
public:
IFrameLoader(Browser* browser, int iframe_id, const GURL& url)
: navigation_completed_(false),
javascript_completed_(false) {
NavigationController* controller =
&browser->GetSelectedTabContents()->controller();
registrar_.Add(this, NotificationType::LOAD_STOP,
Source<NavigationController>(controller));
registrar_.Add(this, NotificationType::DOM_OPERATION_RESPONSE,
NotificationService::AllSources());
std::string script = StringPrintf(
"window.domAutomationController.setAutomationId(0);"
"window.domAutomationController.send(addIFrame(%d, \"%s\"));",
iframe_id,
url.spec().c_str());
browser->GetSelectedTabContents()->render_view_host()->
ExecuteJavascriptInWebFrame(L"", UTF8ToWide(script));
ui_test_utils::RunMessageLoop();
EXPECT_EQ(StringPrintf("\"%d\"", iframe_id), javascript_response_);
registrar_.RemoveAll();
// Now that we loaded the iframe, let's fetch its src.
script = StringPrintf(
"window.domAutomationController.send(getIFrameSrc(%d))", iframe_id);
std::string iframe_src;
ui_test_utils::ExecuteJavaScriptAndExtractString(
browser->GetSelectedTabContents()->render_view_host(),
L"", UTF8ToWide(script), &iframe_src);
iframe_url_ = GURL(iframe_src);
}
GURL iframe_url() const { return iframe_url_; }
virtual void Observe(NotificationType type,
const NotificationSource& source,
const NotificationDetails& details) {
if (type == NotificationType::LOAD_STOP) {
navigation_completed_ = true;
} else if (type == NotificationType::DOM_OPERATION_RESPONSE) {
Details<DomOperationNotificationDetails> dom_op_details(details);
javascript_response_ = dom_op_details->json();
javascript_completed_ = true;
}
if (javascript_completed_ && navigation_completed_)
MessageLoopForUI::current()->Quit();
}
private:
NotificationRegistrar registrar_;
// If true the navigation has completed.
bool navigation_completed_;
// If true the javascript call has completed.
bool javascript_completed_;
std::string javascript_response_;
// The URL for the iframe we just loaded.
GURL iframe_url_;
DISALLOW_COPY_AND_ASSIGN(IFrameLoader);
};
class GeolocationNotificationObserver : public NotificationObserver {
public:
// If |wait_for_infobar| is true, AddWatchAndWaitForNotification will block
// until the inforbar has been displayed; otherwise it will block until the
// javascript alert box is displayed.
explicit GeolocationNotificationObserver(bool wait_for_infobar)
: wait_for_infobar_(wait_for_infobar),
infobar_(NULL),
js_prompt_(NULL) {
registrar_.Add(this, NotificationType::DOM_OPERATION_RESPONSE,
NotificationService::AllSources());
if (wait_for_infobar) {
registrar_.Add(this, NotificationType::TAB_CONTENTS_INFOBAR_ADDED,
NotificationService::AllSources());
} else {
registrar_.Add(this, NotificationType::APP_MODAL_DIALOG_SHOWN,
NotificationService::AllSources());
}
}
void AddWatchAndWaitForNotification(RenderViewHost* render_view_host,
const std::wstring& iframe_xpath) {
LOG(WARNING) << "will add geolocation watch";
std::string script =
"window.domAutomationController.setAutomationId(0);"
"window.domAutomationController.send(geoStart());";
render_view_host->ExecuteJavascriptInWebFrame(iframe_xpath,
UTF8ToWide(script));
ui_test_utils::RunMessageLoop();
registrar_.RemoveAll();
LOG(WARNING) << "got geolocation watch" << javascript_response_;
EXPECT_NE("\"0\"", javascript_response_);
if (wait_for_infobar_) {
EXPECT_TRUE(infobar_);
} else {
EXPECT_TRUE(js_prompt_);
js_prompt_->CloseModalDialog();
}
}
// NotificationObserver
virtual void Observe(NotificationType type,
const NotificationSource& source,
const NotificationDetails& details) {
if (type.value == NotificationType::TAB_CONTENTS_INFOBAR_ADDED) {
infobar_ = Details<InfoBarDelegate>(details).ptr();
ASSERT_TRUE(infobar_->GetIcon());
ASSERT_TRUE(infobar_->AsConfirmInfoBarDelegate());
} else if (type == NotificationType::DOM_OPERATION_RESPONSE) {
Details<DomOperationNotificationDetails> dom_op_details(details);
javascript_response_ = dom_op_details->json();
LOG(WARNING) << "javascript_response " << javascript_response_;
} else if (type == NotificationType::APP_MODAL_DIALOG_SHOWN) {
js_prompt_ = Source<AppModalDialog>(source).ptr();
}
// We're either waiting for just the inforbar, or for both a javascript
// prompt and response.
if (wait_for_infobar_ && infobar_)
MessageLoopForUI::current()->Quit();
else if (js_prompt_ && !javascript_response_.empty())
MessageLoopForUI::current()->Quit();
}
NotificationRegistrar registrar_;
bool wait_for_infobar_;
InfoBarDelegate* infobar_;
AppModalDialog* js_prompt_;
std::string javascript_response_;
};
void NotifyGeopositionOnIOThread(const Geoposition& geoposition) {
DCHECK(ChromeThread::CurrentlyOn(ChromeThread::IO));
DCHECK(MockLocationProvider::instance_);
MockLocationProvider::instance_->position_ = geoposition;
MockLocationProvider::instance_->UpdateListeners();
LOG(WARNING) << "MockLocationProvider listeners updated";
}
// This is a browser test for Geolocation.
// It exercises various integration points from javascript <-> browser:
// 1. Infobar is displayed when a geolocation is requested from an unauthorized
// origin.
// 2. Denying the infobar triggers the correct error callback.
// 3. Allowing the infobar does not trigger an error, and allow a geoposition to
// be passed to javascript.
// 4. Permissions persisted in disk are respected.
// 5. Off the record profiles don't use saved permissions.
class GeolocationBrowserTest : public InProcessBrowserTest {
public:
GeolocationBrowserTest()
: infobar_(NULL),
current_browser_(NULL),
html_for_tests_("files/geolocation/simple.html") {
EnableDOMAutomation();
}
enum InitializationOptions {
INITIALIZATION_NONE,
INITIALIZATION_OFFTHERECORD,
INITIALIZATION_NEWTAB,
INITIALIZATION_IFRAMES,
};
void Initialize(InitializationOptions options) {
GeolocationArbitrator::SetProviderFactoryForTest(
&NewAutoSuccessMockNetworkLocationProvider);
if (!server_.get())
server_ = StartHTTPServer();
current_url_ = server_->TestServerPage(html_for_tests_);
LOG(WARNING) << "before navigate";
if (options == INITIALIZATION_OFFTHERECORD) {
ui_test_utils::OpenURLOffTheRecord(browser()->profile(), current_url_);
current_browser_ = BrowserList::FindBrowserWithType(
browser()->profile()->GetOffTheRecordProfile(), Browser::TYPE_NORMAL,
false);
} else if (options == INITIALIZATION_NEWTAB) {
current_browser_ = browser();
current_browser_->NewTab();
ui_test_utils::NavigateToURL(current_browser_, current_url_);
} else if (options == INITIALIZATION_IFRAMES) {
current_browser_ = browser();
ui_test_utils::NavigateToURL(current_browser_, current_url_);
IFrameLoader iframe0(current_browser_, 0, GURL());
iframe0_url_ = iframe0.iframe_url();
IFrameLoader iframe1(current_browser_, 1, GURL());
iframe1_url_ = iframe1.iframe_url();
} else {
current_browser_ = browser();
ui_test_utils::NavigateToURL(current_browser_, current_url_);
}
EXPECT_TRUE(current_browser_);
LOG(WARNING) << "after navigate";
}
void AddGeolocationWatch(bool wait_for_infobar) {
GeolocationNotificationObserver notification_observer(wait_for_infobar);
notification_observer.AddWatchAndWaitForNotification(
current_browser_->GetSelectedTabContents()->render_view_host(),
iframe_xpath_);
if (wait_for_infobar) {
EXPECT_TRUE(notification_observer.infobar_);
infobar_ = notification_observer.infobar_;
}
}
Geoposition GeopositionFromLatLong(double latitude, double longitude) {
Geoposition geoposition;
geoposition.latitude = latitude;
geoposition.longitude = longitude;
geoposition.accuracy = 0;
geoposition.error_code = Geoposition::ERROR_CODE_NONE;
// Webkit compares the timestamp to wall clock time, so we need
// it to be contemporary.
geoposition.timestamp = base::Time::Now();
EXPECT_TRUE(geoposition.IsValidFix());
return geoposition;
}
void CheckGeoposition(const Geoposition& geoposition) {
// Checks we have no error.
CheckStringValueFromJavascript("0", "geoGetLastError()");
CheckStringValueFromJavascript(
DoubleToString(geoposition.latitude), "geoGetLastPositionLatitude()");
CheckStringValueFromJavascript(
DoubleToString(geoposition.longitude), "geoGetLastPositionLongitude()");
}
void SetInfobarResponse(const GURL& requesting_url, bool allowed) {
TabContents* tab_contents = current_browser_->GetSelectedTabContents();
TabContents::GeolocationContentSettings content_settings =
tab_contents->geolocation_content_settings();
size_t settings_size = content_settings.size();
ASSERT_TRUE(infobar_);
LOG(WARNING) << "will set infobar response";
if (allowed)
infobar_->AsConfirmInfoBarDelegate()->Accept();
else
infobar_->AsConfirmInfoBarDelegate()->Cancel();
WaitForJSPrompt();
tab_contents->RemoveInfoBar(infobar_);
LOG(WARNING) << "infobar response set";
infobar_ = NULL;
content_settings = tab_contents->geolocation_content_settings();
EXPECT_GT(content_settings.size(), settings_size);
EXPECT_EQ(1U, content_settings.count(requesting_url));
ContentSetting expected_setting =
allowed ? CONTENT_SETTING_ALLOW : CONTENT_SETTING_BLOCK;
EXPECT_EQ(expected_setting, content_settings[requesting_url]);
}
void WaitForJSPrompt() {
LOG(WARNING) << "will block for JS prompt";
AppModalDialog* alert = ui_test_utils::WaitForAppModalDialog();
LOG(WARNING) << "JS prompt received";
ASSERT_TRUE(alert);
LOG(WARNING) << "will close JS prompt";
alert->CloseModalDialog();
LOG(WARNING) << "closed JS prompt";
}
void CheckStringValueFromJavascript(
const std::string& expected, const std::string& function) {
std::string script = StringPrintf(
"window.domAutomationController.send(%s)", function.c_str());
std::string result;
ui_test_utils::ExecuteJavaScriptAndExtractString(
current_browser_->GetSelectedTabContents()->render_view_host(),
iframe_xpath_, UTF8ToWide(script), &result);
EXPECT_EQ(expected.c_str(), result);
}
scoped_refptr<HTTPTestServer> server_;
InfoBarDelegate* infobar_;
Browser* current_browser_;
// path element of a URL referencing the html content for this test.
std::string html_for_tests_;
// This member defines the iframe (or top-level page, if empty) where the
// javascript calls will run.
std::wstring iframe_xpath_;
// The current url for the top level page.
GURL current_url_;
// If not empty, the GURL for the first iframe.
GURL iframe0_url_;
// If not empty, the GURL for the second iframe.
GURL iframe1_url_;
};
#if defined(OS_MACOSX)
// TODO(bulach): investigate why this fails on mac. It may be related to:
// http://crbug.com/29424
#define MAYBE_DisplaysPermissionBar DISABLED_DisplaysPermissionBar
#else
#define MAYBE_DisplaysPermissionBar DisplaysPermissionBar
#endif
IN_PROC_BROWSER_TEST_F(GeolocationBrowserTest, MAYBE_DisplaysPermissionBar) {
Initialize(INITIALIZATION_NONE);
AddGeolocationWatch(true);
}
#if defined(OS_MACOSX)
// TODO(bulach): investigate why this fails on mac. It may be related to:
// http://crbug.com/29424
#define MAYBE_Geoposition DISABLED_Geoposition
#else
#define MAYBE_Geoposition Geoposition
#endif
IN_PROC_BROWSER_TEST_F(GeolocationBrowserTest, MAYBE_Geoposition) {
Initialize(INITIALIZATION_NONE);
AddGeolocationWatch(true);
SetInfobarResponse(current_url_, true);
CheckGeoposition(MockLocationProvider::instance_->position_);
}
#if defined(OS_MACOSX)
// TODO(bulach): investigate why this fails on mac. It may be related to:
// http://crbug.com/29424
#define MAYBE_ErrorOnPermissionDenied DISABLED_ErrorOnPermissionDenied
#else
#define MAYBE_ErrorOnPermissionDenied ErrorOnPermissionDenied
#endif
IN_PROC_BROWSER_TEST_F(GeolocationBrowserTest, MAYBE_ErrorOnPermissionDenied) {
Initialize(INITIALIZATION_NONE);
AddGeolocationWatch(true);
// Infobar was displayed, deny access and check for error code.
SetInfobarResponse(current_url_, false);
CheckStringValueFromJavascript("1", "geoGetLastError()");
}
#if defined(OS_MACOSX)
// TODO(bulach): investigate why this fails on mac. It may be related to:
// http://crbug.com/29424
#define MAYBE_NoInfobarForSecondTab DISABLED_NoInfobarForSecondTab
#else
#define MAYBE_NoInfobarForSecondTab NoInfobarForSecondTab
#endif
// TODO(joth): Fix test. http://crbug.com/40099
IN_PROC_BROWSER_TEST_F(GeolocationBrowserTest, DISABLED_NoInfobarForSecondTab) {
Initialize(INITIALIZATION_NONE);
AddGeolocationWatch(true);
SetInfobarResponse(current_url_, true);
// Checks infobar will not be created a second tab.
Initialize(INITIALIZATION_NEWTAB);
AddGeolocationWatch(false);
CheckGeoposition(MockLocationProvider::instance_->position_);
}
#if defined(OS_MACOSX)
// TODO(bulach): investigate why this fails on mac. It may be related to:
// http://crbug.com/29424
#define MAYBE_NoInfobarForDeniedOrigin DISABLED_NoInfobarForDeniedOrigin
#else
#define MAYBE_NoInfobarForDeniedOrigin NoInfobarForDeniedOrigin
#endif
IN_PROC_BROWSER_TEST_F(GeolocationBrowserTest, MAYBE_NoInfobarForDeniedOrigin) {
Initialize(INITIALIZATION_NONE);
current_browser_->profile()->GetGeolocationContentSettingsMap()->
SetContentSetting(current_url_, current_url_, CONTENT_SETTING_BLOCK);
AddGeolocationWatch(false);
// Checks we have an error for this denied origin.
CheckStringValueFromJavascript("1", "geoGetLastError()");
// Checks infobar will not be created a second tab.
Initialize(INITIALIZATION_NEWTAB);
AddGeolocationWatch(false);
CheckStringValueFromJavascript("1", "geoGetLastError()");
}
#if defined(OS_MACOSX)
// TODO(bulach): investigate why this fails on mac. It may be related to:
// http://crbug.com/29424
#define MAYBE_NoInfobarForAllowedOrigin DISABLED_NoInfobarForAllowedOrigin
#else
#define MAYBE_NoInfobarForAllowedOrigin NoInfobarForAllowedOrigin
#endif
IN_PROC_BROWSER_TEST_F(GeolocationBrowserTest,
MAYBE_NoInfobarForAllowedOrigin) {
Initialize(INITIALIZATION_NONE);
current_browser_->profile()->GetGeolocationContentSettingsMap()->
SetContentSetting(current_url_, current_url_, CONTENT_SETTING_ALLOW);
// Checks no infobar will be created and there's no error callback.
AddGeolocationWatch(false);
CheckGeoposition(MockLocationProvider::instance_->position_);
}
#if defined(OS_MACOSX)
// TODO(bulach): investigate why this fails on mac. It may be related to:
// http://crbug.com/29424
#define MAYBE_NoInfobarForOffTheRecord DISABLED_NoInfobarForOffTheRecord
#else
#define MAYBE_NoInfobarForOffTheRecord NoInfobarForOffTheRecord
#endif
IN_PROC_BROWSER_TEST_F(GeolocationBrowserTest, MAYBE_NoInfobarForOffTheRecord) {
// First, check infobar will be created for regular profile
Initialize(INITIALIZATION_NONE);
AddGeolocationWatch(true);
// Response will be persisted
SetInfobarResponse(current_url_, true);
CheckGeoposition(MockLocationProvider::instance_->position_);
// Disables further prompts from this tab.
CheckStringValueFromJavascript("false", "geoEnableAlerts(false)");
// Go off the record, and checks no infobar will be created.
Initialize(INITIALIZATION_OFFTHERECORD);
AddGeolocationWatch(false);
CheckGeoposition(MockLocationProvider::instance_->position_);
}
#if defined(OS_MACOSX)
// TODO(bulach): investigate why this fails on mac. It may be related to:
// http://crbug.com/29424
#define MAYBE_IFramesWithFreshPosition DISABLED_IFramesWithFreshPosition
#else
// TODO(bulach): investigate this failure.
// http://build.chromium.org/buildbot/waterfall/builders/XP%20Tests/builds/18549/steps/browser_tests/logs/stdio
#define MAYBE_IFramesWithFreshPosition FLAKY_IFramesWithFreshPosition
#endif
IN_PROC_BROWSER_TEST_F(GeolocationBrowserTest,
MAYBE_IFramesWithFreshPosition) {
html_for_tests_ = "files/geolocation/iframes_different_origin.html";
Initialize(INITIALIZATION_IFRAMES);
LOG(WARNING) << "frames loaded";
iframe_xpath_ = L"//iframe[@id='iframe_0']";
AddGeolocationWatch(true);
SetInfobarResponse(iframe0_url_, true);
CheckGeoposition(MockLocationProvider::instance_->position_);
// Disables further prompts from this iframe.
CheckStringValueFromJavascript("false", "geoEnableAlerts(false)");
// Test second iframe from a different origin with a cached geoposition will
// create the infobar.
iframe_xpath_ = L"//iframe[@id='iframe_1']";
AddGeolocationWatch(true);
// Back to the first frame, enable alert and refresh geoposition.
iframe_xpath_ = L"//iframe[@id='iframe_0']";
CheckStringValueFromJavascript("true", "geoEnableAlerts(true)");
// MockLocationProvider must have been created.
ASSERT_TRUE(MockLocationProvider::instance_);
Geoposition fresh_position = GeopositionFromLatLong(3.17, 4.23);
ChromeThread::PostTask(ChromeThread::IO, FROM_HERE, NewRunnableFunction(
&NotifyGeopositionOnIOThread, fresh_position));
WaitForJSPrompt();
CheckGeoposition(fresh_position);
// Disable alert for this frame.
CheckStringValueFromJavascript("false", "geoEnableAlerts(false)");
// Now go ahead an authorize the second frame.
iframe_xpath_ = L"//iframe[@id='iframe_1']";
// Infobar was displayed, allow access and check there's no error code.
SetInfobarResponse(iframe1_url_, true);
CheckGeoposition(fresh_position);
}
#if defined(OS_MACOSX)
// TODO(bulach): investigate why this fails on mac. It may be related to:
// http://crbug.com/29424
#define MAYBE_IFramesWithCachedPosition DISABLED_IFramesWithCachedPosition
#else
// TODO(bulach): enable this test when we roll to
// https://bugs.webkit.org/show_bug.cgi?id=36315
#define MAYBE_IFramesWithCachedPosition DISABLED_IFramesWithCachedPosition
#endif
IN_PROC_BROWSER_TEST_F(GeolocationBrowserTest,
MAYBE_IFramesWithCachedPosition) {
html_for_tests_ = "files/geolocation/iframes_different_origin.html";
Initialize(INITIALIZATION_IFRAMES);
iframe_xpath_ = L"//iframe[@id='iframe_0']";
AddGeolocationWatch(true);
SetInfobarResponse(iframe0_url_, true);
CheckGeoposition(MockLocationProvider::instance_->position_);
// Refresh geoposition, but let's not yet create the watch on the second frame
// so that it'll fetch from cache.
// MockLocationProvider must have been created.
ASSERT_TRUE(MockLocationProvider::instance_);
Geoposition cached_position = GeopositionFromLatLong(3.17, 4.23);
ChromeThread::PostTask(ChromeThread::IO, FROM_HERE, NewRunnableFunction(
&NotifyGeopositionOnIOThread, cached_position));
WaitForJSPrompt();
CheckGeoposition(cached_position);
// Disable alert for this frame.
CheckStringValueFromJavascript("false", "geoEnableAlerts(false)");
// Now go ahead an authorize the second frame.
iframe_xpath_ = L"//iframe[@id='iframe_1']";
AddGeolocationWatch(true);
SetInfobarResponse(iframe1_url_, true);
CheckGeoposition(cached_position);
}
#if defined(OS_MACOSX)
// TODO(bulach): investigate why this fails on mac. It may be related to:
// http://crbug.com/29424
#define MAYBE_CancelPermissionForFrame DISABLED_CancelPermissionForFrame
#else
#define MAYBE_CancelPermissionForFrame CancelPermissionForFrame
#endif
IN_PROC_BROWSER_TEST_F(GeolocationBrowserTest,
MAYBE_CancelPermissionForFrame) {
html_for_tests_ = "files/geolocation/iframes_different_origin.html";
Initialize(INITIALIZATION_IFRAMES);
LOG(WARNING) << "frames loaded";
iframe_xpath_ = L"//iframe[@id='iframe_0']";
AddGeolocationWatch(true);
SetInfobarResponse(iframe0_url_, true);
CheckGeoposition(MockLocationProvider::instance_->position_);
// Disables further prompts from this iframe.
CheckStringValueFromJavascript("false", "geoEnableAlerts(false)");
// Test second iframe from a different origin with a cached geoposition will
// create the infobar.
iframe_xpath_ = L"//iframe[@id='iframe_1']";
AddGeolocationWatch(true);
int num_infobars_before_cancel =
current_browser_->GetSelectedTabContents()->infobar_delegate_count();
// Change the iframe, and ensure the infobar is gone.
IFrameLoader change_iframe_1(current_browser_, 1, current_url_);
int num_infobars_after_cancel =
current_browser_->GetSelectedTabContents()->infobar_delegate_count();
EXPECT_EQ(num_infobars_before_cancel, num_infobars_after_cancel + 1);
}
|