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

Unified Diff: chrome/test/data/History/history_quick_provider_test.db.txt

Issue 10837244: Replace HistoryQuickProvider protobuf-based caching with an SQLite-based database. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Tweak suppression. Created 8 years, 4 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
Index: chrome/test/data/History/history_quick_provider_test.db.txt
===================================================================
--- chrome/test/data/History/history_quick_provider_test.db.txt (revision 0)
+++ chrome/test/data/History/history_quick_provider_test.db.txt (revision 0)
@@ -0,0 +1,62 @@
+/*
+ The schema of the database is defined by HISTORY_URL_ROW_FIELDS found in
+ url_database.h and is equivalent to:
+
+ CREATE TABLE urls(id INTEGER PRIMARY KEY,
+ url LONGVARCHAR,
+ title LONGVARCHAR,
+ visit_count INTEGER DEFAULT 0 NOT NULL,
+ typed_count INTEGER DEFAULT 0 NOT NULL,
+ last_visit_time INTEGER NOT NULL,
+ hidden INTEGER DEFAULT 0 NOT NULL,
+ favicon_id INTEGER DEFAULT 0 NOT NULL);
+
+ The quick history autocomplete provider filters out history items that:
+ 1) have not been visited in kLowQualityMatchAgeLimitInDays, AND
+ 2) for which the URL was not explicitly typed at least
+ kLowQualityMatchTypedLimit + 1 times, AND
+ 3) have not been visited at least kLowQualityMatchVisitLimit + 1 times.
+ So we create history items in all of those combinations.
+
+ Note that the last_visit_time column for this test table represents the
+ relative number of days prior to 'today' to which the final column
+ value will be set during test setup. Beware: Do not set this number
+ to be equal to kLowQualityMatchAgeLimitInDays.
+
+ The ordering, URLs and titles must be kept in sync with the unit tests found
+ in in_memory_url_index_unittest.cc.
+*/
+INSERT INTO "urls" VALUES(1,'http://www.google.com/','Google',3,3,0,0,29);
+INSERT INTO "urls" VALUES(2,'http://slashdot.org/favorite_page.html','Favorite page',200,100,0,0,29);
+INSERT INTO "urls" VALUES(3,'http://kerneltrap.org/not_very_popular.html','Less popular',4,0,0,0,29);
+INSERT INTO "urls" VALUES(4,'http://freshmeat.net/unpopular.html','Unpopular',1,1,0,0,29);
+INSERT INTO "urls" VALUES(5,'http://news.google.com/?ned=us&topic=n','Google News - U.S.',2,2,0,0,29);
+INSERT INTO "urls" VALUES(6,'http://news.google.com/','Google News',1,1,0,0,29);
+INSERT INTO "urls" VALUES(7,'http://foo.com/','Dir',200,100,0,0,29);
+INSERT INTO "urls" VALUES(8,'http://foo.com/dir/','Dir',2,1,10,0,29);
+INSERT INTO "urls" VALUES(9,'http://foo.com/dir/another/','Dir',5,10,0,0,29);
+INSERT INTO "urls" VALUES(10,'http://foo.com/dir/another/again/','Dir',5,1,0,0,29);
+INSERT INTO "urls" VALUES(11,'http://foo.com/dir/another/again/myfile.html','File',3,2,0,0,29);
+INSERT INTO "urls" VALUES(12,'http://visitedest.com/y/a','VA',10,1,20,0,29);
+INSERT INTO "urls" VALUES(13,'http://visitedest.com/y/b','VB',9,1,20,0,29);
+INSERT INTO "urls" VALUES(14,'http://visitedest.com/x/c','VC',8,1,20,0,29);
+INSERT INTO "urls" VALUES(15,'http://visitedest.com/x/d','VD',7,1,20,0,29);
+INSERT INTO "urls" VALUES(16,'http://visitedest.com/y/e','VE',6,1,20,0,29);
+INSERT INTO "urls" VALUES(17,'http://typeredest.com/y/a','TA',3,5,0,0,29);
+INSERT INTO "urls" VALUES(18,'http://typeredest.com/y/b','TB',3,4,0,0,29);
+INSERT INTO "urls" VALUES(19,'http://typeredest.com/x/c','TC',3,3,0,0,29);
+INSERT INTO "urls" VALUES(20,'http://typeredest.com/x/d','TD',3,2,0,0,29);
+INSERT INTO "urls" VALUES(21,'http://typeredest.com/y/e','TE',3,1,0,0,29);
+INSERT INTO "urls" VALUES(22,'http://daysagoest.com/y/a','DA',1,1,0,0,29);
+INSERT INTO "urls" VALUES(23,'http://daysagoest.com/y/b','DB',1,1,1,0,29);
+INSERT INTO "urls" VALUES(24,'http://daysagoest.com/x/c','DC',1,1,2,0,29);
+INSERT INTO "urls" VALUES(25,'http://daysagoest.com/x/d','DD',1,1,3,0,29);
+INSERT INTO "urls" VALUES(26,'http://daysagoest.com/y/e','DE',1,1,4,0,29);
+INSERT INTO "urls" VALUES(27,'http://abcdefghixyzjklmnopqrstuvw.com/a','',3,1,0,0,29);
+INSERT INTO "urls" VALUES(28,'http://spaces.com/path%20with%20spaces/foo.html','Spaces',2,2,0,0,29);
+INSERT INTO "urls" VALUES(29,'http://abcdefghijklxyzmnopqrstuvw.com/a','',3,1,0,0,29);
+INSERT INTO "urls" VALUES(30,'http://abcdefxyzghijklmnopqrstuvw.com/a','',3,1,0,0,29);
+INSERT INTO "urls" VALUES(31,'http://abcxyzdefghijklmnopqrstuvw.com/a','',3,1,0,0,29);
+INSERT INTO "urls" VALUES(32,'http://xyzabcdefghijklmnopqrstuvw.com/a','',3,1,0,0,29);
+INSERT INTO "urls" VALUES(33,'http://cda.com/Dogs%20Cats%20Gorillas%20Sea%20Slugs%20and%20Mice','Dogs & Cats & Mice & Other Animals',1,1,0,0,29);
+INSERT INTO "urls" VALUES(34,'https://monkeytrap.org/','',3,1,0,0,29);
Property changes on: chrome/test/data/History/history_quick_provider_test.db.txt
___________________________________________________________________
Added: svn:eol-style
+ LF

Powered by Google App Engine
This is Rietveld 408576698