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
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350 | // Copyright (C) 2018-2024 Internet Systems Consortium, Inc. ("ISC")
//
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
#include <config.h>
#include <ha_test.h><--- Include file: not found. Please note: Cppcheck does not need standard library headers to get proper results.
#include <asiolink/asio_wrapper.h>
#include <communication_state.h><--- Include file: not found. Please note: Cppcheck does not need standard library headers to get proper results.
#include <asiolink/interval_timer.h>
#include <asiolink/io_service.h>
#include <dhcp/dhcp4.h>
#include <dhcp/dhcp6.h>
#include <exceptions/exceptions.h>
#include <http/date_time.h>
#include <testutils/gtest_utils.h>
#include <testutils/test_to_element.h>
#include <util/multi_threading_mgr.h>
#include <boost/date_time/posix_time/posix_time.hpp><--- Include file: not found. Please note: Cppcheck does not need standard library headers to get proper results.
#include <gtest/gtest.h><--- Include file: not found. Please note: Cppcheck does not need standard library headers to get proper results.
#include <functional><--- Include file: not found. Please note: Cppcheck does not need standard library headers to get proper results.
#include <limits><--- Include file: not found. Please note: Cppcheck does not need standard library headers to get proper results.
#include <sstream><--- Include file: not found. Please note: Cppcheck does not need standard library headers to get proper results.
using namespace isc;
using namespace isc::asiolink;
using namespace isc::data;
using namespace isc::dhcp;
using namespace isc::ha;
using namespace isc::ha::test;
using namespace isc::http;
using namespace isc::test;
using namespace isc::util;
using namespace boost::posix_time;
using namespace boost::gregorian;
using namespace std;
namespace {
/// @brief Test fixture class for @c CommunicationState class.
class CommunicationStateTest : public HATest {
public:
/// @brief Constructor.
CommunicationStateTest()
: state_(io_service_, createValidConfiguration()),
state6_(io_service_, createValidConfiguration()) {
MultiThreadingMgr::instance().setMode(false);
}
/// @brief Destructor.
~CommunicationStateTest() {
MultiThreadingMgr::instance().setMode(false);
io_service_->poll();
}
/// @brief Verifies that the partner state is set and retrieved correctly.
void partnerStateTest();
/// @brief Verifies that the partner state is set to unavailable.
///
/// Whether or not the function under test also resets the clock skew is
/// tested in a different test case.
void partnerStateUnavailableTest();
/// @brief Verifies that the duration since the partner state time is updated
/// correctly when the partner has certain state.
void partnerStateTimeExplicitStateTest();
/// @brief Verifies that the duration since the partner state time is updated
/// correctly when the partner is unavailable.
void partnerStateTimeUnavailableTest();
/// @brief Verifies that the partner's scopes are set and retrieved correctly.
void partnerScopesTest();
/// @brief Verifies that the object is poked right after construction.
void initialDurationTest();
/// @brief Verifies that poking the state updates the returned duration.
void pokeTest();
/// @brief Test that heartbeat function is triggered.
void heartbeatTest();
/// @brief Test that invalid values provided to startHeartbeat are rejected.
void startHeartbeatInvalidValuesTest();
/// @brief Test that failure detection works properly for DHCPv4 case.
void detectFailureV4Test();
/// @brief This test verifies that it is possible to disable analysis of the DHCPv4
/// packets in which case the partner's failure is assumed when there is
/// no connection over the control channel.
void failureDetectionDisabled4Test();
/// @brief Test that failure detection works properly for DHCPv6 case.
void detectFailureV6Test();
/// @brief This test verifies that it is possible to disable analysis of the DHCPv6
/// packets in which case the partner's failure is assumed when there is
/// no connection over the control channel.
void failureDetectionDisabled6Test();
/// @brief This test verifies that the clock skew is checked properly by the
/// clockSkewShouldWarn and clockSkewShouldTerminate functions.
void clockSkewTest();
/// @brief This test verifies that the clock skew calculations take into
/// account whether or not the partner is available.
void clockSkewPartnerUnavailableTest();
/// @brief This test verifies that the clock skew value is formatted correctly
/// for logging.
void logFormatClockSkewTest();
/// @brief This test verifies that too many rejected lease updates cause
/// the service termination.
void rejectedLeaseUpdatesTerminateTest();
/// @brief Tests that the communication state report is correct.
void getReportTest();
/// @brief Tests unusual values used to create the report.
void getReportDefaultValuesTest();
/// @brief Tests the report when clock is skewed.
void getReportWithClockSkewTest();
/// @brief Tests that unsent updates count can be incremented and fetched.
void getUnsentUpdateCountTest();
/// @brief Tests that unsent updates count from partner can be set and
/// a difference from previous value detected.
void hasPartnerNewUnsentUpdatesTest();
/// @brief Test that gathering rejected leases works fine in DHCPv4 case.
void reportRejectedLeasesV4Test();
/// @brief Test that rejected leases are cleared after reporting respective
/// successful leases.
void reportSuccessfulLeasesV4Test();
/// @brief Test that invalid values are not accepted when reporting
/// rejected leases.
void reportRejectedLeasesV4InvalidValuesTest();
/// @brief Test that gathering rejected leases works fine in the DHCPv6 case.
void reportRejectedLeasesV6Test();
/// @brief Test that rejected leases are cleared after reporting respective
/// successful leases.
void reportSuccessfulLeasesV6Test();
/// @brief Test that invalid values are not accepted when reporting
/// rejected leases.
void reportRejectedLeasesV6InvalidValuesTest();
/// @brief Test that old rejected lease updates are discarded while
/// getting the rejected lease updates count.
void getRejectedLeaseUpdatesCountFromContainerTest();
/// @brief Returns test heartbeat implementation.
///
/// @return Pointer to heartbeat implementation function under test.
std::function<void()> getHeartbeatImpl() {
return (std::bind(&CommunicationStateTest::heartbeatImpl, this));
}
/// @brief Test heartbeat implementation.
///
/// It simply pokes the communication state object. Note that the real
/// implementation would send an actual heartbeat command prior to
/// poking the state.
void heartbeatImpl() {
state_.poke();
}
/// @brief Communication state object used throughout the tests.
NakedCommunicationState4 state_;
/// @brief Communication state for IPv6 used throughout the tests.
NakedCommunicationState6 state6_;
};
// Verifies that the partner state is set and retrieved correctly.
void
CommunicationStateTest::partnerStateTest() {
// Initially the state is unknown.
EXPECT_LT(state_.getPartnerState(), 0);
state_.setPartnerState("hot-standby");
EXPECT_EQ(HA_HOT_STANDBY_ST, state_.getPartnerState());
state_.setPartnerState("load-balancing");
EXPECT_EQ(HA_LOAD_BALANCING_ST, state_.getPartnerState());
state_.setPartnerState("partner-down");
EXPECT_EQ(HA_PARTNER_DOWN_ST, state_.getPartnerState());
state_.setPartnerState("ready");
EXPECT_EQ(HA_READY_ST, state_.getPartnerState());
state_.setPartnerState("syncing");
EXPECT_EQ(HA_SYNCING_ST, state_.getPartnerState());
state_.setPartnerState("terminated");
EXPECT_EQ(HA_TERMINATED_ST, state_.getPartnerState());
state_.setPartnerState("waiting");
EXPECT_EQ(HA_WAITING_ST, state_.getPartnerState());
state_.setPartnerState("unavailable");
EXPECT_EQ(HA_UNAVAILABLE_ST, state_.getPartnerState());
// An attempt to set unsupported value should result in exception.
EXPECT_THROW(state_.setPartnerState("unsupported"), BadValue);
}
// Verifies that the duration since the partner state time is updated
// correctly when the partner has certain state.
void
CommunicationStateTest::partnerStateTimeExplicitStateTest() {
// Initially the partner state time is not set.
time_duration duration_since_partner_time = state_.getDurationSincePartnerStateTime();
EXPECT_TRUE(duration_since_partner_time.is_not_a_date_time());
// Set new partner state. The state time should be set close
// to the current time.
state_.setPartnerState("waiting");
// Sleep for a short period of time to ensure that the returned
// duration is non-zero.
usleep(10);
// The duration must be set.
time_duration duration_since_waiting = state_.getDurationSincePartnerStateTime();
ASSERT_FALSE(duration_since_waiting.is_not_a_date_time());
// Check that the partner time is within 10 seconds range from
// the current time. 10 seconds difference may sound too high but
// this test is not about the precision. It is more important that
// it is stable. In the HA state machine the duration of 10 seconds
// is relatively low anyway.
EXPECT_GT(duration_since_waiting.fractional_seconds(), 0);
EXPECT_LT(duration_since_waiting.seconds(), 10);
}
// Verifies that the duration since the partner state time is updated
// correctly when the partner is unavailable.
void
CommunicationStateTest::partnerStateTimeUnavailableTest() {
// Initially the partner state time is not set.
time_duration duration_since_partner_time = state_.getDurationSincePartnerStateTime();
EXPECT_TRUE(duration_since_partner_time.is_not_a_date_time());
// Set new partner state. The state time should be set close
// to the current time.
state_.setPartnerUnavailable();
// Sleep for a short period of time to ensure that the returned
// duration is non-zero.
usleep(10);
// The duration must be set.
time_duration duration_since_unavail = state_.getDurationSincePartnerStateTime();
ASSERT_FALSE(duration_since_unavail.is_not_a_date_time());
// Check that the partner time is within 10 seconds range from
// the current time. 10 seconds difference may sound too high but
// this test is not about the precision. It is more important that
// it is stable. In the HA state machine the duration of 10 seconds
// is relatively low anyway.
EXPECT_GT(duration_since_unavail.fractional_seconds(), 0);
EXPECT_LT(duration_since_unavail.seconds(), 10);
}
// Verifies that the partner state is set to unavailable.
void
CommunicationStateTest::partnerStateUnavailableTest() {
// Initially the state is unknown.
EXPECT_LT(state_.getPartnerState(), 0);
// Set a valid state initially.
state_.setPartnerState("hot-standby");
EXPECT_EQ(HA_HOT_STANDBY_ST, state_.getPartnerState());
state_.setPartnerUnavailable();
EXPECT_EQ(HA_UNAVAILABLE_ST, state_.getPartnerState());
}
// Verifies that the partner's scopes are set and retrieved correctly.
void
CommunicationStateTest::partnerScopesTest() {
// Initially, the scopes should be empty.
ASSERT_TRUE(state_.getPartnerScopes().empty());
// Set new partner scopes.
ASSERT_NO_THROW(
state_.setPartnerScopes(Element::fromJSON("[ \"server1\", \"server2\" ]"))
);
// Get them back.
auto returned = state_.getPartnerScopes();
EXPECT_EQ(2, returned.size());
EXPECT_EQ(1, returned.count("server1"));
EXPECT_EQ(1, returned.count("server2"));
// Override the scopes.
ASSERT_NO_THROW(
state_.setPartnerScopes(Element::fromJSON("[ \"server1\" ]"))
);
returned = state_.getPartnerScopes();
EXPECT_EQ(1, returned.size());
EXPECT_EQ(1, returned.count("server1"));
// Clear the scopes.
ASSERT_NO_THROW(
state_.setPartnerScopes(Element::fromJSON("[ ]"))
);
returned = state_.getPartnerScopes();
EXPECT_TRUE(returned.empty());
// An attempt to set invalid JSON should fail.
EXPECT_THROW(state_.setPartnerScopes(Element::fromJSON("{ \"not-a-list\": 1 }")),
BadValue);
}
// Verifies that the object is poked right after construction.
void
CommunicationStateTest::initialDurationTest() {
EXPECT_TRUE(state_.isPoked());
}
// Verifies that poking the state updates the returned duration.
void
CommunicationStateTest::pokeTest() {
state_.modifyPokeTime(-30);
ASSERT_GE(state_.getDurationInMillisecs(), 30000);
ASSERT_TRUE(state_.isCommunicationInterrupted());
ASSERT_NO_THROW(state_.poke());
EXPECT_TRUE(state_.isPoked());
EXPECT_FALSE(state_.isCommunicationInterrupted());
}
// Test that heartbeat function is triggered.
void
CommunicationStateTest::heartbeatTest() {
// Set poke time to the past and expect that the object is considered
// not poked.
state_.modifyPokeTime(-30);
EXPECT_FALSE(state_.isPoked());
// Run heartbeat every 1 second.
ASSERT_NO_THROW(state_.startHeartbeat(1, getHeartbeatImpl()));
runIOService(1200);
// After > than 1 second the state should have been poked.
EXPECT_TRUE(state_.isPoked());
// Repeat the test.
state_.modifyPokeTime(-30);
EXPECT_FALSE(state_.isPoked());
ASSERT_NO_THROW(state_.startHeartbeat(1, getHeartbeatImpl()));
runIOService(1200);
EXPECT_TRUE(state_.isPoked());
}
// Test that invalid values provided to startHeartbeat are rejected.
void
CommunicationStateTest::startHeartbeatInvalidValuesTest() {
EXPECT_THROW(state_.startHeartbeat(-1, getHeartbeatImpl()), BadValue);
EXPECT_THROW(state_.startHeartbeat(0, getHeartbeatImpl()), BadValue);
EXPECT_THROW(state_.startHeartbeat(1, 0), BadValue);
}
// Test that failure detection works properly for DHCPv4 case.
void
CommunicationStateTest::detectFailureV4Test() {
// Initially, there should be no unacked clients recorded.
ASSERT_FALSE(state_.failureDetected());
EXPECT_EQ(0, state_.getUnackedClientsCount());
EXPECT_EQ(0, state_.getConnectingClientsCount());
EXPECT_EQ(0, state_.getAnalyzedMessagesCount());
// The maximum number of unacked clients is 10. Let's provide 10
// DHCPDISCOVER messages with the "secs" value of 15 which exceeds
// the threshold of 10. All these clients should be recorded as
// unacked.
for (uint8_t i = 0; i < 10; ++i) {
// Some of the requests have no client identifier to test that
// we don't fall over if the client identifier is null.
const uint8_t client_id_seed = (i < 5 ? i : 0);
ASSERT_NO_THROW(state_.analyzeMessage(createMessage4(DHCPDISCOVER, i,
client_id_seed,
15)));
// We don't exceed the maximum of number of unacked clients so the
// partner failure shouldn't be reported.
ASSERT_FALSE(state_.failureDetected())
<< "failure detected for the request number "
<< static_cast<int>(i);
}
EXPECT_EQ(10, state_.getUnackedClientsCount());
EXPECT_EQ(10, state_.getConnectingClientsCount());
EXPECT_EQ(10, state_.getAnalyzedMessagesCount());
// Let's provide similar set of requests but this time the "secs" field is
// below the threshold. They should not be counted as failures. Also,
// all of these requests have client identifier.
for (uint8_t i = 0; i < 10; ++i) {
ASSERT_NO_THROW(state_.analyzeMessage(createMessage4(DHCPDISCOVER, i, i,
9)));
ASSERT_FALSE(state_.failureDetected())
<< "failure detected for the request number "
<< static_cast<int>(i);
}
EXPECT_EQ(10, state_.getUnackedClientsCount());
EXPECT_EQ(15, state_.getConnectingClientsCount());
EXPECT_EQ(20, state_.getAnalyzedMessagesCount());
// Let's create a message from a new (not recorded yet) client with the
// "secs" field value below the threshold. It should not be counted as failure.
ASSERT_NO_THROW(state_.analyzeMessage(createMessage4(DHCPDISCOVER, 10, 10, 6)));
// Still no failure.
ASSERT_FALSE(state_.failureDetected());
EXPECT_EQ(10, state_.getUnackedClientsCount());
EXPECT_EQ(16, state_.getConnectingClientsCount());
EXPECT_EQ(21, state_.getAnalyzedMessagesCount());
// Let's repeat one of the requests which already have been recorded as
// unacked but with a greater value of "secs" field. This should not
// be counted because only new clients count.
ASSERT_NO_THROW(state_.analyzeMessage(createMessage4(DHCPDISCOVER, 3, 3, 20)));
ASSERT_FALSE(state_.failureDetected());
EXPECT_EQ(10, state_.getUnackedClientsCount());
EXPECT_EQ(16, state_.getConnectingClientsCount());
EXPECT_EQ(22, state_.getAnalyzedMessagesCount());
// This time let's simulate a client with a MAC address already recorded but
// with a client identifier. This should be counted as a new unacked request.
ASSERT_NO_THROW(state_.analyzeMessage(createMessage4(DHCPDISCOVER, 7, 7, 15)));
ASSERT_TRUE(state_.failureDetected());
EXPECT_EQ(11, state_.getUnackedClientsCount());
EXPECT_EQ(16, state_.getConnectingClientsCount());
EXPECT_EQ(23, state_.getAnalyzedMessagesCount());
// Poking should cause all counters to reset as it is an indication that the
// control connection has been re-established.
ASSERT_NO_THROW(state_.poke());
// We're back to no failure state.
EXPECT_FALSE(state_.failureDetected());
EXPECT_EQ(0, state_.getUnackedClientsCount());
EXPECT_EQ(0, state_.getConnectingClientsCount());
EXPECT_EQ(0, state_.getAnalyzedMessagesCount());
// Send 11 DHCPDISCOVER messages with the "secs" field bytes swapped. Swapping
// bytes was reported for some misbehaving Windows clients. The server should
// detect bytes swapping when second byte is 0 and the first byte is non-zero.
// However, the first byte is equal to 5 which is below our threshold so none
// of the requests below should count as unacked.
for (uint8_t i = 0; i < 11; ++i) {
ASSERT_NO_THROW(state_.analyzeMessage(createMessage4(DHCPDISCOVER, i, i,
0x0500)));
ASSERT_FALSE(state_.failureDetected())
<< "failure detected for the request number "
<< static_cast<int>(i)
<< " when testing swapped secs field bytes";
}
EXPECT_EQ(0, state_.getUnackedClientsCount());
EXPECT_EQ(11, state_.getConnectingClientsCount());
EXPECT_EQ(11, state_.getAnalyzedMessagesCount());
// Repeat the same test, but this time either the first byte exceeds the
// secs threshold or the second byte is non-zero. All should be counted
// as unacked.
for (uint8_t i = 0; i < 10; ++i) {
uint16_t secs = (i % 2 == 0 ? 0x0F00 : 0x0501);
ASSERT_NO_THROW(state_.analyzeMessage(createMessage4(DHCPDISCOVER, i, i,
secs)));
ASSERT_FALSE(state_.failureDetected())
<< "failure detected for the request number "
<< static_cast<int>(i)
<< " when testing swapped secs field bytes";
}
// This last message should cause the failure state.
ASSERT_NO_THROW(state_.analyzeMessage(createMessage4(DHCPDISCOVER, 11, 11,
0x30)));
EXPECT_TRUE(state_.failureDetected());
EXPECT_EQ(11, state_.getUnackedClientsCount());
EXPECT_EQ(12, state_.getConnectingClientsCount());
EXPECT_EQ(22, state_.getAnalyzedMessagesCount());
}
// This test verifies that it is possible to disable analysis of the DHCPv4
// packets in which case the partner's failure is assumed when there is
// no connection over the control channel.
void
CommunicationStateTest::failureDetectionDisabled4Test() {
state_.config_->setMaxUnackedClients(0);
EXPECT_TRUE(state_.failureDetected());
}
// Test that failure detection works properly for DHCPv6 case.
void
CommunicationStateTest::detectFailureV6Test() {
// Initially, there should be no unacked clients recorded.
ASSERT_FALSE(state6_.failureDetected());
EXPECT_EQ(0, state6_.getUnackedClientsCount());
EXPECT_EQ(0, state6_.getConnectingClientsCount());
EXPECT_EQ(0, state6_.getAnalyzedMessagesCount());
// The maximum number of unacked clients is 10. Let's provide 10
// Solicit messages with the "elapsed time" value of 1500 which exceeds
// the threshold of 10000ms. Note that the elapsed time value is provided
// in 1/100s of 1 second. All these clients should be recorded as
// unacked.
for (uint8_t i = 0; i < 10; ++i) {
ASSERT_NO_THROW(state6_.analyzeMessage(createMessage6(DHCPV6_SOLICIT, i,
1500)));
// We don't exceed the maximum number of unacked clients so the
// partner failure shouldn't be reported.
ASSERT_FALSE(state6_.failureDetected())
<< "failure detected for the request number "
<< static_cast<int>(i);
}
EXPECT_EQ(10, state6_.getUnackedClientsCount());
EXPECT_EQ(10, state6_.getConnectingClientsCount());
EXPECT_EQ(10, state6_.getAnalyzedMessagesCount());
// Let's provide similar set of requests but this time the "elapsed time" is
// below the threshold. This should not reduce the number of unacked or new
// clients.
for (uint8_t i = 0; i < 10; ++i) {
ASSERT_NO_THROW(state6_.analyzeMessage(createMessage6(DHCPV6_SOLICIT, i,
900)));
ASSERT_FALSE(state6_.failureDetected())
<< "failure detected for the request number "
<< static_cast<int>(i);
}
EXPECT_EQ(10, state6_.getUnackedClientsCount());
EXPECT_EQ(10, state6_.getConnectingClientsCount());
EXPECT_EQ(20, state6_.getAnalyzedMessagesCount());
// Let's create a message from a new (not recorded yet) client with the
// "elapsed time" value below the threshold. It should not count as failure.
ASSERT_NO_THROW(state6_.analyzeMessage(createMessage6(DHCPV6_SOLICIT, 10, 600)));
// Still no failure.
ASSERT_FALSE(state6_.failureDetected());
EXPECT_EQ(10, state6_.getUnackedClientsCount());
EXPECT_EQ(11, state6_.getConnectingClientsCount());
EXPECT_EQ(21, state6_.getAnalyzedMessagesCount());
// Let's repeat one of the requests which already have been recorded as
// unacked but with a greater value of "elapsed time". This should not
// be counted because only new clients count.
ASSERT_NO_THROW(state6_.analyzeMessage(createMessage6(DHCPV6_SOLICIT, 3, 2000)));
ASSERT_FALSE(state6_.failureDetected());
EXPECT_EQ(10, state6_.getUnackedClientsCount());
EXPECT_EQ(11, state6_.getConnectingClientsCount());
EXPECT_EQ(22, state6_.getAnalyzedMessagesCount());
// New unacked client should cause failure to be detected.
ASSERT_NO_THROW(state6_.analyzeMessage(createMessage6(DHCPV6_SOLICIT, 11, 1500)));
ASSERT_TRUE(state6_.failureDetected());
EXPECT_EQ(11, state6_.getUnackedClientsCount());
EXPECT_EQ(12, state6_.getConnectingClientsCount());
EXPECT_EQ(23, state6_.getAnalyzedMessagesCount());
// Poking should cause all counters to reset as it is an indication that the
// control connection has been re-established.
ASSERT_NO_THROW(state6_.poke());
// We're back to no failure state.
EXPECT_FALSE(state6_.failureDetected());
EXPECT_EQ(0, state6_.getUnackedClientsCount());
EXPECT_EQ(0, state6_.getConnectingClientsCount());
EXPECT_EQ(0, state6_.getAnalyzedMessagesCount());
}
// This test verifies that it is possible to disable analysis of the DHCPv6
// packets in which case the partner's failure is assumed when there is
// no connection over the control channel.
void
CommunicationStateTest::failureDetectionDisabled6Test() {
state6_.config_->setMaxUnackedClients(0);
EXPECT_TRUE(state6_.failureDetected());
}
// This test verifies that the clock skew is checked properly by the
// clockSkewShouldWarn and clockSkewShouldTerminate functions.
void
CommunicationStateTest::clockSkewTest() {
// Default clock skew is 0.
EXPECT_FALSE(state_.clockSkewShouldWarn());
EXPECT_FALSE(state_.clockSkewShouldTerminate());
state_.setPartnerTime(HttpDateTime().rfc1123Format());
// Partner time is ahead by 15s (no warning).
state_.clock_skew_ += boost::posix_time::time_duration(0, 0, 15);
EXPECT_FALSE(state_.clockSkewShouldWarn());
EXPECT_FALSE(state_.clockSkewShouldTerminate());
// Partner time is behind by 15s (no warning).
state_.setPartnerTime(HttpDateTime().rfc1123Format());
state_.clock_skew_ -= boost::posix_time::time_duration(0, 0, 15);
EXPECT_FALSE(state_.clockSkewShouldWarn());
EXPECT_FALSE(state_.clockSkewShouldTerminate());
// Partner time is ahead by 35s (warning).
state_.setPartnerTime(HttpDateTime().rfc1123Format());
state_.clock_skew_ += boost::posix_time::time_duration(0, 0, 35);
EXPECT_TRUE(state_.clockSkewShouldWarn());
EXPECT_FALSE(state_.clockSkewShouldTerminate());
// Partner time is behind by 35s (warning).
state_.setPartnerTime(HttpDateTime().rfc1123Format());
state_.clock_skew_ -= boost::posix_time::time_duration(0, 0, 35);
state_.last_clock_skew_warn_ = boost::posix_time::ptime();
EXPECT_TRUE(state_.clockSkewShouldWarn());
EXPECT_FALSE(state_.clockSkewShouldTerminate());
// Due to the gating mechanism this should not return true the second
// time.
EXPECT_FALSE(state_.clockSkewShouldWarn());
// But should warn if the warning was issued more than 60 seconds ago.
state_.last_clock_skew_warn_ -= boost::posix_time::time_duration(0, 1, 30);
EXPECT_TRUE(state_.clockSkewShouldWarn());
// Partner time is ahead by 65s (warning and terminate).
state_.setPartnerTime(HttpDateTime().rfc1123Format());
state_.clock_skew_ += boost::posix_time::time_duration(0, 1, 5);
state_.last_clock_skew_warn_ = boost::posix_time::ptime();
EXPECT_TRUE(state_.clockSkewShouldWarn());
EXPECT_TRUE(state_.clockSkewShouldTerminate());
// Partner time is behind by 65s (warning and terminate).
state_.setPartnerTime(HttpDateTime().rfc1123Format());
state_.clock_skew_ -= boost::posix_time::time_duration(0, 1, 5);
state_.last_clock_skew_warn_ = boost::posix_time::ptime();
EXPECT_TRUE(state_.clockSkewShouldWarn());
EXPECT_TRUE(state_.clockSkewShouldTerminate());
}
// This test verifies that the clock skew calculations take into
// account whether or not the partner is available.
void
CommunicationStateTest::clockSkewPartnerUnavailableTest() {
// Default clock skew is 0.
EXPECT_FALSE(state_.clockSkewShouldWarn());
EXPECT_FALSE(state_.clockSkewShouldTerminate());
// Move the clock skew beyond the 60s limit. The alarms about the
// too high clock skew should be activated.
state_.setPartnerTime(HttpDateTime().rfc1123Format());
state_.clock_skew_ += boost::posix_time::time_duration(0, 1, 5);
EXPECT_TRUE(state_.clockSkewShouldWarn());
EXPECT_TRUE(state_.clockSkewShouldTerminate());
// Mark the partner as unavailable. It should reset the clock skew
// because we don't know the actual partner's time at the moment.
state_.setPartnerUnavailable();
EXPECT_FALSE(state_.clockSkewShouldWarn());
EXPECT_FALSE(state_.clockSkewShouldTerminate());
}
// This test verifies that the clock skew value is formatted correctly
// for logging.
void
CommunicationStateTest::logFormatClockSkewTest() {
// Make sure logFormatClockSkew() does not throw if called prior
// the first call to setPartnerTime().
std::string log;
ASSERT_NO_THROW(log = state_.logFormatClockSkew());
EXPECT_EQ(std::string("skew not initialized"), log);
// Get current time.
boost::posix_time::ptime now = HttpDateTime().getPtime();
// Partner time is ahead by 15s.
boost::posix_time::time_duration offset(0,0,15);
state_.setPartnerTime(HttpDateTime(now + offset).rfc1123Format());
ASSERT_NO_THROW(log = state_.logFormatClockSkew());
// The logFormatClockSkew uses the clock_skew_ value which is computed
// at the time when setPartnerTime() is called. Therefore, we can't
// just assume that it is 15s because it may be already slightly off.
// Let's compare the output with the actual clock_skew_ value remembered
// in the state_ instance.
ASSERT_FALSE(state_.clock_skew_.is_special());
ASSERT_FALSE(state_.clock_skew_.is_negative());
std::ostringstream s;
s << state_.clock_skew_.seconds() << "s ahead";
EXPECT_TRUE(log.find(s.str()) != std::string::npos) <<
" log content wrong: " << log;
// Partner time is behind by 15s.
state_.setPartnerTime(HttpDateTime(now - offset).rfc1123Format());
ASSERT_NO_THROW(log = state_.logFormatClockSkew());
// Again, extract the actual clock skew remembered in the state_ instance.
ASSERT_FALSE(state_.clock_skew_.is_special());
auto skew = state_.clock_skew_;
// It must be negative this time.
ASSERT_TRUE(skew.is_negative());
// Convert it to positive value so we can use to to build the expected string.
skew = -skew;
std::ostringstream s2;
s2 << skew.seconds() << "s behind";
EXPECT_TRUE(log.find(s2.str()) != std::string::npos) <<
" log content wrong: " << log;
offset = hours(18) + minutes(37) + seconds(15);
ptime mytime(date(2019, Jul, 23), offset);
state_.my_time_at_skew_ = mytime;
state_.partner_time_at_skew_ = mytime + seconds(25);
state_.clock_skew_ = seconds(25);
ASSERT_NO_THROW(log = state_.logFormatClockSkew());
std::string expected("my time: 2019-07-23 18:37:15, "
"partner's time: 2019-07-23 18:37:40, "
"partner's clock is 25s ahead");
EXPECT_EQ(expected, log);
}
void
CommunicationStateTest::rejectedLeaseUpdatesTerminateTest() {
EXPECT_FALSE(state_.rejectedLeaseUpdatesShouldTerminate());
// Reject several lease updates but do not exceed the limit.
for (auto i = 0; i < 9; ++i) {
ASSERT_NO_THROW(state_.reportRejectedLeaseUpdate(createMessage4(DHCPDISCOVER, i, i, 0)));
}
EXPECT_FALSE(state_.rejectedLeaseUpdatesShouldTerminate());
// Add one more. It should exceed the limit.
ASSERT_NO_THROW(state_.reportRejectedLeaseUpdate(createMessage4(DHCPDISCOVER, 9, 9, 0)));
EXPECT_TRUE(state_.rejectedLeaseUpdatesShouldTerminate());
}
// Tests that the communication state report is correct.
void
CommunicationStateTest::getReportTest() {
state_.setPartnerState("waiting");
auto scopes = Element::createList();
scopes->add(Element::create("server1"));
state_.setPartnerScopes(scopes);
state_.poke();
// Simulate the communications interrupted state.
state_.modifyPokeTime(-100);
// Send two DHCP packets of which one has secs value beyond the threshold and
// the other one lower than the threshold.
ASSERT_NO_THROW(state_.analyzeMessage(createMessage4(DHCPDISCOVER, 0, 0, 5)));
ASSERT_NO_THROW(state_.analyzeMessage(createMessage4(DHCPDISCOVER, 1, 0, 15)));
// Get the report.
ElementPtr report;
ASSERT_NO_THROW_LOG(report = state_.getReport());
ASSERT_TRUE(report);
// Check that system-time exists and that format is parsable by ptime.
// Do not check exact value because it can be time-sensitive.
checkThatTimeIsParsable(report, /* null_expected = */ true);
// Compare with the expected output.
std::string expected = "{"
" \"age\": 100,"
" \"in-touch\": true,"
" \"last-scopes\": [ \"server1\" ],"
" \"last-state\": \"waiting\","
" \"communication-interrupted\": true,"
" \"connecting-clients\": 2,"
" \"unacked-clients\": 1,"
" \"unacked-clients-left\": 10,"
" \"analyzed-packets\": 2,"
" \"clock-skew\": null"
"}";
expectEqWithDiff(Element::fromJSON(expected), report);
}
// Tests unusual values used to create the report.
void
CommunicationStateTest::getReportDefaultValuesTest() {
ElementPtr report;
ASSERT_NO_THROW_LOG(report = state_.getReport());
ASSERT_TRUE(report);
// Check that system-time exists and that format is parsable by ptime.
// Do not check exact value because it can be time-sensitive.
checkThatTimeIsParsable(report, /* null_expected = */ true);
// Compare with the expected output.
std::string expected = "{"
" \"age\": 0,"
" \"in-touch\": false,"
" \"last-scopes\": [ ],"
" \"last-state\": \"\","
" \"communication-interrupted\": false,"
" \"connecting-clients\": 0,"
" \"unacked-clients\": 0,"
" \"unacked-clients-left\": 0,"
" \"analyzed-packets\": 0,"
" \"clock-skew\": null"
"}";
expectEqWithDiff(Element::fromJSON(expected), report);
}
// Tests that the communication state report is correct when clock is skewed.
void
CommunicationStateTest::getReportWithClockSkewTest() {
auto const now(microsec_clock::universal_time());
// RFC 1123 format
// Is freed automatically by std::locale. See [localization.locales.locale#6] and
// [localization.locales.locale.facet#2] in the C++ standard.
time_facet* facet(new time_facet("%a, %d %b %Y %H:%M:%S GMT"));
stringstream ss;
ss.imbue(std::locale(std::locale(), facet));
ss << now + seconds(2);
state_.setPartnerTime(ss.str());
ElementPtr report;
ASSERT_NO_THROW_LOG(report = state_.getReport());
ASSERT_TRUE(report);
// Check that system-time exists and that format is parsable by ptime.
// Do not check exact value because it can be time-sensitive.
checkThatTimeIsParsable(report, /* null_expected = */ false);
// Compare with the expected output.
std::string expected = R"({
"age": 0,
"in-touch": false,
"last-scopes": [ ],
"last-state": "",
"communication-interrupted": false,
"connecting-clients": 0,
"unacked-clients": 0,
"unacked-clients-left": 0,
"analyzed-packets": 0,
"clock-skew": 2
})";
expectEqWithDiff(Element::fromJSON(expected), report);
}
void
CommunicationStateTest::getUnsentUpdateCountTest() {
// Initially the count should be 0.
EXPECT_EQ(0, state_.getUnsentUpdateCount());
// Increasing the value by 1 several times.
EXPECT_NO_THROW(state_.increaseUnsentUpdateCount());
EXPECT_EQ(1, state_.getUnsentUpdateCount());
EXPECT_NO_THROW(state_.increaseUnsentUpdateCount());
EXPECT_EQ(2, state_.getUnsentUpdateCount());
EXPECT_NO_THROW(state_.increaseUnsentUpdateCount());
EXPECT_EQ(3, state_.getUnsentUpdateCount());
// Test that the method under test protects against an overflow
// resetting the value to 0.
state_.unsent_update_count_ = std::numeric_limits<uint64_t>::max();
EXPECT_NO_THROW(state_.increaseUnsentUpdateCount());
EXPECT_EQ(1, state_.getUnsentUpdateCount());
}
void
CommunicationStateTest::hasPartnerNewUnsentUpdatesTest() {
// Initially the counts should be 0.
EXPECT_FALSE(state_.hasPartnerNewUnsentUpdates());
// Set a positive value. It should be noticed.
EXPECT_NO_THROW(state_.setPartnerUnsentUpdateCount(5));
EXPECT_TRUE(state_.hasPartnerNewUnsentUpdates());
// No change, no new unsent updates.
EXPECT_NO_THROW(state_.setPartnerUnsentUpdateCount(5));
EXPECT_FALSE(state_.hasPartnerNewUnsentUpdates());
// Change it again. New updates.
EXPECT_NO_THROW(state_.setPartnerUnsentUpdateCount(10));
EXPECT_TRUE(state_.hasPartnerNewUnsentUpdates());
// Set it to 0 to simulate restart. No updates.
EXPECT_NO_THROW(state_.setPartnerUnsentUpdateCount(0));
EXPECT_FALSE(state_.hasPartnerNewUnsentUpdates());
}
void
CommunicationStateTest::reportRejectedLeasesV4Test() {
// Initially, there should be no rejected leases.
EXPECT_EQ(0, state_.getRejectedLeaseUpdatesCount());
// Reject lease update.
auto msg = createMessage4(DHCPREQUEST, 1, 0, 0);
state_.reportRejectedLeaseUpdate(msg);
EXPECT_EQ(1, state_.getRejectedLeaseUpdatesCount());
// Reject another lease update.
msg = createMessage4(DHCPREQUEST, 2, 0, 0);
state_.reportRejectedLeaseUpdate(msg);
EXPECT_EQ(2, state_.getRejectedLeaseUpdatesCount());
// Reject a lease with a short (zero) lease lifetime.
// This lease should be discarded when we call the
// getRejectedLeaseUpdatesCount().
msg = createMessage4(DHCPREQUEST, 3, 0, 0);
state_.reportRejectedLeaseUpdate(msg, 0);
EXPECT_EQ(2, state_.getRejectedLeaseUpdatesCount());
// Reject lease update for a client using the same MAC
// address but different client identifier. It should
// be treated as a different lease.
msg = createMessage4(DHCPREQUEST, 2, 1, 0);
state_.reportRejectedLeaseUpdate(msg);
EXPECT_EQ(3, state_.getRejectedLeaseUpdatesCount());
// Clear rejected leases and make sure the counter
// is now 0.
state_.clearRejectedLeaseUpdates();
EXPECT_EQ(0, state_.getRejectedLeaseUpdatesCount());
}
void
CommunicationStateTest::reportSuccessfulLeasesV4Test() {
// Initially, there should be no rejected leases.
EXPECT_EQ(0, state_.getRejectedLeaseUpdatesCount());
auto msg0 = createMessage4(DHCPREQUEST, 1, 0, 0);
// Reject lease update.
state_.reportRejectedLeaseUpdate(msg0);
EXPECT_EQ(1, state_.getRejectedLeaseUpdatesCount());
// Reject another lease update.
auto msg1 = createMessage4(DHCPREQUEST, 2, 0, 0);
state_.reportRejectedLeaseUpdate(msg1);
EXPECT_EQ(2, state_.getRejectedLeaseUpdatesCount());
// Report successful lease for the first message.
// It should reduce the number of rejected lease
// updates.
EXPECT_TRUE(state_.reportSuccessfulLeaseUpdate(msg0));
EXPECT_EQ(1, state_.getRejectedLeaseUpdatesCount());
// Report successful lease update for another message.
auto msg2 = createMessage4(DHCPREQUEST, 1, 1, 0);
EXPECT_FALSE(state_.reportSuccessfulLeaseUpdate(msg2));
EXPECT_EQ(1, state_.getRejectedLeaseUpdatesCount());
// There should be no rejected lease updates.
EXPECT_TRUE(state_.reportSuccessfulLeaseUpdate(msg1));
EXPECT_EQ(0, state_.getRejectedLeaseUpdatesCount());
}
void
CommunicationStateTest::reportRejectedLeasesV4InvalidValuesTest() {
// Populate one valid update. Without it our functions under test
// would return early.
state_.reportRejectedLeaseUpdate(createMessage4(DHCPREQUEST, 1, 0, 0));
// Using DHCPv6 message in the DHCPv4 context is a programming
// error and deserves an exception.
auto msg = createMessage6(DHCPV6_REQUEST, 1, 0);
EXPECT_THROW(state_.reportRejectedLeaseUpdate(msg), BadValue);
EXPECT_THROW(state_.reportSuccessfulLeaseUpdate(msg), BadValue);
}
void
CommunicationStateTest::reportRejectedLeasesV6Test() {
// Initially, there should be no rejected leases.
EXPECT_EQ(0, state6_.getRejectedLeaseUpdatesCount());
// Reject lease update.
auto msg = createMessage6(DHCPV6_REQUEST, 1, 0);
state6_.reportRejectedLeaseUpdate(msg);
EXPECT_EQ(1, state6_.getRejectedLeaseUpdatesCount());
// Reject another lease update.
msg = createMessage6(DHCPV6_REQUEST, 2, 0);
state6_.reportRejectedLeaseUpdate(msg);
EXPECT_EQ(2, state6_.getRejectedLeaseUpdatesCount());
// Reject a lease with a short (zero) lease lifetime.
// This lease should be discarded when we call the
// getRejectedLeaseUpdatesCount().
msg = createMessage6(DHCPV6_REQUEST, 3, 0);
state6_.reportRejectedLeaseUpdate(msg, 0);
EXPECT_EQ(2, state6_.getRejectedLeaseUpdatesCount());
// Reject it again. It should not affect the counter.
msg = createMessage6(DHCPV6_REQUEST, 2, 0);
state6_.reportRejectedLeaseUpdate(msg);
EXPECT_EQ(2, state6_.getRejectedLeaseUpdatesCount());
// Clear rejected lease updates and make sure they
// are now 0.
state6_.clearRejectedLeaseUpdates();
EXPECT_EQ(0, state6_.getRejectedLeaseUpdatesCount());
}
void
CommunicationStateTest::reportSuccessfulLeasesV6Test() {
// Initially, there should be no rejected leases.
EXPECT_EQ(0, state6_.getRejectedLeaseUpdatesCount());
// Reject lease update.
auto msg0 = createMessage6(DHCPV6_SOLICIT, 1, 0);
EXPECT_TRUE(state6_.reportRejectedLeaseUpdate(msg0));
EXPECT_EQ(1, state6_.getRejectedLeaseUpdatesCount());
// Reject another lease update.
auto msg1 = createMessage6(DHCPV6_SOLICIT, 2, 0);
EXPECT_TRUE(state6_.reportRejectedLeaseUpdate(msg1));
EXPECT_EQ(2, state6_.getRejectedLeaseUpdatesCount());
// Report successful lease for the first message.
// It should reduce the number of rejected lease
// updates.
EXPECT_TRUE(state6_.reportSuccessfulLeaseUpdate(msg0));
EXPECT_EQ(1, state6_.getRejectedLeaseUpdatesCount());
// Report successful lease update for a lease that wasn't
// rejected. It should not affect the counter.
auto msg2 = createMessage6(DHCPV6_SOLICIT, 3, 0);
EXPECT_FALSE(state6_.reportSuccessfulLeaseUpdate(msg2));
EXPECT_EQ(1, state6_.getRejectedLeaseUpdatesCount());
// Report successful lease update for the last lease.
// The counter should now be 0.
EXPECT_TRUE(state6_.reportSuccessfulLeaseUpdate(msg1));
EXPECT_EQ(0, state6_.getRejectedLeaseUpdatesCount());
}
void
CommunicationStateTest::reportRejectedLeasesV6InvalidValuesTest() {
// Populate one valid update. Without it our functions under test
// would return early.
state6_.reportRejectedLeaseUpdate(createMessage6(DHCPV6_REQUEST, 1, 0));
// Using DHCPv4 message in the DHCPv6 context is a programming
// error and deserves an exception.
auto msg0 = createMessage4(DHCPREQUEST, 1, 1, 0);
EXPECT_THROW(state6_.reportRejectedLeaseUpdate(msg0), BadValue);
EXPECT_THROW(state6_.reportSuccessfulLeaseUpdate(msg0), BadValue);
auto msg1 = createMessage6(DHCPV6_SOLICIT, 1, 0);
msg1->delOption(D6O_CLIENTID);
EXPECT_FALSE(state6_.reportRejectedLeaseUpdate(msg1));
EXPECT_FALSE(state6_.reportSuccessfulLeaseUpdate(msg1));
}
void
CommunicationStateTest::getRejectedLeaseUpdatesCountFromContainerTest() {
// Create a simple multi index container with two indexes. The
// first index is on the ordinal number to distinguish between
// different entries. The second index is on the expire_ field
// that is identical to the expire_ field in the RejectedClients4
// and RejectedClients6 containers.
struct Entry {
int64_t ordinal_;
int64_t expire_;
};
typedef boost::multi_index_container<
Entry,
boost::multi_index::indexed_by<
boost::multi_index::ordered_unique<
boost::multi_index::member<Entry, int64_t,
&Entry::ordinal_>
>,
boost::multi_index::ordered_non_unique<
boost::multi_index::member<Entry, int64_t,
&Entry::expire_>
>
>
> Entries;
// Add many entries to the container. Odd entries have lifetime
// expiring in the future. Even entries have lifetimes expiring in
// the past.
Entries entries;
for (auto i = 0; i < 1000; ++i) {
entries.insert({i, time(NULL) + (i % 2 ? 100 + i : -1 - i)});
}
// Get the count of valid entries. It should remove the expiring
// entries.
auto valid_entries_count = state_.getRejectedLeaseUpdatesCountFromContainer(entries);
EXPECT_EQ(500, valid_entries_count);
EXPECT_EQ(500, entries.size());
// Validate that we removed expired entries, not the valid ones.
for (auto const& entry : entries) {
EXPECT_EQ(1, entry.ordinal_ % 2);
}
}
TEST_F(CommunicationStateTest, partnerStateTest) {<--- syntax error
partnerStateTest();
}
TEST_F(CommunicationStateTest, partnerStateTestMultiThreading) {
MultiThreadingMgr::instance().setMode(true);
partnerStateTest();
}
TEST_F(CommunicationStateTest, partnerStateUnavailableTest) {
partnerStateUnavailableTest();
}
TEST_F(CommunicationStateTest, partnerStateUnavailableTestMultiThreading) {
MultiThreadingMgr::instance().setMode(true);
partnerStateUnavailableTest();
}
TEST_F(CommunicationStateTest, partnerStateTimeExplicitStateTest) {
partnerStateTimeExplicitStateTest();
}
TEST_F(CommunicationStateTest, partnerStateTimeExplcitStateTestMultiThreading) {
MultiThreadingMgr::instance().setMode(true);
partnerStateTimeExplicitStateTest();
}
TEST_F(CommunicationStateTest, partnerStateTimeUnavailableTest) {
partnerStateTimeUnavailableTest();
}
TEST_F(CommunicationStateTest, partnerStateTimeUnavailableTestMultiThreading) {
MultiThreadingMgr::instance().setMode(true);
partnerStateTimeUnavailableTest();
}
TEST_F(CommunicationStateTest, partnerScopesTest) {
partnerScopesTest();
}
TEST_F(CommunicationStateTest, partnerScopesTestMultiThreading) {
MultiThreadingMgr::instance().setMode(true);
partnerScopesTest();
}
TEST_F(CommunicationStateTest, initialDurationTest) {
initialDurationTest();
}
TEST_F(CommunicationStateTest, initialDurationTestMultiThreading) {
MultiThreadingMgr::instance().setMode(true);
initialDurationTest();
}
TEST_F(CommunicationStateTest, pokeTest) {
pokeTest();
}
TEST_F(CommunicationStateTest, pokeTestMultiThreading) {
MultiThreadingMgr::instance().setMode(true);
pokeTest();
}
TEST_F(CommunicationStateTest, heartbeatTest) {
heartbeatTest();
}
TEST_F(CommunicationStateTest, heartbeatTestMultiThreading) {
MultiThreadingMgr::instance().setMode(true);
heartbeatTest();
}
TEST_F(CommunicationStateTest, startHeartbeatInvalidValuesTest) {
startHeartbeatInvalidValuesTest();
}
TEST_F(CommunicationStateTest, startHeartbeatInvalidValuesTestMultiThreading) {
MultiThreadingMgr::instance().setMode(true);
startHeartbeatInvalidValuesTest();
}
TEST_F(CommunicationStateTest, detectFailureV4Test) {
detectFailureV4Test();
}
TEST_F(CommunicationStateTest, detectFailureV4TestMultiThreading) {
MultiThreadingMgr::instance().setMode(true);
detectFailureV4Test();
}
TEST_F(CommunicationStateTest, failureDetectionDisabled4Test) {
failureDetectionDisabled4Test();
}
TEST_F(CommunicationStateTest, failureDetectionDisabled4TestMultiThreading) {
MultiThreadingMgr::instance().setMode(true);
failureDetectionDisabled4Test();
}
TEST_F(CommunicationStateTest, detectFailureV6Test) {
detectFailureV6Test();
}
TEST_F(CommunicationStateTest, detectFailureV6TestMultiThreading) {
MultiThreadingMgr::instance().setMode(true);
detectFailureV6Test();
}
TEST_F(CommunicationStateTest, failureDetectionDisabled6Test) {
failureDetectionDisabled6Test();
}
TEST_F(CommunicationStateTest, failureDetectionDisabled6TestMultiThreading) {
MultiThreadingMgr::instance().setMode(true);
failureDetectionDisabled6Test();
}
TEST_F(CommunicationStateTest, clockSkewTest) {
clockSkewTest();
}
TEST_F(CommunicationStateTest, clockSkewTestMultiThreading) {
MultiThreadingMgr::instance().setMode(true);
clockSkewTest();
}
TEST_F(CommunicationStateTest, clockSkewPartnerUnavailableTest) {
clockSkewPartnerUnavailableTest();
}
TEST_F(CommunicationStateTest, clockSkewPartnerUnavailableTestMultiThreading) {
MultiThreadingMgr::instance().setMode(true);
clockSkewPartnerUnavailableTest();
}
TEST_F(CommunicationStateTest, rejectedLeaseUpdatesTerminateTest) {
rejectedLeaseUpdatesTerminateTest();
}
TEST_F(CommunicationStateTest, rejectedLeaseUpdatesTerminateTestMultiThreading) {
MultiThreadingMgr::instance().setMode(true);
rejectedLeaseUpdatesTerminateTest();
}
TEST_F(CommunicationStateTest, logFormatClockSkewTest) {
logFormatClockSkewTest();
}
TEST_F(CommunicationStateTest, logFormatClockSkewTestMultiThreading) {
MultiThreadingMgr::instance().setMode(true);
logFormatClockSkewTest();
}
TEST_F(CommunicationStateTest, getReportTest) {
getReportTest();
}
TEST_F(CommunicationStateTest, getReportTestMultiThreading) {
MultiThreadingMgr::instance().setMode(true);
getReportTest();
}
TEST_F(CommunicationStateTest, getReportDefaultValuesTest) {
getReportDefaultValuesTest();
}
TEST_F(CommunicationStateTest, getReportDefaultValuesTestMultiThreading) {
MultiThreadingMgr::instance().setMode(true);
getReportDefaultValuesTest();
}
TEST_F(CommunicationStateTest, getReportWithClockSkewTest) {
getReportWithClockSkewTest();
}
TEST_F(CommunicationStateTest, getReportWithClockSkewTestMultiThreading) {
MultiThreadingMgr::instance().setMode(true);
getReportWithClockSkewTest();
}
TEST_F(CommunicationStateTest, getUnsentUpdateCountTest) {
getUnsentUpdateCountTest();
}
TEST_F(CommunicationStateTest, getUnsentUpdateCountTestMultiThreading) {
MultiThreadingMgr::instance().setMode(true);
getUnsentUpdateCountTest();
}
TEST_F(CommunicationStateTest, hasPartnerNewUnsentUpdatesTest) {
hasPartnerNewUnsentUpdatesTest();
}
TEST_F(CommunicationStateTest, hasPartnerNewUnsentUpdatesTestMultiThreading) {
MultiThreadingMgr::instance().setMode(true);
hasPartnerNewUnsentUpdatesTest();
}
TEST_F(CommunicationStateTest, reportRejectedLeasesV4Test) {
reportRejectedLeasesV4Test();
}
TEST_F(CommunicationStateTest, reportRejectedLeasesV4TestMultiThreading) {
MultiThreadingMgr::instance().setMode(true);
reportRejectedLeasesV4Test();
}
TEST_F(CommunicationStateTest, reportSuccessfulLeasesV4Test) {
reportSuccessfulLeasesV4Test();
}
TEST_F(CommunicationStateTest, reportSuccessfulLeasesV4TestMultiThreading) {
MultiThreadingMgr::instance().setMode(true);
reportSuccessfulLeasesV4Test();
}
TEST_F(CommunicationStateTest, reportRejectedLeasesV4InvalidValuesTest) {
reportRejectedLeasesV4InvalidValuesTest();
}
TEST_F(CommunicationStateTest, reportRejectedLeasesV4InvalidValuesTestMultiThreading) {
MultiThreadingMgr::instance().setMode(true);
reportRejectedLeasesV4InvalidValuesTest();
}
TEST_F(CommunicationStateTest, reportRejectedLeasesV6Test) {
reportRejectedLeasesV6Test();
}
TEST_F(CommunicationStateTest, reportRejectedLeasesV6TestMultiThreading) {
MultiThreadingMgr::instance().setMode(true);
reportRejectedLeasesV6Test();
}
TEST_F(CommunicationStateTest, reportSuccessfulLeasesV6Test) {
reportSuccessfulLeasesV6Test();
}
TEST_F(CommunicationStateTest, reportSuccessfulLeasesV6TestMultiThreading) {
MultiThreadingMgr::instance().setMode(true);
reportSuccessfulLeasesV6Test();
}
TEST_F(CommunicationStateTest, reportRejectedLeasesV6InvalidValuesTest) {
reportRejectedLeasesV6InvalidValuesTest();
}
TEST_F(CommunicationStateTest, reportRejectedLeasesV6InvalidValuesTestMultiThreading) {
MultiThreadingMgr::instance().setMode(true);
reportRejectedLeasesV6InvalidValuesTest();
}
TEST_F(CommunicationStateTest, getRejectedLeaseUpdatesCountFromContainerTest) {
getRejectedLeaseUpdatesCountFromContainerTest();
}
}
|