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
|
#!/usr/bin/python
# Copyright (c) 2010 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.
import os
import logging
import pyauto_functional # Must be imported before pyauto
import pyauto
class PopupsTest(pyauto.PyUITest):
"""TestCase for Popup blocking."""
def Debug(self):
"""Test method for experimentation.
This method will not run automatically.
"""
import pprint
pp = pprint.PrettyPrinter(indent=2)
while True:
raw_input('Interact with the browser and hit <enter>')
pp.pprint(self.GetBlockedPopupsInfo())
def testPopupBlockerEnabled(self):
"""Verify popup blocking is enabled."""
self.assertFalse(self.GetBlockedPopupsInfo(),
msg='Should have no blocked popups on startup')
file_url = self.GetFileURLForPath(os.path.join(
self.DataDir(), 'popup_blocker', 'popup-window-open.html'))
self.NavigateToURL(file_url)
blocked_popups = self.GetBlockedPopupsInfo()
self.assertEqual(1, len(blocked_popups), msg='Popup not blocked')
# It might take a while for the title to get set. Don't need to check it.
# self.assertEqual('Popup Success!', blocked_popups[0]['title'])
def testLaunchBlockedPopup(self):
"""Verify that a blocked popup can be unblocked."""
file_url = self.GetFileURLForPath(os.path.join(
self.DataDir(), 'popup_blocker', 'popup-window-open.html'))
self.NavigateToURL(file_url)
self.assertEqual(1, len(self.GetBlockedPopupsInfo()))
self.UnblockAndLaunchBlockedPopup(0)
# Verify that no more popups are blocked
self.assertFalse(self.GetBlockedPopupsInfo())
# Verify that popup window was created
self.assertEqual(2, self.GetBrowserWindowCount(),
msg='Popup could not be launched');
self.assertEqual('Popup Success!', self.GetActiveTabTitle(1))
def testPopupBlockerInIncognito(self):
"""Verify popup blocking is enabled in incognito windows."""
self.RunCommand(pyauto.IDC_NEW_INCOGNITO_WINDOW)
file_url = self.GetFileURLForPath(os.path.join(
self.DataDir(), 'popup_blocker', 'popup-window-open.html'))
self.NavigateToURL(file_url, 1, 0)
blocked_popups = self.GetBlockedPopupsInfo(tab_index=0, windex=1)
self.assertEqual(1, len(blocked_popups), msg='Popup not blocked')
def testLaunchBlockedPopupInIncognito(self):
"""Verify that a blocked popup can be unblocked in incognito."""
self.RunCommand(pyauto.IDC_NEW_INCOGNITO_WINDOW)
self.assertTrue(2, self.GetBrowserWindowCount())
file_url = self.GetFileURLForPath(os.path.join(
self.DataDir(), 'popup_blocker', 'popup-window-open.html'))
self.NavigateToURL(file_url, 1, 0)
# TODO(sunandt): Work around for debugging the flakiness
# Related to crbug.com/64274
attempts = 0
while attempts < 3:
if self.GetActiveTabTitle(window_index=1) != \
'Popup created using window.open':
logging.debug('Attempt %s' % str(attempts + 1))
self.NavigateToURL(file_url, 1, 0)
attempts = attempts + 1
else:
break
self.assertEquals('Popup created using window.open',
self.GetActiveTabTitle(window_index=1))
# Wait until the popup is blocked
self.assertTrue(self.WaitUntil(lambda:
len(self.GetBlockedPopupsInfo(tab_index=0, windex=1)) is 1),
msg='Popup not blocked')
self.UnblockAndLaunchBlockedPopup(0, tab_index=0, windex=1)
# Verify that no more popups are blocked
self.assertFalse(self.GetBlockedPopupsInfo(tab_index=0, windex=1))
# Verify that popup window was created
self.assertEqual(3, self.GetBrowserWindowCount(),
msg='Popup could not be launched');
self.assertEqual('Popup Success!', self.GetActiveTabTitle(2))
if __name__ == '__main__':
pyauto_functional.Main()
|