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

Unified Diff: chrome/test/functional/history.py

Issue 1702010: Add 2 tests for history. (Closed)
Patch Set: update Created 10 years, 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/test/functional/downloads.py ('k') | chrome/test/pyautolib/pyauto.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/functional/history.py
diff --git a/chrome/test/functional/history.py b/chrome/test/functional/history.py
index ec25ce6811e2635aa5e06660a655b68cc34e18f6..c7b23cc54c4208f282be8c8a5eae1bda7e73fe7f 100644
--- a/chrome/test/functional/history.py
+++ b/chrome/test/functional/history.py
@@ -141,6 +141,35 @@ class HistoryTest(pyauto.PyUITest):
for i in range(num_urls):
self.assertEqual(urls[-1 - i], history[i]['url'])
+ def testDownloadNoHistory(self):
+ """Downloaded URLs should not show up in history."""
+ assert not self.GetHistoryInfo().History(), 'Expecting clean history.'
+ file_url = self.GetFileURLForPath(os.path.join(self.DataDir(), 'downloads',
+ 'a_zip_file.zip'))
+ downloaded_file = os.path.join(self.GetDownloadDirectory().value(),
+ 'a_zip_file.zip')
+ os.path.exists(downloaded_file) and os.remove(downloaded_file)
+ self.DownloadAndWaitForStart(file_url)
+ self.WaitForAllDownloadsToComplete()
+ os.path.exists(downloaded_file) and os.remove(downloaded_file)
+ # We shouldn't have any history
+ history = self.GetHistoryInfo().History()
+ self.assertEqual(0, len(history))
+
+ def testRedirectHistory(self):
+ """HTTP meta-refresh redirects should have separate history entries."""
+ assert not self.GetHistoryInfo().History(), 'Expecting clean history.'
+ test_dir = os.path.join(os.path.abspath(self.DataDir()), 'history')
+ file_url = self.GetFileURLForPath(os.path.join(test_dir, 'redirector.html'))
+ landing_url = self.GetFileURLForPath(os.path.join(test_dir, 'landing.html'))
+ tab = self.GetBrowserWindow(0).GetTab(0)
+ tab.NavigateToURLBlockUntilNavigationsComplete(pyauto.GURL(file_url), 2)
+ self.assertEqual(landing_url, self.GetActiveTabURL().spec())
+ # We should have two history items
+ history = self.GetHistoryInfo().History()
+ self.assertEqual(2, len(history))
+ self.assertEqual(landing_url, history[0]['url'])
+
if __name__ == '__main__':
pyauto_functional.Main()
« no previous file with comments | « chrome/test/functional/downloads.py ('k') | chrome/test/pyautolib/pyauto.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698