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

Side by Side Diff: components/reading_list/offline_url_utils_unittest.cc

Issue 2511723002: Enable RL sync by default on iOS (Closed)
Patch Set: rebase Created 4 years 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
« no previous file with comments | « components/reading_list/offline_url_utils.cc ('k') | components/reading_list/proto/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "components/reading_list/offline_url_utils.h"
6
7 #include <string>
8
9 #include "base/files/file_path.h"
10 #include "testing/gtest/include/gtest/gtest.h"
11 #include "url/gurl.h"
12
13 // Checks the root directory of offline pages.
14 TEST(OfflineURLUtilsTest, OfflineRootDirectoryPathTest) {
15 base::FilePath profile_path("/profile_path");
16 base::FilePath offline_directory =
17 reading_list::OfflineRootDirectoryPath(profile_path);
18 EXPECT_EQ("/profile_path/Offline", offline_directory.value());
19 }
20
21 // Checks the offline page directory is the MD5 of the URL
22 TEST(OfflineURLUtilsTest, OfflineURLDirectoryIDTest) {
23 GURL url("http://www.google.com/test");
24 // MD5 of "http://www.google.com/test"
25 std::string md5 = "0090071ef710946a1263c276284bb3b8";
26 std::string directory_id = reading_list::OfflineURLDirectoryID(url);
27 EXPECT_EQ(md5, directory_id);
28 }
29
30 // Checks the offline page directory is
31 // |profile_path|/Offline/OfflineURLDirectoryID;
32 TEST(OfflineURLUtilsTest, OfflineURLDirectoryAbsolutePathTest) {
33 base::FilePath profile_path("/profile_path");
34 GURL url("http://www.google.com/test");
35 base::FilePath offline_directory =
36 reading_list::OfflineURLDirectoryAbsolutePath(profile_path, url);
37 EXPECT_EQ("/profile_path/Offline/0090071ef710946a1263c276284bb3b8",
38 offline_directory.value());
39 }
40
41 // Checks the offline page absolute path is
42 // |profile_path|/Offline/OfflineURLDirectoryID/page.html;
43 TEST(OfflineURLUtilsTest, OfflinePageAbsolutePathTest) {
44 base::FilePath profile_path("/profile_path");
45 GURL url("http://www.google.com/test");
46 base::FilePath offline_page =
47 reading_list::OfflinePageAbsolutePath(profile_path, url);
48 EXPECT_EQ("/profile_path/Offline/0090071ef710946a1263c276284bb3b8/page.html",
49 offline_page.value());
50 }
51
52 // Checks the offline page path is OfflineURLDirectoryID/page.html;
53 TEST(OfflineURLUtilsTest, OfflinePagePathTest) {
54 GURL url("http://www.google.com/test");
55 base::FilePath offline_page = reading_list::OfflinePagePath(url);
56 EXPECT_EQ("0090071ef710946a1263c276284bb3b8/page.html", offline_page.value());
57 }
OLDNEW
« no previous file with comments | « components/reading_list/offline_url_utils.cc ('k') | components/reading_list/proto/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698