agntcy-slim-session 0.3.0

SLIM session internal implementation.
Documentation
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
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
// Copyright AGNTCY Contributors (https://github.com/agntcy)
// SPDX-License-Identifier: Apache-2.0

use std::{collections::HashMap, time::Duration};

use slim_auth::traits::{TokenProvider, Verifier};
use slim_datapath::{
    api::{
        CommandPayload, Participant, ParticipantSettings, ProtoMessage as Message, ProtoName,
        ProtoSessionMessageType, ProtoSessionType,
    },
    messages::utils::{LEAVING_SESSION, TRUE_VAL},
};
use slim_mls::mls::Mls;

use tracing::debug;

use crate::{
    common::{MessageDirection, SessionMessage, SessionOutput},
    errors::SessionError,
    mls_state::MlsState,
    runtime::maybe_await,
    session_controller::SessionControllerCommon,
    session_settings::SessionSettings,
    subscription_manager::{SubscriptionManager, SubscriptionOps},
    traits::{MessageHandler, ProcessingState},
};

pub struct SessionParticipant<P, V, I, M = SubscriptionManager>
where
    P: TokenProvider + Send + Sync + Clone + 'static,
    V: Verifier + Send + Sync + Clone + 'static,
    I: MessageHandler + Send + Sync + 'static,
    M: SubscriptionOps,
{
    /// name of the moderator, used to send mls proposal messages
    moderator_name: Option<ProtoName>,

    /// list of participants
    group_list: HashMap<ProtoName, ParticipantSettings>,

    /// mls state
    mls_state: Option<MlsState<P, V>>,

    /// common session state
    common: SessionControllerCommon<P, V, M>,

    /// connection id from where the remote messages are received
    conn_id: Option<u64>,

    subscribed: bool,

    /// True while a LeaveCleanup self-message is pending (route teardown deferred).
    /// Prevents the processing loop from exiting before cleanup completes.
    pending_leave_cleanup: bool,

    /// inner layer
    inner: I,
}

impl<P, V, I, M> SessionParticipant<P, V, I, M>
where
    P: TokenProvider + Send + Sync + Clone + 'static,
    V: Verifier + Send + Sync + Clone + 'static,
    I: MessageHandler + Send + Sync + 'static,
    M: SubscriptionOps,
{
    pub(crate) fn new(inner: I, settings: SessionSettings<P, V, M>) -> Self {
        let common = SessionControllerCommon::new(settings);

        SessionParticipant {
            moderator_name: None,
            group_list: HashMap::new(),
            mls_state: None,
            common,
            conn_id: None,
            subscribed: false,
            pending_leave_cleanup: false,
            inner,
        }
    }
}

/// Implementation of MessageHandler trait for SessionParticipant
/// This allows the participant to be used as a layer in the generic layer system
impl<P, V, I, M> MessageHandler for SessionParticipant<P, V, I, M>
where
    P: TokenProvider + Send + Sync + Clone + 'static,
    V: Verifier + Send + Sync + Clone + 'static,
    I: MessageHandler + Send + Sync + 'static,
    M: SubscriptionOps,
{
    async fn init(&mut self) -> Result<(), SessionError> {
        // Initialize MLS
        self.mls_state = if let Some(mls_settings) = &self.common.settings.config.mls_settings {
            let mls_state = MlsState::new(
                Mls::new(
                    self.common.settings.identity_provider.clone(),
                    self.common.settings.identity_verifier.clone(),
                ),
                mls_settings.header_integrity_validation_percent,
            )
            .await
            .expect("failed to create MLS state");
            Some(mls_state)
        } else {
            None
        };

        Ok(())
    }

    async fn on_message(&mut self, message: SessionMessage) -> Result<SessionOutput, SessionError> {
        let mut output = SessionOutput::new();

        match message {
            SessionMessage::OnMessage {
                mut message,
                direction,
                ack_tx,
            } => {
                if message.get_session_message_type().is_command_message() {
                    debug!(
                        message = ?message.get_session_message_type(),
                        source = %message.get_source(),
                        "received message",
                    );
                    output.extend(self.process_control_message(message).await?);
                } else {
                    if direction == MessageDirection::North
                        && let Some(mls_state) = &mut self.mls_state
                    {
                        maybe_await!(mls_state.process_message(&mut message, direction))?;
                    }

                    let inner_output = self
                        .inner
                        .on_message(SessionMessage::OnMessage {
                            message,
                            direction,
                            ack_tx,
                        })
                        .await?;

                    output.extend(inner_output);
                }
            }
            SessionMessage::MessageError { error } => {
                output.extend(self.handle_message_error(error).await?);
            }
            SessionMessage::TimerTimeout {
                message_id,
                message_type,
                name,
                timeouts,
            } => {
                if message_type.is_command_message() {
                    output.extend(
                        self.common
                            .sender
                            .on_timer_timeout(message_id, message_type)?,
                    );
                } else {
                    let inner_output = self
                        .inner
                        .on_message(SessionMessage::TimerTimeout {
                            message_id,
                            message_type,
                            name,
                            timeouts,
                        })
                        .await?;

                    output.extend(inner_output);
                }
            }
            SessionMessage::TimerFailure {
                message_id,
                message_type,
                name,
                timeouts,
            } => {
                if message_type.is_command_message() {
                    self.common.sender.on_failure(message_id, message_type);
                } else {
                    output.extend(
                        self.inner
                            .on_message(SessionMessage::TimerFailure {
                                message_id,
                                message_type,
                                name,
                                timeouts,
                            })
                            .await?,
                    );
                }
            }
            SessionMessage::StartDrain {
                grace_period: duration,
            } => {
                debug!("received drain signal");
                let p = CommandPayload::builder().leave_request().as_content();
                if let Some(moderator) = &self.moderator_name {
                    let mut msg = self.common.create_control_message(
                        moderator,
                        ProtoSessionMessageType::LeaveRequest,
                        rand::random::<u32>(),
                        p,
                        false,
                    )?;
                    debug!("start drain and notify the moderator");
                    msg.insert_metadata(LEAVING_SESSION.to_string(), TRUE_VAL.to_string());

                    self.disconnect_from_group().await?;

                    output.extend(self.common.sender.on_message(&msg)?);
                }

                self.common.processing_state = ProcessingState::Draining;
                output.extend(
                    self.inner
                        .on_message(SessionMessage::StartDrain {
                            grace_period: duration,
                        })
                        .await?,
                );
                self.common.sender.start_drain();
            }
            SessionMessage::ParticipantDisconnected { name: _ } => {
                debug!("The moderator is not anymore connected to the current session, close it",);

                self.common.processing_state = ProcessingState::Draining;
                output.extend(
                    self.inner
                        .on_message(SessionMessage::StartDrain {
                            grace_period: Duration::from_secs(1),
                        })
                        .await?,
                );
                self.common.sender.start_drain();
            }
            SessionMessage::LeaveCleanup => {
                self.disconnect_from_group().await?;
                self.disconnect_from_moderator().await?;
                self.pending_leave_cleanup = false;
            }
            _ => {
                return Err(SessionError::SessionMessageInternalUnexpected(Box::new(
                    message,
                )));
            }
        }

        maybe_await!(self.encrypt_output(&mut output))?;

        Ok(output)
    }

    async fn add_endpoint(
        &mut self,
        endpoint: &Participant,
    ) -> Result<SessionOutput, SessionError> {
        self.inner.add_endpoint(endpoint).await
    }

    fn remove_endpoint(&mut self, endpoint: &ProtoName) {
        self.inner.remove_endpoint(endpoint);
    }

    fn needs_drain(&self) -> bool {
        self.pending_leave_cleanup
            || !self.common.sender.drain_completed()
            || self.inner.needs_drain()
    }

    fn processing_state(&self) -> ProcessingState {
        self.common.processing_state
    }

    fn participants_list(&self) -> Vec<ProtoName> {
        self.group_list.keys().cloned().collect()
    }

    async fn on_shutdown(&mut self) -> Result<(), SessionError> {
        // Participant-specific cleanup
        self.subscribed = false;
        self.common.sender.close();

        // Shutdown inner layer
        MessageHandler::on_shutdown(&mut self.inner).await
    }
}

impl<P, V, I, M> SessionParticipant<P, V, I, M>
where
    P: TokenProvider + Send + Sync + Clone + 'static,
    V: Verifier + Send + Sync + Clone + 'static,
    I: MessageHandler + Send + Sync + 'static,
    M: SubscriptionOps,
{
    #[maybe_async::maybe_async]
    async fn encrypt_output(&mut self, output: &mut SessionOutput) -> Result<(), SessionError> {
        crate::session_controller::SessionController::apply_identity_to_slim_output(
            output,
            &self.common.settings.identity_provider,
        )?;
        if let Some(mls_state) = &mut self.mls_state {
            mls_state.encrypt_output(output).await?;
        }
        Ok(())
    }

    /// Helper method to handle MessageError
    /// Extracts context from the error and routes to appropriate handler
    async fn handle_message_error(
        &mut self,
        error: SessionError,
    ) -> Result<SessionOutput, SessionError> {
        let Some(session_ctx) = error.session_context() else {
            tracing::warn!("Received MessageError without session context");
            return self
                .inner
                .on_message(SessionMessage::MessageError { error })
                .await;
        };

        if error.is_command_message_error() {
            self.common.sender.on_failure(
                session_ctx.message_id,
                session_ctx.get_session_message_type(),
            );
            Ok(SessionOutput::new())
        } else {
            self.inner
                .on_message(SessionMessage::MessageError { error })
                .await
        }
    }

    async fn process_control_message(
        &mut self,
        message: Message,
    ) -> Result<SessionOutput, SessionError> {
        match message.get_session_message_type() {
            ProtoSessionMessageType::JoinRequest => self.on_join_request(message).await,
            ProtoSessionMessageType::GroupWelcome => self.on_welcome(message).await,
            ProtoSessionMessageType::GroupAdd => self.on_group_update_message(message, true).await,
            ProtoSessionMessageType::GroupRemove => {
                self.on_group_update_message(message, false).await
            }
            ProtoSessionMessageType::LeaveRequest | ProtoSessionMessageType::GroupClose => {
                self.on_leave_request(message).await
            }
            ProtoSessionMessageType::Ping => self.on_ping(message).await,
            ProtoSessionMessageType::LeaveReply => {
                // this message is received when the moderator ack the
                // reception of the leave request sent on Drain start
                // if the participant in not on drain state drop the message
                if self.common.processing_state == ProcessingState::Draining {
                    return self.common.sender.on_message(&message);
                }
                Ok(SessionOutput::new())
            }
            ProtoSessionMessageType::GroupProposal
            | ProtoSessionMessageType::GroupAck
            | ProtoSessionMessageType::GroupNack => todo!(),
            ProtoSessionMessageType::DiscoveryRequest
            | ProtoSessionMessageType::DiscoveryReply
            | ProtoSessionMessageType::JoinReply => {
                debug!(
                    control_message_type = ?message.get_session_message_type(),
                    "Unexpected control message type",
                );
                Ok(SessionOutput::new())
            }
            _ => {
                debug!(
                    message_type = ?message.get_session_message_type(),
                    "Unexpected message type",
                );
                Ok(SessionOutput::new())
            }
        }
    }

    async fn on_join_request(&mut self, msg: Message) -> Result<SessionOutput, SessionError> {
        debug!(
            name = %self.common.settings.source,
            id = %msg.get_id(),
            "received join request",
        );
        let source = msg.get_source();
        self.moderator_name = Some(source.clone());

        self.common
            .add_route(source.clone(), msg.get_incoming_conn())
            .await?;

        let key_package = if let Some(mls_state) = &mut self.mls_state {
            debug!("mls enabled, create the package key");
            let key = maybe_await!(mls_state.generate_key_package())?;
            Some(key)
        } else {
            None
        };

        let participant = Participant::new(
            self.common.settings.source.clone(),
            self.common.settings.direction.to_participant_settings(),
        );

        let content = CommandPayload::builder()
            .join_reply(key_package, participant)
            .as_content();

        debug!("send join reply message");
        let reply = self.common.create_control_message(
            &source,
            ProtoSessionMessageType::JoinReply,
            msg.get_id(),
            content,
            false,
        )?;

        Ok(SessionOutput::to_slim(reply))
    }

    async fn on_welcome(&mut self, msg: Message) -> Result<SessionOutput, SessionError> {
        debug!(
            name = %self.common.settings.source,
            id = %msg.get_id(),
            "received welcome message",
        );

        if let Some(mls_state) = &mut self.mls_state {
            maybe_await!(mls_state.process_welcome_message(&msg))?;
        }

        self.join(&msg).await?;

        let list = &msg
            .get_payload()
            .unwrap()
            .as_command_payload()?
            .as_welcome_payload()?
            .participants;
        for p in list {
            let name = p.get_name()?;
            self.group_list.insert(name.clone(), *p.get_settings()?);

            if name != self.common.settings.source.clone() {
                debug!(name = %msg.get_source(), "add endpoint to the session");
                // add a route to the new endpoint, this is needed in case of message retransmission
                // skip the moderator as the route is already added in on_join_request
                if self.moderator_name.as_ref() != Some(&name) {
                    self.common
                        .add_route(name.clone(), msg.get_incoming_conn())
                        .await?;
                }
                self.add_endpoint(p).await?;
            }
        }

        let ack = self.common.create_control_message(
            &msg.get_source(),
            ProtoSessionMessageType::GroupAck,
            msg.get_id(),
            CommandPayload::builder().group_ack().as_content(),
            false,
        )?;

        Ok(SessionOutput::to_slim(ack))
    }

    async fn on_group_update_message(
        &mut self,
        msg: Message,
        add: bool,
    ) -> Result<SessionOutput, SessionError> {
        debug!(
            name = %self.common.settings.source,
            id = %msg.get_id(),
            "received update",
        );

        if let Some(mls_state) = &mut self.mls_state {
            debug!("process mls control update");
            let source_proto = self.common.settings.source.clone();
            let ret = maybe_await!(mls_state.process_control_message(msg.clone(), &source_proto))?;

            if !ret {
                debug!(
                    id = %msg.get_id(),
                    "Message already processed, drop it",
                );
                return Ok(SessionOutput::new());
            }
        }

        if add {
            let p = msg
                .get_payload()
                .unwrap()
                .as_command_payload()?
                .as_group_add_payload()?;
            if let Some(ref new_participant) = p.new_participant {
                let name = new_participant.get_name()?;
                self.group_list
                    .insert(name.clone(), *new_participant.get_settings()?);

                debug!(name  = %msg.get_source(), "add endpoint to session");
                // add a route to the new endpoint, this is needed in case of message retransmission
                self.common.add_route(name, msg.get_incoming_conn()).await?;
                self.add_endpoint(new_participant).await?;
            }
        } else {
            let p = msg
                .get_payload()
                .unwrap()
                .as_command_payload()?
                .as_group_remove_payload()?;
            if let Some(ref removed_participant) = p.removed_participant {
                let name = removed_participant.clone();
                self.group_list.remove(&name);

                debug!(name = %msg.get_source(), "remove endpoint from session");
                // remove a route to the endpoint
                // Skip delete_route when the removed participant is ourselves: we never
                // set up a recv_from subscription for our own name, so the datapath
                // would return SubscriptionNotFound and block the GroupAck.
                if name != self.common.settings.source.clone() {
                    self.common
                        .delete_route(name.clone(), msg.get_incoming_conn())
                        .await?;
                }
                self.inner.remove_endpoint(&name);
            }
        }

        let msg = self.common.create_control_message(
            &msg.get_source(),
            ProtoSessionMessageType::GroupAck,
            msg.get_id(),
            CommandPayload::builder().group_ack().as_content(),
            false,
        )?;
        Ok(SessionOutput::to_slim(msg))
    }

    async fn on_leave_request(&mut self, msg: Message) -> Result<SessionOutput, SessionError> {
        debug!("close session");
        self.common.processing_state = ProcessingState::Draining;

        let (reply_type, reply_content) = match msg.get_session_message_type() {
            ProtoSessionMessageType::GroupClose => {
                // The group is being destroyed — no acks will ever arrive.
                // Close immediately so all pending CompletionHandles resolve
                // with SessionClosed rather than waiting for the retry timer (~9 s).
                self.on_shutdown().await?;
                self.common.sender.close();
                (
                    ProtoSessionMessageType::GroupAck,
                    CommandPayload::builder().group_ack().as_content(),
                )
            }
            _ => {
                // LeaveRequest: drain gracefully, waiting for in-flight acks.
                self.inner
                    .on_message(SessionMessage::StartDrain {
                        grace_period: Duration::from_secs(60), // not used in session
                    })
                    .await?;
                self.common.sender.start_drain();
                (
                    ProtoSessionMessageType::LeaveReply,
                    CommandPayload::builder().leave_reply().as_content(),
                )
            }
        };

        let reply = self.common.create_control_message(
            &msg.get_source(),
            reply_type,
            msg.get_id(),
            reply_content,
            false,
        )?;

        let output = SessionOutput::to_slim(reply);

        // Remove session from pool IMMEDIATELY so that new DiscoveryRequests
        // (e.g., re-adding this participant) are handled as fresh sessions.
        self.common
            .settings
            .tx_to_session_layer
            .send(Ok(SessionMessage::DeleteSession {
                session_id: self.common.settings.id,
            }))
            .await
            .map_err(|_e| SessionError::SessionDeleteMessageSendFailed)?;

        // Schedule disconnect cleanup for AFTER the LeaveReply is dispatched.
        self.pending_leave_cleanup = true;
        self.common
            .settings
            .tx_session
            .send(SessionMessage::LeaveCleanup)
            .await
            .map_err(|_| SessionError::SlimMessageSendFailed)?;

        Ok(output)
    }

    async fn on_ping(&mut self, mut msg: Message) -> Result<SessionOutput, SessionError> {
        debug!("received ping message, reply");
        // send ping to the local sender to register the reception
        let mut output = self.common.sender.on_message(&msg)?;

        // reply to the ping
        let header = msg.get_slim_header_mut();
        let src = header.get_source();
        header.set_source(self.common.settings.source.clone());
        header.set_destination(src);
        output.extend(SessionOutput::to_slim(msg));
        Ok(output)
    }

    async fn join(&mut self, msg: &Message) -> Result<(), SessionError> {
        if self.subscribed {
            return Ok(());
        }

        self.subscribed = true;

        self.conn_id = Some(msg.get_incoming_conn());

        if self.common.settings.config.session_type == ProtoSessionType::PointToPoint {
            return Ok(());
        }

        let destination = self.common.settings.destination.clone();
        let control = self.common.settings.control.clone();
        self.common
            .add_route(destination.clone(), msg.get_incoming_conn())
            .await?;
        self.common
            .add_subscription(destination, msg.get_incoming_conn())
            .await?;
        self.common
            .add_route(control.clone(), msg.get_incoming_conn())
            .await?;
        self.common
            .add_subscription(control, msg.get_incoming_conn())
            .await
    }

    async fn disconnect_from_group(&mut self) -> Result<(), SessionError> {
        if self.common.settings.config.session_type == ProtoSessionType::PointToPoint {
            return Ok(());
        }

        if let Some(conn_id) = self.conn_id {
            self.common
                .delete_route(self.common.settings.destination.clone(), conn_id)
                .await?;
            self.common
                .delete_subscription(self.common.settings.destination.clone(), conn_id)
                .await?;
            self.common
                .delete_route(self.common.settings.control.clone(), conn_id)
                .await?;
            self.common
                .delete_subscription(self.common.settings.control.clone(), conn_id)
                .await?;
        }

        // remove also all the routes to the other participants except the moderator
        // it will be removed in disconnect_from_moderator
        for (n, _) in self.group_list.iter() {
            if self.moderator_name.as_ref() != Some(n)
                && let Err(e) = self
                    .common
                    .delete_route(n.clone(), self.conn_id.unwrap())
                    .await
            {
                tracing::warn!(error = %e, name = %n, "error deleting route");
            }
        }

        Ok(())
    }

    async fn disconnect_from_moderator(&mut self) -> Result<(), SessionError> {
        if let Some(conn_id) = self.conn_id
            && let Err(e) = self
                .common
                .delete_route(self.moderator_name.as_ref().unwrap().clone(), conn_id)
                .await
        {
            tracing::warn!(error = %e, name = ?self.moderator_name, "error disconnecting from moderator");
        }
        Ok(())
    }
}

#[cfg(test)]
mod tests {
    use super::*;
    use crate::Direction;
    use crate::common::OutboundMessage;
    use crate::session_config::SessionConfig;
    use crate::session_settings::SessionSettings;
    use crate::test_utils::{MockInnerHandler, MockTokenProvider, MockVerifier};
    use slim_datapath::Status;
    use slim_datapath::api::{CommandPayload, NameId, ProtoSessionType};
    use tokio::sync::mpsc;

    // --- Test Helpers -----------------------------------------------------------------------

    /// Drives `fut` to completion while automatically resolving any subscription
    /// ACKs that arrive on `rx_slim` (simulating the SLIM datapath ACK response).
    async fn run_with_acks<F, T>(
        fut: F,
        rx_slim: &mut mpsc::Receiver<Result<Message, Status>>,
        sub_mgr: &crate::subscription_manager::SubscriptionManager,
    ) -> T
    where
        F: std::future::Future<Output = T>,
    {
        let mut pinned = Box::pin(fut);
        loop {
            tokio::select! {
                res = &mut pinned => return res,
                msg = rx_slim.recv() => {
                    if let Some(Ok(msg)) = msg && let Some(ack_id) = msg.get_subscription_id() {
                        let ack = Message::builder().build_subscription_ack(ack_id, true, "");
                        sub_mgr.resolve_ack(ack.get_subscription_ack());
                    }
                }
            }
        }
    }

    fn make_name(parts: &[&str; 3]) -> ProtoName {
        ProtoName::from_strings([parts[0], parts[1], parts[2]]).with_id(0)
    }

    fn make_proto_name(parts: &[&str; 3]) -> ProtoName {
        ProtoName::from_strings([parts[0], parts[1], parts[2]]).with_id(0)
    }

    fn setup_participant(
        session_type: ProtoSessionType,
    ) -> (
        SessionParticipant<MockTokenProvider, MockVerifier, MockInnerHandler>,
        mpsc::Receiver<Result<Message, Status>>,
        mpsc::Receiver<Result<SessionMessage, SessionError>>,
        mpsc::Receiver<SessionMessage>,
    ) {
        let source = make_name(&["local", "participant", "v1"]);
        let (destination, control) = match session_type {
            ProtoSessionType::Multicast => (
                make_name(&["channel", "name", "v1"]).with_id(NameId::DATA_CHANNEL_ID),
                make_name(&["channel", "name", "v1"]).with_id(NameId::CONTROL_CHANNEL_ID),
            ),
            ProtoSessionType::PointToPoint => (
                make_name(&["remote", "participant", "v1"]).with_id(100),
                make_name(&["remote", "participant", "v1"]).with_id(100),
            ),
            _ => panic!("Unsupported session type for test setup"),
        };

        let identity_provider = MockTokenProvider;
        let identity_verifier = MockVerifier;

        let (tx_slim, rx_slim) = mpsc::channel(16);
        let (tx_app, _rx_app) = mpsc::unbounded_channel();
        let (tx_session, rx_session) = mpsc::channel(16);
        let subscription_manager =
            crate::subscription_manager::SubscriptionManager::new(tx_slim.clone());
        let (tx_session_layer, rx_session_layer) = mpsc::channel(16);

        let config = SessionConfig {
            session_type,
            max_retries: Some(3),
            interval: Some(std::time::Duration::from_secs(1)),
            mls_settings: None,
            initiator: false,
            metadata: Default::default(),
        };

        let settings = SessionSettings {
            id: 1,
            source,
            destination,
            control,
            config,
            direction: Direction::Bidirectional,
            slim_tx: tx_slim,
            app_tx: tx_app,
            tx_session,
            tx_to_session_layer: tx_session_layer,
            identity_provider,
            identity_verifier,
            graceful_shutdown_timeout: None,
            subscription_manager,
            service_id: String::new(),
        };

        let inner = MockInnerHandler::new();
        let participant = SessionParticipant::new(inner, settings);

        (participant, rx_slim, rx_session_layer, rx_session)
    }

    #[tokio::test]
    async fn test_participant_new() {
        let (participant, _rx_slim, _rx_session_layer, _rx_session) =
            setup_participant(ProtoSessionType::Multicast);

        assert!(participant.moderator_name.is_none());
        assert!(participant.group_list.is_empty());
        assert!(participant.mls_state.is_none());
        assert!(!participant.subscribed);
    }

    #[tokio::test]
    async fn test_participant_init() {
        let (mut participant, _rx_slim, _rx_session_layer, _rx_session) =
            setup_participant(ProtoSessionType::Multicast);

        let result = participant.init().await;
        assert!(result.is_ok());
        assert!(participant.mls_state.is_none()); // MLS is disabled in test setup
    }

    #[tokio::test]
    async fn test_participant_on_join_request() {
        let (mut participant, mut rx_slim, _rx_session_layer, _rx_session) =
            setup_participant(ProtoSessionType::Multicast);
        participant.init().await.unwrap();

        let moderator = make_name(&["moderator", "app", "v1"]).with_id(300);

        let join_msg = Message::builder()
            .source(moderator.clone())
            .destination(participant.common.settings.source.clone())
            .identity("")
            .forward_to(0)
            .incoming_conn(12345)
            .session_type(ProtoSessionType::Multicast)
            .session_message_type(ProtoSessionMessageType::JoinRequest)
            .session_id(1)
            .message_id(100)
            .payload(
                CommandPayload::builder()
                    .join_request(Some(3), Some(std::time::Duration::from_secs(1)), None, None)
                    .as_content(),
            )
            .build_publish()
            .unwrap();

        let sub_mgr = participant.common.settings.subscription_manager.clone();
        let result = run_with_acks(
            participant.on_join_request(join_msg),
            &mut rx_slim,
            &sub_mgr,
        )
        .await;
        assert!(result.is_ok());

        // Should have set moderator name
        assert_eq!(participant.moderator_name, Some(moderator));

        // Should have returned outbound messages (join reply)
        let output = result.unwrap();
        assert!(
            !output.is_empty(),
            "Should have sent messages including join reply"
        );
    }

    #[tokio::test]
    async fn test_participant_on_welcome_multicast() {
        let (mut participant, mut rx_slim, _rx_session_layer, _rx_session) =
            setup_participant(ProtoSessionType::Multicast);
        participant.init().await.unwrap();

        let moderator = make_name(&["moderator", "app", "v1"]).with_id(300);
        participant.moderator_name = Some(moderator.clone());

        let participant1_name = make_name(&["participant1", "app", "v1"]).with_id(401);
        let participant2_name = make_name(&["participant2", "app", "v1"]).with_id(402);
        let participant1 = Participant::new(
            participant1_name.clone(),
            ParticipantSettings::bidirectional(),
        );
        let participant2 = Participant::new(
            participant2_name.clone(),
            ParticipantSettings::bidirectional(),
        );

        let welcome_msg = Message::builder()
            .source(moderator.clone())
            .destination(participant.common.settings.source.clone())
            .identity("")
            .forward_to(0)
            .incoming_conn(12345)
            .session_type(ProtoSessionType::Multicast)
            .session_message_type(ProtoSessionMessageType::GroupWelcome)
            .session_id(1)
            .message_id(200)
            .payload(
                CommandPayload::builder()
                    .group_welcome(vec![participant1.clone(), participant2.clone()], None)
                    .as_content(),
            )
            .build_publish()
            .unwrap();

        let sub_mgr = participant.common.settings.subscription_manager.clone();
        let result =
            run_with_acks(participant.on_welcome(welcome_msg), &mut rx_slim, &sub_mgr).await;
        assert!(result.is_ok());

        // Should have subscribed
        assert!(participant.subscribed);

        // Should have added participants to group list
        assert_eq!(participant.group_list.len(), 2);

        // Should have added endpoints (excluding self)
        assert_eq!(participant.inner.get_endpoints_added_count().await, 2);
    }

    #[tokio::test]
    async fn test_participant_on_group_add_message() {
        let (mut participant, mut rx_slim, _rx_session_layer, _rx_session) =
            setup_participant(ProtoSessionType::Multicast);
        participant.init().await.unwrap();
        participant.subscribed = true;

        let moderator = make_name(&["moderator", "app", "v1"]).with_id(300);
        participant.moderator_name = Some(moderator.clone());

        let new_participant_name = make_name(&["new_participant", "app", "v1"]).with_id(500);
        let new_participant = Participant::new(
            new_participant_name.clone(),
            ParticipantSettings::bidirectional(),
        );

        let add_msg = Message::builder()
            .source(moderator.clone())
            .destination(participant.common.settings.destination.clone())
            .identity("")
            .forward_to(0)
            .incoming_conn(12345)
            .session_type(ProtoSessionType::Multicast)
            .session_message_type(ProtoSessionMessageType::GroupAdd)
            .session_id(1)
            .message_id(300)
            .payload(
                CommandPayload::builder()
                    .group_add(new_participant.clone(), vec![], None)
                    .as_content(),
            )
            .build_publish()
            .unwrap();

        let sub_mgr = participant.common.settings.subscription_manager.clone();
        let result = run_with_acks(
            participant.on_group_update_message(add_msg, true),
            &mut rx_slim,
            &sub_mgr,
        )
        .await;
        assert!(result.is_ok());

        // Should have added participant to group list
        assert!(participant.group_list.contains_key(&new_participant_name));

        // Should have added endpoint
        assert_eq!(participant.inner.get_endpoints_added_count().await, 1);

        // Should have sent group ack
        let output = result.unwrap();
        assert!(!output.is_empty(), "Should have sent group ack");
    }

    #[tokio::test]
    async fn test_participant_on_group_remove_message() {
        let (mut participant, mut rx_slim, _rx_session_layer, _rx_session) =
            setup_participant(ProtoSessionType::Multicast);
        participant.init().await.unwrap();
        participant.subscribed = true;

        let moderator = make_name(&["moderator", "app", "v1"]).with_id(300);
        participant.moderator_name = Some(moderator.clone());

        let removed_participant_name = make_name(&["removed", "app", "v1"]).with_id(500);
        participant.group_list.insert(
            removed_participant_name.clone(),
            ParticipantSettings::bidirectional(),
        );

        let remove_msg = Message::builder()
            .source(moderator.clone())
            .destination(participant.common.settings.destination.clone())
            .identity("")
            .forward_to(0)
            .incoming_conn(12345)
            .session_type(ProtoSessionType::Multicast)
            .session_message_type(ProtoSessionMessageType::GroupRemove)
            .session_id(1)
            .message_id(400)
            .payload(
                CommandPayload::builder()
                    .group_remove(removed_participant_name.clone(), vec![], None)
                    .as_content(),
            )
            .build_publish()
            .unwrap();

        let sub_mgr = participant.common.settings.subscription_manager.clone();
        let result = run_with_acks(
            participant.on_group_update_message(remove_msg, false),
            &mut rx_slim,
            &sub_mgr,
        )
        .await;
        assert!(result.is_ok());

        // Should have removed participant from group list
        assert!(
            !participant
                .group_list
                .contains_key(&removed_participant_name)
        );

        // Should have removed endpoint
        tokio::time::sleep(tokio::time::Duration::from_millis(10)).await;
        assert_eq!(participant.inner.get_endpoints_removed_count().await, 1);

        // Should have sent group ack
        let output = result.unwrap();
        assert!(!output.is_empty(), "Should have sent group ack");
    }

    #[tokio::test]
    async fn test_participant_on_leave_request() {
        let (mut participant, _rx_slim, mut rx_session_layer, _rx_session) =
            setup_participant(ProtoSessionType::Multicast);
        participant.init().await.unwrap();
        participant.subscribed = true;

        let moderator = make_name(&["moderator", "app", "v1"]).with_id(300);
        participant.moderator_name = Some(moderator.clone());

        let leave_msg = Message::builder()
            .source(moderator.clone())
            .destination(participant.common.settings.source.clone())
            .identity("")
            .forward_to(0)
            .incoming_conn(12345)
            .session_type(ProtoSessionType::Multicast)
            .session_message_type(ProtoSessionMessageType::LeaveRequest)
            .session_id(1)
            .message_id(500)
            .payload(CommandPayload::builder().leave_request().as_content())
            .build_publish()
            .unwrap();

        let result = participant.on_leave_request(leave_msg).await;
        assert!(result.is_ok());

        // Should have sent leave reply
        let output = result.unwrap();
        assert!(!output.is_empty());
        let msg = match &output.messages[0] {
            OutboundMessage::ToSlim(m) => m,
            _ => panic!("Expected ToSlim message"),
        };
        assert_eq!(
            msg.get_session_header().session_message_type(),
            ProtoSessionMessageType::LeaveReply
        );

        // Should have sent delete session message
        let delete_msg = rx_session_layer.try_recv();
        assert!(delete_msg.is_ok());
        if let Ok(Ok(SessionMessage::DeleteSession { session_id })) = delete_msg {
            assert_eq!(session_id, 1);
        } else {
            panic!("Expected DeleteSession message");
        }
    }

    #[tokio::test]
    async fn test_participant_join_multicast() {
        let (mut participant, mut rx_slim, _rx_session_layer, _rx_session) =
            setup_participant(ProtoSessionType::Multicast);
        participant.init().await.unwrap();

        let moderator = make_name(&["moderator", "app", "v1"]).with_id(300);
        let welcome_msg = Message::builder()
            .source(moderator.clone())
            .destination(participant.common.settings.source.clone())
            .identity("")
            .forward_to(0)
            .incoming_conn(12345)
            .session_type(ProtoSessionType::Multicast)
            .session_message_type(ProtoSessionMessageType::GroupWelcome)
            .session_id(1)
            .message_id(100)
            .payload(
                CommandPayload::builder()
                    .group_welcome(vec![], None)
                    .as_content(),
            )
            .build_publish()
            .unwrap();

        let sub_mgr = participant.common.settings.subscription_manager.clone();
        let result = run_with_acks(participant.join(&welcome_msg), &mut rx_slim, &sub_mgr).await;
        assert!(result.is_ok());
        assert!(participant.subscribed);
    }

    #[tokio::test]
    async fn test_participant_join_point_to_point() {
        let (mut participant, _rx_slim, _rx_session_layer, _rx_session) =
            setup_participant(ProtoSessionType::PointToPoint);
        participant.init().await.unwrap();

        let moderator = make_name(&["moderator", "app", "v1"]).with_id(300);
        let msg = Message::builder()
            .source(moderator.clone())
            .destination(participant.common.settings.source.clone())
            .identity("")
            .forward_to(0)
            .incoming_conn(12345)
            .session_type(ProtoSessionType::PointToPoint)
            .session_message_type(ProtoSessionMessageType::JoinRequest)
            .session_id(1)
            .message_id(100)
            .payload(
                CommandPayload::builder()
                    .join_request(Some(3), Some(std::time::Duration::from_secs(1)), None, None)
                    .as_content(),
            )
            .build_publish()
            .unwrap();

        let result = participant.join(&msg).await;
        assert!(result.is_ok());
        assert!(participant.subscribed);
        // P2P doesn't send subscribe message
    }

    #[tokio::test]
    async fn test_participant_join_idempotent() {
        let (mut participant, mut rx_slim, _rx_session_layer, _rx_session) =
            setup_participant(ProtoSessionType::Multicast);
        participant.init().await.unwrap();

        let moderator = make_name(&["moderator", "app", "v1"]).with_id(300);
        let msg = Message::builder()
            .source(moderator.clone())
            .destination(participant.common.settings.source.clone())
            .identity("")
            .forward_to(0)
            .incoming_conn(12345)
            .session_type(ProtoSessionType::Multicast)
            .session_message_type(ProtoSessionMessageType::GroupWelcome)
            .session_id(1)
            .message_id(100)
            .payload(
                CommandPayload::builder()
                    .group_welcome(vec![], None)
                    .as_content(),
            )
            .build_publish()
            .unwrap();

        let sub_mgr = participant.common.settings.subscription_manager.clone();

        // First join — run_with_acks drains and ACKs all subscribe messages
        run_with_acks(participant.join(&msg), &mut rx_slim, &sub_mgr)
            .await
            .unwrap();

        // Second join should do nothing (already subscribed)
        participant.join(&msg).await.unwrap();
        let second_sub = rx_slim.try_recv();
        assert!(
            second_sub.is_err(),
            "Second join should not send any messages"
        );
    }

    #[tokio::test]
    async fn test_participant_application_message_forwarding() {
        let (mut participant, _rx_slim, _rx_session_layer, _rx_session) =
            setup_participant(ProtoSessionType::Multicast);
        participant.init().await.unwrap();

        let source = participant.common.settings.source.clone();
        let destination = participant.common.settings.destination.clone();

        let app_msg = Message::builder()
            .source(source)
            .destination(destination)
            .identity("")
            .forward_to(0)
            .session_type(ProtoSessionType::Multicast)
            .session_message_type(ProtoSessionMessageType::Msg)
            .session_id(1)
            .message_id(100)
            .application_payload("application/octet-stream", vec![1, 2, 3, 4])
            .build_publish()
            .unwrap();

        let result = participant
            .on_message(SessionMessage::OnMessage {
                message: app_msg,
                direction: crate::MessageDirection::South,
                ack_tx: None,
            })
            .await;

        assert!(result.is_ok());

        // Should have forwarded to inner handler
        assert_eq!(participant.inner.get_messages_count().await, 1);
    }

    #[tokio::test]
    async fn test_participant_timer_timeout_control_message() {
        let (mut participant, _rx_slim, _rx_session_layer, _rx_session) =
            setup_participant(ProtoSessionType::Multicast);
        participant.init().await.unwrap();

        let result = participant
            .on_message(SessionMessage::TimerTimeout {
                message_id: 100,
                message_type: ProtoSessionMessageType::JoinRequest,
                name: None,
                timeouts: 1,
            })
            .await;

        assert!(result.is_ok() || result.is_err());
    }

    #[tokio::test]
    async fn test_participant_timer_timeout_app_message() {
        let (mut participant, _rx_slim, _rx_session_layer, _rx_session) =
            setup_participant(ProtoSessionType::Multicast);
        participant.init().await.unwrap();

        let result = participant
            .on_message(SessionMessage::TimerTimeout {
                message_id: 100,
                message_type: ProtoSessionMessageType::Msg,
                name: None,
                timeouts: 1,
            })
            .await;

        assert!(result.is_ok());
        // Should have forwarded to inner handler
        assert_eq!(participant.inner.get_messages_count().await, 1);
    }

    #[tokio::test]
    async fn test_participant_timer_failure_control_message() {
        let (mut participant, _rx_slim, _rx_session_layer, _rx_session) =
            setup_participant(ProtoSessionType::Multicast);
        participant.init().await.unwrap();

        let result = participant
            .on_message(SessionMessage::TimerFailure {
                message_id: 100,
                message_type: ProtoSessionMessageType::JoinRequest,
                name: None,
                timeouts: 3,
            })
            .await;

        assert!(result.is_ok());
    }

    #[tokio::test]
    async fn test_participant_timer_failure_app_message() {
        let (mut participant, _rx_slim, _rx_session_layer, _rx_session) =
            setup_participant(ProtoSessionType::Multicast);
        participant.init().await.unwrap();

        let result = participant
            .on_message(SessionMessage::TimerFailure {
                message_id: 100,
                message_type: ProtoSessionMessageType::Msg,
                name: None,
                timeouts: 3,
            })
            .await;

        assert!(result.is_ok());
        // Should have forwarded to inner handler
        assert_eq!(participant.inner.get_messages_count().await, 1);
    }

    #[tokio::test]
    async fn test_participant_add_and_remove_endpoint() {
        let (mut participant, _rx_slim, _rx_session_layer, _rx_session) =
            setup_participant(ProtoSessionType::Multicast);
        participant.init().await.unwrap();

        let endpoint_name = make_name(&["endpoint", "app", "v1"]);
        let endpoint =
            Participant::new(endpoint_name.clone(), ParticipantSettings::bidirectional());

        // Add endpoint
        let result = participant.add_endpoint(&endpoint).await;
        assert!(result.is_ok());
        assert_eq!(participant.inner.get_endpoints_added_count().await, 1);

        // Remove endpoint
        participant.remove_endpoint(&endpoint_name);
        tokio::time::sleep(tokio::time::Duration::from_millis(10)).await;
        assert_eq!(participant.inner.get_endpoints_removed_count().await, 1);
    }

    #[tokio::test]
    async fn test_participant_on_shutdown() {
        let (mut participant, _rx_slim, _rx_session_layer, _rx_session) =
            setup_participant(ProtoSessionType::Multicast);
        participant.init().await.unwrap();
        participant.subscribed = true;

        let result = participant.on_shutdown().await;
        assert!(result.is_ok());
        assert!(!participant.subscribed);
    }

    #[tokio::test]
    async fn test_participant_unexpected_control_messages() {
        let (mut participant, _rx_slim, _rx_session_layer, _rx_session) =
            setup_participant(ProtoSessionType::Multicast);
        participant.init().await.unwrap();

        // Test DiscoveryRequest (unexpected for participant)
        let discovery_msg = Message::builder()
            .source(make_proto_name(&["someone", "app", "v1"]).with_id(300))
            .destination(participant.common.settings.source.clone())
            .identity("")
            .forward_to(0)
            .session_type(ProtoSessionType::Multicast)
            .session_message_type(ProtoSessionMessageType::DiscoveryRequest)
            .session_id(1)
            .message_id(100)
            .payload(CommandPayload::builder().discovery_request().as_content())
            .build_publish()
            .unwrap();

        let result = participant.process_control_message(discovery_msg).await;
        assert!(result.is_ok()); // Should handle gracefully
    }

    #[tokio::test]
    async fn test_participant_leave_multicast_unsubscribes() {
        let (mut participant, mut rx_slim, _rx_session_layer, _rx_session) =
            setup_participant(ProtoSessionType::Multicast);
        participant.init().await.unwrap();
        participant.subscribed = true;
        participant.conn_id = Some(12345); // Set conn_id so disconnect_from_group sends messages

        let moderator = make_name(&["moderator", "app", "v1"]).with_id(300);
        participant.moderator_name = Some(moderator.clone());

        let sub_mgr = participant.common.settings.subscription_manager.clone();

        // disconnect_from_group sends delete_route (ACK-awaiting) + unsubscribe (ACK-awaiting)
        let result =
            run_with_acks(participant.disconnect_from_group(), &mut rx_slim, &sub_mgr).await;
        assert!(result.is_ok());

        // disconnect_from_moderator sends delete_route (ACK-awaiting)
        let result = run_with_acks(
            participant.disconnect_from_moderator(),
            &mut rx_slim,
            &sub_mgr,
        )
        .await;
        assert!(result.is_ok());
    }
}