OLD | NEW |
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 "chrome/browser/importer/safari_importer.h" | 5 #include "chrome/browser/importer/safari_importer.h" |
6 | 6 |
7 #include "base/basictypes.h" | 7 #include "base/basictypes.h" |
8 #include "base/file_util.h" | 8 #include "base/file_util.h" |
9 #include "base/files/file_path.h" | 9 #include "base/files/file_path.h" |
10 #include "base/files/scoped_temp_dir.h" | 10 #include "base/files/scoped_temp_dir.h" |
11 #include "base/path_service.h" | 11 #include "base/path_service.h" |
12 #include "base/string16.h" | 12 #include "base/string16.h" |
13 #include "base/string_util.h" | 13 #include "base/string_util.h" |
14 #include "base/strings/sys_string_conversions.h" | 14 #include "base/strings/sys_string_conversions.h" |
15 #include "base/utf_string_conversions.h" | 15 #include "base/strings/utf_string_conversions.h" |
16 #include "chrome/browser/bookmarks/imported_bookmark_entry.h" | 16 #include "chrome/browser/bookmarks/imported_bookmark_entry.h" |
17 #include "chrome/browser/favicon/imported_favicon_usage.h" | 17 #include "chrome/browser/favicon/imported_favicon_usage.h" |
18 #include "chrome/browser/importer/importer_bridge.h" | 18 #include "chrome/browser/importer/importer_bridge.h" |
19 #include "chrome/common/chrome_paths.h" | 19 #include "chrome/common/chrome_paths.h" |
20 #include "sql/connection.h" | 20 #include "sql/connection.h" |
21 #include "testing/platform_test.h" | 21 #include "testing/platform_test.h" |
22 | 22 |
23 // In order to test the Safari import functionality effectively, we store a | 23 // In order to test the Safari import functionality effectively, we store a |
24 // simulated Library directory containing dummy data files in the same | 24 // simulated Library directory containing dummy data files in the same |
25 // structure as ~/Library in the Chrome test data directory. | 25 // structure as ~/Library in the Chrome test data directory. |
(...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
191 EXPECT_EQ(items & importer::COOKIES, importer::NONE); | 191 EXPECT_EQ(items & importer::COOKIES, importer::NONE); |
192 EXPECT_EQ(items & importer::PASSWORDS, importer::NONE); | 192 EXPECT_EQ(items & importer::PASSWORDS, importer::NONE); |
193 EXPECT_EQ(items & importer::SEARCH_ENGINES, importer::NONE); | 193 EXPECT_EQ(items & importer::SEARCH_ENGINES, importer::NONE); |
194 EXPECT_EQ(items & importer::HOME_PAGE, importer::NONE); | 194 EXPECT_EQ(items & importer::HOME_PAGE, importer::NONE); |
195 | 195 |
196 // Check that we don't import anything from a bogus library directory. | 196 // Check that we don't import anything from a bogus library directory. |
197 base::ScopedTempDir fake_library_dir; | 197 base::ScopedTempDir fake_library_dir; |
198 ASSERT_TRUE(fake_library_dir.CreateUniqueTempDir()); | 198 ASSERT_TRUE(fake_library_dir.CreateUniqueTempDir()); |
199 EXPECT_FALSE(SafariImporter::CanImport(fake_library_dir.path(), &items)); | 199 EXPECT_FALSE(SafariImporter::CanImport(fake_library_dir.path(), &items)); |
200 } | 200 } |
OLD | NEW |