This source file includes following definitions.
- SetUp
- TEST_F
#include "chrome/browser/history/android/android_urls_database.h"
#include "base/files/file_path.h"
#include "base/files/scoped_temp_dir.h"
#include "base/path_service.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() {
}
virtual ~AndroidURLsMigrationTest() {}
protected:
virtual void SetUp() {
profile_.reset(new TestingProfile);
base::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);
ASSERT_NO_FATAL_FAILURE(
ExecuteSQLScript(data_path.AppendASCII("history.21.sql"),
history_db_name_));
}
protected:
base::FilePath history_db_name_;
scoped_ptr<TestingProfile> profile_;
};
TEST_F(AndroidURLsMigrationTest, DISABLED_MigrateToVersion22) {
HistoryDatabase db;
ASSERT_EQ(sql::INIT_OK, db.Init(history_db_name_));
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());
}
}