| OLD | NEW |
| 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/read_transaction.h" | 13 #include "sync/syncable/read_transaction.h" |
| 14 #include "sync/test/null_transaction_observer.h" | 14 #include "sync/test/null_transaction_observer.h" |
| 15 #include "testing/gtest/include/gtest/gtest.h" | 15 #include "testing/gtest/include/gtest/gtest.h" |
| 16 | 16 |
| 17 namespace syncer { | 17 namespace syncer { |
| 18 | 18 |
| 19 using syncable::NullTransactionObserver; | 19 using syncable::NullTransactionObserver; |
| 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 directory_.reset(new syncable::Directory(&encryptor_, &handler_, NULL, | 26 directory_.reset(new syncable::Directory( |
| 27 new syncable::InMemoryDirectoryBackingStore(name_))); | 27 new syncable::InMemoryDirectoryBackingStore(name_), |
| 28 &handler_, |
| 29 NULL, |
| 30 &encryption_handler_, |
| 31 encryption_handler_.cryptographer())); |
| 28 ASSERT_TRUE(temp_dir_.CreateUniqueTempDir()); | 32 ASSERT_TRUE(temp_dir_.CreateUniqueTempDir()); |
| 29 ASSERT_EQ(syncable::OPENED, directory_->Open( | 33 ASSERT_EQ(syncable::OPENED, directory_->Open( |
| 30 name_, &delegate_, NullTransactionObserver())); | 34 name_, &delegate_, NullTransactionObserver())); |
| 31 } | 35 } |
| 32 | 36 |
| 33 void TestDirectorySetterUpper::TearDown() { | 37 void TestDirectorySetterUpper::TearDown() { |
| 34 if (!directory()->good()) | 38 if (!directory()->good()) |
| 35 return; | 39 return; |
| 36 | 40 |
| 37 RunInvariantCheck(); | 41 RunInvariantCheck(); |
| 38 directory()->SaveChanges(); | 42 directory()->SaveChanges(); |
| 39 RunInvariantCheck(); | 43 RunInvariantCheck(); |
| 40 directory()->SaveChanges(); | 44 directory()->SaveChanges(); |
| 41 | 45 |
| 42 directory_.reset(); | 46 directory_.reset(); |
| 43 | 47 |
| 44 ASSERT_TRUE(temp_dir_.Delete()); | 48 ASSERT_TRUE(temp_dir_.Delete()); |
| 45 } | 49 } |
| 46 | 50 |
| 47 void TestDirectorySetterUpper::RunInvariantCheck() { | 51 void TestDirectorySetterUpper::RunInvariantCheck() { |
| 48 // Check invariants for all items. | 52 // Check invariants for all items. |
| 49 syncable::ReadTransaction trans(FROM_HERE, directory()); | 53 syncable::ReadTransaction trans(FROM_HERE, directory()); |
| 50 | 54 |
| 51 // The TestUnrecoverableErrorHandler that this directory was constructed with | 55 // The TestUnrecoverableErrorHandler that this directory was constructed with |
| 52 // will handle error reporting, so we can safely ignore the return value. | 56 // will handle error reporting, so we can safely ignore the return value. |
| 53 directory()->FullyCheckTreeInvariants(&trans); | 57 directory()->FullyCheckTreeInvariants(&trans); |
| 54 } | 58 } |
| 55 | 59 |
| 56 } // namespace syncer | 60 } // namespace syncer |
| OLD | NEW |