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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
|
// 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 "webkit/fileapi/file_system_url.h"
#include "base/file_path.h"
#include "googleurl/src/gurl.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "webkit/fileapi/file_system_types.h"
#include "webkit/fileapi/file_system_util.h"
#include "webkit/fileapi/isolated_context.h"
#define FPL FILE_PATH_LITERAL
namespace fileapi {
namespace {
FileSystemURL CreateFileSystemURL(const char* url) {
return FileSystemURL(GURL(url));
}
} // namespace
TEST(FileSystemURLTest, ParsePersistent) {
FileSystemURL url = CreateFileSystemURL(
"filesystem:http://chromium.org/persistent/directory/file");
ASSERT_TRUE(url.is_valid());
EXPECT_EQ("http://chromium.org/", url.origin().spec());
EXPECT_EQ(kFileSystemTypePersistent, url.type());
EXPECT_EQ(FILE_PATH_LITERAL("file"),
VirtualPath::BaseName(url.path()).value());
EXPECT_EQ(FILE_PATH_LITERAL("directory"), url.path().DirName().value());
}
TEST(FileSystemURLTest, ParseTemporary) {
FileSystemURL url = CreateFileSystemURL(
"filesystem:http://chromium.org/temporary/directory/file");
ASSERT_TRUE(url.is_valid());
EXPECT_EQ("http://chromium.org/", url.origin().spec());
EXPECT_EQ(kFileSystemTypeTemporary, url.type());
EXPECT_EQ(FILE_PATH_LITERAL("file"),
VirtualPath::BaseName(url.path()).value());
EXPECT_EQ(FILE_PATH_LITERAL("directory"), url.path().DirName().value());
}
TEST(FileSystemURLTest, EnsureFilePathIsRelative) {
FileSystemURL url = CreateFileSystemURL(
"filesystem:http://chromium.org/temporary/////directory/file");
ASSERT_TRUE(url.is_valid());
EXPECT_EQ("http://chromium.org/", url.origin().spec());
EXPECT_EQ(kFileSystemTypeTemporary, url.type());
EXPECT_EQ(FILE_PATH_LITERAL("file"),
VirtualPath::BaseName(url.path()).value());
EXPECT_EQ(FILE_PATH_LITERAL("directory"), url.path().DirName().value());
EXPECT_FALSE(url.path().IsAbsolute());
}
TEST(FileSystemURLTest, RejectBadSchemes) {
EXPECT_FALSE(CreateFileSystemURL("http://chromium.org/").is_valid());
EXPECT_FALSE(CreateFileSystemURL("https://chromium.org/").is_valid());
EXPECT_FALSE(CreateFileSystemURL("file:///foo/bar").is_valid());
EXPECT_FALSE(CreateFileSystemURL("foobar:///foo/bar").is_valid());
}
TEST(FileSystemURLTest, UnescapePath) {
FileSystemURL url = CreateFileSystemURL(
"filesystem:http://chromium.org/persistent/%7Echromium/space%20bar");
ASSERT_TRUE(url.is_valid());
EXPECT_EQ(FILE_PATH_LITERAL("space bar"),
VirtualPath::BaseName(url.path()).value());
EXPECT_EQ(FILE_PATH_LITERAL("~chromium"), url.path().DirName().value());
}
TEST(FileSystemURLTest, RejectBadType) {
EXPECT_FALSE(CreateFileSystemURL(
"filesystem:http://c.org/foobar/file").is_valid());
}
TEST(FileSystemURLTest, RejectMalformedURL) {
EXPECT_FALSE(CreateFileSystemURL("filesystem:///foobar/file").is_valid());
EXPECT_FALSE(CreateFileSystemURL("filesystem:foobar/file").is_valid());
}
TEST(FileSystemURLTest, CompareURLs) {
const GURL urls[] = {
GURL("filesystem:http://chromium.org/temporary/dir a/file a"),
GURL("filesystem:http://chromium.org/temporary/dir a/file a"),
GURL("filesystem:http://chromium.org/temporary/dir a/file b"),
GURL("filesystem:http://chromium.org/temporary/dir a/file aa"),
GURL("filesystem:http://chromium.org/temporary/dir b/file a"),
GURL("filesystem:http://chromium.org/temporary/dir aa/file b"),
GURL("filesystem:http://chromium.com/temporary/dir a/file a"),
GURL("filesystem:https://chromium.org/temporary/dir a/file a")
};
FileSystemURL::Comparator compare;
for (size_t i = 0; i < arraysize(urls); ++i) {
for (size_t j = 0; j < arraysize(urls); ++j) {
SCOPED_TRACE(testing::Message() << i << " < " << j);
EXPECT_EQ(urls[i] < urls[j],
compare(FileSystemURL(urls[i]), FileSystemURL(urls[j])));
}
}
const FileSystemURL a = CreateFileSystemURL(
"filesystem:http://chromium.org/temporary/dir a/file a");
const FileSystemURL b = CreateFileSystemURL(
"filesystem:http://chromium.org/persistent/dir a/file a");
EXPECT_EQ(a.type() < b.type(), compare(a, b));
EXPECT_EQ(b.type() < a.type(), compare(b, a));
}
TEST(FileSystemURLTest, WithPath) {
const GURL kURL("filesystem:http://chromium.org/temporary/dir");
const FilePath::StringType paths[] = {
FPL("dir a"),
FPL("dir a/file 1"),
FPL("dir a/dir b"),
FPL("dir a/dir b/file 2"),
};
const FileSystemURL base = FileSystemURL(kURL);
for (size_t i = 0; i < arraysize(paths); ++i) {
const FileSystemURL url = base.WithPath(FilePath(paths[i]));
EXPECT_EQ(paths[i], url.path().value());
EXPECT_EQ(base.origin().spec(), url.origin().spec());
EXPECT_EQ(base.type(), url.type());
EXPECT_EQ(base.mount_type(), url.mount_type());
EXPECT_EQ(base.filesystem_id(), url.filesystem_id());
}
}
TEST(FileSystemURLTest, WithPathForExternal) {
const std::string kId = "foo";
ScopedExternalFileSystem scoped_fs(kId, kFileSystemTypeSyncable, FilePath());
const FilePath kVirtualRoot = scoped_fs.GetVirtualRootPath();
const FilePath::CharType kBasePath[] = FPL("dir");
const FilePath::StringType paths[] = {
FPL("dir a"),
FPL("dir a/file 1"),
FPL("dir a/dir b"),
FPL("dir a/dir b/file 2"),
};
const FileSystemURL base = FileSystemURL(
GURL("http://example.com/"),
kFileSystemTypeExternal,
kVirtualRoot.Append(kBasePath));
for (size_t i = 0; i < arraysize(paths); ++i) {
const FileSystemURL url = base.WithPath(FilePath(paths[i]));
EXPECT_EQ(paths[i], url.path().value());
EXPECT_EQ(base.origin().spec(), url.origin().spec());
EXPECT_EQ(base.type(), url.type());
EXPECT_EQ(base.mount_type(), url.mount_type());
EXPECT_EQ(base.filesystem_id(), url.filesystem_id());
}
}
} // namespace fileapi
|