Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(202)

Side by Side Diff: sync/test/engine/test_directory_setter_upper.cc

Issue 10911073: NOT FOR COMMIT: Add DeviceInfo type and ChangeProcessor (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix several issues Created 8 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « sync/test/engine/test_directory_setter_upper.h ('k') | sync/test/mock_transaction_observer.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 "sync/test/engine/test_directory_setter_upper.h" 5 #include "sync/test/engine/test_directory_setter_upper.h"
6 6
7 #include "base/compiler_specific.h" 7 #include "base/compiler_specific.h"
8 #include "base/file_util.h" 8 #include "base/file_util.h"
9 #include "base/location.h" 9 #include "base/location.h"
10 #include "base/string_util.h" 10 #include "base/string_util.h"
11 #include "sync/syncable/directory.h" 11 #include "sync/syncable/directory.h"
12 #include "sync/syncable/in_memory_directory_backing_store.h" 12 #include "sync/syncable/in_memory_directory_backing_store.h"
13 #include "sync/syncable/mutable_entry.h"
13 #include "sync/syncable/read_transaction.h" 14 #include "sync/syncable/read_transaction.h"
14 #include "sync/test/null_transaction_observer.h" 15 #include "sync/syncable/write_transaction.h"
16 #include "sync/test/mock_transaction_observer.h"
15 #include "testing/gtest/include/gtest/gtest.h" 17 #include "testing/gtest/include/gtest/gtest.h"
16 18
17 namespace syncer { 19 namespace syncer {
18 20
19 using syncable::NullTransactionObserver;
20
21 TestDirectorySetterUpper::TestDirectorySetterUpper() : name_("Test") {} 21 TestDirectorySetterUpper::TestDirectorySetterUpper() : name_("Test") {}
22 22
23 TestDirectorySetterUpper::~TestDirectorySetterUpper() {} 23 TestDirectorySetterUpper::~TestDirectorySetterUpper() {}
24 24
25 void TestDirectorySetterUpper::SetUp() { 25 void TestDirectorySetterUpper::SetUp() {
26 mock_transaction_observer_.reset(new syncable::MockTransactionObserver());
27 WeakHandle<syncable::TransactionObserver> transaction_observer =
28 MakeWeakHandle(mock_transaction_observer_->AsWeakPtr());
29
26 directory_.reset(new syncable::Directory( 30 directory_.reset(new syncable::Directory(
27 new syncable::InMemoryDirectoryBackingStore(name_), 31 new syncable::InMemoryDirectoryBackingStore(name_),
28 &handler_, 32 &handler_,
29 NULL, 33 NULL,
30 &encryption_handler_, 34 &encryption_handler_,
31 encryption_handler_.cryptographer())); 35 encryption_handler_.cryptographer()));
32 ASSERT_TRUE(temp_dir_.CreateUniqueTempDir()); 36 ASSERT_TRUE(temp_dir_.CreateUniqueTempDir());
33 ASSERT_EQ(syncable::OPENED, directory_->Open( 37 ASSERT_EQ(syncable::OPENED, directory_->Open(
34 name_, &delegate_, NullTransactionObserver())); 38 name_, &delegate_, transaction_observer));
35 } 39 }
36 40
37 void TestDirectorySetterUpper::TearDown() { 41 void TestDirectorySetterUpper::TearDown() {
38 if (!directory()->good()) 42 if (!directory()->good())
39 return; 43 return;
40 44
41 RunInvariantCheck(); 45 RunInvariantCheck();
42 directory()->SaveChanges(); 46 directory()->SaveChanges();
43 RunInvariantCheck(); 47 RunInvariantCheck();
44 directory()->SaveChanges(); 48 directory()->SaveChanges();
45 49
46 directory_.reset(); 50 directory_.reset();
47 51
48 ASSERT_TRUE(temp_dir_.Delete()); 52 ASSERT_TRUE(temp_dir_.Delete());
49 } 53 }
50 54
51 void TestDirectorySetterUpper::RunInvariantCheck() { 55 void TestDirectorySetterUpper::RunInvariantCheck() {
52 // Check invariants for all items. 56 // Check invariants for all items.
53 syncable::ReadTransaction trans(FROM_HERE, directory()); 57 syncable::ReadTransaction trans(FROM_HERE, directory());
54 58
55 // The TestUnrecoverableErrorHandler that this directory was constructed with 59 // The TestUnrecoverableErrorHandler that this directory was constructed with
56 // will handle error reporting, so we can safely ignore the return value. 60 // will handle error reporting, so we can safely ignore the return value.
57 directory()->FullyCheckTreeInvariants(&trans); 61 directory()->FullyCheckTreeInvariants(&trans);
58 } 62 }
59 63
60 } // namespace syncer 64 } // namespace syncer
OLDNEW
« no previous file with comments | « sync/test/engine/test_directory_setter_upper.h ('k') | sync/test/mock_transaction_observer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698