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
|
// Copyright (c) 2011 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_context.h"
#include "base/basictypes.h"
#include "base/file_path.h"
#include "base/logging.h"
#include "base/memory/scoped_ptr.h"
#include "base/message_loop_proxy.h"
#include "base/string_number_conversions.h"
#include "googleurl/src/gurl.h"
#include "testing/gtest/include/gtest/gtest.h"
using namespace fileapi;
namespace {
static const char* const kTestOrigins[] = {
"https://a.com/",
"http://b.com/",
"http://c.com:1/",
"file:///",
};
class TestSpecialStoragePolicy : public quota::SpecialStoragePolicy {
public:
virtual bool IsStorageProtected(const GURL& origin) {
return false;
}
virtual bool IsStorageUnlimited(const GURL& origin) {
return origin == GURL(kTestOrigins[1]);
}
virtual bool IsFileHandler(const std::string& extension_id) {
return false;
}
};
scoped_refptr<FileSystemContext> NewFileSystemContext(
bool allow_file_access,
bool unlimited_quota,
scoped_refptr<quota::SpecialStoragePolicy> special_storage_policy) {
return new FileSystemContext(base::MessageLoopProxy::CreateForCurrentThread(),
base::MessageLoopProxy::CreateForCurrentThread(),
special_storage_policy,
FilePath(), false /* is_incognito */,
allow_file_access, unlimited_quota, NULL);
}
} // anonymous namespace
TEST(FileSystemContextTest, IsStorageUnlimited) {
// Regular cases.
scoped_refptr<FileSystemContext> context(
NewFileSystemContext(false, false, NULL));
for (size_t i = 0; i < ARRAYSIZE_UNSAFE(kTestOrigins); ++i) {
SCOPED_TRACE(testing::Message() << "IsStorageUnlimited w/o policy #"
<< i << " " << kTestOrigins[i]);
EXPECT_FALSE(context->IsStorageUnlimited(GURL(kTestOrigins[i])));
}
// With allow_file_access=true cases.
context = NewFileSystemContext(true, false, NULL);
for (size_t i = 0; i < ARRAYSIZE_UNSAFE(kTestOrigins); ++i) {
SCOPED_TRACE(testing::Message() << "IsStorageUnlimited /w "
"allow_file_access=true #" << i << " " << kTestOrigins[i]);
GURL origin(kTestOrigins[i]);
EXPECT_EQ(origin.SchemeIsFile(), context->IsStorageUnlimited(origin));
}
// With unlimited_quota=true cases.
context = NewFileSystemContext(false, true, NULL);
for (size_t i = 0; i < ARRAYSIZE_UNSAFE(kTestOrigins); ++i) {
SCOPED_TRACE(testing::Message() << "IsStorageUnlimited /w "
"unlimited_quota=true #" << i << " " << kTestOrigins[i]);
EXPECT_TRUE(context->IsStorageUnlimited(GURL(kTestOrigins[i])));
}
// With SpecialStoragePolicy.
scoped_refptr<TestSpecialStoragePolicy> policy(new TestSpecialStoragePolicy);
context = NewFileSystemContext(false, false, policy);
for (size_t i = 0; i < ARRAYSIZE_UNSAFE(kTestOrigins); ++i) {
SCOPED_TRACE(testing::Message() << "IsStorageUnlimited /w policy #"
<< i << " " << kTestOrigins[i]);
GURL origin(kTestOrigins[i]);
EXPECT_EQ(policy->IsStorageUnlimited(origin),
context->IsStorageUnlimited(origin));
}
}
|