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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
|
// 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/chromeos/gdata/drive_file_system_util.h"
#include "base/file_path.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace gdata {
namespace util {
TEST(DriveFileSystemUtilTest, IsUnderDriveMountPoint) {
EXPECT_FALSE(IsUnderDriveMountPoint(
FilePath::FromUTF8Unsafe("/wherever/foo.txt")));
EXPECT_FALSE(IsUnderDriveMountPoint(
FilePath::FromUTF8Unsafe("/special/foo.txt")));
EXPECT_FALSE(IsUnderDriveMountPoint(
FilePath::FromUTF8Unsafe("/special/drivex/foo.txt")));
EXPECT_FALSE(IsUnderDriveMountPoint(
FilePath::FromUTF8Unsafe("special/drivex/foo.txt")));
EXPECT_TRUE(IsUnderDriveMountPoint(
FilePath::FromUTF8Unsafe("/special/drive")));
EXPECT_TRUE(IsUnderDriveMountPoint(
FilePath::FromUTF8Unsafe("/special/drive/foo.txt")));
EXPECT_TRUE(IsUnderDriveMountPoint(
FilePath::FromUTF8Unsafe("/special/drive/subdir/foo.txt")));
}
TEST(DriveFileSystemUtilTest, ExtractDrivePath) {
EXPECT_EQ(FilePath(),
ExtractDrivePath(
FilePath::FromUTF8Unsafe("/wherever/foo.txt")));
EXPECT_EQ(FilePath(),
ExtractDrivePath(
FilePath::FromUTF8Unsafe("/special/foo.txt")));
EXPECT_EQ(FilePath(),
ExtractDrivePath(
FilePath::FromUTF8Unsafe("/special/drivex/foo.txt")));
EXPECT_EQ(FilePath::FromUTF8Unsafe("drive"),
ExtractDrivePath(
FilePath::FromUTF8Unsafe("/special/drive")));
EXPECT_EQ(FilePath::FromUTF8Unsafe("drive/foo.txt"),
ExtractDrivePath(
FilePath::FromUTF8Unsafe("/special/drive/foo.txt")));
EXPECT_EQ(FilePath::FromUTF8Unsafe("drive/subdir/foo.txt"),
ExtractDrivePath(
FilePath::FromUTF8Unsafe("/special/drive/subdir/foo.txt")));
}
TEST(DriveFileSystemUtilTest, EscapeUnescapeCacheFileName) {
const std::string kUnescapedFileName(
"tmp:`~!@#$%^&*()-_=+[{|]}\\\\;\',<.>/?");
const std::string kEscapedFileName(
"tmp:`~!@#$%25^&*()-_=+[{|]}\\\\;\',<%2E>%2F?");
EXPECT_EQ(kEscapedFileName, EscapeCacheFileName(kUnescapedFileName));
EXPECT_EQ(kUnescapedFileName, UnescapeCacheFileName(kEscapedFileName));
}
TEST(DriveFileSystemUtilTest, EscapeUtf8FileName) {
EXPECT_EQ("", EscapeUtf8FileName(""));
EXPECT_EQ("foo", EscapeUtf8FileName("foo"));
EXPECT_EQ("foo\xE2\x88\x95zzz", EscapeUtf8FileName("foo/zzz"));
EXPECT_EQ("\xE2\x88\x95\xE2\x88\x95\xE2\x88\x95", EscapeUtf8FileName("///"));
}
TEST(DriveFileSystemUtilTest, ExtractResourceIdFromUrl) {
EXPECT_EQ("file:2_file_resource_id", ExtractResourceIdFromUrl(
GURL("https://file1_link_self/file:2_file_resource_id")));
// %3A should be unescaped.
EXPECT_EQ("file:2_file_resource_id", ExtractResourceIdFromUrl(
GURL("https://file1_link_self/file%3A2_file_resource_id")));
// The resource ID cannot be extracted, hence empty.
EXPECT_EQ("", ExtractResourceIdFromUrl(GURL("https://www.example.com/")));
}
TEST(DriveFileSystemUtilTest, ParseCacheFilePath) {
std::string resource_id, md5, extra_extension;
ParseCacheFilePath(
FilePath::FromUTF8Unsafe(
"/home/user/GCache/v1/persistent/pdf:a1b2.0123456789abcdef.mounted"),
&resource_id,
&md5,
&extra_extension);
EXPECT_EQ(resource_id, "pdf:a1b2");
EXPECT_EQ(md5, "0123456789abcdef");
EXPECT_EQ(extra_extension, "mounted");
ParseCacheFilePath(
FilePath::FromUTF8Unsafe(
"/home/user/GCache/v1/tmp/pdf:a1b2.0123456789abcdef"),
&resource_id,
&md5,
&extra_extension);
EXPECT_EQ(resource_id, "pdf:a1b2");
EXPECT_EQ(md5, "0123456789abcdef");
EXPECT_EQ(extra_extension, "");
ParseCacheFilePath(
FilePath::FromUTF8Unsafe(
"/home/user/GCache/v1/pinned/pdf:a1b2"),
&resource_id,
&md5,
&extra_extension);
EXPECT_EQ(resource_id, "pdf:a1b2");
EXPECT_EQ(md5, "");
EXPECT_EQ(extra_extension, "");
}
} // namespace util
} // namespace gdata
|