-
Notifications
You must be signed in to change notification settings - Fork 145
/
writer_test.cc
83 lines (69 loc) · 2.42 KB
/
writer_test.cc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
// Copyright 2011-2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// https://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
#include "third_party/zynamics/bindiff/writer.h"
#include <memory>
#include "gmock/gmock.h"
#include "gtest/gtest.h"
#include "third_party/absl/status/status.h"
#include "third_party/absl/status/status_matchers.h"
#include "third_party/zynamics/bindiff/call_graph.h"
namespace security::bindiff {
namespace {
using ::absl_testing::IsOk;
using ::testing::Eq;
using ::testing::IsFalse;
using ::testing::IsTrue;
class WriterTest : public ::testing::Test {
protected:
CallGraph call_graph1_;
CallGraph call_graph2_;
FlowGraphs flow_graphs1_;
FlowGraphs flow_graphs2_;
FixedPoints fixed_points_;
};
class CountingNopWriter : public Writer {
public:
explicit CountingNopWriter(int* counter) : counter_(counter) {}
private:
absl::Status Write(const CallGraph& /*call_graph1*/,
const CallGraph& /*call_graph2*/,
const FlowGraphs& /*flow_graphs1*/,
const FlowGraphs& /*flow_graphs2*/,
const FixedPoints& /*fixed_points*/) override {
++*counter_;
return absl::OkStatus();
}
int* counter_;
};
TEST_F(WriterTest, EmptyChainDoesNothing) {
ChainWriter chain;
EXPECT_THAT(chain.empty(), IsTrue());
EXPECT_THAT(chain.Write(call_graph1_, call_graph2_, flow_graphs1_,
flow_graphs2_, fixed_points_),
IsOk());
}
TEST_F(WriterTest, CanChainWriters) {
ChainWriter chain;
int count = 0;
chain.Add(absl::make_unique<CountingNopWriter>(&count));
chain.Add(absl::make_unique<CountingNopWriter>(&count));
chain.Add(absl::make_unique<CountingNopWriter>(&count));
EXPECT_THAT(chain.empty(), IsFalse());
EXPECT_THAT(chain.Write(call_graph1_, call_graph2_, flow_graphs1_,
flow_graphs2_, fixed_points_),
IsOk());
EXPECT_THAT(count, Eq(3));
}
} // namespace
} // namespace security::bindiff