// Copyright (c) 2010 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/importer/safari_importer.h" #include "base/basictypes.h" #include "base/file_path.h" #include "base/file_util.h" #include "base/path_service.h" #include "base/sys_string_conversions.h" #include "base/utf_string_conversions.h" #include "base/values.h" #include "chrome/browser/history/history_types.h" #include "chrome/common/chrome_paths.h" #include "chrome/test/file_test_utils.h" #include "chrome/browser/importer/importer_bridge.h" #include "testing/platform_test.h" using importer::COOKIES; using importer::FAVORITES; using importer::HISTORY; using importer::HOME_PAGE; using importer::NONE; using importer::PASSWORDS; using importer::SEARCH_ENGINES; // In order to test the Safari import functionality effectively, we store a // simulated Library directory containing dummy data files in the same // structure as ~/Library in the Chrome test data directory. // This function returns the path to that directory. FilePath GetTestSafariLibraryPath() { FilePath test_dir; PathService::Get(chrome::DIR_TEST_DATA, &test_dir); // Our simulated ~/Library directory test_dir = test_dir.AppendASCII("safari_import"); return test_dir; } class SafariImporterTest : public PlatformTest { public: SafariImporter* GetSafariImporter() { FilePath test_library_dir = GetTestSafariLibraryPath(); CHECK(file_util::PathExists(test_library_dir)) << "Missing test data directory"; return new SafariImporter(test_library_dir); } }; TEST_F(SafariImporterTest, HistoryImport) { scoped_refptr importer(GetSafariImporter()); std::vector history_items; importer->ParseHistoryItems(&history_items); // Should be 2 history items. ASSERT_EQ(history_items.size(), 2U); history::URLRow& it1 = history_items[0]; EXPECT_EQ(it1.url(), GURL("http://www.firsthistoryitem.com/")); EXPECT_EQ(it1.title(), UTF8ToUTF16("First History Item Title")); EXPECT_EQ(it1.visit_count(), 1); EXPECT_EQ(it1.hidden(), 0); EXPECT_EQ(it1.typed_count(), 0); EXPECT_EQ(it1.last_visit().ToDoubleT(), importer->HistoryTimeToEpochTime(@"270598264.4")); history::URLRow& it2 = history_items[1]; std::string second_item_title("http://www.secondhistoryitem.com/"); EXPECT_EQ(it2.url(), GURL(second_item_title)); // The second item lacks a title so we expect the URL to be substituted. EXPECT_EQ(UTF16ToUTF8(it2.title()), second_item_title.c_str()); EXPECT_EQ(it2.visit_count(), 55); EXPECT_EQ(it2.hidden(), 0); EXPECT_EQ(it2.typed_count(), 0); EXPECT_EQ(it2.last_visit().ToDoubleT(), importer->HistoryTimeToEpochTime(@"270598231.4")); } TEST_F(SafariImporterTest, BookmarkImport) { // Expected results const struct { bool in_toolbar; GURL url; // If the path array for an element is entry set this to true. bool path_is_empty; // We ony support one level of nesting in paths, this makes testing a little // easier. std::wstring path; std::wstring title; } kImportedBookmarksData[] = { {true, GURL("http://www.apple.com/"), true, L"", L"Apple"}, {true, GURL("http://www.yahoo.com/"), true, L"", L"Yahoo!"}, {true, GURL("http://www.cnn.com/"), false, L"News", L"CNN"}, {true, GURL("http://www.nytimes.com/"), false, L"News", L"The New York Times"}, {false, GURL("http://www.reddit.com/"), true, L"", L"reddit.com: what's new online!"}, }; scoped_refptr importer(GetSafariImporter()); std::vector bookmarks; importer->ParseBookmarks(&bookmarks); size_t num_bookmarks = bookmarks.size(); EXPECT_EQ(num_bookmarks, ARRAYSIZE_UNSAFE(kImportedBookmarksData)); for (size_t i = 0; i < num_bookmarks; ++i) { ProfileWriter::BookmarkEntry& entry = bookmarks[i]; EXPECT_EQ(entry.in_toolbar, kImportedBookmarksData[i].in_toolbar); EXPECT_EQ(entry.url, kImportedBookmarksData[i].url); if (kImportedBookmarksData[i].path_is_empty) { EXPECT_EQ(entry.path.size(), 0U); } else { EXPECT_EQ(entry.path.size(), 1U); EXPECT_EQ(entry.path[0], kImportedBookmarksData[i].path); EXPECT_EQ(entry.title, kImportedBookmarksData[i].title); } } } TEST_F(SafariImporterTest, FavIconImport) { scoped_refptr importer(GetSafariImporter()); sqlite_utils::scoped_sqlite_db_ptr db(importer->OpenFavIconDB()); ASSERT_TRUE(db.get() != NULL); SafariImporter::FaviconMap favicon_map; importer->ImportFavIconURLs(db.get(), &favicon_map); std::vector favicons; importer->LoadFaviconData(db.get(), favicon_map, &favicons); size_t num_favicons = favicons.size(); ASSERT_EQ(num_favicons, 2U); history::ImportedFavIconUsage &fav0 = favicons[0]; EXPECT_EQ("http://s.ytimg.com/yt/favicon-vfl86270.ico", fav0.favicon_url.spec()); EXPECT_GT(fav0.png_data.size(), 0U); EXPECT_EQ(fav0.urls.size(), 1U); EXPECT_TRUE(fav0.urls.find(GURL("http://www.youtube.com/")) != fav0.urls.end()); history::ImportedFavIconUsage &fav1 = favicons[1]; EXPECT_EQ("http://www.opensearch.org/favicon.ico", fav1.favicon_url.spec()); EXPECT_GT(fav1.png_data.size(), 0U); EXPECT_EQ(fav1.urls.size(), 2U); EXPECT_TRUE(fav1.urls.find(GURL("http://www.opensearch.org/Home")) != fav1.urls.end()); EXPECT_TRUE(fav1.urls.find( GURL("http://www.opensearch.org/Special:Search?search=lalala&go=Search")) != fav1.urls.end()); } TEST_F(SafariImporterTest, CanImport) { uint16 items = NONE; EXPECT_TRUE(SafariImporter::CanImport(GetTestSafariLibraryPath(), &items)); EXPECT_EQ(items, HISTORY | FAVORITES); EXPECT_EQ(items & COOKIES, NONE); EXPECT_EQ(items & PASSWORDS, NONE); EXPECT_EQ(items & SEARCH_ENGINES, NONE); EXPECT_EQ(items & HOME_PAGE, NONE); // Check that we don't import anything from a bogus library directory. FilePath fake_library_dir; file_util::CreateNewTempDirectory("FakeSafariLibrary", &fake_library_dir); FileAutoDeleter deleter(fake_library_dir); EXPECT_FALSE(SafariImporter::CanImport(fake_library_dir, &items)); }