| OLD | NEW |
| 1 // Copyright 2012 The Chromium Authors. All rights reserved. | 1 // Copyright 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/mutable_entry.h" |
| 14 #include "sync/syncable/syncable_read_transaction.h" | 14 #include "sync/syncable/syncable_read_transaction.h" |
| 15 #include "sync/syncable/syncable_write_transaction.h" | 15 #include "sync/syncable/syncable_write_transaction.h" |
| 16 #include "sync/test/test_transaction_observer.h" | 16 #include "sync/test/test_transaction_observer.h" |
| 17 #include "testing/gtest/include/gtest/gtest.h" | 17 #include "testing/gtest/include/gtest/gtest.h" |
| 18 | 18 |
| 19 namespace syncer { | 19 namespace syncer { |
| 20 | 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 syncer::syncable::DirectoryBackingStore* directory_store) { |
| 26 test_transaction_observer_.reset(new syncable::TestTransactionObserver()); | 27 test_transaction_observer_.reset(new syncable::TestTransactionObserver()); |
| 27 WeakHandle<syncable::TransactionObserver> transaction_observer = | 28 WeakHandle<syncable::TransactionObserver> transaction_observer = |
| 28 MakeWeakHandle(test_transaction_observer_->AsWeakPtr()); | 29 MakeWeakHandle(test_transaction_observer_->AsWeakPtr()); |
| 29 | 30 |
| 30 directory_.reset(new syncable::Directory( | 31 directory_.reset(new syncable::Directory( |
| 31 new syncable::InMemoryDirectoryBackingStore(name_), | 32 directory_store ? |
| 33 directory_store : new syncable::InMemoryDirectoryBackingStore(name_), |
| 32 &handler_, | 34 &handler_, |
| 33 NULL, | 35 NULL, |
| 34 &encryption_handler_, | 36 &encryption_handler_, |
| 35 encryption_handler_.cryptographer())); | 37 encryption_handler_.cryptographer())); |
| 36 ASSERT_EQ(syncable::OPENED, directory_->Open( | 38 ASSERT_EQ(syncable::OPENED, directory_->Open( |
| 37 name_, &delegate_, transaction_observer)); | 39 name_, &delegate_, transaction_observer)); |
| 38 } | 40 } |
| 39 | 41 |
| 40 void TestDirectorySetterUpper::TearDown() { | 42 void TestDirectorySetterUpper::TearDown() { |
| 41 if (!directory()->good()) | 43 if (!directory()->good()) |
| (...skipping 10 matching lines...) Expand all Loading... |
| 52 void TestDirectorySetterUpper::RunInvariantCheck() { | 54 void TestDirectorySetterUpper::RunInvariantCheck() { |
| 53 // Check invariants for all items. | 55 // Check invariants for all items. |
| 54 syncable::ReadTransaction trans(FROM_HERE, directory()); | 56 syncable::ReadTransaction trans(FROM_HERE, directory()); |
| 55 | 57 |
| 56 // The TestUnrecoverableErrorHandler that this directory was constructed with | 58 // The TestUnrecoverableErrorHandler that this directory was constructed with |
| 57 // will handle error reporting, so we can safely ignore the return value. | 59 // will handle error reporting, so we can safely ignore the return value. |
| 58 directory()->FullyCheckTreeInvariants(&trans); | 60 directory()->FullyCheckTreeInvariants(&trans); |
| 59 } | 61 } |
| 60 | 62 |
| 61 } // namespace syncer | 63 } // namespace syncer |
| OLD | NEW |