| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 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 | 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 "storage/browser/fileapi/sandbox_file_system_backend_delegate.h" | 5 #include "storage/browser/fileapi/sandbox_file_system_backend_delegate.h" |
| 6 | 6 |
| 7 #include "base/basictypes.h" | 7 #include "base/basictypes.h" |
| 8 #include "base/files/file_util.h" | 8 #include "base/files/file_util.h" |
| 9 #include "base/files/scoped_temp_dir.h" | 9 #include "base/files/scoped_temp_dir.h" |
| 10 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
| 11 #include "base/message_loop/message_loop.h" | 11 #include "base/thread_task_runner_handle.h" |
| 12 #include "base/message_loop/message_loop_proxy.h" | |
| 13 #include "content/public/test/test_file_system_options.h" | 12 #include "content/public/test/test_file_system_options.h" |
| 14 #include "storage/browser/fileapi/file_system_url.h" | 13 #include "storage/browser/fileapi/file_system_url.h" |
| 15 #include "testing/gtest/include/gtest/gtest.h" | 14 #include "testing/gtest/include/gtest/gtest.h" |
| 16 #include "url/gurl.h" | 15 #include "url/gurl.h" |
| 17 | 16 |
| 18 using storage::FileSystemURL; | 17 using storage::FileSystemURL; |
| 19 | 18 |
| 20 namespace content { | 19 namespace content { |
| 21 | 20 |
| 22 namespace { | 21 namespace { |
| 23 | 22 |
| 24 FileSystemURL CreateFileSystemURL(const char* path) { | 23 FileSystemURL CreateFileSystemURL(const char* path) { |
| 25 const GURL kOrigin("http://foo/"); | 24 const GURL kOrigin("http://foo/"); |
| 26 return storage::FileSystemURL::CreateForTest( | 25 return storage::FileSystemURL::CreateForTest( |
| 27 kOrigin, | 26 kOrigin, |
| 28 storage::kFileSystemTypeTemporary, | 27 storage::kFileSystemTypeTemporary, |
| 29 base::FilePath::FromUTF8Unsafe(path)); | 28 base::FilePath::FromUTF8Unsafe(path)); |
| 30 } | 29 } |
| 31 | 30 |
| 32 } // namespace | 31 } // namespace |
| 33 | 32 |
| 34 class SandboxFileSystemBackendDelegateTest : public testing::Test { | 33 class SandboxFileSystemBackendDelegateTest : public testing::Test { |
| 35 protected: | 34 protected: |
| 36 void SetUp() override { | 35 void SetUp() override { |
| 37 ASSERT_TRUE(data_dir_.CreateUniqueTempDir()); | 36 ASSERT_TRUE(data_dir_.CreateUniqueTempDir()); |
| 38 delegate_.reset(new storage::SandboxFileSystemBackendDelegate( | 37 delegate_.reset(new storage::SandboxFileSystemBackendDelegate( |
| 39 NULL /* quota_manager_proxy */, | 38 NULL /* quota_manager_proxy */, |
| 40 base::MessageLoopProxy::current().get(), | 39 base::ThreadTaskRunnerHandle::Get().get(), data_dir_.path(), |
| 41 data_dir_.path(), | 40 NULL /* special_storage_policy */, CreateAllowFileAccessOptions())); |
| 42 NULL /* special_storage_policy */, | |
| 43 CreateAllowFileAccessOptions())); | |
| 44 } | 41 } |
| 45 | 42 |
| 46 bool IsAccessValid(const FileSystemURL& url) const { | 43 bool IsAccessValid(const FileSystemURL& url) const { |
| 47 return delegate_->IsAccessValid(url); | 44 return delegate_->IsAccessValid(url); |
| 48 } | 45 } |
| 49 | 46 |
| 50 base::ScopedTempDir data_dir_; | 47 base::ScopedTempDir data_dir_; |
| 51 base::MessageLoop message_loop_; | 48 base::MessageLoop message_loop_; |
| 52 scoped_ptr<storage::SandboxFileSystemBackendDelegate> delegate_; | 49 scoped_ptr<storage::SandboxFileSystemBackendDelegate> delegate_; |
| 53 }; | 50 }; |
| (...skipping 27 matching lines...) Expand all Loading... |
| 81 EXPECT_TRUE(IsAccessValid(CreateFileSystemURL(" ."))); | 78 EXPECT_TRUE(IsAccessValid(CreateFileSystemURL(" ."))); |
| 82 EXPECT_TRUE(IsAccessValid(CreateFileSystemURL(". "))); | 79 EXPECT_TRUE(IsAccessValid(CreateFileSystemURL(". "))); |
| 83 EXPECT_TRUE(IsAccessValid(CreateFileSystemURL("b."))); | 80 EXPECT_TRUE(IsAccessValid(CreateFileSystemURL("b."))); |
| 84 EXPECT_TRUE(IsAccessValid(CreateFileSystemURL(".b"))); | 81 EXPECT_TRUE(IsAccessValid(CreateFileSystemURL(".b"))); |
| 85 | 82 |
| 86 // A path that looks like a drive letter. | 83 // A path that looks like a drive letter. |
| 87 EXPECT_TRUE(IsAccessValid(CreateFileSystemURL("c:"))); | 84 EXPECT_TRUE(IsAccessValid(CreateFileSystemURL("c:"))); |
| 88 } | 85 } |
| 89 | 86 |
| 90 } // namespace content | 87 } // namespace content |
| OLD | NEW |