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 "base/basictypes.h" | 5 #include "base/basictypes.h" |
6 #include "base/file_util.h" | 6 #include "base/file_util.h" |
7 #include "base/files/scoped_temp_dir.h" | 7 #include "base/files/scoped_temp_dir.h" |
8 #include "testing/gtest/include/gtest/gtest.h" | 8 #include "testing/gtest/include/gtest/gtest.h" |
9 #include "webkit/browser/fileapi/sandbox_isolated_origin_database.h" | 9 #include "webkit/browser/fileapi/sandbox_isolated_origin_database.h" |
10 #include "webkit/browser/fileapi/sandbox_origin_database.h" | 10 #include "webkit/browser/fileapi/sandbox_origin_database.h" |
11 | 11 |
12 namespace fileapi { | 12 using fileapi::SandboxIsolatedOriginDatabase; |
| 13 |
| 14 namespace content { |
13 | 15 |
14 namespace { | 16 namespace { |
15 const base::FilePath::CharType kOriginDirectory[] = FILE_PATH_LITERAL("iso"); | 17 const base::FilePath::CharType kOriginDirectory[] = FILE_PATH_LITERAL("iso"); |
16 } // namespace | 18 } // namespace |
17 | 19 |
18 TEST(SandboxIsolatedOriginDatabaseTest, BasicTest) { | 20 TEST(SandboxIsolatedOriginDatabaseTest, BasicTest) { |
19 base::ScopedTempDir dir; | 21 base::ScopedTempDir dir; |
20 ASSERT_TRUE(dir.CreateUniqueTempDir()); | 22 ASSERT_TRUE(dir.CreateUniqueTempDir()); |
21 | 23 |
22 std::string kOrigin("origin"); | 24 std::string kOrigin("origin"); |
23 SandboxIsolatedOriginDatabase database(kOrigin, dir.path(), | 25 SandboxIsolatedOriginDatabase database(kOrigin, dir.path(), |
24 base::FilePath(kOriginDirectory)); | 26 base::FilePath(kOriginDirectory)); |
25 | 27 |
26 EXPECT_TRUE(database.HasOriginPath(kOrigin)); | 28 EXPECT_TRUE(database.HasOriginPath(kOrigin)); |
27 | 29 |
28 base::FilePath path1, path2; | 30 base::FilePath path1, path2; |
29 | 31 |
30 EXPECT_FALSE(database.GetPathForOrigin(std::string(), &path1)); | 32 EXPECT_FALSE(database.GetPathForOrigin(std::string(), &path1)); |
31 EXPECT_FALSE(database.GetPathForOrigin("foo", &path1)); | 33 EXPECT_FALSE(database.GetPathForOrigin("foo", &path1)); |
32 | 34 |
33 EXPECT_TRUE(database.HasOriginPath(kOrigin)); | 35 EXPECT_TRUE(database.HasOriginPath(kOrigin)); |
34 EXPECT_TRUE(database.GetPathForOrigin(kOrigin, &path1)); | 36 EXPECT_TRUE(database.GetPathForOrigin(kOrigin, &path1)); |
35 EXPECT_TRUE(database.GetPathForOrigin(kOrigin, &path2)); | 37 EXPECT_TRUE(database.GetPathForOrigin(kOrigin, &path2)); |
36 EXPECT_FALSE(path1.empty()); | 38 EXPECT_FALSE(path1.empty()); |
37 EXPECT_FALSE(path2.empty()); | 39 EXPECT_FALSE(path2.empty()); |
38 EXPECT_EQ(path1, path2); | 40 EXPECT_EQ(path1, path2); |
39 } | 41 } |
40 | 42 |
41 } // namespace fileapi | 43 } // namespace content |
OLD | NEW |