forked from project-chip/connectedhomeip
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTestReliableMessageProtocol.cpp
2438 lines (1951 loc) · 105 KB
/
TestReliableMessageProtocol.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
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
/*
*
* Copyright (c) 2020-2021 Project CHIP Authors
* All rights reserved.
*
* 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.
*/
/**
* @file
* This file implements unit tests for the ReliableMessageProtocol
* implementation.
*/
#include <queue>
#include <errno.h>
#include <pw_unit_test/framework.h>
#include <app/icd/server/ICDServerConfig.h>
#include <lib/core/CHIPCore.h>
#include <lib/core/StringBuilderAdapters.h>
#include <lib/support/CodeUtils.h>
#include <messaging/ReliableMessageContext.h>
#include <messaging/ReliableMessageMgr.h>
#include <messaging/ReliableMessageProtocolConfig.h>
#include <protocols/Protocols.h>
#include <protocols/echo/Echo.h>
#include <transport/SessionManager.h>
#include <transport/TransportMgr.h>
#include <messaging/ExchangeContext.h>
#include <messaging/ExchangeMgr.h>
#include <messaging/Flags.h>
#include <messaging/tests/MessagingContext.h>
#if CHIP_CONFIG_ENABLE_ICD_SERVER
#include <app/icd/server/ICDConfigurationData.h> // nogncheck
#endif
#if CHIP_CRYPTO_PSA
#include "psa/crypto.h"
#endif
namespace {
using namespace chip;
using namespace chip::Inet;
using namespace chip::Transport;
using namespace chip::Messaging;
using namespace chip::Protocols;
using namespace chip::System::Clock::Literals;
const char PAYLOAD[] = "Hello!";
class TestReliablityAnalyticDelegate : public ReliableMessageAnalyticsDelegate
{
public:
virtual void OnTransmitEvent(const TransmitEvent & event) override { mTransmitEvents.push(event); }
std::queue<ReliableMessageAnalyticsDelegate::TransmitEvent> mTransmitEvents;
};
class TestReliableMessageProtocol : public chip::Test::LoopbackMessagingContext
{
public:
// Performs setup for each individual test in the test suite
void SetUp() override
{
#if CHIP_CRYPTO_PSA
ASSERT_EQ(psa_crypto_init(), PSA_SUCCESS);
#endif
chip::Test::LoopbackMessagingContext::SetUp();
GetSessionAliceToBob()->AsSecureSession()->SetRemoteSessionParameters(GetLocalMRPConfig().ValueOr(GetDefaultMRPConfig()));
GetSessionBobToAlice()->AsSecureSession()->SetRemoteSessionParameters(GetLocalMRPConfig().ValueOr(GetDefaultMRPConfig()));
}
};
class MockAppDelegate : public UnsolicitedMessageHandler, public ExchangeDelegate
{
public:
MockAppDelegate(TestReliableMessageProtocol & ctx) : mTestReliableMessageProtocol(ctx) {}
CHIP_ERROR OnUnsolicitedMessageReceived(const PayloadHeader & payloadHeader, ExchangeDelegate *& newDelegate) override
{
// Handle messages by myself
newDelegate = this;
return CHIP_NO_ERROR;
}
CHIP_ERROR OnMessageReceived(ExchangeContext * ec, const PayloadHeader & payloadHeader,
System::PacketBufferHandle && buffer) override
{
IsOnMessageReceivedCalled = true;
if (ec->HasSessionHandle() && ec->GetSessionHolder()->IsSecureSession())
{
mLastSubjectDescriptor = ec->GetSessionHolder()->AsSecureSession()->GetSubjectDescriptor();
}
if (payloadHeader.IsAckMsg())
{
mReceivedPiggybackAck = true;
}
if (mDropAckResponse)
{
auto * rc = ec->GetReliableMessageContext();
if (rc->HasPiggybackAckPending())
{
// Make sure we don't accidentally retransmit and end up acking
// the retransmit.
rc->GetReliableMessageMgr()->StopTimer();
(void) rc->TakePendingPeerAckMessageCounter();
}
}
if (mExchange != ec)
{
CloseExchangeIfNeeded();
}
if (!mRetainExchange)
{
ec = nullptr;
}
else
{
ec->WillSendMessage();
}
mExchange = ec;
EXPECT_EQ(buffer->TotalLength(), sizeof(PAYLOAD));
EXPECT_EQ(memcmp(buffer->Start(), PAYLOAD, buffer->TotalLength()), 0);
return CHIP_NO_ERROR;
}
void OnResponseTimeout(ExchangeContext * ec) override { mResponseTimedOut = true; }
void CloseExchangeIfNeeded()
{
if (mExchange != nullptr)
{
mExchange->Close();
mExchange = nullptr;
}
}
void SetDropAckResponse(bool dropResponse)
{
mDropAckResponse = dropResponse;
if (!mDropAckResponse)
{
// Restart the MRP retransmit timer, now that we are not going to be
// dropping acks anymore, so we send out pending retransmits, if
// any, as needed.
mTestReliableMessageProtocol.GetExchangeManager().GetReliableMessageMgr()->StartTimer();
}
}
Access::SubjectDescriptor mLastSubjectDescriptor{};
bool IsOnMessageReceivedCalled = false;
bool mReceivedPiggybackAck = false;
bool mRetainExchange = false;
bool mResponseTimedOut = false;
ExchangeContext * mExchange = nullptr;
private:
TestReliableMessageProtocol & mTestReliableMessageProtocol;
bool mDropAckResponse = false;
};
class MockSessionEstablishmentExchangeDispatch : public Messaging::ApplicationExchangeDispatch
{
public:
bool IsReliableTransmissionAllowed() const override { return mRetainMessageOnSend; }
bool MessagePermitted(Protocols::Id protocol, uint8_t type) override { return true; }
bool IsEncryptionRequired() const override { return mRequireEncryption; }
bool mRetainMessageOnSend = true;
bool mRequireEncryption = false;
};
class MockSessionEstablishmentDelegate : public UnsolicitedMessageHandler, public ExchangeDelegate
{
public:
CHIP_ERROR OnUnsolicitedMessageReceived(const PayloadHeader & payloadHeader, ExchangeDelegate *& newDelegate) override
{
// Handle messages by myself
newDelegate = this;
return CHIP_NO_ERROR;
}
CHIP_ERROR OnMessageReceived(ExchangeContext * ec, const PayloadHeader & payloadHeader,
System::PacketBufferHandle && buffer) override
{
IsOnMessageReceivedCalled = true;
EXPECT_EQ(buffer->TotalLength(), sizeof(PAYLOAD));
EXPECT_EQ(memcmp(buffer->Start(), PAYLOAD, buffer->TotalLength()), 0);
return CHIP_NO_ERROR;
}
void OnResponseTimeout(ExchangeContext * ec) override {}
virtual ExchangeMessageDispatch & GetMessageDispatch() override { return mMessageDispatch; }
bool IsOnMessageReceivedCalled = false;
MockSessionEstablishmentExchangeDispatch mMessageDispatch;
};
struct BackoffComplianceTestVector
{
uint8_t sendCount;
System::Clock::Timeout backoffBase;
System::Clock::Timeout backoffMin;
System::Clock::Timeout backoffMax;
};
struct BackoffComplianceTestVector theBackoffComplianceTestVector[] = { {
.sendCount = 0,
.backoffBase = System::Clock::Timeout(300),
.backoffMin = System::Clock::Timeout(330),
.backoffMax = System::Clock::Timeout(413),
},
{
.sendCount = 1,
.backoffBase = System::Clock::Timeout(300),
.backoffMin = System::Clock::Timeout(330),
.backoffMax = System::Clock::Timeout(413),
},
{
.sendCount = 2,
.backoffBase = System::Clock::Timeout(300),
.backoffMin = System::Clock::Timeout(528),
.backoffMax = System::Clock::Timeout(661),
},
{
.sendCount = 3,
.backoffBase = System::Clock::Timeout(300),
.backoffMin = System::Clock::Timeout(844),
.backoffMax = System::Clock::Timeout(1057),
},
{
.sendCount = 4,
.backoffBase = System::Clock::Timeout(300),
.backoffMin = System::Clock::Timeout(1351),
.backoffMax = System::Clock::Timeout(1691),
},
{
.sendCount = 5,
.backoffBase = System::Clock::Timeout(300),
.backoffMin = System::Clock::Timeout(2162),
.backoffMax = System::Clock::Timeout(2705),
},
{
.sendCount = 6,
.backoffBase = System::Clock::Timeout(300),
.backoffMin = System::Clock::Timeout(2162),
.backoffMax = System::Clock::Timeout(2705),
},
{
.sendCount = 0,
.backoffBase = System::Clock::Timeout(4000),
.backoffMin = System::Clock::Timeout(4400),
.backoffMax = System::Clock::Timeout(5503),
},
{
.sendCount = 1,
.backoffBase = System::Clock::Timeout(4000),
.backoffMin = System::Clock::Timeout(4400),
.backoffMax = System::Clock::Timeout(5503),
},
{
.sendCount = 2,
.backoffBase = System::Clock::Timeout(4000),
.backoffMin = System::Clock::Timeout(7040),
.backoffMax = System::Clock::Timeout(8805),
},
{
.sendCount = 3,
.backoffBase = System::Clock::Timeout(4000),
.backoffMin = System::Clock::Timeout(11264),
.backoffMax = System::Clock::Timeout(14088),
},
{
.sendCount = 4,
.backoffBase = System::Clock::Timeout(4000),
.backoffMin = System::Clock::Timeout(18022),
.backoffMax = System::Clock::Timeout(22541),
},
{
.sendCount = 5,
.backoffBase = System::Clock::Timeout(4000),
.backoffMin = System::Clock::Timeout(28835),
.backoffMax = System::Clock::Timeout(36065),
},
{
.sendCount = 6,
.backoffBase = System::Clock::Timeout(4000),
.backoffMin = System::Clock::Timeout(28835),
.backoffMax = System::Clock::Timeout(36065),
},
{
// test theoretical worst-case 1-hour interval
.sendCount = 4,
.backoffBase = System::Clock::Timeout(3'600'000),
.backoffMin = System::Clock::Timeout(16'220'160),
.backoffMax = System::Clock::Timeout(20'286'001),
} };
void CheckGetBackoffImpl(System::Clock::Timeout additionalMRPBackoffTime)
{
ReliableMessageMgr::SetAdditionalMRPBackoffTime(MakeOptional(additionalMRPBackoffTime));
// Run 3x iterations to thoroughly test random jitter always results in backoff within bounds.
for (uint32_t j = 0; j < 3; j++)
{
for (const auto & test : theBackoffComplianceTestVector)
{
System::Clock::Timeout backoff = ReliableMessageMgr::GetBackoff(test.backoffBase, test.sendCount);
System::Clock::Timeout extraBackoff = additionalMRPBackoffTime;
#if CHIP_CONFIG_ENABLE_ICD_SERVER
// If running as an ICD, increase maxBackoff to account for the polling interval
extraBackoff += ICDConfigurationData::GetInstance().GetFastPollingInterval();
#endif
ChipLogProgress(Test, "Backoff base %" PRIu32 " extra %" PRIu32 " # %d: %" PRIu32, test.backoffBase.count(),
extraBackoff.count(), test.sendCount, backoff.count());
EXPECT_GE(backoff, test.backoffMin + extraBackoff);
EXPECT_LE(backoff, test.backoffMax + extraBackoff);
}
}
ReliableMessageMgr::SetAdditionalMRPBackoffTime(NullOptional);
}
} // namespace
TEST_F(TestReliableMessageProtocol, CheckAddClearRetrans)
{
MockAppDelegate mockAppDelegate(*this);
ExchangeContext * exchange = NewExchangeToAlice(&mockAppDelegate);
ASSERT_NE(exchange, nullptr);
ReliableMessageMgr * rm = GetExchangeManager().GetReliableMessageMgr();
ReliableMessageContext * rc = exchange->GetReliableMessageContext();
ASSERT_NE(rm, nullptr);
ASSERT_NE(rc, nullptr);
ReliableMessageMgr::RetransTableEntry * entry;
rm->AddToRetransTable(rc, &entry);
EXPECT_EQ(rm->TestGetCountRetransTable(), 1);
rm->ClearRetransTable(*entry);
EXPECT_EQ(rm->TestGetCountRetransTable(), 0);
exchange->Close();
}
/**
* Tests MRP retransmission logic with the following scenario:
*
* DUT = sender, PEER = remote device
*
* 1) DUT configured to use sleepy peer parameters of active = 64ms, idle = 64ms
* 2) DUT sends message attempt #1 to PEER
* - Force PEER to drop message
* - Observe DUT timeout with no ack
* - Confirm MRP backoff interval is correct
* 3) DUT resends message attempt #2 to PEER
* - Force PEER to drop message
* - Observe DUT timeout with no ack
* - Confirm MRP backoff interval is correct
* 4) DUT resends message attempt #3 to PEER
* - Force PEER to drop message
* - Observe DUT timeout with no ack
* - Confirm MRP backoff interval is correct
* 5) DUT resends message attempt #4 to PEER
* - Force PEER to drop message
* - Observe DUT timeout with no ack
* - Confirm MRP backoff interval is correct
* 6) DUT resends message attempt #5 to PEER
* - PEER to acknowledge message
* - Observe DUT signal successful reliable transmission
*/
TEST_F(TestReliableMessageProtocol, CheckResendApplicationMessage)
{
BackoffComplianceTestVector * expectedBackoff;
System::Clock::Timestamp now, startTime;
System::Clock::Timeout timeoutTime, margin;
margin = System::Clock::Timeout(15);
chip::System::PacketBufferHandle buffer = chip::MessagePacketBuffer::NewWithData(PAYLOAD, sizeof(PAYLOAD));
EXPECT_FALSE(buffer.IsNull());
CHIP_ERROR err = CHIP_NO_ERROR;
MockAppDelegate mockSender(*this);
// TODO: temporarily create a SessionHandle from node id, will be fix in PR 3602
ExchangeContext * exchange = NewExchangeToAlice(&mockSender);
ASSERT_NE(exchange, nullptr);
ReliableMessageMgr * rm = GetExchangeManager().GetReliableMessageMgr();
ASSERT_NE(rm, nullptr);
exchange->GetSessionHandle()->AsSecureSession()->SetRemoteSessionParameters(ReliableMessageProtocolConfig({
System::Clock::Timestamp(300), // CHIP_CONFIG_MRP_LOCAL_IDLE_RETRY_INTERVAL
System::Clock::Timestamp(300), // CHIP_CONFIG_MRP_LOCAL_ACTIVE_RETRY_INTERVAL
}));
// Let's drop the initial message
auto & loopback = GetLoopback();
loopback.mSentMessageCount = 0;
loopback.mNumMessagesToDrop = 4;
loopback.mDroppedMessageCount = 0;
// Ensure the retransmit table is empty right now
EXPECT_EQ(rm->TestGetCountRetransTable(), 0);
// Ensure the exchange stays open after we send (unlike the CheckCloseExchangeAndResendApplicationMessage case), by claiming to
// expect a response.
startTime = System::SystemClock().GetMonotonicTimestamp();
err = exchange->SendMessage(Echo::MsgType::EchoRequest, std::move(buffer), SendMessageFlags::kExpectResponse);
EXPECT_EQ(err, CHIP_NO_ERROR);
DrainAndServiceIO();
// Ensure the initial message was dropped and was added to retransmit table
EXPECT_EQ(loopback.mNumMessagesToDrop, 3u);
EXPECT_EQ(loopback.mDroppedMessageCount, 1u);
EXPECT_EQ(rm->TestGetCountRetransTable(), 1);
// Wait for the initial message to fail (should take 330-413ms)
GetIOContext().DriveIOUntil(1000_ms32, [&] { return loopback.mSentMessageCount >= 2; });
now = System::SystemClock().GetMonotonicTimestamp();
timeoutTime = now - startTime;
ChipLogProgress(Test, "Attempt #1 Timeout : %" PRIu32 "ms", timeoutTime.count());
expectedBackoff = &theBackoffComplianceTestVector[0];
EXPECT_GE(timeoutTime, expectedBackoff->backoffMin - margin);
startTime = System::SystemClock().GetMonotonicTimestamp();
DrainAndServiceIO();
// Ensure the 1st retry was dropped, and is still there in the retransmit table
EXPECT_EQ(loopback.mSentMessageCount, 2u);
EXPECT_EQ(loopback.mNumMessagesToDrop, 2u);
EXPECT_EQ(loopback.mDroppedMessageCount, 2u);
EXPECT_EQ(rm->TestGetCountRetransTable(), 1);
// Wait for the 1st retry to fail (should take 330-413ms)
GetIOContext().DriveIOUntil(1000_ms32, [&] { return loopback.mSentMessageCount >= 3; });
now = System::SystemClock().GetMonotonicTimestamp();
timeoutTime = now - startTime;
ChipLogProgress(Test, "Attempt #2 Timeout : %" PRIu32 "ms", timeoutTime.count());
expectedBackoff = &theBackoffComplianceTestVector[1];
EXPECT_GE(timeoutTime, expectedBackoff->backoffMin - margin);
startTime = System::SystemClock().GetMonotonicTimestamp();
DrainAndServiceIO();
// Ensure the 2nd retry was dropped, and is still there in the retransmit table
EXPECT_EQ(loopback.mSentMessageCount, 3u);
EXPECT_EQ(loopback.mNumMessagesToDrop, 1u);
EXPECT_EQ(loopback.mDroppedMessageCount, 3u);
EXPECT_EQ(rm->TestGetCountRetransTable(), 1);
// Wait for the 2nd retry to fail (should take 528-660ms)
GetIOContext().DriveIOUntil(1000_ms32, [&] { return loopback.mSentMessageCount >= 4; });
now = System::SystemClock().GetMonotonicTimestamp();
timeoutTime = now - startTime;
ChipLogProgress(Test, "Attempt #3 Timeout : %" PRIu32 "ms", timeoutTime.count());
expectedBackoff = &theBackoffComplianceTestVector[2];
EXPECT_GE(timeoutTime, expectedBackoff->backoffMin - margin);
startTime = System::SystemClock().GetMonotonicTimestamp();
DrainAndServiceIO();
// Ensure the 3rd retry was dropped, and is still there in the retransmit table
EXPECT_EQ(loopback.mSentMessageCount, 4u);
EXPECT_EQ(loopback.mNumMessagesToDrop, 0u);
EXPECT_EQ(loopback.mDroppedMessageCount, 4u);
EXPECT_EQ(rm->TestGetCountRetransTable(), 1);
// Wait for the 3rd retry to fail (should take 845-1056ms)
GetIOContext().DriveIOUntil(1500_ms32, [&] { return loopback.mSentMessageCount >= 5; });
now = System::SystemClock().GetMonotonicTimestamp();
timeoutTime = now - startTime;
ChipLogProgress(Test, "Attempt #4 Timeout : %" PRIu32 "ms", timeoutTime.count());
expectedBackoff = &theBackoffComplianceTestVector[3];
EXPECT_GE(timeoutTime, expectedBackoff->backoffMin - margin);
// Trigger final transmission
DrainAndServiceIO();
// Ensure the last retransmission was NOT dropped, and the retransmit table is empty, as we should have gotten an ack
EXPECT_GE(loopback.mSentMessageCount, 5u);
EXPECT_EQ(loopback.mDroppedMessageCount, 4u);
EXPECT_EQ(rm->TestGetCountRetransTable(), 0);
exchange->Close();
}
TEST_F(TestReliableMessageProtocol, CheckCloseExchangeAndResendApplicationMessage)
{
chip::System::PacketBufferHandle buffer = chip::MessagePacketBuffer::NewWithData(PAYLOAD, sizeof(PAYLOAD));
EXPECT_FALSE(buffer.IsNull());
CHIP_ERROR err = CHIP_NO_ERROR;
MockAppDelegate mockSender(*this);
// TODO: temporarily create a SessionHandle from node id, will be fixed in PR 3602
ExchangeContext * exchange = NewExchangeToAlice(&mockSender);
ASSERT_NE(exchange, nullptr);
ReliableMessageMgr * rm = GetExchangeManager().GetReliableMessageMgr();
ASSERT_NE(rm, nullptr);
exchange->GetSessionHandle()->AsSecureSession()->SetRemoteSessionParameters(ReliableMessageProtocolConfig({
64_ms32, // CHIP_CONFIG_MRP_LOCAL_IDLE_RETRY_INTERVAL
64_ms32, // CHIP_CONFIG_MRP_LOCAL_ACTIVE_RETRY_INTERVAL
}));
// Let's drop the initial message
auto & loopback = GetLoopback();
loopback.mSentMessageCount = 0;
loopback.mNumMessagesToDrop = 2;
loopback.mDroppedMessageCount = 0;
// Ensure the retransmit table is empty right now
EXPECT_EQ(rm->TestGetCountRetransTable(), 0);
err = exchange->SendMessage(Echo::MsgType::EchoRequest, std::move(buffer));
EXPECT_EQ(err, CHIP_NO_ERROR);
DrainAndServiceIO();
// Ensure the message was dropped, and was added to retransmit table
EXPECT_EQ(loopback.mNumMessagesToDrop, 1u);
EXPECT_EQ(loopback.mDroppedMessageCount, 1u);
EXPECT_EQ(rm->TestGetCountRetransTable(), 1);
// Wait for the first re-transmit (should take 64ms)
GetIOContext().DriveIOUntil(1000_ms32, [&] { return loopback.mSentMessageCount >= 2; });
DrainAndServiceIO();
// Ensure the retransmit message was dropped, and is still there in the retransmit table
EXPECT_EQ(loopback.mSentMessageCount, 2u);
EXPECT_EQ(loopback.mNumMessagesToDrop, 0u);
EXPECT_EQ(loopback.mDroppedMessageCount, 2u);
EXPECT_EQ(rm->TestGetCountRetransTable(), 1);
// Wait for the second re-transmit (should take 64ms)
GetIOContext().DriveIOUntil(1000_ms32, [&] { return loopback.mSentMessageCount >= 3; });
DrainAndServiceIO();
// Ensure the retransmit message was NOT dropped, and the retransmit table is empty, as we should have gotten an ack
EXPECT_GE(loopback.mSentMessageCount, 3u);
EXPECT_EQ(loopback.mDroppedMessageCount, 2u);
EXPECT_EQ(rm->TestGetCountRetransTable(), 0);
}
TEST_F(TestReliableMessageProtocol, CheckFailedMessageRetainOnSend)
{
chip::System::PacketBufferHandle buffer = chip::MessagePacketBuffer::NewWithData(PAYLOAD, sizeof(PAYLOAD));
EXPECT_FALSE(buffer.IsNull());
CHIP_ERROR err = CHIP_NO_ERROR;
MockSessionEstablishmentDelegate mockSender;
ExchangeContext * exchange = NewExchangeToAlice(&mockSender);
ASSERT_NE(exchange, nullptr);
ReliableMessageMgr * rm = GetExchangeManager().GetReliableMessageMgr();
ASSERT_NE(rm, nullptr);
exchange->GetSessionHandle()->AsSecureSession()->SetRemoteSessionParameters(ReliableMessageProtocolConfig({
64_ms32, // CHIP_CONFIG_MRP_LOCAL_IDLE_RETRY_INTERVAL
64_ms32, // CHIP_CONFIG_MRP_LOCAL_ACTIVE_RETRY_INTERVAL
}));
mockSender.mMessageDispatch.mRetainMessageOnSend = false;
// Let's drop the initial message
auto & loopback = GetLoopback();
loopback.mSentMessageCount = 0;
loopback.mNumMessagesToDrop = 1;
loopback.mDroppedMessageCount = 0;
// Ensure the retransmit table is empty right now
EXPECT_EQ(rm->TestGetCountRetransTable(), 0);
err = exchange->SendMessage(Echo::MsgType::EchoRequest, std::move(buffer));
EXPECT_EQ(err, CHIP_NO_ERROR);
DrainAndServiceIO();
// Ensure the message was dropped
EXPECT_EQ(loopback.mDroppedMessageCount, 1u);
// Wait for the first re-transmit (should take 64ms)
GetIOContext().DriveIOUntil(1000_ms32, [&] { return loopback.mSentMessageCount >= 2; });
DrainAndServiceIO();
// Ensure the retransmit table is empty, as we did not provide a message to retain
EXPECT_EQ(rm->TestGetCountRetransTable(), 0);
}
TEST_F(TestReliableMessageProtocol, CheckUnencryptedMessageReceiveFailure)
{
chip::System::PacketBufferHandle buffer = chip::MessagePacketBuffer::NewWithData(PAYLOAD, sizeof(PAYLOAD));
EXPECT_FALSE(buffer.IsNull());
MockSessionEstablishmentDelegate mockReceiver;
CHIP_ERROR err = GetExchangeManager().RegisterUnsolicitedMessageHandlerForType(Echo::MsgType::EchoRequest, &mockReceiver);
EXPECT_EQ(err, CHIP_NO_ERROR);
// Expect the received messages to be encrypted
mockReceiver.mMessageDispatch.mRequireEncryption = true;
MockSessionEstablishmentDelegate mockSender;
ExchangeContext * exchange = NewUnauthenticatedExchangeToAlice(&mockSender);
ASSERT_NE(exchange, nullptr);
ReliableMessageMgr * rm = GetExchangeManager().GetReliableMessageMgr();
ASSERT_NE(rm, nullptr);
auto & loopback = GetLoopback();
loopback.mSentMessageCount = 0;
loopback.mNumMessagesToDrop = 0;
loopback.mDroppedMessageCount = 0;
// We are sending a malicious packet, doesn't expect an ack
err = exchange->SendMessage(Echo::MsgType::EchoRequest, std::move(buffer), SendFlags(SendMessageFlags::kNoAutoRequestAck));
EXPECT_EQ(err, CHIP_NO_ERROR);
DrainAndServiceIO();
// Test that the message was actually sent (and not dropped)
EXPECT_EQ(loopback.mSentMessageCount, 1u);
EXPECT_EQ(loopback.mDroppedMessageCount, 0u);
// Test that the message was dropped by the receiver
EXPECT_FALSE(mockReceiver.IsOnMessageReceivedCalled);
EXPECT_EQ(rm->TestGetCountRetransTable(), 0);
}
TEST_F(TestReliableMessageProtocol, CheckResendApplicationMessageWithPeerExchange)
{
chip::System::PacketBufferHandle buffer = chip::MessagePacketBuffer::NewWithData(PAYLOAD, sizeof(PAYLOAD));
EXPECT_FALSE(buffer.IsNull());
CHIP_ERROR err = CHIP_NO_ERROR;
MockAppDelegate mockReceiver(*this);
err = GetExchangeManager().RegisterUnsolicitedMessageHandlerForType(Echo::MsgType::EchoRequest, &mockReceiver);
EXPECT_EQ(err, CHIP_NO_ERROR);
MockAppDelegate mockSender(*this);
ExchangeContext * exchange = NewExchangeToAlice(&mockSender);
ASSERT_NE(exchange, nullptr);
ReliableMessageMgr * rm = GetExchangeManager().GetReliableMessageMgr();
ASSERT_NE(rm, nullptr);
exchange->GetSessionHandle()->AsSecureSession()->SetRemoteSessionParameters(ReliableMessageProtocolConfig({
64_ms32, // CHIP_CONFIG_MRP_LOCAL_IDLE_RETRY_INTERVAL
64_ms32, // CHIP_CONFIG_MRP_LOCAL_ACTIVE_RETRY_INTERVAL
}));
// Let's drop the initial message
auto & loopback = GetLoopback();
loopback.mSentMessageCount = 0;
loopback.mNumMessagesToDrop = 1;
loopback.mDroppedMessageCount = 0;
// Ensure the retransmit table is empty right now
EXPECT_EQ(rm->TestGetCountRetransTable(), 0);
err = exchange->SendMessage(Echo::MsgType::EchoRequest, std::move(buffer));
EXPECT_EQ(err, CHIP_NO_ERROR);
DrainAndServiceIO();
// Ensure the message was dropped, and was added to retransmit table
EXPECT_EQ(loopback.mNumMessagesToDrop, 0u);
EXPECT_EQ(loopback.mDroppedMessageCount, 1u);
EXPECT_EQ(rm->TestGetCountRetransTable(), 1);
EXPECT_FALSE(mockReceiver.IsOnMessageReceivedCalled);
// Wait for the first re-transmit (should take 64ms)
GetIOContext().DriveIOUntil(1000_ms32, [&] { return loopback.mSentMessageCount >= 2; });
DrainAndServiceIO();
// Ensure the retransmit message was not dropped, and is no longer in the retransmit table
EXPECT_GE(loopback.mSentMessageCount, 2u);
EXPECT_EQ(loopback.mDroppedMessageCount, 1u);
EXPECT_EQ(rm->TestGetCountRetransTable(), 0);
EXPECT_TRUE(mockReceiver.IsOnMessageReceivedCalled);
err = GetExchangeManager().UnregisterUnsolicitedMessageHandlerForType(Echo::MsgType::EchoRequest);
EXPECT_EQ(err, CHIP_NO_ERROR);
}
TEST_F(TestReliableMessageProtocol, CheckDuplicateMessageClosedExchange)
{
chip::System::PacketBufferHandle buffer = chip::MessagePacketBuffer::NewWithData(PAYLOAD, sizeof(PAYLOAD));
EXPECT_FALSE(buffer.IsNull());
CHIP_ERROR err = CHIP_NO_ERROR;
MockAppDelegate mockReceiver(*this);
err = GetExchangeManager().RegisterUnsolicitedMessageHandlerForType(Echo::MsgType::EchoRequest, &mockReceiver);
EXPECT_EQ(err, CHIP_NO_ERROR);
MockAppDelegate mockSender(*this);
ExchangeContext * exchange = NewExchangeToAlice(&mockSender);
ASSERT_NE(exchange, nullptr);
ReliableMessageMgr * rm = GetExchangeManager().GetReliableMessageMgr();
ASSERT_NE(rm, nullptr);
exchange->GetSessionHandle()->AsSecureSession()->SetRemoteSessionParameters(ReliableMessageProtocolConfig({
64_ms32, // CHIP_CONFIG_RMP_DEFAULT_INITIAL_RETRY_INTERVAL
64_ms32, // CHIP_CONFIG_RMP_DEFAULT_ACTIVE_RETRY_INTERVAL
}));
// Let's not drop the message. Expectation is that it is received by the peer, but the ack is dropped
auto & loopback = GetLoopback();
loopback.mSentMessageCount = 0;
loopback.mNumMessagesToDrop = 0;
loopback.mDroppedMessageCount = 0;
// Drop the ack, and also close the peer exchange
mockReceiver.SetDropAckResponse(true);
mockReceiver.mRetainExchange = false;
// Ensure the retransmit table is empty right now
EXPECT_EQ(rm->TestGetCountRetransTable(), 0);
err = exchange->SendMessage(Echo::MsgType::EchoRequest, std::move(buffer));
EXPECT_EQ(err, CHIP_NO_ERROR);
DrainAndServiceIO();
// Ensure the message was sent
// The ack was dropped, and message was added to the retransmit table
EXPECT_EQ(loopback.mSentMessageCount, 1u);
EXPECT_EQ(loopback.mDroppedMessageCount, 0u);
EXPECT_EQ(rm->TestGetCountRetransTable(), 1);
// Let's not drop the duplicate message
mockReceiver.SetDropAckResponse(false);
err = GetExchangeManager().UnregisterUnsolicitedMessageHandlerForType(Echo::MsgType::EchoRequest);
EXPECT_EQ(err, CHIP_NO_ERROR);
// Wait for the first re-transmit and ack (should take 64ms)
GetIOContext().DriveIOUntil(1000_ms32, [&] { return loopback.mSentMessageCount >= 3; });
DrainAndServiceIO();
// Ensure the retransmit message was sent and the ack was sent
// and retransmit table was cleared
EXPECT_EQ(loopback.mSentMessageCount, 3u);
EXPECT_EQ(loopback.mDroppedMessageCount, 0u);
EXPECT_EQ(rm->TestGetCountRetransTable(), 0);
}
TEST_F(TestReliableMessageProtocol, CheckDuplicateOldMessageClosedExchange)
{
chip::System::PacketBufferHandle buffer = chip::MessagePacketBuffer::NewWithData(PAYLOAD, sizeof(PAYLOAD));
EXPECT_FALSE(buffer.IsNull());
CHIP_ERROR err = CHIP_NO_ERROR;
MockAppDelegate mockReceiver(*this);
err = GetExchangeManager().RegisterUnsolicitedMessageHandlerForType(Echo::MsgType::EchoRequest, &mockReceiver);
EXPECT_EQ(err, CHIP_NO_ERROR);
MockAppDelegate mockSender(*this);
ExchangeContext * exchange = NewExchangeToAlice(&mockSender);
ASSERT_NE(exchange, nullptr);
ReliableMessageMgr * rm = GetExchangeManager().GetReliableMessageMgr();
ASSERT_NE(rm, nullptr);
exchange->GetSessionHandle()->AsSecureSession()->SetRemoteSessionParameters(ReliableMessageProtocolConfig({
64_ms32, // CHIP_CONFIG_RMP_DEFAULT_INITIAL_RETRY_INTERVAL
64_ms32, // CHIP_CONFIG_RMP_DEFAULT_ACTIVE_RETRY_INTERVAL
}));
// Let's not drop the message. Expectation is that it is received by the peer, but the ack is dropped
auto & loopback = GetLoopback();
loopback.mSentMessageCount = 0;
loopback.mNumMessagesToDrop = 0;
loopback.mDroppedMessageCount = 0;
// Drop the ack, and also close the peer exchange
mockReceiver.SetDropAckResponse(true);
mockReceiver.mRetainExchange = false;
// Ensure the retransmit table is empty right now
EXPECT_EQ(rm->TestGetCountRetransTable(), 0);
err = exchange->SendMessage(Echo::MsgType::EchoRequest, std::move(buffer));
EXPECT_EQ(err, CHIP_NO_ERROR);
DrainAndServiceIO();
// Ensure the message was sent
// The ack was dropped, and message was added to the retransmit table
EXPECT_EQ(loopback.mSentMessageCount, 1u);
EXPECT_EQ(loopback.mDroppedMessageCount, 0u);
EXPECT_EQ(rm->TestGetCountRetransTable(), 1);
// Now send CHIP_CONFIG_MESSAGE_COUNTER_WINDOW_SIZE + 2 messages to make
// sure our original message is out of the message counter window. These
// messages can be sent withour MRP, because we are not expecting acks for
// them anyway.
size_t extraMessages = CHIP_CONFIG_MESSAGE_COUNTER_WINDOW_SIZE + 2;
for (size_t i = 0; i < extraMessages; ++i)
{
buffer = chip::MessagePacketBuffer::NewWithData(PAYLOAD, sizeof(PAYLOAD));
EXPECT_FALSE(buffer.IsNull());
ExchangeContext * newExchange = NewExchangeToAlice(&mockSender);
ASSERT_NE(newExchange, nullptr);
mockReceiver.mRetainExchange = false;
// Ensure the retransmit table has our one message right now
EXPECT_EQ(rm->TestGetCountRetransTable(), 1);
// Send without MRP.
err = newExchange->SendMessage(Echo::MsgType::EchoRequest, std::move(buffer), SendMessageFlags::kNoAutoRequestAck);
EXPECT_EQ(err, CHIP_NO_ERROR);
DrainAndServiceIO();
// Ensure the message was sent, but not added to the retransmit table.
EXPECT_EQ(loopback.mSentMessageCount, 1u + (i + 1u));
EXPECT_EQ(loopback.mDroppedMessageCount, 0u);
EXPECT_EQ(rm->TestGetCountRetransTable(), 1);
}
// Let's not drop the duplicate message's ack.
mockReceiver.SetDropAckResponse(false);
err = GetExchangeManager().UnregisterUnsolicitedMessageHandlerForType(Echo::MsgType::EchoRequest);
EXPECT_EQ(err, CHIP_NO_ERROR);
// Wait for the first re-transmit and ack (should take 64ms)
rm->StartTimer();
GetIOContext().DriveIOUntil(1000_ms32, [&] { return loopback.mSentMessageCount >= 3 + extraMessages; });
DrainAndServiceIO();
// Ensure the retransmit message was sent and the ack was sent
// and retransmit table was cleared
EXPECT_EQ(loopback.mSentMessageCount, 3u + extraMessages);
EXPECT_EQ(loopback.mDroppedMessageCount, 0u);
EXPECT_EQ(rm->TestGetCountRetransTable(), 0);
}
TEST_F(TestReliableMessageProtocol, CheckResendSessionEstablishmentMessageWithPeerExchange)
{
chip::System::PacketBufferHandle buffer = chip::MessagePacketBuffer::NewWithData(PAYLOAD, sizeof(PAYLOAD));
ASSERT_FALSE(buffer.IsNull());
MockSessionEstablishmentDelegate mockReceiver;
CHIP_ERROR err = GetExchangeManager().RegisterUnsolicitedMessageHandlerForType(Echo::MsgType::EchoRequest, &mockReceiver);
EXPECT_EQ(err, CHIP_NO_ERROR);
MockSessionEstablishmentDelegate mockSender;
ExchangeContext * exchange = NewUnauthenticatedExchangeToAlice(&mockSender);
ASSERT_NE(exchange, nullptr);
ReliableMessageMgr * rm = GetExchangeManager().GetReliableMessageMgr();
ASSERT_NE(rm, nullptr);
exchange->GetSessionHandle()->AsUnauthenticatedSession()->SetRemoteSessionParameters(ReliableMessageProtocolConfig({
64_ms32, // CHIP_CONFIG_MRP_LOCAL_IDLE_RETRY_INTERVAL
64_ms32, // CHIP_CONFIG_MRP_LOCAL_ACTIVE_RETRY_INTERVAL
}));
// Let's drop the initial message
auto & loopback = GetLoopback();
loopback.mSentMessageCount = 0;
loopback.mNumMessagesToDrop = 1;
loopback.mDroppedMessageCount = 0;
// Ensure the retransmit table is empty right now
EXPECT_EQ(rm->TestGetCountRetransTable(), 0);
err = exchange->SendMessage(Echo::MsgType::EchoRequest, std::move(buffer));
EXPECT_EQ(err, CHIP_NO_ERROR);
DrainAndServiceIO();
// Ensure the message was dropped, and was added to retransmit table
EXPECT_EQ(loopback.mNumMessagesToDrop, 0u);
EXPECT_EQ(loopback.mDroppedMessageCount, 1u);
EXPECT_EQ(rm->TestGetCountRetransTable(), 1);
EXPECT_FALSE(mockReceiver.IsOnMessageReceivedCalled);
// Wait for the first re-transmit (should take 64ms)
GetIOContext().DriveIOUntil(1000_ms32, [&] { return loopback.mSentMessageCount >= 2; });
DrainAndServiceIO();
// Ensure the retransmit message was not dropped, and is no longer in the retransmit table
EXPECT_GE(loopback.mSentMessageCount, 2u);
EXPECT_EQ(loopback.mDroppedMessageCount, 1u);
EXPECT_EQ(rm->TestGetCountRetransTable(), 0);
EXPECT_TRUE(mockReceiver.IsOnMessageReceivedCalled);
err = GetExchangeManager().UnregisterUnsolicitedMessageHandlerForType(Echo::MsgType::EchoRequest);
EXPECT_EQ(err, CHIP_NO_ERROR);
}
TEST_F(TestReliableMessageProtocol, CheckDuplicateMessage)
{
chip::System::PacketBufferHandle buffer = chip::MessagePacketBuffer::NewWithData(PAYLOAD, sizeof(PAYLOAD));
EXPECT_FALSE(buffer.IsNull());
CHIP_ERROR err = CHIP_NO_ERROR;
MockAppDelegate mockReceiver(*this);
err = GetExchangeManager().RegisterUnsolicitedMessageHandlerForType(Echo::MsgType::EchoRequest, &mockReceiver);
EXPECT_EQ(err, CHIP_NO_ERROR);
MockAppDelegate mockSender(*this);
ExchangeContext * exchange = NewExchangeToAlice(&mockSender);
ASSERT_NE(exchange, nullptr);
ReliableMessageMgr * rm = GetExchangeManager().GetReliableMessageMgr();
ASSERT_NE(rm, nullptr);
exchange->GetSessionHandle()->AsSecureSession()->SetRemoteSessionParameters(ReliableMessageProtocolConfig({
64_ms32, // CHIP_CONFIG_RMP_DEFAULT_INITIAL_RETRY_INTERVAL
64_ms32, // CHIP_CONFIG_RMP_DEFAULT_ACTIVE_RETRY_INTERVAL
}));
// Let's not drop the message. Expectation is that it is received by the peer, but the ack is dropped
auto & loopback = GetLoopback();
loopback.mSentMessageCount = 0;
loopback.mNumMessagesToDrop = 0;
loopback.mDroppedMessageCount = 0;
// Drop the ack, and keep the exchange around to receive the duplicate message
mockReceiver.SetDropAckResponse(true);
mockReceiver.mRetainExchange = true;
// Ensure the retransmit table is empty right now
EXPECT_EQ(rm->TestGetCountRetransTable(), 0);
err = exchange->SendMessage(Echo::MsgType::EchoRequest, std::move(buffer));
EXPECT_EQ(err, CHIP_NO_ERROR);
DrainAndServiceIO();
// Ensure the message was sent
// The ack was dropped, and message was added to the retransmit table
EXPECT_EQ(loopback.mSentMessageCount, 1u);
EXPECT_EQ(loopback.mDroppedMessageCount, 0u);
EXPECT_EQ(rm->TestGetCountRetransTable(), 1);
err = GetExchangeManager().UnregisterUnsolicitedMessageHandlerForType(Echo::MsgType::EchoRequest);
EXPECT_EQ(err, CHIP_NO_ERROR);
// Let's not drop the duplicate message
mockReceiver.SetDropAckResponse(false);
mockReceiver.mRetainExchange = false;
// Wait for the first re-transmit and ack (should take 64ms)
GetIOContext().DriveIOUntil(1000_ms32, [&] { return loopback.mSentMessageCount >= 3; });
DrainAndServiceIO();
// Ensure the retransmit message was sent and the ack was sent
// and retransmit table was cleared
EXPECT_EQ(loopback.mSentMessageCount, 3u);
EXPECT_EQ(loopback.mDroppedMessageCount, 0u);
EXPECT_EQ(rm->TestGetCountRetransTable(), 0);
mockReceiver.CloseExchangeIfNeeded();
}
TEST_F(TestReliableMessageProtocol, CheckReceiveAfterStandaloneAck)
{
chip::System::PacketBufferHandle buffer = chip::MessagePacketBuffer::NewWithData(PAYLOAD, sizeof(PAYLOAD));
EXPECT_FALSE(buffer.IsNull());
CHIP_ERROR err = CHIP_NO_ERROR;
MockAppDelegate mockReceiver(*this);
err = GetExchangeManager().RegisterUnsolicitedMessageHandlerForType(Echo::MsgType::EchoRequest, &mockReceiver);
EXPECT_EQ(err, CHIP_NO_ERROR);
MockAppDelegate mockSender(*this);
ExchangeContext * exchange = NewExchangeToAlice(&mockSender);
ASSERT_NE(exchange, nullptr);