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
|
// Copyright (c) 2012 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 "chrome/browser/history/android/android_urls_database.h"
#include "base/file_path.h"
#include "base/file_util.h"
#include "base/path_service.h"
#include "base/scoped_temp_dir.h"
#include "chrome/browser/history/history_database.h"
#include "chrome/browser/history/history_unittest_base.h"
#include "chrome/common/chrome_constants.h"
#include "chrome/common/chrome_paths.h"
#include "chrome/test/base/testing_profile.h"
namespace history {
class AndroidURLsMigrationTest : public HistoryUnitTestBase {
public:
AndroidURLsMigrationTest() {
}
~AndroidURLsMigrationTest() {
}
protected:
virtual void SetUp() {
profile_.reset(new TestingProfile);
FilePath data_path;
ASSERT_TRUE(PathService::Get(chrome::DIR_TEST_DATA, &data_path));
data_path = data_path.AppendASCII("History");
history_db_name_ = profile_->GetPath().Append(chrome::kHistoryFilename);
// Set up history as they would be before migration.
ASSERT_NO_FATAL_FAILURE(
ExecuteSQLScript(data_path.AppendASCII("history.21.sql"),
history_db_name_));
}
protected:
FilePath history_db_name_;
scoped_ptr<TestingProfile> profile_;
};
TEST_F(AndroidURLsMigrationTest, MigrateToVersion22) {
HistoryDatabase db;
ASSERT_EQ(sql::INIT_OK, db.Init(history_db_name_, profile_->GetPath()));
// Migration has done.
// The column of previous table shouldn't exist.
EXPECT_FALSE(db.GetDB().DoesColumnExist("android_urls", "bookmark"));
sql::Statement statement(db.GetDB().GetUniqueStatement(
"SELECT id, url_id, raw_url FROM android_urls ORDER BY id ASC"));
ASSERT_TRUE(statement.Step());
EXPECT_EQ(1, statement.ColumnInt64(0));
EXPECT_EQ("http://google.com/", statement.ColumnString(2));
EXPECT_EQ(1, statement.ColumnInt64(1));
ASSERT_TRUE(statement.Step());
EXPECT_EQ(4, statement.ColumnInt64(0));
EXPECT_EQ("www.google.com/", statement.ColumnString(2));
EXPECT_EQ(3, statement.ColumnInt64(1));
EXPECT_FALSE(statement.Step());
}
} // namespace history
|