cf-chat-engine 0.2.2

Chat Engine module: multi-tenant conversational infrastructure with plugin-driven backends
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
use super::*;
use crate::domain::ports::NewSession;
use crate::domain::ports::NewSessionType;
use crate::domain::session::Session;
use crate::domain::session::SessionType;
use uuid::Uuid;

use async_trait::async_trait;
use chat_engine_sdk::models::{LifecycleState, MessagePart, MessageRole};
use chat_engine_sdk::plugin::ChatEngineBackendPlugin;
use parking_lot::Mutex;
use time::OffsetDateTime;
use toolkit::ClientHub;

use crate::domain::message::Message;
use crate::domain::ports::PluginConfigRepo;
use crate::domain::ports::SessionRepo;
use crate::domain::ports::SessionTypeRepo;
use crate::domain::ports::{FinalizeOutcome, InsertedPair, MessageRepo, NewUserMessage};

// ----- Mocks -------------------------------------------------------

struct MockSessionRepo {
    rows: Mutex<Vec<Session>>,
}

impl MockSessionRepo {
    fn new(rows: Vec<Session>) -> Arc<Self> {
        Arc::new(Self {
            rows: Mutex::new(rows),
        })
    }
}

#[async_trait]
impl SessionRepo for MockSessionRepo {
    async fn insert(&self, _m: NewSession) -> std::result::Result<Session, ChatEngineError> {
        Err(ChatEngineError::internal("mock insert"))
    }

    async fn find_by_id(
        &self,
        tenant_id: &str,
        user_id: &str,
        session_id: Uuid,
    ) -> std::result::Result<Option<Session>, ChatEngineError> {
        Ok(self
            .rows
            .lock()
            .iter()
            .find(|r| {
                r.session_id == session_id
                    && r.tenant_id.as_str() == tenant_id
                    && r.user_id.as_str() == user_id
            })
            .cloned())
    }

    async fn list_paginated(
        &self,
        _tenant_id: &str,
        _user_id: &str,
        _query: &toolkit_odata::ODataQuery,
    ) -> std::result::Result<toolkit_odata::Page<Session>, ChatEngineError> {
        Ok(toolkit_odata::Page::empty(0))
    }

    async fn update_metadata(
        &self,
        _t: &str,
        _u: &str,
        session_id: Uuid,
        metadata: Option<JsonValue>,
    ) -> std::result::Result<Session, ChatEngineError> {
        let mut rows = self.rows.lock();
        for row in rows.iter_mut() {
            if row.session_id == session_id {
                row.metadata = metadata.clone();
                return Ok(row.clone());
            }
        }
        Err(ChatEngineError::not_found("session", session_id))
    }

    async fn update_capabilities(
        &self,
        _t: &str,
        _u: &str,
        _id: Uuid,
        _c: Option<JsonValue>,
    ) -> std::result::Result<Session, ChatEngineError> {
        Err(ChatEngineError::internal("mock update_capabilities"))
    }

    async fn update_lifecycle_state(
        &self,
        _t: &str,
        _u: &str,
        _id: Uuid,
        _s: LifecycleState,
    ) -> std::result::Result<Session, ChatEngineError> {
        Err(ChatEngineError::internal("mock update_lifecycle_state"))
    }

    async fn soft_delete(
        &self,
        _t: &str,
        _u: &str,
        _id: Uuid,
        _d: i64,
    ) -> std::result::Result<Session, ChatEngineError> {
        Err(ChatEngineError::internal("mock soft_delete"))
    }

    async fn hard_delete(
        &self,
        _t: &str,
        _u: &str,
        _id: Uuid,
    ) -> std::result::Result<bool, ChatEngineError> {
        Ok(true)
    }

    async fn list_active_sessions_for_tenant(
        &self,
        tenant_id: &str,
        after: Option<Uuid>,
        limit: u32,
    ) -> std::result::Result<Vec<Session>, ChatEngineError> {
        let mut rows: Vec<Session> = self
            .rows
            .lock()
            .iter()
            .filter(|r| {
                r.tenant_id.as_str() == tenant_id
                    && r.lifecycle_state == LifecycleState::Active
                    && after.is_none_or(|a| r.session_id > a)
            })
            .cloned()
            .collect();
        rows.sort_by_key(|r| r.session_id);
        rows.truncate(limit as usize);
        Ok(rows)
    }

    async fn list_tenants_with_active_sessions(
        &self,
    ) -> std::result::Result<Vec<String>, ChatEngineError> {
        let mut tenants: Vec<String> = self
            .rows
            .lock()
            .iter()
            .filter(|r| r.lifecycle_state == LifecycleState::Active)
            .map(|r| r.tenant_id.as_str().to_owned())
            .collect();
        tenants.sort();
        tenants.dedup();
        Ok(tenants)
    }
}

struct MockSessionTypeRepo;
#[async_trait]
impl SessionTypeRepo for MockSessionTypeRepo {
    async fn insert(
        &self,
        _m: NewSessionType,
    ) -> std::result::Result<SessionType, ChatEngineError> {
        Err(ChatEngineError::internal("mock"))
    }
    async fn find_by_id(
        &self,
        _id: Uuid,
    ) -> std::result::Result<Option<SessionType>, ChatEngineError> {
        Ok(None)
    }
    async fn list(&self) -> std::result::Result<Vec<SessionType>, ChatEngineError> {
        Ok(vec![])
    }
}

/// One `insert_summary_message` call recorded by the mock:
/// `(session_id, summary_text, tenant_id)`.
type RecordedSummary = (Uuid, String, Option<String>);

/// `MockMessageRepo` driven by a caller-supplied vector of messages
/// the retention-evaluator should see. Tracks `delete_message_subtree`
/// calls so tests can assert at-most-once behaviour.
struct MockMessageRepo {
    all: Mutex<Vec<Message>>,
    deletes: Mutex<Vec<Uuid>>,
    summaries: Mutex<Vec<RecordedSummary>>,
    /// When set, `insert_summary_message` returns an error so tests can
    /// exercise the persist-failure path of the summarize driver.
    fail_summary: Mutex<bool>,
}

impl MockMessageRepo {
    fn new(messages: Vec<Message>) -> Arc<Self> {
        Arc::new(Self {
            all: Mutex::new(messages),
            deletes: Mutex::new(Vec::new()),
            summaries: Mutex::new(Vec::new()),
            fail_summary: Mutex::new(false),
        })
    }

    /// Make `insert_summary_message` fail on subsequent calls.
    fn fail_summaries(&self) {
        *self.fail_summary.lock() = true;
    }
}

#[async_trait]
impl MessageRepo for MockMessageRepo {
    async fn insert_user_and_assistant_stub(
        &self,
        _r: NewUserMessage,
    ) -> std::result::Result<InsertedPair, ChatEngineError> {
        Err(ChatEngineError::internal("mock"))
    }
    async fn finalize_assistant(
        &self,
        _session_id: Uuid,
        _id: Uuid,
        _o: FinalizeOutcome,
    ) -> std::result::Result<(), ChatEngineError> {
        Ok(())
    }
    async fn insert_summary_message(
        &self,
        session_id: Uuid,
        text: String,
        _metadata: Option<serde_json::Value>,
        _summarized_ids: Vec<Uuid>,
        tenant_id: Option<String>,
    ) -> std::result::Result<Uuid, ChatEngineError> {
        if *self.fail_summary.lock() {
            return Err(ChatEngineError::internal("mock summary persist failure"));
        }
        self.summaries.lock().push((session_id, text, tenant_id));
        Ok(Uuid::new_v4())
    }
    async fn fetch_active_history(
        &self,
        _s: Uuid,
        _d: Option<u32>,
    ) -> std::result::Result<Vec<Message>, ChatEngineError> {
        Ok(self.all.lock().clone())
    }
    async fn find_message_in_session(
        &self,
        _s: Uuid,
        _m: Uuid,
    ) -> std::result::Result<Option<Message>, ChatEngineError> {
        Ok(None)
    }
    async fn list_non_root_messages_chrono(
        &self,
        session_id: Uuid,
    ) -> std::result::Result<Vec<Message>, ChatEngineError> {
        Ok(self
            .all
            .lock()
            .iter()
            .filter(|m| m.session_id == session_id && m.parent_message_id.is_some())
            .cloned()
            .collect())
    }
    async fn list_non_root_messages_older_than(
        &self,
        session_id: Uuid,
        older_than: OffsetDateTime,
    ) -> std::result::Result<Vec<Message>, ChatEngineError> {
        Ok(self
            .all
            .lock()
            .iter()
            .filter(|m| {
                m.session_id == session_id
                    && m.parent_message_id.is_some()
                    && m.created_at < older_than
            })
            .cloned()
            .collect())
    }
    async fn count_non_root_messages(
        &self,
        session_id: Uuid,
    ) -> std::result::Result<u64, ChatEngineError> {
        Ok(self
            .all
            .lock()
            .iter()
            .filter(|m| m.session_id == session_id && m.parent_message_id.is_some())
            .count() as u64)
    }
    async fn list_oldest_non_root_message_ids(
        &self,
        session_id: Uuid,
        limit: u32,
    ) -> std::result::Result<Vec<Uuid>, ChatEngineError> {
        let mut rows: Vec<Message> = self
            .all
            .lock()
            .iter()
            .filter(|m| m.session_id == session_id && m.parent_message_id.is_some())
            .cloned()
            .collect();
        rows.sort_by_key(|m| m.created_at);
        Ok(rows
            .into_iter()
            .take(limit as usize)
            .map(|m| m.message_id)
            .collect())
    }
    async fn list_non_root_message_ids_older_than(
        &self,
        session_id: Uuid,
        older_than: OffsetDateTime,
        limit: u32,
    ) -> std::result::Result<Vec<Uuid>, ChatEngineError> {
        let mut rows: Vec<Message> = self
            .all
            .lock()
            .iter()
            .filter(|m| {
                m.session_id == session_id
                    && m.parent_message_id.is_some()
                    && m.created_at < older_than
            })
            .cloned()
            .collect();
        rows.sort_by_key(|m| m.created_at);
        Ok(rows
            .into_iter()
            .take(limit as usize)
            .map(|m| m.message_id)
            .collect())
    }
    async fn delete_message_subtree(
        &self,
        _s: Uuid,
        root_id: Uuid,
    ) -> std::result::Result<u64, ChatEngineError> {
        self.deletes.lock().push(root_id);
        Ok(1)
    }
}

struct StubPluginConfigRepo;
#[async_trait]
impl PluginConfigRepo for StubPluginConfigRepo {
    async fn find(
        &self,
        _p: &str,
        _s: Uuid,
    ) -> std::result::Result<Option<JsonValue>, ChatEngineError> {
        Ok(None)
    }
    async fn upsert(
        &self,
        _p: &str,
        _s: Uuid,
        _c: JsonValue,
    ) -> std::result::Result<(), ChatEngineError> {
        Ok(())
    }
    async fn delete(&self, _p: &str, _s: Uuid) -> std::result::Result<(), ChatEngineError> {
        Ok(())
    }
}

// ----- Helpers -----------------------------------------------------

fn make_session(session_id: Uuid, metadata: Option<JsonValue>) -> Session {
    let now = OffsetDateTime::now_utc();
    Session {
        session_id,
        tenant_id: "t".into(),
        user_id: "u".into(),
        client_id: None,
        session_type_id: None,
        enabled_capabilities: None,
        metadata,
        lifecycle_state: LifecycleState::Active,
        share_token: None,
        created_at: now,
        updated_at: now,
    }
}

fn make_message(session_id: Uuid, parent: Option<Uuid>, offset_secs: i64) -> Message {
    let ts = OffsetDateTime::from_unix_timestamp(1_700_000_000 + offset_secs).unwrap();
    Message {
        message_id: Uuid::new_v4(),
        session_id,
        tenant_id: None,
        user_id: None,
        parent_message_id: parent,
        variant_index: 0,
        is_active: true,
        role: MessageRole::User,
        parts: vec![MessagePart::text(Uuid::nil(), Uuid::nil(), 0, "hi")],
        file_ids: vec![],
        metadata: None,
        is_complete: true,
        is_hidden_from_user: false,
        is_hidden_from_backend: false,
        created_at: ts,
        updated_at: ts,
    }
}

fn make_service(
    sessions: Arc<MockSessionRepo>,
    messages: Arc<MockMessageRepo>,
) -> IntelligenceService {
    let session_types: Arc<dyn SessionTypeRepo> = Arc::new(MockSessionTypeRepo);
    let hub = Arc::new(ClientHub::new());
    let plugins = PluginService::new(hub, Arc::new(StubPluginConfigRepo));
    IntelligenceService::new(
        sessions as Arc<dyn SessionRepo>,
        session_types,
        messages as Arc<dyn MessageRepo>,
        plugins,
    )
}

fn identity() -> Identity {
    Identity::new("t", "u", None).unwrap()
}

// ----- evaluate_retention_policy ----------------------------------

#[tokio::test]
async fn evaluate_none_returns_empty() {
    let session_id = Uuid::new_v4();
    let msgs = MockMessageRepo::new(vec![
        make_message(session_id, Some(Uuid::new_v4()), 0),
        make_message(session_id, Some(Uuid::new_v4()), 1),
    ]);
    let svc = make_service(MockSessionRepo::new(vec![]), msgs);
    let out = svc
        .evaluate_retention_policy(session_id, &RetentionPolicy::None)
        .await
        .unwrap();
    assert!(out.is_empty(), "None policy yields zero deletions");
}

#[tokio::test]
async fn evaluate_age_based_deletes_only_old_non_root() {
    let session_id = Uuid::new_v4();
    let root_parent = Uuid::new_v4();
    // Old enough to be cleaned up (offset = 0 → unix 1_700_000_000;
    // cutoff = now - 1 day → safely older).
    let m_old = make_message(session_id, Some(root_parent), 0);
    // Modern message (current time → preserved).
    let mut m_new = make_message(session_id, Some(root_parent), 0);
    m_new.created_at = OffsetDateTime::now_utc();
    // Root message — must never be eligible regardless of age.
    let mut m_root = make_message(session_id, None, 0);
    m_root.created_at = OffsetDateTime::from_unix_timestamp(0).unwrap();
    let old_id = m_old.message_id;

    let msgs = MockMessageRepo::new(vec![m_old, m_new, m_root]);
    let svc = make_service(MockSessionRepo::new(vec![]), msgs);
    let out = svc
        .evaluate_retention_policy(session_id, &RetentionPolicy::AgeBased { max_age_days: 1 })
        .await
        .unwrap();
    assert_eq!(
        out,
        vec![old_id],
        "only the old non-root message is eligible"
    );
}

#[tokio::test]
async fn evaluate_count_based_keeps_newest_n_and_excludes_root() {
    let session_id = Uuid::new_v4();
    let parent = Uuid::new_v4();
    // 5 non-root messages, chronological order.
    let m0 = make_message(session_id, Some(parent), 0);
    let m1 = make_message(session_id, Some(parent), 1);
    let m2 = make_message(session_id, Some(parent), 2);
    let m3 = make_message(session_id, Some(parent), 3);
    let m4 = make_message(session_id, Some(parent), 4);
    // One root with the very oldest timestamp.
    let mut m_root = make_message(session_id, None, -1);
    m_root.created_at = OffsetDateTime::from_unix_timestamp(0).unwrap();

    let ids = vec![m0.message_id, m1.message_id];
    let msgs = MockMessageRepo::new(vec![m0, m1, m2, m3, m4, m_root]);
    let svc = make_service(MockSessionRepo::new(vec![]), msgs);
    let out = svc
        .evaluate_retention_policy(
            session_id,
            &RetentionPolicy::CountBased {
                max_message_count: 3,
            },
        )
        .await
        .unwrap();
    assert_eq!(
        out, ids,
        "oldest 2 of 5 selected; newest 3 kept; root excluded"
    );
}

#[tokio::test]
async fn evaluate_count_based_below_threshold_is_empty() {
    let session_id = Uuid::new_v4();
    let parent = Uuid::new_v4();
    let msgs = MockMessageRepo::new(vec![
        make_message(session_id, Some(parent), 0),
        make_message(session_id, Some(parent), 1),
    ]);
    let svc = make_service(MockSessionRepo::new(vec![]), msgs);
    let out = svc
        .evaluate_retention_policy(
            session_id,
            &RetentionPolicy::CountBased {
                max_message_count: 5,
            },
        )
        .await
        .unwrap();
    assert!(out.is_empty(), "2 <= 5 \u{2192} no eligible deletions");
}

#[tokio::test]
async fn evaluate_excludes_root_messages_under_age_based() {
    let session_id = Uuid::new_v4();
    // Only root messages (parent = None); all must be preserved.
    let mut m_root = make_message(session_id, None, 0);
    m_root.created_at = OffsetDateTime::from_unix_timestamp(0).unwrap();
    let msgs = MockMessageRepo::new(vec![m_root]);
    let svc = make_service(MockSessionRepo::new(vec![]), msgs);
    let out = svc
        .evaluate_retention_policy(session_id, &RetentionPolicy::AgeBased { max_age_days: 1 })
        .await
        .unwrap();
    assert!(out.is_empty(), "root messages must never be eligible");
}

#[tokio::test]
async fn run_retention_cleanup_is_idempotent() {
    let session_id = Uuid::new_v4();
    let parent = Uuid::new_v4();
    // Populate the policy in metadata so it gets picked up by the
    // tenant-level pass.
    let metadata = serde_json::json!({
        "retention_policy": {"type": "count_based", "max_message_count": 1},
    });
    let session_row = make_session(session_id, Some(metadata));
    let sessions = MockSessionRepo::new(vec![session_row]);
    // 3 non-root → after the first pass 2 are eligible (3 - 1 = 2).
    let msgs = MockMessageRepo::new(vec![
        make_message(session_id, Some(parent), 0),
        make_message(session_id, Some(parent), 1),
        make_message(session_id, Some(parent), 2),
    ]);
    let svc = make_service(sessions.clone(), msgs.clone());
    let report = svc.run_retention_cleanup_for_tenant("t").await.unwrap();
    assert_eq!(report.sessions.len(), 1);
    assert_eq!(report.sessions[0].messages_deleted, 2);
    let first_deletes = msgs.deletes.lock().clone();
    assert_eq!(first_deletes.len(), 2, "two deletes on first pass");

    // Idempotency: re-running with the same set produces another 2
    // deletes (the mock repo doesn't actually remove rows) but never
    // panics — the real repo returns Ok(0) for missing roots, which
    // is the contract the algorithm relies on.
    let report2 = svc.run_retention_cleanup_for_tenant("t").await.unwrap();
    assert_eq!(report2.sessions.len(), 1);
}

// ----- validate_retention_policy ----------------------------------

#[test]
fn validate_none_passes() {
    assert!(validate_retention_policy(RetentionPolicy::None).is_ok());
}

#[test]
fn validate_age_based_rejects_zero() {
    let err = validate_retention_policy(RetentionPolicy::AgeBased { max_age_days: 0 }).unwrap_err();
    match err {
        ChatEngineError::BadRequest { reason } => {
            assert!(reason.contains("max_age_days"));
        }
        other => panic!("expected BadRequest, got {other:?}"),
    }
}

#[test]
fn validate_age_based_accepts_one_or_more() {
    validate_retention_policy(RetentionPolicy::AgeBased { max_age_days: 1 })
        .expect("max_age_days=1 must be accepted");
    validate_retention_policy(RetentionPolicy::AgeBased { max_age_days: 365 })
        .expect("max_age_days=365 must be accepted");
}

#[test]
fn validate_count_based_rejects_zero() {
    let err = validate_retention_policy(RetentionPolicy::CountBased {
        max_message_count: 0,
    })
    .unwrap_err();
    match err {
        ChatEngineError::BadRequest { reason } => {
            assert!(reason.contains("max_message_count"));
        }
        other => panic!("expected BadRequest, got {other:?}"),
    }
}

#[test]
fn validate_count_based_accepts_one_or_more() {
    validate_retention_policy(RetentionPolicy::CountBased {
        max_message_count: 1,
    })
    .expect("max_message_count=1 must be accepted");
}

// ----- get_effective_retention_policy -----------------------------

#[tokio::test]
async fn get_effective_returns_per_session_when_set() {
    let session_id = Uuid::new_v4();
    let metadata = serde_json::json!({
        "retention_policy": {"type": "age_based", "max_age_days": 7},
    });
    let row = make_session(session_id, Some(metadata));
    let sessions = MockSessionRepo::new(vec![row]);
    let msgs = MockMessageRepo::new(vec![]);
    let svc = make_service(sessions, msgs);
    let out = svc
        .get_effective_retention_policy(&identity(), session_id)
        .await
        .unwrap();
    assert!(matches!(out, RetentionPolicy::AgeBased { max_age_days: 7 }));
}

#[tokio::test]
async fn get_effective_falls_back_to_none_when_unset() {
    let session_id = Uuid::new_v4();
    let row = make_session(session_id, None);
    let sessions = MockSessionRepo::new(vec![row]);
    let msgs = MockMessageRepo::new(vec![]);
    let svc = make_service(sessions, msgs);
    let out = svc
        .get_effective_retention_policy(&identity(), session_id)
        .await
        .unwrap();
    assert!(matches!(out, RetentionPolicy::None));
}

// ----- update_session_retention_policy ----------------------------

#[tokio::test]
async fn update_persists_policy_in_metadata() {
    let session_id = Uuid::new_v4();
    let row = make_session(session_id, None);
    let sessions = MockSessionRepo::new(vec![row]);
    let msgs = MockMessageRepo::new(vec![]);
    let svc = make_service(sessions.clone(), msgs);
    let updated = svc
        .update_session_retention_policy(
            &identity(),
            session_id,
            RetentionPolicy::CountBased {
                max_message_count: 100,
            },
        )
        .await
        .unwrap();
    assert!(matches!(
        updated,
        RetentionPolicy::CountBased {
            max_message_count: 100
        }
    ));
    // Confirm the metadata write landed on the mock repo.
    let row = sessions.rows.lock()[0].clone();
    let stored = row.metadata.unwrap();
    assert_eq!(
        stored["retention_policy"],
        serde_json::json!({"type": "count_based", "max_message_count": 100})
    );
}

#[tokio::test]
async fn update_rejects_invalid_max_age_days() {
    let session_id = Uuid::new_v4();
    let row = make_session(session_id, None);
    let sessions = MockSessionRepo::new(vec![row]);
    let msgs = MockMessageRepo::new(vec![]);
    let svc = make_service(sessions, msgs);
    let err = svc
        .update_session_retention_policy(
            &identity(),
            session_id,
            RetentionPolicy::AgeBased { max_age_days: 0 },
        )
        .await
        .unwrap_err();
    assert!(matches!(err, ChatEngineError::BadRequest { .. }));
}

#[tokio::test]
async fn update_rejects_soft_deleted_session() {
    let session_id = Uuid::new_v4();
    let mut row = make_session(session_id, None);
    row.lifecycle_state = LifecycleState::SoftDeleted;
    let sessions = MockSessionRepo::new(vec![row]);
    let msgs = MockMessageRepo::new(vec![]);
    let svc = make_service(sessions, msgs);
    let err = svc
        .update_session_retention_policy(&identity(), session_id, RetentionPolicy::None)
        .await
        .unwrap_err();
    assert!(matches!(err, ChatEngineError::Conflict { .. }));
}

// ----- summary plugin integration ---------------------------------

use chat_engine_sdk::error::PluginError;
use chat_engine_sdk::plugin::{MessagePluginCtx, PluginStream, stream_from_events};
use toolkit::client_hub::ClientScope;

struct ScriptedSummaryPlugin {
    id: String,
    events: Mutex<Option<Vec<StreamingEvent>>>,
    pre_error: Mutex<Option<PluginError>>,
}

impl ScriptedSummaryPlugin {
    fn ok(id: &str, events: Vec<StreamingEvent>) -> Arc<Self> {
        Arc::new(Self {
            id: id.into(),
            events: Mutex::new(Some(events)),
            pre_error: Mutex::new(None),
        })
    }

    fn pre_error(id: &str, err: PluginError) -> Arc<Self> {
        Arc::new(Self {
            id: id.into(),
            events: Mutex::new(None),
            pre_error: Mutex::new(Some(err)),
        })
    }
}

#[async_trait]
impl ChatEngineBackendPlugin for ScriptedSummaryPlugin {
    async fn on_message(
        &self,
        _c: MessagePluginCtx,
    ) -> std::result::Result<PluginStream, PluginError> {
        Err(PluginError::internal(
            "test plugin does not handle messages",
        ))
    }

    async fn on_session_summary(
        &self,
        _c: SessionPluginCtx,
    ) -> std::result::Result<PluginStream, PluginError> {
        if let Some(err) = self.pre_error.lock().take() {
            return Err(err);
        }
        let events = self.events.lock().take().unwrap_or_default();
        Ok(stream_from_events(events))
    }

    fn plugin_instance_id(&self) -> &str {
        &self.id
    }
}

fn make_service_with_plugin(
    plugin_id: &str,
    plugin: Arc<dyn ChatEngineBackendPlugin>,
    session_type_id: Uuid,
    session_row: Session,
) -> (
    IntelligenceService,
    Arc<MockSessionRepo>,
    Arc<MockMessageRepo>,
) {
    let sessions = MockSessionRepo::new(vec![session_row]);
    let msgs = MockMessageRepo::new(vec![]);
    let hub = Arc::new(ClientHub::new());
    hub.register_scoped::<dyn ChatEngineBackendPlugin>(ClientScope::gts_id(plugin_id), plugin);
    let plugins = PluginService::new(hub, Arc::new(StubPluginConfigRepo));

    // session_types mock: return a row with the configured plugin id.
    struct OneTypeRepo {
        model: Mutex<SessionType>,
    }
    #[async_trait]
    impl SessionTypeRepo for OneTypeRepo {
        async fn insert(
            &self,
            _m: NewSessionType,
        ) -> std::result::Result<SessionType, ChatEngineError> {
            Err(ChatEngineError::internal("mock"))
        }
        async fn find_by_id(
            &self,
            id: Uuid,
        ) -> std::result::Result<Option<SessionType>, ChatEngineError> {
            let m = self.model.lock().clone();
            if m.session_type_id == id {
                Ok(Some(m))
            } else {
                Ok(None)
            }
        }
        async fn list(&self) -> std::result::Result<Vec<SessionType>, ChatEngineError> {
            Ok(vec![self.model.lock().clone()])
        }
    }
    let now = OffsetDateTime::now_utc();
    let st_repo: Arc<dyn SessionTypeRepo> = Arc::new(OneTypeRepo {
        model: Mutex::new(SessionType {
            session_type_id,
            name: "t".into(),
            plugin_instance_id: Some(plugin_id.into()),
            created_at: now,
            updated_at: now,
        }),
    });

    let svc = IntelligenceService::new(
        sessions.clone() as Arc<dyn SessionRepo>,
        st_repo,
        msgs.clone() as Arc<dyn MessageRepo>,
        plugins,
    );
    (svc, sessions, msgs)
}

#[tokio::test]
async fn summarize_pre_stream_error_propagates() {
    let plugin_id = "summary-fail";
    let session_type_id = Uuid::new_v4();
    let session_id = Uuid::new_v4();
    let mut row = make_session(session_id, None);
    row.session_type_id = Some(session_type_id);
    let plugin = ScriptedSummaryPlugin::pre_error(plugin_id, PluginError::internal("boom"));
    let plugin_dyn: Arc<dyn ChatEngineBackendPlugin> = plugin;
    let (svc, _sessions, _msgs) =
        make_service_with_plugin(plugin_id, plugin_dyn, session_type_id, row);

    let cancel = CancellationToken::new();
    let result = svc.summarize_session(&identity(), session_id, cancel).await;
    let err = match result {
        Ok(_) => panic!("pre-stream failure must surface as Err"),
        Err(e) => e,
    };
    // Internal pluginerror is mapped to ChatEngineError::Internal
    // (see error.rs). Either Internal or BackendUnavailable is
    // acceptable in the carry-over notes — the handler maps both
    // to 502.
    assert!(
        matches!(
            err,
            ChatEngineError::Internal { .. } | ChatEngineError::BackendUnavailable { .. }
        ),
        "expected Internal or BackendUnavailable, got {err:?}",
    );
}

#[tokio::test]
async fn summarize_returns_422_style_when_plugin_unregistered() {
    // No plugin registered for this session_type's id — we still
    // reach summary entry but plugin.resolve fails, mapped to
    // BackendUnavailable per the rules.
    let plugin_id = "missing";
    let session_type_id = Uuid::new_v4();
    let session_id = Uuid::new_v4();
    let mut row = make_session(session_id, None);
    row.session_type_id = Some(session_type_id);
    // Use a session-type repo that returns the type but the plugin
    // hub has no scope registered for `plugin_id`.
    let now = OffsetDateTime::now_utc();
    struct ReturnsType {
        id: Uuid,
        pid: String,
        now: OffsetDateTime,
    }
    #[async_trait]
    impl SessionTypeRepo for ReturnsType {
        async fn insert(
            &self,
            _m: NewSessionType,
        ) -> std::result::Result<SessionType, ChatEngineError> {
            Err(ChatEngineError::internal("mock"))
        }
        async fn find_by_id(
            &self,
            id: Uuid,
        ) -> std::result::Result<Option<SessionType>, ChatEngineError> {
            if id == self.id {
                Ok(Some(SessionType {
                    session_type_id: self.id,
                    name: "t".into(),
                    plugin_instance_id: Some(self.pid.clone()),
                    created_at: self.now,
                    updated_at: self.now,
                }))
            } else {
                Ok(None)
            }
        }
        async fn list(&self) -> std::result::Result<Vec<SessionType>, ChatEngineError> {
            Ok(vec![])
        }
    }
    let st_repo: Arc<dyn SessionTypeRepo> = Arc::new(ReturnsType {
        id: session_type_id,
        pid: plugin_id.into(),
        now,
    });
    let sessions = MockSessionRepo::new(vec![row]);
    let msgs = MockMessageRepo::new(vec![]);
    let hub = Arc::new(ClientHub::new()); // empty
    let plugins = PluginService::new(hub, Arc::new(StubPluginConfigRepo));
    let svc = IntelligenceService::new(
        sessions as Arc<dyn SessionRepo>,
        st_repo,
        msgs as Arc<dyn MessageRepo>,
        plugins,
    );

    let cancel = CancellationToken::new();
    let result = svc.summarize_session(&identity(), session_id, cancel).await;
    let err = match result {
        Ok(_) => panic!("unregistered plugin must produce an error"),
        Err(e) => e,
    };
    match err {
        ChatEngineError::BackendUnavailable { ref reason, .. } => {
            assert!(reason.contains("not registered"), "got: {reason}");
        }
        other => panic!("expected BackendUnavailable, got {other:?}"),
    }
}

#[tokio::test]
async fn summarize_happy_path_persists_on_complete() {
    let plugin_id = "summary-ok";
    let session_type_id = Uuid::new_v4();
    let session_id = Uuid::new_v4();
    let mut row = make_session(session_id, None);
    row.session_type_id = Some(session_type_id);
    let plugin = ScriptedSummaryPlugin::ok(
        plugin_id,
        vec![
            StreamingEvent::Chunk(StreamingChunkEvent {
                message_id: Uuid::nil(),
                chunk: "summary ".into(),
            }),
            StreamingEvent::Chunk(StreamingChunkEvent {
                message_id: Uuid::nil(),
                chunk: "text".into(),
            }),
            StreamingEvent::Complete(StreamingCompleteEvent {
                message_id: Uuid::nil(),
                metadata: Some(serde_json::json!({"summarized_message_ids": []})),
                file_citations: vec![],
                link_citations: vec![],
                references: vec![],
            }),
        ],
    );
    let plugin_dyn: Arc<dyn ChatEngineBackendPlugin> = plugin;
    let (svc, _sessions, msgs) =
        make_service_with_plugin(plugin_id, plugin_dyn, session_type_id, row);

    let cancel = CancellationToken::new();
    let mut stream = svc
        .summarize_session(&identity(), session_id, cancel)
        .await
        .expect("summary dispatch");
    let mut kinds = Vec::new();
    while let Some(evt) = stream.next().await {
        match evt {
            StreamingEvent::Start(_) => kinds.push("start"),
            StreamingEvent::Chunk(_) => kinds.push("chunk"),
            StreamingEvent::Complete(_) => kinds.push("complete"),
            StreamingEvent::Error(_) => kinds.push("error"),
            _ => kinds.push("other"),
        }
    }
    assert_eq!(kinds, vec!["start", "chunk", "chunk", "complete"]);
    // `Complete` is emitted only after a successful persist, so by the
    // time the stream closes the summary row must have been recorded.
    let summaries = msgs.summaries.lock();
    assert_eq!(
        summaries.len(),
        1,
        "happy path must persist the summary before emitting Complete",
    );
    // The summary message must be stamped with the caller's tenant
    // (denormalized owning tenant), threaded from the JWT identity.
    assert_eq!(
        summaries[0].2.as_deref(),
        Some("t"),
        "summary must inherit the identity tenant_id",
    );
}

#[tokio::test]
async fn summarize_persist_failure_emits_error_not_complete() {
    // When persistence fails, the driver must surface a streaming Error
    // and never emit Complete (which would falsely report success).
    let plugin_id = "summary-persist-fail";
    let session_type_id = Uuid::new_v4();
    let session_id = Uuid::new_v4();
    let mut row = make_session(session_id, None);
    row.session_type_id = Some(session_type_id);
    let plugin = ScriptedSummaryPlugin::ok(
        plugin_id,
        vec![
            StreamingEvent::Chunk(StreamingChunkEvent {
                message_id: Uuid::nil(),
                chunk: "summary".into(),
            }),
            StreamingEvent::Complete(StreamingCompleteEvent {
                message_id: Uuid::nil(),
                metadata: Some(serde_json::json!({"summarized_message_ids": []})),
                file_citations: vec![],
                link_citations: vec![],
                references: vec![],
            }),
        ],
    );
    let plugin_dyn: Arc<dyn ChatEngineBackendPlugin> = plugin;
    let (svc, _sessions, msgs) =
        make_service_with_plugin(plugin_id, plugin_dyn, session_type_id, row);
    msgs.fail_summaries();

    let cancel = CancellationToken::new();
    let mut stream = svc
        .summarize_session(&identity(), session_id, cancel)
        .await
        .expect("summary dispatch");
    let mut kinds = Vec::new();
    while let Some(evt) = stream.next().await {
        match evt {
            StreamingEvent::Start(_) => kinds.push("start"),
            StreamingEvent::Chunk(_) => kinds.push("chunk"),
            StreamingEvent::Complete(_) => kinds.push("complete"),
            StreamingEvent::Error(_) => kinds.push("error"),
            _ => kinds.push("other"),
        }
    }
    assert_eq!(kinds, vec!["start", "chunk", "error"]);
    assert!(
        msgs.summaries.lock().is_empty(),
        "no summary should be recorded when persistence fails",
    );
}

// ----- summary-related helpers ------------------------------------

#[test]
fn extract_summarized_ids_parses_valid_array() {
    let id1 = Uuid::new_v4();
    let id2 = Uuid::new_v4();
    let meta = serde_json::json!({
        "summarized_message_ids": [id1.to_string(), id2.to_string()],
    });
    let out = extract_summarized_ids(&meta);
    assert_eq!(out, vec![id1, id2]);
}

#[test]
fn extract_summarized_ids_handles_missing_key() {
    let meta = serde_json::json!({"other": "value"});
    assert!(extract_summarized_ids(&meta).is_empty());
}

#[test]
fn extract_summarized_ids_skips_malformed_entries() {
    let id = Uuid::new_v4();
    let meta = serde_json::json!({
        "summarized_message_ids": [id.to_string(), "not-a-uuid", 42],
    });
    assert_eq!(extract_summarized_ids(&meta), vec![id]);
}

#[test]
fn retention_policy_label_covers_all_variants() {
    assert_eq!(retention_policy_label(&RetentionPolicy::None), "none");
    assert_eq!(
        retention_policy_label(&RetentionPolicy::AgeBased { max_age_days: 1 }),
        "age_based"
    );
    assert_eq!(
        retention_policy_label(&RetentionPolicy::CountBased {
            max_message_count: 1
        }),
        "count_based"
    );
}

// ----- run_retention_cleanup_for_tenant: skip-none --------------------

#[tokio::test]
async fn run_cleanup_records_none_policy_without_lock_or_delete() {
    let session_id = Uuid::new_v4();
    let row = make_session(session_id, None); // metadata None → effective None
    let sessions = MockSessionRepo::new(vec![row]);
    let msgs = MockMessageRepo::new(vec![]);
    let svc = make_service(sessions, msgs.clone());
    let report = svc.run_retention_cleanup_for_tenant("t").await.unwrap();
    assert_eq!(report.sessions.len(), 1);
    assert_eq!(report.sessions[0].policy_type, "none");
    assert_eq!(report.sessions[0].messages_deleted, 0);
    assert!(msgs.deletes.lock().is_empty());
}

#[tokio::test]
async fn run_cleanup_ignores_other_tenants() {
    let session_id = Uuid::new_v4();
    let mut row = make_session(session_id, None);
    row.tenant_id = "other".into();
    let sessions = MockSessionRepo::new(vec![row]);
    let msgs = MockMessageRepo::new(vec![]);
    let svc = make_service(sessions, msgs);
    let report = svc.run_retention_cleanup_for_tenant("t").await.unwrap();
    assert!(report.sessions.is_empty());
}

// ----- retention caps -------------------------------------------------

#[tokio::test]
async fn run_cleanup_caps_sessions_per_tick_and_defers_remainder() {
    // Five active sessions, cap = 2 → only the first two by
    // session_id are processed this tick.
    let session_ids: Vec<Uuid> = (0..5).map(|_| Uuid::new_v4()).collect();
    let rows: Vec<_> = session_ids
        .iter()
        .map(|sid| make_session(*sid, None))
        .collect();
    let sessions = MockSessionRepo::new(rows);
    let msgs = MockMessageRepo::new(vec![]);
    let svc = make_service(sessions, msgs).with_retention_caps(2, 1000);
    let report = svc.run_retention_cleanup_for_tenant("t").await.unwrap();
    assert_eq!(
        report.sessions.len(),
        2,
        "session cap should limit processed sessions per tick",
    );
}

#[tokio::test]
async fn run_cleanup_cursor_pages_all_sessions_across_ticks() {
    // 5 active sessions, cap = 2. Consecutive ticks must page through
    // every session via the round-robin cursor (2, 2, 1) — no head
    // re-scan, no starved tail — then wrap back to the head.
    let session_ids: Vec<Uuid> = (0..5).map(|_| Uuid::new_v4()).collect();
    let rows: Vec<_> = session_ids
        .iter()
        .map(|sid| make_session(*sid, None))
        .collect();
    let sessions = MockSessionRepo::new(rows);
    let msgs = MockMessageRepo::new(vec![]);
    let svc = make_service(sessions, msgs).with_retention_caps(2, 1000);

    let tick_ids = |svc: &IntelligenceService| {
        let svc = svc.clone();
        async move {
            svc.run_retention_cleanup_for_tenant("t")
                .await
                .unwrap()
                .sessions
                .into_iter()
                .map(|o| o.session_id)
                .collect::<Vec<Uuid>>()
        }
    };

    let t1 = tick_ids(&svc).await;
    let t2 = tick_ids(&svc).await;
    let t3 = tick_ids(&svc).await;
    assert_eq!(t1.len(), 2, "tick 1 processes a full batch");
    assert_eq!(t2.len(), 2, "tick 2 processes the next full batch");
    assert_eq!(t3.len(), 1, "tick 3 processes the remaining tail");

    let mut covered: Vec<Uuid> = [t1, t2, t3].concat();
    let unique: std::collections::HashSet<Uuid> = covered.iter().copied().collect();
    assert_eq!(
        unique.len(),
        5,
        "three ticks must cover every session exactly once (no overlap, no gap)",
    );
    covered.sort();
    let mut expected = session_ids.clone();
    expected.sort();
    assert_eq!(
        covered, expected,
        "every active session is visited across ticks"
    );

    // The short tail batch dropped the cursor, so the next tick wraps to
    // the head rather than returning nothing.
    let t4 = tick_ids(&svc).await;
    assert_eq!(t4.len(), 2, "after the tail, the cursor wraps to the head");
}

#[tokio::test]
async fn evaluate_count_based_caps_deletion_budget_per_session() {
    // Per-session deletion cap = 2; surplus = 5 (max=1, total=6).
    // Only the 2 oldest non-root ids are returned.
    let session_id = Uuid::new_v4();
    let root_id = Uuid::new_v4();
    let mut msgs = vec![make_message(session_id, None, 0)];
    // 6 non-root messages with strictly increasing created_at.
    for i in 1..=6 {
        msgs.push(make_message(session_id, Some(root_id), i));
    }
    let oldest_two: Vec<Uuid> = {
        let mut sorted = msgs.clone();
        sorted.sort_by_key(|m| m.created_at);
        sorted
            .iter()
            .filter(|m| m.parent_message_id.is_some())
            .take(2)
            .map(|m| m.message_id)
            .collect()
    };

    let sessions = MockSessionRepo::new(vec![]);
    let messages = MockMessageRepo::new(msgs);
    let svc = make_service(sessions, messages).with_retention_caps(1000, 2);
    let eligible = svc
        .evaluate_retention_policy(
            session_id,
            &RetentionPolicy::CountBased {
                max_message_count: 1,
            },
        )
        .await
        .unwrap();
    assert_eq!(eligible.len(), 2, "deletion cap should bound eligible ids");
    assert_eq!(
        eligible, oldest_two,
        "should select the OLDEST non-root ids"
    );
}

// ----- run_retention_cleanup_all_tenants ------------------------------

#[tokio::test]
async fn run_cleanup_all_tenants_visits_every_distinct_active_tenant() {
    // Two tenants with active sessions; one with an archived session
    // that must NOT be visited.
    let mut a = make_session(Uuid::new_v4(), None);
    a.tenant_id = "tenant_a".into();
    let mut b = make_session(Uuid::new_v4(), None);
    b.tenant_id = "tenant_b".into();
    let mut c = make_session(Uuid::new_v4(), None);
    c.tenant_id = "tenant_c".into();
    c.lifecycle_state = LifecycleState::Archived;

    let sessions = MockSessionRepo::new(vec![a, b, c]);
    let msgs = MockMessageRepo::new(vec![]);
    let svc = make_service(sessions, msgs);

    let report = svc.run_retention_cleanup_all_tenants().await.unwrap();
    // Two active tenants → two session outcomes, no archived row.
    assert_eq!(report.sessions.len(), 2);
    let mut seen: Vec<String> = report
        .sessions
        .iter()
        .map(|o| o.policy_type.to_owned())
        .collect();
    seen.sort();
    // Both tenants resolve to RetentionPolicy::None (metadata=None).
    assert_eq!(seen, vec!["none".to_owned(), "none".to_owned()]);
}

#[tokio::test]
async fn run_cleanup_all_tenants_returns_empty_when_no_active_tenants() {
    let sessions = MockSessionRepo::new(vec![]);
    let msgs = MockMessageRepo::new(vec![]);
    let svc = make_service(sessions, msgs);
    let report = svc.run_retention_cleanup_all_tenants().await.unwrap();
    assert!(report.sessions.is_empty());
}