-
Notifications
You must be signed in to change notification settings - Fork 80
/
Copy pathtest_OTALogic.cpp
358 lines (283 loc) · 10.9 KB
/
test_OTALogic.cpp
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
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
/*
* Copyright (c) 2020 Arduino. All rights reserved.
*/
/**************************************************************************************
INCLUDE
**************************************************************************************/
#include <vector>
#include <algorithm>
#include <catch.hpp>
#include <fakeit.hpp>
#include <util/OTATestUtil.h>
#include <OTALogic.h>
#include <OTAStorage.h>
/**************************************************************************************
NAMESPACE
**************************************************************************************/
using namespace fakeit;
/**************************************************************************************
TEST HELPER
**************************************************************************************/
void simulateOTABinaryReception(OTALogic & ota_logic, ota::OTAData const & ota_test_data)
{
uint32_t bytes_written = 0;
uint32_t const bytes_to_write = sizeof(uint32_t) + sizeof(uint32_t) + ota_test_data.data.len;
for(; bytes_written < (bytes_to_write - MQTT_OTA_BUF_SIZE); bytes_written += MQTT_OTA_BUF_SIZE)
{
ota_logic.onOTADataReceived(ota_test_data.buf + bytes_written, MQTT_OTA_BUF_SIZE);
ota_logic.update();
}
if(bytes_written < bytes_to_write)
{
uint32_t const remaining_bytes = (bytes_to_write - bytes_written);
ota_logic.onOTADataReceived(ota_test_data.buf + bytes_written, remaining_bytes);
ota_logic.update();
}
}
/**************************************************************************************
TEST CODE
**************************************************************************************/
TEST_CASE("No OTA Storage configured", "[OTALogic-01]")
{
/* Perform test */
OTALogic ota_logic;
WHEN("OTALogic::update() is called")
{
ota_logic.update();
THEN("The OTA logic should be in the 'Error' state")
{
REQUIRE(ota_logic.state() == OTAState::Error);
}
THEN("The OTA error should be set to OTAError::NoOTAStorageConfigured")
{
REQUIRE(ota_logic.error() == OTAError::NoOTAStorageConfigured);
}
}
}
/**************************************************************************************/
TEST_CASE("OTAStorage initialisation fails", "[OTAStorage::init() -> returns false]")
{
Mock<OTAStorage> ota_storage;
/* Configure mock object */
When(Method(ota_storage, init)).Return(false);
Fake(Method(ota_storage, open));
Fake(Method(ota_storage, write));
Fake(Method(ota_storage, close));
Fake(Method(ota_storage, remove));
Fake(Method(ota_storage, rename));
Fake(Method(ota_storage, deinit));
/* Perform test */
OTALogic ota_logic;
ota_logic.setOTAStorage(ota_storage.get());
WHEN("OTALogic::update() is called")
{
ota_logic.update();
THEN("The OTA logic should be in the 'Error' state")
{
REQUIRE(ota_logic.state() == OTAState::Error);
}
THEN("The OTA error should be set to OTAError::StorageInitFailed")
{
REQUIRE(ota_logic.error() == OTAError::StorageInitFailed);
}
}
}
/**************************************************************************************/
TEST_CASE("OTAStorage opening of storage file fails", "[OTAStorage::open() -> returns false]")
{
Mock<OTAStorage> ota_storage;
/* Configure mock object */
When(Method(ota_storage, init)).Return(true);
When(Method(ota_storage, open)).Return(false);
Fake(Method(ota_storage, write));
Fake(Method(ota_storage, close));
Fake(Method(ota_storage, remove));
Fake(Method(ota_storage, rename));
Fake(Method(ota_storage, deinit));
/* Perform test */
OTALogic ota_logic;
ota_logic.setOTAStorage(ota_storage.get());
WHEN("OTALogic::update() is called and some bytes have been received")
{
uint8_t const SOME_FAKE_DATA[16] = {0};
ota_logic.onOTADataReceived(SOME_FAKE_DATA, sizeof(SOME_FAKE_DATA));
ota_logic.update();
THEN("The OTA logic should be in the 'Error' state")
{
REQUIRE(ota_logic.state() == OTAState::Error);
}
THEN("The OTA error should be set to OTAError::StorageOpenFailed")
{
REQUIRE(ota_logic.error() == OTAError::StorageOpenFailed);
}
}
}
/**************************************************************************************/
TEST_CASE("OTAStorage writing to storage file fails", "[OTAStorage::write() -> fails]")
{
Mock<OTAStorage> ota_storage;
/* Configure mock object */
When(Method(ota_storage, init)).Return(true);
When(Method(ota_storage, open)).Return(true);
When(Method(ota_storage, write)).AlwaysDo([](uint8_t const * const /* buf */, size_t const /* num_bytes */) -> size_t { return 0 /* should return num_bytes in case of success */;});
Fake(Method(ota_storage, close));
Fake(Method(ota_storage, remove));
Fake(Method(ota_storage, rename));
Fake(Method(ota_storage, deinit));
/* Perform test */
OTALogic ota_logic;
ota_logic.setOTAStorage(ota_storage.get());
WHEN("OTALogic::update() is called and some bytes have been received")
{
uint8_t const SOME_FAKE_DATA[16] = {0};
ota_logic.onOTADataReceived(SOME_FAKE_DATA, sizeof(SOME_FAKE_DATA));
ota_logic.update();
THEN("The OTA logic should be in the 'Error' state")
{
REQUIRE(ota_logic.state() == OTAState::Error);
}
THEN("The OTA error should be set to OTAError::StorageWriteFailed")
{
REQUIRE(ota_logic.error() == OTAError::StorageWriteFailed);
}
}
}
/**************************************************************************************/
TEST_CASE("Data overrun due to receiving too much data", "[OTALogic - Data Overrun]")
{
Mock<OTAStorage> ota_storage;
/* Configure mock object */
When(Method(ota_storage, init)).Return(true);
When(Method(ota_storage, open)).Return(true);
When(Method(ota_storage, write)).AlwaysDo([](uint8_t const * const /* buf */, size_t const num_bytes) -> size_t { return num_bytes; });
Fake(Method(ota_storage, close));
Fake(Method(ota_storage, remove));
Fake(Method(ota_storage, rename));
Fake(Method(ota_storage, deinit));
/* Perform test */
OTALogic ota_logic;
ota_logic.setOTAStorage(ota_storage.get());
WHEN("Too much data is received before OTALogic::update() is called again to process the incoming data")
{
uint8_t const SOME_FAKE_DATA[MQTT_OTA_BUF_SIZE] = {0};
ota_logic.onOTADataReceived(SOME_FAKE_DATA, MQTT_OTA_BUF_SIZE);
ota_logic.onOTADataReceived(SOME_FAKE_DATA, MQTT_OTA_BUF_SIZE);
ota_logic.update();
THEN("The OTA logic should be in the 'Error' state")
{
REQUIRE(ota_logic.state() == OTAState::Error);
}
THEN("The OTA error should be set to OTAError::ReceivedDataOverrun")
{
REQUIRE(ota_logic.error() == OTAError::ReceivedDataOverrun);
}
}
}
/**************************************************************************************/
TEST_CASE("Valid OTA data is received ", "[OTALogic]")
{
Mock<OTAStorage> ota_storage;
std::vector<uint8_t> ota_binary_data;
/* Configure mock object */
When(Method(ota_storage, init)).Return(true);
When(Method(ota_storage, open)).Return(true);
When(Method(ota_storage, write)).AlwaysDo(
[&ota_binary_data](uint8_t const * const buf, size_t const num_bytes) -> size_t
{
std::copy(buf, buf + num_bytes, std::back_inserter(ota_binary_data));
return num_bytes;
});
Fake(Method(ota_storage, close));
Fake(Method(ota_storage, remove));
When(Method(ota_storage, rename)).Return(true);
Fake(Method(ota_storage, deinit));
/* Generate test data */
ota::OTAData valid_ota_test_data;
ota::generate_valid_ota_data(valid_ota_test_data);
/* Perform test */
OTALogic ota_logic;
ota_logic.setOTAStorage(ota_storage.get());
simulateOTABinaryReception(ota_logic, valid_ota_test_data);
/* Perform checks */
THEN("the complete binary file should have been written to the OTA storage")
{
REQUIRE(ota_binary_data.size() == valid_ota_test_data.data.len);
REQUIRE(std::equal(ota_binary_data.begin(),
ota_binary_data.end(),
valid_ota_test_data.data.bin));
}
THEN("The temporary file UPDATE.BIN.TMP should have been renamed to UPDATE.BIN")
{
Verify(Method(ota_storage, rename)).Once();
}
THEN("The OTA logic should be in the 'Reset' state")
{
REQUIRE(ota_logic.state() == OTAState::Reset);
}
THEN("No OTA error should have occurred")
{
REQUIRE(ota_logic.error() == OTAError::None);
}
}
/**************************************************************************************/
TEST_CASE("Valid OTA data is received but the rename step failed (identical too device being turned off during writing of file)", "[OTALogic - Rename fail]")
{
Mock<OTAStorage> ota_storage;
/* Configure mock object */
When(Method(ota_storage, init)).Return(true);
When(Method(ota_storage, open)).Return(true);
When(Method(ota_storage, write)).AlwaysDo([](uint8_t const * const /* buf */, size_t const num_bytes) -> size_t { return num_bytes; });
Fake(Method(ota_storage, close));
Fake(Method(ota_storage, remove));
When(Method(ota_storage, rename)).Return(false);
Fake(Method(ota_storage, deinit));
/* Generate test data */
ota::OTAData valid_ota_test_data;
ota::generate_valid_ota_data(valid_ota_test_data);
/* Perform test */
OTALogic ota_logic;
ota_logic.setOTAStorage(ota_storage.get());
simulateOTABinaryReception(ota_logic, valid_ota_test_data);
/* Perform checks */
THEN("The OTA logic should be in the 'Error' state")
{
REQUIRE(ota_logic.state() == OTAState::Error);
}
THEN("The OTA error should be set to OTAError::RenameOfTempFileFailed")
{
REQUIRE(ota_logic.error() == OTAError::RenameOfTempFileFailed);
}
}
/**************************************************************************************/
TEST_CASE("Invalid OTA data is received ", "[OTALogic - CRC wrong]")
{
Mock<OTAStorage> ota_storage;
/* Configure mock object */
When(Method(ota_storage, init)).Return(true);
When(Method(ota_storage, open)).Return(true);
When(Method(ota_storage, write)).AlwaysDo([](uint8_t const * const /* buf */, size_t const num_bytes) -> size_t { return num_bytes; });
Fake(Method(ota_storage, close));
Fake(Method(ota_storage, remove));
Fake(Method(ota_storage, rename));
Fake(Method(ota_storage, deinit));
/* Generate test data */
ota::OTAData invalid_valid_ota_test_data_crc_wrong;
ota::generate_invalid_ota_data_crc_wrong(invalid_valid_ota_test_data_crc_wrong);
/* Perform test */
OTALogic ota_logic;
ota_logic.setOTAStorage(ota_storage.get());
simulateOTABinaryReception(ota_logic, invalid_valid_ota_test_data_crc_wrong);
/* Perform checks */
THEN("there should be no binary file be stored on the OTA storage")
{
Verify(Method(ota_storage, remove)).Once();
}
THEN("The OTA logic should be in the 'Error' state")
{
REQUIRE(ota_logic.state() == OTAState::Error);
}
THEN("The OTA error should be set to OTAError::ChecksumMismatch")
{
REQUIRE(ota_logic.error() == OTAError::ChecksumMismatch);
}
}