/** * Copyright (C) 2016 MongoDB Inc. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License, version 3, * as published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see . * * As a special exception, the copyright holders give permission to link the * code of portions of this program with the OpenSSL library under certain * conditions as described in each individual source file and distribute * linked combinations including the program with the OpenSSL library. You * must comply with the GNU Affero General Public License in all respects for * all of the code used other than as permitted herein. If you modify file(s) * with this exception, you may extend this exception to your version of the * file(s), but you are not obligated to do so. If you do not wish to do so, * delete this exception statement from your version. If you delete this * exception statement from all source files in the program, then also delete * it in the license file. */ #pragma once #include "mongo/db/repl/data_replicator_external_state.h" namespace mongo { namespace repl { class ReplicationCoordinator; /** * Data replicator external state implementation for testing. */ class DataReplicatorExternalStateMock : public DataReplicatorExternalState { public: DataReplicatorExternalStateMock(); executor::TaskExecutor* getTaskExecutor() const override; OldThreadPool* getDbWorkThreadPool() const override; OpTimeWithTerm getCurrentTermAndLastCommittedOpTime() override; void processMetadata(const rpc::ReplSetMetadata& metadata, boost::optional oqMetadata) override; bool shouldStopFetching(const HostAndPort& source, const rpc::ReplSetMetadata& replMetadata, boost::optional oqMetadata) override; std::unique_ptr makeInitialSyncOplogBuffer(OperationContext* txn) const override; std::unique_ptr makeSteadyStateOplogBuffer(OperationContext* txn) const override; StatusWith getCurrentConfig() const override; // Task executor. Not owned by us. executor::TaskExecutor* taskExecutor = nullptr; // DB worker thread pool. Not owned by us. OldThreadPool* dbWorkThreadPool = nullptr; // Returned by getCurrentTermAndLastCommittedOpTime. long long currentTerm = OpTime::kUninitializedTerm; OpTime lastCommittedOpTime; // Set by processMetadata. rpc::ReplSetMetadata replMetadataProcessed; rpc::OplogQueryMetadata oqMetadataProcessed; bool metadataWasProcessed = false; // Set by shouldStopFetching. HostAndPort lastSyncSourceChecked; OpTime syncSourceLastOpTime; bool syncSourceHasSyncSource = false; // Returned by shouldStopFetching. bool shouldStopFetchingResult = false; // Override to change multiApply behavior. MultiApplier::MultiApplyFn multiApplyFn; // Override to change _multiInitialSyncApply behavior. using MultiInitialSyncApplyFn = stdx::function; MultiInitialSyncApplyFn multiInitialSyncApplyFn = []( MultiApplier::OperationPtrs*, const HostAndPort&, AtomicUInt32*) { return Status::OK(); }; StatusWith replSetConfigResult = ReplSetConfig(); private: StatusWith _multiApply(OperationContext* txn, MultiApplier::Operations ops, MultiApplier::ApplyOperationFn applyOperation) override; Status _multiSyncApply(MultiApplier::OperationPtrs* ops) override; Status _multiInitialSyncApply(MultiApplier::OperationPtrs* ops, const HostAndPort& source, AtomicUInt32* fetchCount) override; }; } // namespace repl } // namespace mongo