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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
|
// Copyright 2013 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 "components/drive/resource_metadata_storage.h"
#include <stddef.h>
#include <stdint.h>
#include <algorithm>
#include "base/files/file_util.h"
#include "base/files/scoped_temp_dir.h"
#include "base/macros.h"
#include "base/single_thread_task_runner.h"
#include "base/strings/string_split.h"
#include "base/thread_task_runner_handle.h"
#include "components/drive/drive.pb.h"
#include "components/drive/drive_test_util.h"
#include "content/public/test/test_browser_thread_bundle.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "third_party/leveldatabase/src/include/leveldb/db.h"
#include "third_party/leveldatabase/src/include/leveldb/write_batch.h"
namespace drive {
namespace internal {
class ResourceMetadataStorageTest : public testing::Test {
protected:
void SetUp() override {
ASSERT_TRUE(temp_dir_.CreateUniqueTempDir());
storage_.reset(new ResourceMetadataStorage(
temp_dir_.path(), base::ThreadTaskRunnerHandle::Get().get()));
ASSERT_TRUE(storage_->Initialize());
}
// Overwrites |storage_|'s version.
void SetDBVersion(int version) {
ResourceMetadataHeader header;
ASSERT_EQ(FILE_ERROR_OK, storage_->GetHeader(&header));
header.set_version(version);
EXPECT_EQ(FILE_ERROR_OK, storage_->PutHeader(header));
}
bool CheckValidity() {
return storage_->CheckValidity();
}
leveldb::DB* resource_map() { return storage_->resource_map_.get(); }
// Puts a child entry.
void PutChild(const std::string& parent_id,
const std::string& child_base_name,
const std::string& child_id) {
storage_->resource_map_->Put(
leveldb::WriteOptions(),
ResourceMetadataStorage::GetChildEntryKey(parent_id, child_base_name),
child_id);
}
// Removes a child entry.
void RemoveChild(const std::string& parent_id,
const std::string& child_base_name) {
storage_->resource_map_->Delete(
leveldb::WriteOptions(),
ResourceMetadataStorage::GetChildEntryKey(parent_id, child_base_name));
}
content::TestBrowserThreadBundle thread_bundle_;
base::ScopedTempDir temp_dir_;
scoped_ptr<ResourceMetadataStorage,
test_util::DestroyHelperForTests> storage_;
};
TEST_F(ResourceMetadataStorageTest, LargestChangestamp) {
const int64_t kLargestChangestamp = 1234567890;
EXPECT_EQ(FILE_ERROR_OK,
storage_->SetLargestChangestamp(kLargestChangestamp));
int64_t value = 0;
EXPECT_EQ(FILE_ERROR_OK, storage_->GetLargestChangestamp(&value));
EXPECT_EQ(kLargestChangestamp, value);
}
TEST_F(ResourceMetadataStorageTest, PutEntry) {
const std::string key1 = "abcdefg";
const std::string key2 = "abcd";
const std::string key3 = "efgh";
const std::string name2 = "ABCD";
const std::string name3 = "EFGH";
// key1 not found.
ResourceEntry result;
EXPECT_EQ(FILE_ERROR_NOT_FOUND, storage_->GetEntry(key1, &result));
// Put entry1.
ResourceEntry entry1;
entry1.set_local_id(key1);
EXPECT_EQ(FILE_ERROR_OK, storage_->PutEntry(entry1));
// key1 found.
EXPECT_EQ(FILE_ERROR_OK, storage_->GetEntry(key1, &result));
// key2 not found.
EXPECT_EQ(FILE_ERROR_NOT_FOUND, storage_->GetEntry(key2, &result));
// Put entry2 as a child of entry1.
ResourceEntry entry2;
entry2.set_local_id(key2);
entry2.set_parent_local_id(key1);
entry2.set_base_name(name2);
EXPECT_EQ(FILE_ERROR_OK, storage_->PutEntry(entry2));
// key2 found.
std::string child_id;
EXPECT_EQ(FILE_ERROR_OK, storage_->GetEntry(key2, &result));
EXPECT_EQ(FILE_ERROR_OK, storage_->GetChild(key1, name2, &child_id));
EXPECT_EQ(key2, child_id);
// Put entry3 as a child of entry2.
ResourceEntry entry3;
entry3.set_local_id(key3);
entry3.set_parent_local_id(key2);
entry3.set_base_name(name3);
EXPECT_EQ(FILE_ERROR_OK, storage_->PutEntry(entry3));
// key3 found.
EXPECT_EQ(FILE_ERROR_OK, storage_->GetEntry(key3, &result));
EXPECT_EQ(FILE_ERROR_OK, storage_->GetChild(key2, name3, &child_id));
EXPECT_EQ(key3, child_id);
// Change entry3's parent to entry1.
entry3.set_parent_local_id(key1);
EXPECT_EQ(FILE_ERROR_OK, storage_->PutEntry(entry3));
// entry3 is a child of entry1 now.
EXPECT_EQ(FILE_ERROR_NOT_FOUND, storage_->GetChild(key2, name3, &child_id));
EXPECT_EQ(FILE_ERROR_OK, storage_->GetChild(key1, name3, &child_id));
EXPECT_EQ(key3, child_id);
// Remove entries.
EXPECT_EQ(FILE_ERROR_OK, storage_->RemoveEntry(key3));
EXPECT_EQ(FILE_ERROR_NOT_FOUND, storage_->GetEntry(key3, &result));
EXPECT_EQ(FILE_ERROR_OK, storage_->RemoveEntry(key2));
EXPECT_EQ(FILE_ERROR_NOT_FOUND, storage_->GetEntry(key2, &result));
EXPECT_EQ(FILE_ERROR_OK, storage_->RemoveEntry(key1));
EXPECT_EQ(FILE_ERROR_NOT_FOUND, storage_->GetEntry(key1, &result));
}
TEST_F(ResourceMetadataStorageTest, Iterator) {
// Prepare data.
std::vector<std::string> keys;
keys.push_back("entry1");
keys.push_back("entry2");
keys.push_back("entry3");
keys.push_back("entry4");
for (size_t i = 0; i < keys.size(); ++i) {
ResourceEntry entry;
entry.set_local_id(keys[i]);
EXPECT_EQ(FILE_ERROR_OK, storage_->PutEntry(entry));
}
// Iterate and check the result.
std::map<std::string, ResourceEntry> found_entries;
scoped_ptr<ResourceMetadataStorage::Iterator> it = storage_->GetIterator();
ASSERT_TRUE(it);
for (; !it->IsAtEnd(); it->Advance()) {
const ResourceEntry& entry = it->GetValue();
found_entries[it->GetID()] = entry;
}
EXPECT_FALSE(it->HasError());
EXPECT_EQ(keys.size(), found_entries.size());
for (size_t i = 0; i < keys.size(); ++i)
EXPECT_EQ(1U, found_entries.count(keys[i]));
}
TEST_F(ResourceMetadataStorageTest, GetIdByResourceId) {
const std::string local_id = "local_id";
const std::string resource_id = "resource_id";
// Resource ID to local ID mapping is not stored yet.
std::string id;
EXPECT_EQ(FILE_ERROR_NOT_FOUND,
storage_->GetIdByResourceId(resource_id, &id));
// Put an entry with the resource ID.
ResourceEntry entry;
entry.set_local_id(local_id);
entry.set_resource_id(resource_id);
EXPECT_EQ(FILE_ERROR_OK, storage_->PutEntry(entry));
// Can get local ID by resource ID.
EXPECT_EQ(FILE_ERROR_OK, storage_->GetIdByResourceId(resource_id, &id));
EXPECT_EQ(local_id, id);
// Resource ID to local ID mapping is removed.
EXPECT_EQ(FILE_ERROR_OK, storage_->RemoveEntry(local_id));
EXPECT_EQ(FILE_ERROR_NOT_FOUND,
storage_->GetIdByResourceId(resource_id, &id));
}
TEST_F(ResourceMetadataStorageTest, GetChildren) {
const std::string parents_id[] = { "mercury", "venus", "mars", "jupiter",
"saturn" };
std::vector<base::StringPairs> children_name_id(arraysize(parents_id));
// Skip children_name_id[0/1] here because Mercury and Venus have no moon.
children_name_id[2].push_back(std::make_pair("phobos", "mars_i"));
children_name_id[2].push_back(std::make_pair("deimos", "mars_ii"));
children_name_id[3].push_back(std::make_pair("io", "jupiter_i"));
children_name_id[3].push_back(std::make_pair("europa", "jupiter_ii"));
children_name_id[3].push_back(std::make_pair("ganymede", "jupiter_iii"));
children_name_id[3].push_back(std::make_pair("calisto", "jupiter_iv"));
children_name_id[4].push_back(std::make_pair("mimas", "saturn_i"));
children_name_id[4].push_back(std::make_pair("enceladus", "saturn_ii"));
children_name_id[4].push_back(std::make_pair("tethys", "saturn_iii"));
children_name_id[4].push_back(std::make_pair("dione", "saturn_iv"));
children_name_id[4].push_back(std::make_pair("rhea", "saturn_v"));
children_name_id[4].push_back(std::make_pair("titan", "saturn_vi"));
children_name_id[4].push_back(std::make_pair("iapetus", "saturn_vii"));
// Put parents.
for (size_t i = 0; i < arraysize(parents_id); ++i) {
ResourceEntry entry;
entry.set_local_id(parents_id[i]);
EXPECT_EQ(FILE_ERROR_OK, storage_->PutEntry(entry));
}
// Put children.
for (size_t i = 0; i < children_name_id.size(); ++i) {
for (size_t j = 0; j < children_name_id[i].size(); ++j) {
ResourceEntry entry;
entry.set_local_id(children_name_id[i][j].second);
entry.set_parent_local_id(parents_id[i]);
entry.set_base_name(children_name_id[i][j].first);
EXPECT_EQ(FILE_ERROR_OK, storage_->PutEntry(entry));
}
}
// Try to get children.
for (size_t i = 0; i < children_name_id.size(); ++i) {
std::vector<std::string> children;
storage_->GetChildren(parents_id[i], &children);
EXPECT_EQ(children_name_id[i].size(), children.size());
for (size_t j = 0; j < children_name_id[i].size(); ++j) {
EXPECT_EQ(1, std::count(children.begin(),
children.end(),
children_name_id[i][j].second));
}
}
}
TEST_F(ResourceMetadataStorageTest, OpenExistingDB) {
const std::string parent_id1 = "abcdefg";
const std::string child_name1 = "WXYZABC";
const std::string child_id1 = "qwerty";
ResourceEntry entry1;
entry1.set_local_id(parent_id1);
ResourceEntry entry2;
entry2.set_local_id(child_id1);
entry2.set_parent_local_id(parent_id1);
entry2.set_base_name(child_name1);
// Put some data.
EXPECT_EQ(FILE_ERROR_OK, storage_->PutEntry(entry1));
EXPECT_EQ(FILE_ERROR_OK, storage_->PutEntry(entry2));
// Close DB and reopen.
storage_.reset(new ResourceMetadataStorage(
temp_dir_.path(), base::ThreadTaskRunnerHandle::Get().get()));
ASSERT_TRUE(storage_->Initialize());
// Can read data.
ResourceEntry result;
EXPECT_EQ(FILE_ERROR_OK, storage_->GetEntry(parent_id1, &result));
EXPECT_EQ(FILE_ERROR_OK, storage_->GetEntry(child_id1, &result));
EXPECT_EQ(parent_id1, result.parent_local_id());
EXPECT_EQ(child_name1, result.base_name());
std::string child_id;
EXPECT_EQ(FILE_ERROR_OK,
storage_->GetChild(parent_id1, child_name1, &child_id));
EXPECT_EQ(child_id1, child_id);
}
TEST_F(ResourceMetadataStorageTest, IncompatibleDB_M29) {
const int64_t kLargestChangestamp = 1234567890;
const std::string title = "title";
// Construct M29 version DB.
SetDBVersion(6);
EXPECT_EQ(FILE_ERROR_OK,
storage_->SetLargestChangestamp(kLargestChangestamp));
leveldb::WriteBatch batch;
// Put a file entry and its cache entry.
ResourceEntry entry;
std::string serialized_entry;
entry.set_title(title);
entry.set_resource_id("file:abcd");
EXPECT_TRUE(entry.SerializeToString(&serialized_entry));
batch.Put("file:abcd", serialized_entry);
FileCacheEntry cache_entry;
EXPECT_TRUE(cache_entry.SerializeToString(&serialized_entry));
batch.Put(std::string("file:abcd") + '\0' + "CACHE", serialized_entry);
EXPECT_TRUE(resource_map()->Write(leveldb::WriteOptions(), &batch).ok());
// Upgrade and reopen.
storage_.reset();
EXPECT_TRUE(ResourceMetadataStorage::UpgradeOldDB(temp_dir_.path()));
storage_.reset(new ResourceMetadataStorage(
temp_dir_.path(), base::ThreadTaskRunnerHandle::Get().get()));
ASSERT_TRUE(storage_->Initialize());
// Resource-ID-to-local-ID mapping is added.
std::string id;
EXPECT_EQ(FILE_ERROR_OK,
storage_->GetIdByResourceId("abcd", &id)); // "file:" is dropped.
// Data is erased, except cache entries.
int64_t largest_changestamp = 0;
EXPECT_EQ(FILE_ERROR_OK,
storage_->GetLargestChangestamp(&largest_changestamp));
EXPECT_EQ(0, largest_changestamp);
EXPECT_EQ(FILE_ERROR_OK, storage_->GetEntry(id, &entry));
EXPECT_TRUE(entry.title().empty());
EXPECT_TRUE(entry.file_specific_info().has_cache_state());
}
TEST_F(ResourceMetadataStorageTest, IncompatibleDB_M32) {
const int64_t kLargestChangestamp = 1234567890;
const std::string title = "title";
const std::string resource_id = "abcd";
const std::string local_id = "local-abcd";
// Construct M32 version DB.
SetDBVersion(11);
EXPECT_EQ(FILE_ERROR_OK,
storage_->SetLargestChangestamp(kLargestChangestamp));
leveldb::WriteBatch batch;
// Put a file entry and its cache and id entry.
ResourceEntry entry;
std::string serialized_entry;
entry.set_title(title);
entry.set_local_id(local_id);
entry.set_resource_id(resource_id);
EXPECT_TRUE(entry.SerializeToString(&serialized_entry));
batch.Put(local_id, serialized_entry);
FileCacheEntry cache_entry;
EXPECT_TRUE(cache_entry.SerializeToString(&serialized_entry));
batch.Put(local_id + '\0' + "CACHE", serialized_entry);
batch.Put('\0' + std::string("ID") + '\0' + resource_id, local_id);
EXPECT_TRUE(resource_map()->Write(leveldb::WriteOptions(), &batch).ok());
// Upgrade and reopen.
storage_.reset();
EXPECT_TRUE(ResourceMetadataStorage::UpgradeOldDB(temp_dir_.path()));
storage_.reset(new ResourceMetadataStorage(
temp_dir_.path(), base::ThreadTaskRunnerHandle::Get().get()));
ASSERT_TRUE(storage_->Initialize());
// Data is erased, except cache and id mapping entries.
std::string id;
EXPECT_EQ(FILE_ERROR_OK, storage_->GetIdByResourceId(resource_id, &id));
EXPECT_EQ(local_id, id);
int64_t largest_changestamp = 0;
EXPECT_EQ(FILE_ERROR_OK,
storage_->GetLargestChangestamp(&largest_changestamp));
EXPECT_EQ(0, largest_changestamp);
EXPECT_EQ(FILE_ERROR_OK, storage_->GetEntry(id, &entry));
EXPECT_TRUE(entry.title().empty());
EXPECT_TRUE(entry.file_specific_info().has_cache_state());
}
TEST_F(ResourceMetadataStorageTest, IncompatibleDB_M33) {
const int64_t kLargestChangestamp = 1234567890;
const std::string title = "title";
const std::string resource_id = "abcd";
const std::string local_id = "local-abcd";
const std::string md5 = "md5";
const std::string resource_id2 = "efgh";
const std::string local_id2 = "local-efgh";
const std::string md5_2 = "md5_2";
// Construct M33 version DB.
SetDBVersion(12);
EXPECT_EQ(FILE_ERROR_OK,
storage_->SetLargestChangestamp(kLargestChangestamp));
leveldb::WriteBatch batch;
// Put a file entry and its cache and id entry.
ResourceEntry entry;
std::string serialized_entry;
entry.set_title(title);
entry.set_local_id(local_id);
entry.set_resource_id(resource_id);
EXPECT_TRUE(entry.SerializeToString(&serialized_entry));
batch.Put(local_id, serialized_entry);
FileCacheEntry cache_entry;
cache_entry.set_md5(md5);
EXPECT_TRUE(cache_entry.SerializeToString(&serialized_entry));
batch.Put(local_id + '\0' + "CACHE", serialized_entry);
batch.Put('\0' + std::string("ID") + '\0' + resource_id, local_id);
// Put another cache entry which is not accompanied by a ResourceEntry.
cache_entry.set_md5(md5_2);
EXPECT_TRUE(cache_entry.SerializeToString(&serialized_entry));
batch.Put(local_id2 + '\0' + "CACHE", serialized_entry);
batch.Put('\0' + std::string("ID") + '\0' + resource_id2, local_id2);
EXPECT_TRUE(resource_map()->Write(leveldb::WriteOptions(), &batch).ok());
// Upgrade and reopen.
storage_.reset();
EXPECT_TRUE(ResourceMetadataStorage::UpgradeOldDB(temp_dir_.path()));
storage_.reset(new ResourceMetadataStorage(
temp_dir_.path(), base::ThreadTaskRunnerHandle::Get().get()));
ASSERT_TRUE(storage_->Initialize());
// No data is lost.
int64_t largest_changestamp = 0;
EXPECT_EQ(FILE_ERROR_OK,
storage_->GetLargestChangestamp(&largest_changestamp));
EXPECT_EQ(kLargestChangestamp, largest_changestamp);
std::string id;
EXPECT_EQ(FILE_ERROR_OK, storage_->GetIdByResourceId(resource_id, &id));
EXPECT_EQ(local_id, id);
EXPECT_EQ(FILE_ERROR_OK, storage_->GetEntry(id, &entry));
EXPECT_EQ(title, entry.title());
EXPECT_EQ(md5, entry.file_specific_info().cache_state().md5());
EXPECT_EQ(FILE_ERROR_OK, storage_->GetIdByResourceId(resource_id2, &id));
EXPECT_EQ(local_id2, id);
EXPECT_EQ(FILE_ERROR_OK, storage_->GetEntry(id, &entry));
EXPECT_EQ(md5_2, entry.file_specific_info().cache_state().md5());
}
TEST_F(ResourceMetadataStorageTest, IncompatibleDB_Unknown) {
const int64_t kLargestChangestamp = 1234567890;
const std::string key1 = "abcd";
// Put some data.
EXPECT_EQ(FILE_ERROR_OK,
storage_->SetLargestChangestamp(kLargestChangestamp));
ResourceEntry entry;
entry.set_local_id(key1);
EXPECT_EQ(FILE_ERROR_OK, storage_->PutEntry(entry));
// Set newer version, upgrade and reopen DB.
SetDBVersion(ResourceMetadataStorage::kDBVersion + 1);
storage_.reset();
EXPECT_FALSE(ResourceMetadataStorage::UpgradeOldDB(temp_dir_.path()));
storage_.reset(new ResourceMetadataStorage(
temp_dir_.path(), base::ThreadTaskRunnerHandle::Get().get()));
ASSERT_TRUE(storage_->Initialize());
// Data is erased because of the incompatible version.
int64_t largest_changestamp = 0;
EXPECT_EQ(FILE_ERROR_OK,
storage_->GetLargestChangestamp(&largest_changestamp));
EXPECT_EQ(0, largest_changestamp);
EXPECT_EQ(FILE_ERROR_NOT_FOUND, storage_->GetEntry(key1, &entry));
}
TEST_F(ResourceMetadataStorageTest, DeleteUnusedIDEntries) {
leveldb::WriteBatch batch;
// Put an ID entry with a corresponding ResourceEntry.
ResourceEntry entry;
entry.set_local_id("id1");
entry.set_resource_id("resource_id1");
std::string serialized_entry;
EXPECT_TRUE(entry.SerializeToString(&serialized_entry));
batch.Put("id1", serialized_entry);
batch.Put('\0' + std::string("ID") + '\0' + "resource_id1", "id1");
// Put an ID entry without any corresponding entries.
batch.Put('\0' + std::string("ID") + '\0' + "resource_id2", "id3");
EXPECT_TRUE(resource_map()->Write(leveldb::WriteOptions(), &batch).ok());
// Upgrade and reopen.
storage_.reset();
EXPECT_TRUE(ResourceMetadataStorage::UpgradeOldDB(temp_dir_.path()));
storage_.reset(new ResourceMetadataStorage(
temp_dir_.path(), base::ThreadTaskRunnerHandle::Get().get()));
ASSERT_TRUE(storage_->Initialize());
// Only the unused entry is deleted.
std::string id;
EXPECT_EQ(FILE_ERROR_OK, storage_->GetIdByResourceId("resource_id1", &id));
EXPECT_EQ("id1", id);
EXPECT_EQ(FILE_ERROR_NOT_FOUND,
storage_->GetIdByResourceId("resource_id2", &id));
}
TEST_F(ResourceMetadataStorageTest, WrongPath) {
// Create a file.
base::FilePath path;
ASSERT_TRUE(base::CreateTemporaryFileInDir(temp_dir_.path(), &path));
storage_.reset(new ResourceMetadataStorage(
path, base::ThreadTaskRunnerHandle::Get().get()));
// Cannot initialize DB beacause the path does not point a directory.
ASSERT_FALSE(storage_->Initialize());
}
TEST_F(ResourceMetadataStorageTest, RecoverCacheEntriesFromTrashedResourceMap) {
// Put entry with id_foo.
ResourceEntry entry;
entry.set_local_id("id_foo");
entry.set_base_name("foo");
entry.set_title("foo");
entry.mutable_file_specific_info()->mutable_cache_state()->set_md5("md5_foo");
EXPECT_EQ(FILE_ERROR_OK, storage_->PutEntry(entry));
// Put entry with id_bar as a id_foo's child.
entry.set_local_id("id_bar");
entry.set_parent_local_id("id_foo");
entry.set_base_name("bar");
entry.set_title("bar");
entry.mutable_file_specific_info()->mutable_cache_state()->set_md5("md5_bar");
entry.mutable_file_specific_info()->mutable_cache_state()->set_is_dirty(true);
EXPECT_EQ(FILE_ERROR_OK, storage_->PutEntry(entry));
// Remove parent-child relationship to make the DB invalid.
RemoveChild("id_foo", "bar");
EXPECT_FALSE(CheckValidity());
// Reopen. This should result in trashing the DB.
storage_.reset(new ResourceMetadataStorage(
temp_dir_.path(), base::ThreadTaskRunnerHandle::Get().get()));
ASSERT_TRUE(storage_->Initialize());
// Recover cache entries from the trashed DB.
ResourceMetadataStorage::RecoveredCacheInfoMap recovered_cache_info;
storage_->RecoverCacheInfoFromTrashedResourceMap(&recovered_cache_info);
EXPECT_EQ(2U, recovered_cache_info.size());
EXPECT_FALSE(recovered_cache_info["id_foo"].is_dirty);
EXPECT_EQ("md5_foo", recovered_cache_info["id_foo"].md5);
EXPECT_EQ("foo", recovered_cache_info["id_foo"].title);
EXPECT_TRUE(recovered_cache_info["id_bar"].is_dirty);
EXPECT_EQ("md5_bar", recovered_cache_info["id_bar"].md5);
EXPECT_EQ("bar", recovered_cache_info["id_bar"].title);
}
TEST_F(ResourceMetadataStorageTest, CheckValidity) {
const std::string key1 = "foo";
const std::string name1 = "hoge";
const std::string key2 = "bar";
const std::string name2 = "fuga";
const std::string key3 = "boo";
const std::string name3 = "piyo";
// Empty storage is valid.
EXPECT_TRUE(CheckValidity());
// Put entry with key1.
ResourceEntry entry;
entry.set_local_id(key1);
entry.set_base_name(name1);
EXPECT_EQ(FILE_ERROR_OK, storage_->PutEntry(entry));
EXPECT_TRUE(CheckValidity());
// Put entry with key2 under key1.
entry.set_local_id(key2);
entry.set_parent_local_id(key1);
entry.set_base_name(name2);
EXPECT_EQ(FILE_ERROR_OK, storage_->PutEntry(entry));
EXPECT_TRUE(CheckValidity());
RemoveChild(key1, name2);
EXPECT_FALSE(CheckValidity()); // Missing parent-child relationship.
// Add back parent-child relationship between key1 and key2.
PutChild(key1, name2, key2);
EXPECT_TRUE(CheckValidity());
// Add parent-child relationship between key2 and key3.
PutChild(key2, name3, key3);
EXPECT_FALSE(CheckValidity()); // key3 is not stored in the storage.
// Put entry with key3 under key2.
entry.set_local_id(key3);
entry.set_parent_local_id(key2);
entry.set_base_name(name3);
EXPECT_EQ(FILE_ERROR_OK, storage_->PutEntry(entry));
EXPECT_TRUE(CheckValidity());
// Parent-child relationship with wrong name.
RemoveChild(key2, name3);
EXPECT_FALSE(CheckValidity());
PutChild(key2, name2, key3);
EXPECT_FALSE(CheckValidity());
// Fix up the relationship between key2 and key3.
RemoveChild(key2, name2);
EXPECT_FALSE(CheckValidity());
PutChild(key2, name3, key3);
EXPECT_TRUE(CheckValidity());
// Remove key2.
RemoveChild(key1, name2);
EXPECT_FALSE(CheckValidity());
EXPECT_EQ(FILE_ERROR_OK, storage_->RemoveEntry(key2));
EXPECT_FALSE(CheckValidity());
// Remove key3.
RemoveChild(key2, name3);
EXPECT_FALSE(CheckValidity());
EXPECT_EQ(FILE_ERROR_OK, storage_->RemoveEntry(key3));
EXPECT_TRUE(CheckValidity());
// Remove key1.
EXPECT_EQ(FILE_ERROR_OK, storage_->RemoveEntry(key1));
EXPECT_TRUE(CheckValidity());
}
} // namespace internal
} // namespace drive
|