-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathaction_processor_unittest.cc
271 lines (228 loc) · 9.65 KB
/
action_processor_unittest.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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
//
// Copyright (C) 2009 The Android Open Source Project
//
// 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
//
// http://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 "update_engine/common/action_processor.h"
#include <string>
#include <utility>
#include <gtest/gtest.h>
#include "update_engine/common/action.h"
#include "update_engine/common/mock_action.h"
using std::string;
namespace chromeos_update_engine {
using chromeos_update_engine::ActionPipe;
class ActionProcessorTestAction;
template <>
class ActionTraits<ActionProcessorTestAction> {
public:
typedef string OutputObjectType;
typedef string InputObjectType;
};
// This is a simple Action class for testing.
class ActionProcessorTestAction : public Action<ActionProcessorTestAction> {
public:
typedef string InputObjectType;
typedef string OutputObjectType;
ActionPipe<string>* in_pipe() { return in_pipe_.get(); }
ActionPipe<string>* out_pipe() { return out_pipe_.get(); }
ActionProcessor* processor() { return processor_; }
void PerformAction() {}
void CompleteAction() {
ASSERT_TRUE(processor());
processor()->ActionComplete(this, ErrorCode::kSuccess);
}
string Type() const { return "ActionProcessorTestAction"; }
};
namespace {
class MyActionProcessorDelegate : public ActionProcessorDelegate {
public:
explicit MyActionProcessorDelegate(const ActionProcessor* processor)
: processor_(processor),
processing_done_called_(false),
processing_stopped_called_(false),
action_completed_called_(false),
action_exit_code_(ErrorCode::kError) {}
virtual void ProcessingDone(const ActionProcessor* processor,
ErrorCode code) {
EXPECT_EQ(processor_, processor);
EXPECT_FALSE(processing_done_called_);
processing_done_called_ = true;
}
virtual void ProcessingStopped(const ActionProcessor* processor) {
EXPECT_EQ(processor_, processor);
EXPECT_FALSE(processing_stopped_called_);
processing_stopped_called_ = true;
}
virtual void ActionCompleted(ActionProcessor* processor,
AbstractAction* action,
ErrorCode code) {
EXPECT_EQ(processor_, processor);
EXPECT_FALSE(action_completed_called_);
action_completed_called_ = true;
action_exit_code_ = code;
}
const ActionProcessor* processor_;
bool processing_done_called_;
bool processing_stopped_called_;
bool action_completed_called_;
ErrorCode action_exit_code_;
};
} // namespace
class ActionProcessorTest : public ::testing::Test {
void SetUp() override {
action_processor_.set_delegate(&delegate_);
// Silence Type() calls used for logging.
mock_action_.reset(new testing::StrictMock<MockAction>());
mock_action_ptr_ = mock_action_.get();
action_.reset(new ActionProcessorTestAction());
action_ptr_ = action_.get();
EXPECT_CALL(*mock_action_, Type()).Times(testing::AnyNumber());
}
void TearDown() override { action_processor_.set_delegate(nullptr); }
protected:
// The ActionProcessor under test.
ActionProcessor action_processor_;
MyActionProcessorDelegate delegate_{&action_processor_};
// Common actions used during most tests.
std::unique_ptr<testing::StrictMock<MockAction>> mock_action_;
testing::StrictMock<MockAction>* mock_action_ptr_;
std::unique_ptr<ActionProcessorTestAction> action_;
ActionProcessorTestAction* action_ptr_;
};
TEST_F(ActionProcessorTest, SimpleTest) {
EXPECT_FALSE(action_processor_.IsRunning());
action_processor_.EnqueueAction(std::move(action_));
EXPECT_FALSE(action_processor_.IsRunning());
EXPECT_FALSE(action_ptr_->IsRunning());
action_processor_.StartProcessing();
EXPECT_TRUE(action_processor_.IsRunning());
EXPECT_TRUE(action_ptr_->IsRunning());
action_ptr_->CompleteAction();
EXPECT_FALSE(action_processor_.IsRunning());
EXPECT_EQ(action_processor_.current_action(), nullptr);
}
TEST_F(ActionProcessorTest, DelegateTest) {
action_processor_.EnqueueAction(std::move(action_));
action_processor_.StartProcessing();
action_ptr_->CompleteAction();
EXPECT_TRUE(delegate_.processing_done_called_);
EXPECT_TRUE(delegate_.action_completed_called_);
}
TEST_F(ActionProcessorTest, StopProcessingTest) {
action_processor_.EnqueueAction(std::move(action_));
action_processor_.StartProcessing();
action_processor_.StopProcessing();
EXPECT_TRUE(delegate_.processing_stopped_called_);
EXPECT_FALSE(delegate_.action_completed_called_);
EXPECT_FALSE(action_processor_.IsRunning());
EXPECT_EQ(nullptr, action_processor_.current_action());
}
TEST_F(ActionProcessorTest, ChainActionsTest) {
// This test doesn't use a delegate since it terminates several actions.
action_processor_.set_delegate(nullptr);
auto action0 = std::make_unique<ActionProcessorTestAction>();
auto action1 = std::make_unique<ActionProcessorTestAction>();
auto action2 = std::make_unique<ActionProcessorTestAction>();
auto action0_ptr = action0.get();
auto action1_ptr = action1.get();
auto action2_ptr = action2.get();
action_processor_.EnqueueAction(std::move(action0));
action_processor_.EnqueueAction(std::move(action1));
action_processor_.EnqueueAction(std::move(action2));
EXPECT_EQ(action_processor_.actions_.size(), 3u);
EXPECT_EQ(action_processor_.actions_[0].get(), action0_ptr);
EXPECT_EQ(action_processor_.actions_[1].get(), action1_ptr);
EXPECT_EQ(action_processor_.actions_[2].get(), action2_ptr);
action_processor_.StartProcessing();
EXPECT_EQ(action0_ptr, action_processor_.current_action());
EXPECT_TRUE(action_processor_.IsRunning());
action0_ptr->CompleteAction();
EXPECT_EQ(action1_ptr, action_processor_.current_action());
EXPECT_TRUE(action_processor_.IsRunning());
action1_ptr->CompleteAction();
EXPECT_EQ(action2_ptr, action_processor_.current_action());
EXPECT_TRUE(action_processor_.actions_.empty());
EXPECT_TRUE(action_processor_.IsRunning());
action2_ptr->CompleteAction();
EXPECT_EQ(nullptr, action_processor_.current_action());
EXPECT_TRUE(action_processor_.actions_.empty());
EXPECT_FALSE(action_processor_.IsRunning());
}
TEST_F(ActionProcessorTest, DefaultDelegateTest) {
// Just make sure it doesn't crash.
action_processor_.EnqueueAction(std::move(action_));
action_processor_.StartProcessing();
action_ptr_->CompleteAction();
action_.reset(new ActionProcessorTestAction());
action_processor_.EnqueueAction(std::move(action_));
action_processor_.StartProcessing();
action_processor_.StopProcessing();
}
// This test suspends and resume the action processor while running one action.
TEST_F(ActionProcessorTest, SuspendResumeTest) {
action_processor_.EnqueueAction(std::move(mock_action_));
testing::InSequence s;
EXPECT_CALL(*mock_action_ptr_, PerformAction());
action_processor_.StartProcessing();
EXPECT_CALL(*mock_action_ptr_, SuspendAction());
action_processor_.SuspendProcessing();
// Suspending the processor twice should not suspend the action twice.
action_processor_.SuspendProcessing();
// IsRunning should return whether there's is an action doing some work, even
// if it is suspended.
EXPECT_TRUE(action_processor_.IsRunning());
EXPECT_EQ(mock_action_ptr_, action_processor_.current_action());
EXPECT_CALL(*mock_action_ptr_, ResumeAction());
action_processor_.ResumeProcessing();
// Calling ResumeProcessing twice should not affect the action_.
action_processor_.ResumeProcessing();
action_processor_.ActionComplete(mock_action_ptr_, ErrorCode::kSuccess);
}
// This test suspends an action that presumably doesn't support suspend/resume
// and it finished before being resumed.
TEST_F(ActionProcessorTest, ActionCompletedWhileSuspendedTest) {
action_processor_.EnqueueAction(std::move(mock_action_));
testing::InSequence s;
EXPECT_CALL(*mock_action_ptr_, PerformAction());
action_processor_.StartProcessing();
EXPECT_CALL(*mock_action_ptr_, SuspendAction());
action_processor_.SuspendProcessing();
// Simulate the action completion while suspended. No other call to
// |mock_action_| is expected at this point.
action_processor_.ActionComplete(mock_action_ptr_, ErrorCode::kSuccess);
// The processing should not be done since the ActionProcessor is suspended
// and the processing is considered to be still running until resumed.
EXPECT_FALSE(delegate_.processing_done_called_);
EXPECT_TRUE(action_processor_.IsRunning());
action_processor_.ResumeProcessing();
EXPECT_TRUE(delegate_.processing_done_called_);
EXPECT_FALSE(delegate_.processing_stopped_called_);
}
TEST_F(ActionProcessorTest, StoppedWhileSuspendedTest) {
action_processor_.EnqueueAction(std::move(mock_action_));
testing::InSequence s;
EXPECT_CALL(*mock_action_ptr_, PerformAction());
action_processor_.StartProcessing();
EXPECT_CALL(*mock_action_ptr_, SuspendAction());
action_processor_.SuspendProcessing();
EXPECT_CALL(*mock_action_ptr_, TerminateProcessing());
action_processor_.StopProcessing();
// Stopping the processing should abort the current execution no matter what.
EXPECT_TRUE(delegate_.processing_stopped_called_);
EXPECT_FALSE(delegate_.processing_done_called_);
EXPECT_FALSE(delegate_.action_completed_called_);
EXPECT_FALSE(action_processor_.IsRunning());
EXPECT_EQ(nullptr, action_processor_.current_action());
}
} // namespace chromeos_update_engine