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

Unified Diff: sync/internal_api/public/test/test_user_share.h

Issue 2130453004: [Sync] Move //sync to //components/sync. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase. Created 4 years, 5 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 side-by-side diff with in-line comments
Download patch
Index: sync/internal_api/public/test/test_user_share.h
diff --git a/sync/internal_api/public/test/test_user_share.h b/sync/internal_api/public/test/test_user_share.h
deleted file mode 100644
index c1694725564e1544cc5bc88aee9e3f8eee6c66c3..0000000000000000000000000000000000000000
--- a/sync/internal_api/public/test/test_user_share.h
+++ /dev/null
@@ -1,92 +0,0 @@
-// 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.
-//
-// A handy class that takes care of setting up and destroying a
-// UserShare instance for unit tests that require one.
-//
-// The expected usage is to make this a component of your test fixture:
-//
-// class AwesomenessTest : public testing::Test {
-// public:
-// virtual void SetUp() {
-// test_user_share_.SetUp();
-// }
-// virtual void TearDown() {
-// test_user_share_.TearDown();
-// }
-// protected:
-// TestUserShare test_user_share_;
-// };
-//
-// Then, in your tests:
-//
-// TEST_F(AwesomenessTest, IsMaximal) {
-// ReadTransaction trans(test_user_share_.user_share());
-// ...
-// }
-//
-
-#ifndef SYNC_INTERNAL_API_PUBLIC_TEST_TEST_USER_SHARE_H_
-#define SYNC_INTERNAL_API_PUBLIC_TEST_TEST_USER_SHARE_H_
-
-#include <stddef.h>
-
-#include "base/macros.h"
-#include "sync/internal_api/public/base/model_type.h"
-#include "sync/internal_api/public/user_share.h"
-
-namespace syncer {
-
-class SyncEncryptionHandler;
-class TestDirectorySetterUpper;
-
-namespace syncable {
-class TestTransactionObserver;
-}
-
-class TestUserShare {
- public:
- TestUserShare();
- ~TestUserShare();
-
- // Sets up the UserShare instance. Clears any existing database
- // backing files that might exist on disk.
- void SetUp();
-
- // Undo everything done by SetUp(): closes the UserShare and deletes
- // the backing files. Before closing the directory, this will run
- // the directory invariant checks and perform the SaveChanges action
- // on the user share's directory.
- void TearDown();
-
- // Save and reload Directory to clear out temporary data in memory.
- bool Reload();
-
- // Non-NULL iff called between a call to SetUp() and TearDown().
- UserShare* user_share();
-
- // Sync's encryption handler. Used by tests to invoke the sync encryption
- // methods normally handled via the SyncBackendHost
- SyncEncryptionHandler* encryption_handler();
-
- // Returns the directory's transaction observer. This transaction observer
- // has methods which can be helpful when writing test assertions.
- syncable::TestTransactionObserver* transaction_observer();
-
- // A helper function to pretend to download this type's root node.
- static bool CreateRoot(syncer::ModelType model_type,
- syncer::UserShare* service);
-
- size_t GetDeleteJournalSize() const;
-
- private:
- std::unique_ptr<TestDirectorySetterUpper> dir_maker_;
- std::unique_ptr<UserShare> user_share_;
-
- DISALLOW_COPY_AND_ASSIGN(TestUserShare);
-};
-
-} // namespace syncer
-
-#endif // SYNC_INTERNAL_API_PUBLIC_TEST_TEST_USER_SHARE_H_
« no previous file with comments | « sync/internal_api/public/test/test_internal_components_factory.h ('k') | sync/internal_api/public/user_share.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698