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

Side by Side Diff: chrome/browser/history/history_backend_unittest.cc

Issue 10014007: Change 9789001: attempt #3 after fixing the problems with linux Created by Wei Li: https://chromium… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/browser/history/history_backend.cc ('k') | chrome/browser/history/history_database.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include <set> 5 #include <set>
6 #include <vector> 6 #include <vector>
7 7
8 #include "base/command_line.h" 8 #include "base/command_line.h"
9 #include "base/file_path.h" 9 #include "base/file_path.h"
10 #include "base/file_util.h" 10 #include "base/file_util.h"
(...skipping 1367 matching lines...) Expand 10 before | Expand all | Expand 10 after
1378 request5); 1378 request5);
1379 filter.SetTimeInRangeFilter(tested_time - base::TimeDelta::FromHours(1), 1379 filter.SetTimeInRangeFilter(tested_time - base::TimeDelta::FromHours(1),
1380 tested_time - base::TimeDelta::FromMinutes(20)); 1380 tested_time - base::TimeDelta::FromMinutes(20));
1381 backend_->QueryFilteredURLs(request5, 100, filter); 1381 backend_->QueryFilteredURLs(request5, 100, filter);
1382 1382
1383 ASSERT_EQ(1U, get_most_visited_list().size()); 1383 ASSERT_EQ(1U, get_most_visited_list().size());
1384 EXPECT_EQ(std::string(yahoo_sports_soccer), 1384 EXPECT_EQ(std::string(yahoo_sports_soccer),
1385 get_most_visited_list()[0].url.spec()); 1385 get_most_visited_list()[0].url.spec());
1386 } 1386 }
1387 1387
1388 TEST_F(HistoryBackendTest, UpdateVisitDuration) {
1389 // This unit test will test adding and deleting visit details information.
1390 ASSERT_TRUE(backend_.get());
1391
1392 GURL url1("http://www.cnn.com");
1393 std::vector<VisitInfo> visit_info1, visit_info2;
1394 Time start_ts = Time::Now() - base::TimeDelta::FromDays(5);
1395 Time end_ts = start_ts + base::TimeDelta::FromDays(2);
1396 visit_info1.push_back(VisitInfo(start_ts, content::PAGE_TRANSITION_LINK));
1397
1398 GURL url2("http://www.example.com");
1399 visit_info2.push_back(VisitInfo(Time::Now() - base::TimeDelta::FromDays(10),
1400 content::PAGE_TRANSITION_LINK));
1401
1402 // Clear all history.
1403 backend_->DeleteAllHistory();
1404
1405 // Add the visits.
1406 backend_->AddVisits(url1, visit_info1, history::SOURCE_BROWSED);
1407 backend_->AddVisits(url2, visit_info2, history::SOURCE_BROWSED);
1408
1409 // Verify the entries for both visits were added in visit_details.
1410 VisitVector visits1, visits2;
1411 URLRow row;
1412 URLID url_id1 = backend_->db()->GetRowForURL(url1, &row);
1413 ASSERT_TRUE(backend_->db()->GetVisitsForURL(url_id1, &visits1));
1414 ASSERT_EQ(1U, visits1.size());
1415 EXPECT_EQ(0, visits1[0].visit_duration.ToInternalValue());
1416
1417 URLID url_id2 = backend_->db()->GetRowForURL(url2, &row);
1418 ASSERT_TRUE(backend_->db()->GetVisitsForURL(url_id2, &visits2));
1419 ASSERT_EQ(1U, visits2.size());
1420 EXPECT_EQ(0, visits2[0].visit_duration.ToInternalValue());
1421
1422 // Update the visit to cnn.com.
1423 backend_->UpdateVisitDuration(visits1[0].visit_id, end_ts);
1424
1425 // Check the duration for visiting cnn.com was correctly updated.
1426 ASSERT_TRUE(backend_->db()->GetVisitsForURL(url_id1, &visits1));
1427 ASSERT_EQ(1U, visits1.size());
1428 base::TimeDelta expected_duration = end_ts - start_ts;
1429 EXPECT_EQ(expected_duration.ToInternalValue(),
1430 visits1[0].visit_duration.ToInternalValue());
1431
1432 // Remove the visit to cnn.com.
1433 ASSERT_TRUE(backend_->RemoveVisits(visits1));
1434 }
1435
1436 // Test for migration of adding visit_duration column.
1437 TEST_F(HistoryBackendTest, MigrationVisitDuration) {
1438 ASSERT_TRUE(backend_.get());
1439 backend_->Closing();
1440 backend_ = NULL;
1441
1442 FilePath old_history_path, old_history, old_archived;
1443 ASSERT_TRUE(PathService::Get(chrome::DIR_TEST_DATA, &old_history_path));
1444 old_history_path = old_history_path.AppendASCII("History");
1445 old_history = old_history_path.AppendASCII("HistoryNoDuration");
1446 old_archived = old_history_path.AppendASCII("ArchivedNoDuration");
1447
1448 // Copy history database file to current directory so that it will be deleted
1449 // in Teardown.
1450 FilePath new_history_path(getTestDir());
1451 file_util::Delete(new_history_path, true);
1452 file_util::CreateDirectory(new_history_path);
1453 FilePath new_history_file = new_history_path.Append(chrome::kHistoryFilename);
1454 FilePath new_archived_file =
1455 new_history_path.Append(chrome::kArchivedHistoryFilename);
1456 ASSERT_TRUE(file_util::CopyFile(old_history, new_history_file));
1457 ASSERT_TRUE(file_util::CopyFile(old_archived, new_archived_file));
1458
1459 backend_ = new HistoryBackend(new_history_path,
1460 0,
1461 new HistoryBackendTestDelegate(this),
1462 &bookmark_model_);
1463 backend_->Init(std::string(), false);
1464 backend_->Closing();
1465 backend_ = NULL;
1466
1467 // Now both history and archived_history databases should already be migrated.
1468
1469 // Check version in history database first.
1470 int cur_version = HistoryDatabase::GetCurrentVersion();
1471 sql::Connection db;
1472 ASSERT_TRUE(db.Open(new_history_file));
1473 sql::Statement s(db.GetUniqueStatement(
1474 "SELECT value FROM meta WHERE key = 'version'"));
1475 ASSERT_TRUE(s.Step());
1476 int file_version = s.ColumnInt(0);
1477 EXPECT_EQ(cur_version, file_version);
1478
1479 // Check visit_duration column in visits table is created and set to 0.
1480 s.Assign(db.GetUniqueStatement(
1481 "SELECT visit_duration FROM visits LIMIT 1"));
1482 ASSERT_TRUE(s.Step());
1483 EXPECT_EQ(0, s.ColumnInt(0));
1484
1485 // Repeat version and visit_duration checks in archived history database
1486 // also.
1487 cur_version = ArchivedDatabase::GetCurrentVersion();
1488 sql::Connection archived_db;
1489 ASSERT_TRUE(archived_db.Open(new_archived_file));
1490 sql::Statement s1(archived_db.GetUniqueStatement(
1491 "SELECT value FROM meta WHERE key = 'version'"));
1492 ASSERT_TRUE(s1.Step());
1493 file_version = s1.ColumnInt(0);
1494 EXPECT_EQ(cur_version, file_version);
1495
1496 // Check visit_duration column in visits table is created and set to 0.
1497 s1.Assign(archived_db.GetUniqueStatement(
1498 "SELECT visit_duration FROM visits LIMIT 1"));
1499 ASSERT_TRUE(s1.Step());
1500 EXPECT_EQ(0, s1.ColumnInt(0));
1501 }
1502
1388 } // namespace history 1503 } // namespace history
OLDNEW
« no previous file with comments | « chrome/browser/history/history_backend.cc ('k') | chrome/browser/history/history_database.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698