forked from matth-x/MicroOcpp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathVariables.cpp
More file actions
661 lines (531 loc) · 25.8 KB
/
Variables.cpp
File metadata and controls
661 lines (531 loc) · 25.8 KB
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
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
// matth-x/MicroOcpp
// Copyright Matthias Akstaller 2019 - 2024
// MIT License
#include <MicroOcpp/Version.h>
#if MO_ENABLE_V201
#include <MicroOcpp.h>
#include <MicroOcpp/Core/Connection.h>
#include <catch2/catch.hpp>
#include "./helpers/testHelper.h"
#include <MicroOcpp/Core/FilesystemAdapter.h>
#include <MicroOcpp/Core/FilesystemUtils.h>
#include <MicroOcpp/Model/Variables/VariableService.h>
#include <MicroOcpp/Core/Context.h>
#include <MicroOcpp/Core/Request.h>
#include <MicroOcpp/Operations/CustomOperation.h>
using namespace MicroOcpp;
#define GET_CONFIG_ALL "[2,\"test-msg\",\"GetVariable\",{}]"
#define KNOWN_KEY "__ExistingKey"
#define UNKOWN_KEY "__UnknownKey"
#define GET_CONFIG_KNOWN_UNKOWN "[2,\"test-mst\",\"GetVariable\",{\"key\":[\"" KNOWN_KEY "\",\"" UNKOWN_KEY "\"]}]"
TEST_CASE( "Variable" ) {
printf("\nRun %s\n", "Variable");
//clean state
auto filesystem = makeDefaultFilesystemAdapter(FilesystemOpt::Use_Mount_FormatOnFail);
FilesystemUtils::remove_if(filesystem, [] (const char*) {return true;});
SECTION("Basic container operations"){
auto container = std::unique_ptr<VariableContainerOwning>(new VariableContainerOwning());
//check emptyness
REQUIRE( container->size() == 0 );
//add first config, fetch by index
Variable::AttributeTypeSet attrs = Variable::AttributeType::Actual;
auto configFirst = makeVariable(Variable::InternalDataType::Int, attrs);
configFirst->setName("cFirst");
configFirst->setComponentId("mComponent");
auto configFirstRaw = configFirst.get();
REQUIRE( container->size() == 0 );
REQUIRE( container->add(std::move(configFirst)) );
REQUIRE( container->size() == 1 );
REQUIRE( container->getVariable((size_t) 0) == configFirstRaw);
//add one config of each type
auto cInt = makeVariable(Variable::InternalDataType::Int, attrs);
cInt->setName("cInt");
cInt->setComponentId("mComponent");
auto cBool = makeVariable(Variable::InternalDataType::Bool, attrs);
cBool->setName("cBool");
cBool->setComponentId("mComponent");
auto cBoolRaw = cBool.get();
auto cString = makeVariable(Variable::InternalDataType::String, attrs);
cString->setName("cString");
cString->setComponentId("mComponent");
container->add(std::move(cInt));
container->add(std::move(cBool));
container->add(std::move(cString));
REQUIRE( container->size() == 4 );
//fetch config by key
REQUIRE( container->getVariable(cBoolRaw->getComponentId(), cBoolRaw->getName()) == cBoolRaw);
}
SECTION("Persistency on filesystem") {
auto container = std::unique_ptr<VariableContainerOwning>(new VariableContainerOwning());
container->enablePersistency(filesystem, MO_FILENAME_PREFIX "persistent1.jsn");
//trivial load call
REQUIRE( container->load() );
REQUIRE( container->size() == 0 );
//add config, store, load again
auto cString = makeVariable(Variable::InternalDataType::String, Variable::AttributeType::Actual);
cString->setName("cString");
cString->setComponentId("mComponent");
cString->setString("mValue");
container->add(std::move(cString));
REQUIRE( container->size() == 1 );
REQUIRE( container->commit() ); //store
container.reset(); //destroy
//...load again
auto container2 = std::unique_ptr<VariableContainerOwning>(new VariableContainerOwning());
container2->enablePersistency(filesystem, MO_FILENAME_PREFIX "persistent1.jsn");
REQUIRE( container2->size() == 0 );
auto cString2 = makeVariable(Variable::InternalDataType::String, Variable::AttributeType::Actual);
cString2->setName("cString");
cString2->setComponentId("mComponent");
cString2->setString("mValue");
container2->add(std::move(cString2));
REQUIRE( container2->size() == 1 );
REQUIRE( container2->load() );
REQUIRE( container2->size() == 1 );
auto cString3 = container2->getVariable("mComponent", "cString");
REQUIRE( cString3 != nullptr );
REQUIRE( !strcmp(cString3->getString(), "mValue") );
}
LoopbackConnection loopback; //initialize Context with dummy socket
mocpp_set_timer(custom_timer_cb);
SECTION("Variable API") {
//declare configs
mocpp_initialize(loopback, ChargerCredentials(), filesystem, false, ProtocolVersion(2,0,1));
auto vs = getOcppContext()->getModel().getVariableService();
auto cInt = vs->declareVariable<int>("mComponent", "cInt", 42);
REQUIRE( cInt != nullptr );
vs->declareVariable<bool>("mComponent", "cBool", true);
vs->declareVariable<const char*>("mComponent", "cString", "mValue");
//fetch config
REQUIRE( vs->declareVariable("mComponent", "cInt", -1)->getInt() == 42 );
#if 0
//store, destroy, reload
REQUIRE( configuration_save() );
cInt.reset();
configuration_deinit();
REQUIRE( getVariablePublic("cInt") == nullptr);
REQUIRE( configuration_init(filesystem) ); //reload
//fetch configs (declare with different factory default - should remain at original value)
auto cInt2 = vs->declareVariable<int>("cInt", -1);
auto cBool2 = vs->declareVariable<bool>("cBool", false);
auto cString2 = vs->declareVariable<const char*>("cString", "no effect");
REQUIRE( configuration_load() ); //load config objects with stored values
//check load result
REQUIRE( cInt2->getInt() == 42 );
REQUIRE( cBool2->getBool() == true );
REQUIRE( !strcmp(cString2->getString(), "mValue") );
#else
auto cInt2 = cInt;
#endif
//declare config twice
auto cInt3 = vs->declareVariable<int>("mComponent", "cInt", -1);
REQUIRE( cInt3 == cInt2 );
#if 0
//store, destroy, reload
REQUIRE( configuration_save() );
configuration_deinit();
REQUIRE( getVariablePublic("cInt") == nullptr);
REQUIRE( configuration_init(filesystem) ); //reload
auto cNewType2 = vs->declareVariable<const char*>("cInt", "no effect");
REQUIRE( configuration_load() );
REQUIRE( !strcmp(cNewType2->getString(), "mValue2") );
//get config before declared (container needs to be declared already at this point)
auto cString3 = getVariablePublic("cString");
REQUIRE( !strcmp(cString3->getString(), "mValue") );
configuration_deinit();
//value needs to outlive container
configuration_init(filesystem);
auto cString4 = vs->declareVariable<const char *>("cString2", "mValue3");
configuration_deinit();
REQUIRE( !strcmp(cString4->getString(), "mValue3") );
FilesystemUtils::remove_if(filesystem, [] (const char*) {return true;});
#else
mocpp_deinitialize();
mocpp_initialize(loopback, ChargerCredentials(), filesystem, false, ProtocolVersion(2,0,1));
#endif
//config accessibility / permissions
vs = getOcppContext()->getModel().getVariableService();
Variable::Mutability mutability = Variable::Mutability::ReadWrite;
bool persistent = false;
Variable::AttributeTypeSet attrs = Variable::AttributeType::Actual;
bool rebootRequired = false;
auto cInt6 = vs->declareVariable<int>("mComponent", "cInt", 42, mutability, persistent, attrs, rebootRequired);
REQUIRE( cInt6->getMutability() == Variable::Mutability::ReadWrite );
REQUIRE( !cInt6->isPersistent() );
REQUIRE( !cInt6->isRebootRequired() );
REQUIRE( vs->declareVariable<int>("mComponent", "cInt", 42) );
//revoke permissions
mutability = Variable::Mutability::ReadOnly;
persistent = true;
rebootRequired = true;
vs->declareVariable<int>("mComponent", "cInt", 42, mutability, persistent, attrs, rebootRequired);
REQUIRE( cInt6->getMutability() == mutability );
REQUIRE( cInt6->isPersistent() );
REQUIRE( cInt6->isRebootRequired() );
//revoked permissions cannot be reverted
mutability = Variable::Mutability::ReadWrite;
persistent = false;
rebootRequired = false;
auto cInt7 = vs->declareVariable<int>("mComponent", "cInt", 42, mutability, persistent, attrs, rebootRequired);
REQUIRE( cInt7->getMutability() == Variable::Mutability::ReadOnly );
REQUIRE( cInt6->isPersistent() );
REQUIRE( cInt7->isRebootRequired() );
}
#if 0
SECTION("Main lib integration") {
//basic lifecycle
mocpp_initialize(loopback, ChargerCredentials(), filesystem, false, ProtocolVersion(2,0,1));
REQUIRE( getVariablePublic("ConnectionTimeOut") );
REQUIRE( !getVariableContainersPublic().empty() );
mocpp_deinitialize();
REQUIRE( !getVariablePublic("ConnectionTimeOut") );
REQUIRE( getVariableContainersPublic().empty() );
//modify standard config ConnectionTimeOut. This config is not modified by the main lib during normal initialization / deinitialization
mocpp_initialize(loopback, ChargerCredentials(), filesystem, false, ProtocolVersion(2,0,1));
auto config = getVariablePublic("ConnectionTimeOut");
config->setInt(1234); //update
configuration_save(); //write back
mocpp_deinitialize();
mocpp_initialize(loopback, ChargerCredentials(), filesystem, false, ProtocolVersion(2,0,1));
REQUIRE( getVariablePublic("ConnectionTimeOut")->getInt() == 1234 );
mocpp_deinitialize();
}
#endif
#if 0
SECTION("GetVariables") {
mocpp_initialize(loopback, ChargerCredentials(), filesystem, false, ProtocolVersion(2,0,1));
loop();
vs->declareVariable<int>(KNOWN_KEY, 1234, MO_FILENAME_PREFIX "persistent1.jsn", false);
bool checkProcessed = false;
getOcppContext()->initiateRequest(makeRequest(new Ocpp16::CustomOperation(
"GetVariables",
[] () {
//create req
auto doc = makeJsonDoc("UnitTests", JSON_OBJECT_SIZE(1));
auto payload = doc->to<JsonObject>();
return doc;},
[&checkProcessed] (JsonObject payload) {
//receive conf
checkProcessed = true;
JsonArray configurationKey = payload["configurationKey"];
bool foundCustomConfig = false;
bool foundStandardConfig = false;
for (JsonObject keyvalue : configurationKey) {
MO_DBG_DEBUG("key %s", keyvalue["key"] | "_Undefined");
if (!strcmp(keyvalue["key"] | "_Undefined", KNOWN_KEY)) {
foundCustomConfig = true;
REQUIRE( (keyvalue["readonly"] | true) == false );
REQUIRE( !strcmp(keyvalue["value"] | "_Undefined", "1234") );
} else if (!strcmp(keyvalue["key"] | "_Undefined", "ConnectionTimeOut")) {
foundStandardConfig = true;
}
}
REQUIRE( foundCustomConfig );
REQUIRE( foundStandardConfig );
}
)));
loop();
REQUIRE(checkProcessed);
checkProcessed = false;
getOcppContext()->initiateRequest(makeRequest(new Ocpp16::CustomOperation(
"GetVariable",
[] () {
//create req
auto doc = makeJsonDoc("UnitTests", JSON_OBJECT_SIZE(1) + JSON_ARRAY_SIZE(2));
auto payload = doc->to<JsonObject>();
auto key = payload.createNestedArray("key");
key.add(KNOWN_KEY);
key.add(UNKOWN_KEY);
return doc;},
[&checkProcessed] (JsonObject payload) {
//receive conf
checkProcessed = true;
JsonArray configurationKey = payload["configurationKey"];
bool foundCustomConfig = false;
for (JsonObject keyvalue : configurationKey) {
if (!strcmp(keyvalue["key"] | "_Undefined", KNOWN_KEY)) {
foundCustomConfig = true;
break;
}
}
REQUIRE( foundCustomConfig );
JsonArray unknownKey = payload["unknownKey"];
bool foundUnkownKey = false;
for (const char *key : unknownKey) {
if (!strcmp(key, UNKOWN_KEY)) {
foundUnkownKey = true;
}
}
REQUIRE( foundUnkownKey );
}
)));
loop();
REQUIRE(checkProcessed);
mocpp_deinitialize();
}
SECTION("ChangeVariable") {
mocpp_initialize(loopback, ChargerCredentials(), filesystem, false, ProtocolVersion(2,0,1));
loop();
vs->declareVariable<int>(KNOWN_KEY, 0, MO_FILENAME_PREFIX "persistent1.jsn", false);
//update existing config
bool checkProcessed = false;
getOcppContext()->initiateRequest(makeRequest(new Ocpp16::CustomOperation(
"ChangeVariable",
[] () {
//create req
auto doc = makeJsonDoc("UnitTests", JSON_OBJECT_SIZE(2));
auto payload = doc->to<JsonObject>();
payload["key"] = KNOWN_KEY;
payload["value"] = "1234";
return doc;},
[&checkProcessed] (JsonObject payload) {
//receive conf
checkProcessed = true;
REQUIRE( !strcmp(payload["status"] | "_Undefined", "Accepted") );
}
)));
loop();
REQUIRE(checkProcessed);
REQUIRE( getVariablePublic(KNOWN_KEY)->getInt() == 1234 );
//try to update not existing key
checkProcessed = false;
getOcppContext()->initiateRequest(makeRequest(new Ocpp16::CustomOperation(
"ChangeVariable",
[] () {
//create req
auto doc = makeJsonDoc("UnitTests", JSON_OBJECT_SIZE(2));
auto payload = doc->to<JsonObject>();
payload["key"] = UNKOWN_KEY;
payload["value"] = "no effect";
return doc;},
[&checkProcessed] (JsonObject payload) {
//receive conf
checkProcessed = true;
REQUIRE( !strcmp(payload["status"] | "_Undefined", "NotSupported") );
}
)));
loop();
REQUIRE( checkProcessed );
//try to update config with malformatted value
checkProcessed = false;
getOcppContext()->initiateRequest(makeRequest(new Ocpp16::CustomOperation(
"ChangeVariable",
[] () {
//create req
auto doc = makeJsonDoc("UnitTests", JSON_OBJECT_SIZE(2));
auto payload = doc->to<JsonObject>();
payload["key"] = KNOWN_KEY;
payload["value"] = "not convertible to int";
return doc;},
[&checkProcessed] (JsonObject payload) {
//receive conf
checkProcessed = true;
REQUIRE( !strcmp(payload["status"] | "_Undefined", "Rejected") );
}
)));
loop();
REQUIRE( checkProcessed );
//try to update config with value validation
//value is valid if it begins with 1
registerVariableValidator(KNOWN_KEY, [] (const char *v) {
return v[0] == '1';
});
//validation success
checkProcessed = false;
getOcppContext()->initiateRequest(makeRequest(new Ocpp16::CustomOperation(
"ChangeVariable",
[] () {
//create req
auto doc = makeJsonDoc("UnitTests", JSON_OBJECT_SIZE(2));
auto payload = doc->to<JsonObject>();
payload["key"] = KNOWN_KEY;
payload["value"] = "100234";
return doc;},
[&checkProcessed] (JsonObject payload) {
//receive conf
checkProcessed = true;
REQUIRE( !strcmp(payload["status"] | "_Undefined", "Accepted") );
}
)));
loop();
REQUIRE( checkProcessed );
REQUIRE( getVariablePublic(KNOWN_KEY)->getInt() == 100234 );
//validation failure
checkProcessed = false;
getOcppContext()->initiateRequest(makeRequest(new Ocpp16::CustomOperation(
"ChangeVariable",
[] () {
//create req
auto doc = makeJsonDoc("UnitTests", JSON_OBJECT_SIZE(2));
auto payload = doc->to<JsonObject>();
payload["key"] = KNOWN_KEY;
payload["value"] = "4321";
return doc;},
[&checkProcessed] (JsonObject payload) {
//receive conf
checkProcessed = true;
REQUIRE( !strcmp(payload["status"] | "_Undefined", "Rejected") );
}
)));
loop();
REQUIRE( checkProcessed );
REQUIRE( getVariablePublic(KNOWN_KEY)->getInt() == 100234 ); //keep old value
mocpp_deinitialize();
}
SECTION("Define factory defaults for standard configs") {
//set factory default for standard config ConnectionTimeOut
configuration_init(filesystem);
auto factoryConnectionTimeOut = vs->declareVariable<int>("ConnectionTimeOut", 1234, MO_FILENAME_PREFIX "factory.jsn");
mocpp_initialize(loopback, ChargerCredentials(), filesystem, false, ProtocolVersion(2,0,1));
auto connectionTimeout2 = vs->declareVariable<int>("ConnectionTimeOut", 4321);
REQUIRE( connectionTimeout2->getInt() == 1234 );
REQUIRE( connectionTimeout2 == factoryConnectionTimeOut );
configuration_save();
mocpp_deinitialize();
//this time, factory default is not given (will lead to duplicates, should be considered in sanitization)
mocpp_initialize(loopback, ChargerCredentials(), filesystem, false, ProtocolVersion(2,0,1));
REQUIRE( getVariablePublic("ConnectionTimeOut")->getInt() != 1234 );
mocpp_deinitialize();
//provide factory default again
configuration_init(filesystem);
vs->declareVariable<int>("ConnectionTimeOut", 4321, MO_FILENAME_PREFIX "factory.jsn");
mocpp_initialize(loopback, ChargerCredentials(), filesystem, false, ProtocolVersion(2,0,1));
REQUIRE( getVariablePublic("ConnectionTimeOut")->getInt() == 1234 );
mocpp_deinitialize();
}
#endif
SECTION("GetVariables request") {
mocpp_initialize(loopback, ChargerCredentials(), filesystem, false, ProtocolVersion(2,0,1));
auto vs = getOcppContext()->getModel().getVariableService();
auto varString = vs->declareVariable<const char*>("mComponent", "mString", "mValue");
REQUIRE( varString != nullptr );
REQUIRE( !strcmp(varString->getString(), "mValue") );
loop();
MO_MEM_RESET();
bool checkProcessed = false;
getOcppContext()->initiateRequest(makeRequest(
new Ocpp16::CustomOperation("GetVariables",
[] () {
//create req
auto doc = makeJsonDoc("UnitTests",
JSON_OBJECT_SIZE(1) +
JSON_ARRAY_SIZE(1) +
JSON_OBJECT_SIZE(2) +
JSON_OBJECT_SIZE(1) +
JSON_OBJECT_SIZE(1));
auto payload = doc->to<JsonObject>();
auto getVariableData = payload.createNestedArray("getVariableData");
getVariableData[0]["component"]["name"] = "mComponent";
getVariableData[0]["variable"]["name"] = "mString";
return doc;
},
[&checkProcessed] (JsonObject payload) {
//process conf
JsonArray getVariableResult = payload["getVariableResult"];
REQUIRE( !strcmp(getVariableResult[0]["attributeStatus"] | "_Undefined", "Accepted") );
REQUIRE( !strcmp(getVariableResult[0]["component"]["name"] | "_Undefined", "mComponent") );
REQUIRE( !strcmp(getVariableResult[0]["variable"]["name"] | "_Undefined", "mString") );
REQUIRE( !strcmp(getVariableResult[0]["attributeValue"] | "_Undefined", "mValue") );
checkProcessed = true;
})));
loop();
REQUIRE( checkProcessed );
MO_MEM_PRINT_STATS();
}
SECTION("SetVariables request") {
mocpp_initialize(loopback, ChargerCredentials(), filesystem, false, ProtocolVersion(2,0,1));
auto vs = getOcppContext()->getModel().getVariableService();
auto varString = vs->declareVariable<const char*>("mComponent", "mString", "");
REQUIRE( varString != nullptr );
REQUIRE( !strcmp(varString->getString(), "") );
loop();
MO_MEM_RESET();
bool checkProcessed = false;
getOcppContext()->initiateRequest(makeRequest(
new Ocpp16::CustomOperation("SetVariables",
[] () {
//create req
auto doc = makeJsonDoc("UnitTests",
JSON_OBJECT_SIZE(1) +
JSON_ARRAY_SIZE(1) +
JSON_OBJECT_SIZE(3) +
JSON_OBJECT_SIZE(1) +
JSON_OBJECT_SIZE(1));
auto payload = doc->to<JsonObject>();
auto setVariableData = payload.createNestedArray("setVariableData");
setVariableData[0]["component"]["name"] = "mComponent";
setVariableData[0]["variable"]["name"] = "mString";
setVariableData[0]["attributeValue"] = "mValue";
return doc;
},
[&checkProcessed] (JsonObject payload) {
//process conf
JsonArray setVariableResult = payload["setVariableResult"];
REQUIRE( !strcmp(setVariableResult[0]["attributeStatus"] | "_Undefined", "Accepted") );
REQUIRE( !strcmp(setVariableResult[0]["component"]["name"] | "_Undefined", "mComponent") );
REQUIRE( !strcmp(setVariableResult[0]["variable"]["name"] | "_Undefined", "mString") );
checkProcessed = true;
})));
loop();
REQUIRE( checkProcessed );
MO_MEM_PRINT_STATS();
}
SECTION("GetBaseReport request") {
mocpp_initialize(loopback, ChargerCredentials(), filesystem, false, ProtocolVersion(2,0,1));
auto vs = getOcppContext()->getModel().getVariableService();
auto varString = vs->declareVariable<const char*>("mComponent", "mString", "");
REQUIRE( varString != nullptr );
REQUIRE( !strcmp(varString->getString(), "") );
loop();
MO_MEM_RESET();
bool checkProcessedNotification = false;
Timestamp checkTimestamp;
getOcppContext()->getOperationRegistry().registerOperation("NotifyReport",
[&checkProcessedNotification, &checkTimestamp] () {
return new Ocpp16::CustomOperation("NotifyReport",
[ &checkProcessedNotification, &checkTimestamp] (JsonObject payload) {
//process req
checkProcessedNotification = true;
REQUIRE( (payload["requestId"] | -1) == 1);
checkTimestamp.setTime(payload["generatedAt"] | "_Undefined");
REQUIRE( (payload["seqNo"] | -1) == 0);
bool foundVar = false;
for (auto reportData : payload["reportData"].as<JsonArray>()) {
if (!strcmp(reportData["component"]["name"] | "_Undefined", "mComponent") &&
!strcmp(reportData["variable"]["name"] | "_Undefined", "mString")) {
foundVar = true;
}
}
REQUIRE( foundVar );
},
[] () {
//create conf
return createEmptyDocument();
});
});
bool checkProcessed = false;
getOcppContext()->initiateRequest(makeRequest(
new Ocpp16::CustomOperation("GetBaseReport",
[] () {
//create req
auto doc = makeJsonDoc("UnitTests",
JSON_OBJECT_SIZE(2));
auto payload = doc->to<JsonObject>();
payload["requestId"] = 1;
payload["reportBase"] = "FullInventory";
return doc;
},
[&checkProcessed] (JsonObject payload) {
//process conf
REQUIRE( !strcmp(payload["status"] | "_Undefined", "Accepted") );
checkProcessed = true;
})));
loop();
REQUIRE( checkProcessed );
REQUIRE( checkProcessedNotification );
REQUIRE( std::abs(getOcppContext()->getModel().getClock().now() - checkTimestamp) <= 10 );
MO_MEM_PRINT_STATS();
}
mocpp_deinitialize();
}
#endif // MO_ENABLE_V201