1 // Copyright 2013 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.
5 #include "storage/browser/fileapi/sandbox_file_system_backend_delegate.h"
7 #include "base/basictypes.h"
8 #include "base/files/file_util.h"
9 #include "base/files/scoped_temp_dir.h"
10 #include "base/memory/scoped_ptr.h"
11 #include "base/thread_task_runner_handle.h"
12 #include "content/public/test/test_file_system_options.h"
13 #include "storage/browser/fileapi/file_system_url.h"
14 #include "testing/gtest/include/gtest/gtest.h"
17 using storage::FileSystemURL
;
23 FileSystemURL
CreateFileSystemURL(const char* path
) {
24 const GURL
kOrigin("http://foo/");
25 return storage::FileSystemURL::CreateForTest(
27 storage::kFileSystemTypeTemporary
,
28 base::FilePath::FromUTF8Unsafe(path
));
33 class SandboxFileSystemBackendDelegateTest
: public testing::Test
{
35 void SetUp() override
{
36 ASSERT_TRUE(data_dir_
.CreateUniqueTempDir());
37 delegate_
.reset(new storage::SandboxFileSystemBackendDelegate(
38 NULL
/* quota_manager_proxy */,
39 base::ThreadTaskRunnerHandle::Get().get(), data_dir_
.path(),
40 NULL
/* special_storage_policy */, CreateAllowFileAccessOptions()));
43 bool IsAccessValid(const FileSystemURL
& url
) const {
44 return delegate_
->IsAccessValid(url
);
47 base::ScopedTempDir data_dir_
;
48 base::MessageLoop message_loop_
;
49 scoped_ptr
<storage::SandboxFileSystemBackendDelegate
> delegate_
;
52 TEST_F(SandboxFileSystemBackendDelegateTest
, IsAccessValid
) {
54 EXPECT_TRUE(IsAccessValid(CreateFileSystemURL("a")));
56 // Access to a path with parent references ('..') should be disallowed.
57 EXPECT_FALSE(IsAccessValid(CreateFileSystemURL("a/../b")));
59 // Access from non-allowed scheme should be disallowed.
60 EXPECT_FALSE(IsAccessValid(
61 FileSystemURL::CreateForTest(GURL("unknown://bar"),
62 storage::kFileSystemTypeTemporary
,
63 base::FilePath::FromUTF8Unsafe("foo"))));
65 // Access with restricted name should be disallowed.
66 EXPECT_FALSE(IsAccessValid(CreateFileSystemURL(".")));
67 EXPECT_FALSE(IsAccessValid(CreateFileSystemURL("..")));
69 // This is also disallowed due to Windows XP parent path handling.
70 EXPECT_FALSE(IsAccessValid(CreateFileSystemURL("...")));
72 // These are identified as unsafe cases due to weird path handling
74 EXPECT_FALSE(IsAccessValid(CreateFileSystemURL(" ..")));
75 EXPECT_FALSE(IsAccessValid(CreateFileSystemURL(".. ")));
77 // Similar but safe cases.
78 EXPECT_TRUE(IsAccessValid(CreateFileSystemURL(" .")));
79 EXPECT_TRUE(IsAccessValid(CreateFileSystemURL(". ")));
80 EXPECT_TRUE(IsAccessValid(CreateFileSystemURL("b.")));
81 EXPECT_TRUE(IsAccessValid(CreateFileSystemURL(".b")));
83 // A path that looks like a drive letter.
84 EXPECT_TRUE(IsAccessValid(CreateFileSystemURL("c:")));
87 } // namespace content