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
161
162
163
164
165
|
// 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 "chrome/browser/chromeos/drive/file_cache_metadata.h"
#include "base/file_util.h"
#include "base/files/scoped_temp_dir.h"
#include "chrome/browser/chromeos/drive/drive.pb.h"
#include "chrome/browser/chromeos/drive/file_system_util.h"
#include "chrome/browser/chromeos/drive/test_util.h"
#include "chrome/browser/google_apis/test_util.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace drive {
namespace internal {
class FileCacheMetadataTest : public testing::Test {
public:
FileCacheMetadataTest() {}
virtual void SetUp() OVERRIDE {
// Create cache directories.
ASSERT_TRUE(temp_dir_.CreateUniqueTempDir());
metadata_.reset(new FileCacheMetadata(NULL));
}
virtual void TearDown() OVERRIDE {
metadata_.reset();
}
protected:
base::ScopedTempDir temp_dir_;
scoped_ptr<FileCacheMetadata> metadata_;
};
// Test all the methods of FileCacheMetadata except for
// RemoveTemporaryFiles.
TEST_F(FileCacheMetadataTest, CacheTest) {
ASSERT_EQ(FileCacheMetadata::INITIALIZE_CREATED,
metadata_->Initialize(temp_dir_.path()));
// Save an initial entry.
std::string test_resource_id("test_resource_id");
std::string test_md5("test_md5");
{
FileCacheEntry new_cache_entry;
new_cache_entry.set_md5(test_md5);
new_cache_entry.set_is_present(true);
new_cache_entry.set_is_persistent(true);
metadata_->AddOrUpdateCacheEntry(test_resource_id, new_cache_entry);
}
// Test that the entry can be retrieved.
FileCacheEntry cache_entry;
ASSERT_TRUE(metadata_->GetCacheEntry(
test_resource_id, test_md5, &cache_entry));
EXPECT_EQ(test_md5, cache_entry.md5());
EXPECT_TRUE(cache_entry.is_present());
EXPECT_TRUE(cache_entry.is_persistent());
// Empty md5 should also work.
ASSERT_TRUE(metadata_->GetCacheEntry(
test_resource_id, std::string(), &cache_entry));
EXPECT_EQ(test_md5, cache_entry.md5());
// resource_id doesn't exist.
EXPECT_FALSE(metadata_->GetCacheEntry(
"not_found_resource_id", std::string(), &cache_entry));
// md5 doesn't match.
EXPECT_FALSE(metadata_->GetCacheEntry(
test_resource_id, "mismatch_md5", &cache_entry));
// Update all attributes.
test_md5 = "test_md5_2";
{
FileCacheEntry updated_cache_entry;
updated_cache_entry.set_md5(test_md5);
updated_cache_entry.set_is_pinned(true);
metadata_->AddOrUpdateCacheEntry(test_resource_id, updated_cache_entry);
}
// Make sure the values took.
ASSERT_TRUE(metadata_->GetCacheEntry(
test_resource_id, test_md5, &cache_entry));
EXPECT_EQ(test_md5, cache_entry.md5());
EXPECT_TRUE(cache_entry.is_pinned());
// Empty m5 should work.
ASSERT_TRUE(metadata_->GetCacheEntry(
test_resource_id, std::string(), &cache_entry));
EXPECT_EQ(test_md5, cache_entry.md5());
// Test dirty cache.
test_md5 = "test_md5_3";
{
FileCacheEntry new_cache_entry;
new_cache_entry.set_md5(test_md5);
new_cache_entry.set_is_dirty(true);
metadata_->AddOrUpdateCacheEntry(test_resource_id, new_cache_entry);
}
// Make sure the values took.
ASSERT_TRUE(metadata_->GetCacheEntry(
test_resource_id, test_md5, &cache_entry));
EXPECT_EQ(test_md5, cache_entry.md5());
EXPECT_TRUE(cache_entry.is_dirty());
// Empty md5 should work.
ASSERT_TRUE(metadata_->GetCacheEntry(
test_resource_id, std::string(), &cache_entry));
EXPECT_EQ(test_md5, cache_entry.md5());
// Mismatched md5 should also work for dirty entries.
ASSERT_TRUE(metadata_->GetCacheEntry(
test_resource_id, "mismatch_md5", &cache_entry));
EXPECT_EQ(test_md5, cache_entry.md5());
// Remove the entry.
metadata_->RemoveCacheEntry(test_resource_id);
EXPECT_FALSE(metadata_->GetCacheEntry(
test_resource_id, std::string(), &cache_entry));
// Add another one.
test_resource_id = "test_resource_id_2";
test_md5 = "test_md5_4";
{
FileCacheEntry new_cache_entry;
new_cache_entry.set_md5(test_md5);
new_cache_entry.set_is_present(true);
metadata_->AddOrUpdateCacheEntry(test_resource_id, new_cache_entry);
}
// Make sure the values took.
ASSERT_TRUE(metadata_->GetCacheEntry(
test_resource_id, test_md5, &cache_entry));
EXPECT_EQ(test_md5, cache_entry.md5());
EXPECT_TRUE(cache_entry.is_present());
}
TEST_F(FileCacheMetadataTest, Initialize) {
const base::FilePath db_path =
temp_dir_.path().Append(FileCacheMetadata::kCacheMetadataDBPath);
// Try to open a bogus file.
ASSERT_TRUE(
google_apis::test_util::WriteStringToFile(db_path, "Hello world"));
ASSERT_EQ(FileCacheMetadata::INITIALIZE_CREATED,
metadata_->Initialize(temp_dir_.path()));
// Open an existing DB.
metadata_.reset(new FileCacheMetadata(NULL));
EXPECT_EQ(FileCacheMetadata::INITIALIZE_OPENED,
metadata_->Initialize(temp_dir_.path()));
// Try to open a nonexistent path.
base::FilePath non_existent_path(FILE_PATH_LITERAL("/somewhere/nonexistent"));
metadata_.reset(new FileCacheMetadata(NULL));
EXPECT_EQ(FileCacheMetadata::INITIALIZE_FAILED,
metadata_->Initialize(non_existent_path));
}
} // namespace internal
} // namespace drive
|