YugabyteDB (2.13.0.0-b42, bfc6a6643e7399ac8a0e81d06a3ee6d6571b33ab)

Coverage Report

Created: 2022-03-09 17:30

/Users/deen/code/yugabyte-db/src/yb/consensus/test_consensus_context.h
Line
Count
Source (jump to first uncovered line)
1
// Copyright (c) YugaByte, Inc.
2
//
3
// Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
4
// in compliance with the License.  You may obtain a copy of the License at
5
//
6
// http://www.apache.org/licenses/LICENSE-2.0
7
//
8
// Unless required by applicable law or agreed to in writing, software distributed under the License
9
// is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
10
// or implied.  See the License for the specific language governing permissions and limitations
11
// under the License.
12
//
13
14
#ifndef YB_CONSENSUS_TEST_CONSENSUS_CONTEXT_H
15
#define YB_CONSENSUS_TEST_CONSENSUS_CONTEXT_H
16
17
#include <unordered_set>
18
19
#include "yb/consensus/consensus_context.h"
20
21
namespace yb {
22
namespace consensus {
23
24
class TestConsensusContext : public ConsensusContext {
25
 public:
26
0
  void SetPropagatedSafeTime(HybridTime ht) override {}
27
28
0
  bool ShouldApplyWrite() override { return true; }
29
30
0
  Result<HybridTime> PreparePeerRequest() override { return HybridTime(); }
31
32
755
  void MajorityReplicated() override {}
33
34
0
  void ChangeConfigReplicated(const RaftConfigPB&) override {}
35
36
0
  uint64_t NumSSTFiles() override { return 0; }
37
38
0
  void ListenNumSSTFilesChanged(std::function<void()> listener) override {}
39
40
  CHECKED_STATUS CheckOperationAllowed(
41
207
      const OpId& op_id, consensus::OperationType op_type) override {
42
207
    return Status::OK();
43
207
  }
44
};
45
46
} // namespace consensus
47
} // namespace yb
48
49
#endif // YB_CONSENSUS_TEST_CONSENSUS_CONTEXT_H