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
272
273
274
275
276
277
278
279
280
281
282
283
|
/**
* Copyright © 2019 IBM Corporation
*
* 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 "extensions/openpower-pels/data_interface.hpp"
#include "extensions/openpower-pels/host_notifier.hpp"
#include "mocks.hpp"
#include "pel_utils.hpp"
#include <fcntl.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <chrono>
#include <gtest/gtest.h>
using namespace openpower::pels;
using ::testing::_;
using ::testing::Invoke;
using ::testing::Return;
namespace fs = std::filesystem;
using namespace std::chrono;
const size_t actionFlags0Offset = 66;
const size_t actionFlags1Offset = 67;
class HostNotifierTest : public CleanPELFiles
{
public:
HostNotifierTest()
{
auto r = sd_event_default(&event);
EXPECT_TRUE(r >= 0);
}
~HostNotifierTest()
{
sd_event_unref(event);
}
protected:
sd_event* event;
};
/**
* @brief Create PEL with the specified action flags
*
* @param[in] actionFlagsMask - Optional action flags to use
*
* @return std::unique_ptr<PEL>
*/
std::unique_ptr<PEL> makePEL(uint16_t actionFlagsMask = 0)
{
static uint32_t obmcID = 1;
auto data = pelDataFactory(TestPELType::pelSimple);
data[actionFlags0Offset] |= actionFlagsMask >> 8;
data[actionFlags1Offset] |= actionFlagsMask & 0xFF;
auto pel = std::make_unique<PEL>(data, obmcID++);
pel->assignID();
pel->setCommitTime();
return pel;
}
// Test that host state change callbacks work
TEST_F(HostNotifierTest, TestHostStateChange)
{
MockDataInterface dataIface;
bool hostState = false;
bool called = false;
DataInterfaceBase::HostStateChangeFunc func = [&hostState,
&called](bool state) {
hostState = state;
called = true;
};
dataIface.subscribeToHostStateChange("test", func);
// callback called
dataIface.changeHostState(true);
EXPECT_TRUE(called);
EXPECT_TRUE(hostState);
// No change, not called
called = false;
dataIface.changeHostState(true);
EXPECT_FALSE(called);
// Called again
dataIface.changeHostState(false);
EXPECT_FALSE(hostState);
EXPECT_TRUE(called);
// Shouldn't get called after an unsubscribe
dataIface.unsubscribeFromHostStateChange("test");
called = false;
dataIface.changeHostState(true);
EXPECT_FALSE(called);
}
// Test dealing with how acked PELs are put on the
// notification queue.
TEST_F(HostNotifierTest, TestPolicyAckedPEL)
{
Repository repo{repoPath};
MockDataInterface dataIface;
std::unique_ptr<HostInterface> hostIface =
std::make_unique<MockHostInterface>(event, dataIface);
HostNotifier notifier{repo, dataIface, std::move(hostIface)};
auto pel = makePEL();
repo.add(pel);
// This is required
EXPECT_TRUE(notifier.enqueueRequired(pel->id()));
EXPECT_TRUE(notifier.notifyRequired(pel->id()));
// Not in the repo
EXPECT_FALSE(notifier.enqueueRequired(42));
EXPECT_FALSE(notifier.notifyRequired(42));
// Now set this PEL to host acked
repo.setPELHostTransState(pel->id(), TransmissionState::acked);
// Since it's acked, doesn't need to be enqueued or transmitted
EXPECT_FALSE(notifier.enqueueRequired(pel->id()));
EXPECT_FALSE(notifier.notifyRequired(pel->id()));
}
// Test the 'don't report' PEL flag
TEST_F(HostNotifierTest, TestPolicyDontReport)
{
Repository repo{repoPath};
MockDataInterface dataIface;
std::unique_ptr<HostInterface> hostIface =
std::make_unique<MockHostInterface>(event, dataIface);
HostNotifier notifier{repo, dataIface, std::move(hostIface)};
// dontReportToHostFlagBit
auto pel = makePEL(0x1000);
// Double check the action flag is still set
std::bitset<16> actionFlags = pel->userHeader().actionFlags();
EXPECT_TRUE(actionFlags.test(dontReportToHostFlagBit));
repo.add(pel);
// Don't need to send this to the host
EXPECT_FALSE(notifier.enqueueRequired(pel->id()));
}
// Test that hidden PELs need notification when there
// is no HMC.
TEST_F(HostNotifierTest, TestPolicyHiddenNoHMC)
{
Repository repo{repoPath};
MockDataInterface dataIface;
std::unique_ptr<HostInterface> hostIface =
std::make_unique<MockHostInterface>(event, dataIface);
HostNotifier notifier{repo, dataIface, std::move(hostIface)};
// hiddenFlagBit
auto pel = makePEL(0x4000);
// Double check the action flag is still set
std::bitset<16> actionFlags = pel->userHeader().actionFlags();
EXPECT_TRUE(actionFlags.test(hiddenFlagBit));
repo.add(pel);
// Still need to enqueue this
EXPECT_TRUE(notifier.enqueueRequired(pel->id()));
// Still need to send it
EXPECT_TRUE(notifier.notifyRequired(pel->id()));
}
// Don't need to enqueue a hidden log already acked by the HMC
TEST_F(HostNotifierTest, TestPolicyHiddenWithHMCAcked)
{
Repository repo{repoPath};
MockDataInterface dataIface;
std::unique_ptr<HostInterface> hostIface =
std::make_unique<MockHostInterface>(event, dataIface);
HostNotifier notifier{repo, dataIface, std::move(hostIface)};
// hiddenFlagBit
auto pel = makePEL(0x4000);
// Double check the action flag is still set
std::bitset<16> actionFlags = pel->userHeader().actionFlags();
EXPECT_TRUE(actionFlags.test(hiddenFlagBit));
repo.add(pel);
// No HMC yet, so required
EXPECT_TRUE(notifier.enqueueRequired(pel->id()));
repo.setPELHMCTransState(pel->id(), TransmissionState::acked);
// Not required anymore
EXPECT_FALSE(notifier.enqueueRequired(pel->id()));
}
// Test that changing the HMC manage status affects
// the policy with hidden log notification.
TEST_F(HostNotifierTest, TestPolicyHiddenWithHMCManaged)
{
Repository repo{repoPath};
MockDataInterface dataIface;
std::unique_ptr<HostInterface> hostIface =
std::make_unique<MockHostInterface>(event, dataIface);
HostNotifier notifier{repo, dataIface, std::move(hostIface)};
// hiddenFlagBit
auto pel = makePEL(0x4000);
repo.add(pel);
// The first time, the HMC managed is false
EXPECT_TRUE(notifier.notifyRequired(pel->id()));
dataIface.setHMCManaged(true);
// This time, HMC managed is true so no need to notify
EXPECT_FALSE(notifier.notifyRequired(pel->id()));
}
// Test that PELs are enqueued on startup
TEST_F(HostNotifierTest, TestStartup)
{
Repository repo{repoPath};
MockDataInterface dataIface;
// Give the repo 10 PELs to start with
for (int i = 0; i < 10; i++)
{
auto pel = makePEL();
repo.add(pel);
}
std::unique_ptr<HostInterface> hostIface =
std::make_unique<MockHostInterface>(event, dataIface);
HostNotifier notifier{repo, dataIface, std::move(hostIface)};
ASSERT_EQ(notifier.queueSize(), 10);
// Now add 10 more after the notifier is watching
for (int i = 0; i < 10; i++)
{
auto pel = makePEL();
repo.add(pel);
}
ASSERT_EQ(notifier.queueSize(), 20);
}
|