multi-index-container 0.1.0

A Rust procedural macro for collections that can be efficiently looked up, mutated, and removed by multiple indexes simultaneously
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
use multi_index_container::multi_index_container;

#[derive(Debug, Clone, PartialEq)]
struct Person {
    email: String,
    age: u32,
    department: String,
    seniority: u32,
    team: String,
}

multi_index_container! {
    #[derive(Debug)]
    PersonMap<Person> {
        unique email: String => |p| p.email.clone(),
        non_unique age: u32 => |p| p.age,
        non_unique department: String => |p| p.department.clone(),
        unique_ordered seniority: u32 => |p| p.seniority,
        non_unique_ordered team: String => |p| p.team.clone(),
    }
}

fn make_map() -> PersonMap {
    let mut map = PersonMap::new();
    map.insert(Person {
        email: "alice@example.com".to_string(),
        age: 30,
        department: "engineering".to_string(),
        seniority: 5,
        team: "backend".to_string(),
    })
    .unwrap();
    map.insert(Person {
        email: "bob@example.com".to_string(),
        age: 25,
        department: "engineering".to_string(),
        seniority: 2,
        team: "backend".to_string(),
    })
    .unwrap();
    map.insert(Person {
        email: "carol@example.com".to_string(),
        age: 30,
        department: "design".to_string(),
        seniority: 7,
        team: "frontend".to_string(),
    })
    .unwrap();
    map
}

#[test]
fn test_remove_by_email() {
    let mut map = make_map();
    // remove via unique index
    let removed = map
        .get_mut_by_email(&"alice@example.com".to_string())
        .unwrap()
        .remove();
    assert_eq!(removed.email, "alice@example.com");
    assert_eq!(map.len(), 2);
    assert!(map.get_by_email(&"alice@example.com".to_string()).is_none());
    // other indexes should no longer return alice
    assert!(
        map.get_by_age(&30)
            .all(|p| p.email != "alice@example.com")
    );
    assert!(
        map.get_by_department(&"engineering".to_string())
            .all(|p| p.email != "alice@example.com")
    );
    assert!(map.get_by_seniority(&5).is_none());
    assert!(
        map.get_by_team(&"backend".to_string())
            .all(|p| p.email != "alice@example.com")
    );
}

#[test]
fn test_remove_by_age() {
    let mut map = make_map();

    // age=30 matches alice and carol; remove alice via email first, then verify carol remains
    let removed = map
        .get_mut_by_email(&"alice@example.com".to_string())
        .unwrap()
        .remove();
    assert_eq!(removed.age, 30);

    // carol (age=30) must still be reachable by age
    let by_age: Vec<_> = map.get_by_age(&30).collect();
    assert_eq!(by_age.len(), 1);
    assert_eq!(by_age[0].email, "carol@example.com");
}

#[test]
fn test_remove_by_seniority() {
    let mut map = make_map();
    // unique_ordered index: remove by seniority=7 (carol)
    let removed = map.get_mut_by_seniority(&7).unwrap().remove();
    assert_eq!(removed.email, "carol@example.com");
    assert_eq!(map.len(), 2);
    assert!(map.get_by_seniority(&7).is_none());
    assert!(map.get_by_email(&"carol@example.com".to_string()).is_none());
}

#[test]
fn test_remove_by_team() {
    let mut map = make_map();
    // non_unique_ordered: team="backend" has alice and bob; remove bob
    let removed = map
        .get_mut_by_email(&"bob@example.com".to_string())
        .unwrap()
        .remove();
    assert_eq!(removed.team, "backend");
    let backend: Vec<_> = map.get_by_team(&"backend".to_string()).collect();
    assert_eq!(backend.len(), 1);
    assert_eq!(backend[0].email, "alice@example.com");
}

#[test]
fn test_remove_by_department() {
    let mut map = make_map();
    // non_unique: department="engineering" has alice and bob; remove alice
    let removed = map
        .get_mut_by_email(&"alice@example.com".to_string())
        .unwrap()
        .remove();
    assert_eq!(removed.department, "engineering");
    let eng: Vec<_> = map.get_by_department(&"engineering".to_string()).collect();
    assert_eq!(eng.len(), 1);
    assert_eq!(eng[0].email, "bob@example.com");
}

// --- Clash tests ---

#[test]
fn test_clash_unique_email() {
    let mut map = make_map();
    // inserting a duplicate unique email must fail
    let err = map.insert(Person {
        email: "alice@example.com".to_string(),
        age: 99,
        department: "hr".to_string(),
        seniority: 99,
        team: "other".to_string(),
    });
    assert!(err.is_err());
    assert_eq!(map.len(), 3);
}

#[test]
fn test_clash_unique_ordered_seniority() {
    let mut map = make_map();
    // inserting a duplicate unique_ordered seniority must fail
    let err = map.insert(Person {
        email: "dave@example.com".to_string(),
        age: 28,
        department: "engineering".to_string(),
        seniority: 5, // clashes with alice
        team: "backend".to_string(),
    });
    assert!(err.is_err());
    assert_eq!(map.len(), 3);
    // original alice still accessible
    assert!(map.get_by_email(&"alice@example.com".to_string()).is_some());
    assert!(map.get_by_email(&"dave@example.com".to_string()).is_none());
}

#[test]
fn test_no_clash_non_unique_age() {
    let mut map = make_map();
    // age=30 already exists (alice, carol); a third person with age=30 is fine
    let result = map.insert(Person {
        email: "dave@example.com".to_string(),
        age: 30,
        department: "sales".to_string(),
        seniority: 10,
        team: "frontend".to_string(),
    });
    assert!(result.is_ok());
    assert_eq!(map.len(), 4);
    let by_age: Vec<_> = map.get_by_age(&30).collect();
    assert_eq!(by_age.len(), 3);
}

#[test]
fn test_no_clash_non_unique_department() {
    let mut map = make_map();
    // department="engineering" already has two; a third is fine
    let result = map.insert(Person {
        email: "dave@example.com".to_string(),
        age: 22,
        department: "engineering".to_string(),
        seniority: 1,
        team: "devops".to_string(),
    });
    assert!(result.is_ok());
    let eng: Vec<_> = map.get_by_department(&"engineering".to_string()).collect();
    assert_eq!(eng.len(), 3);
}

#[test]
fn test_no_clash_non_unique_ordered_team() {
    let mut map = make_map();
    // team="backend" already has alice and bob; adding a third is fine
    let result = map.insert(Person {
        email: "dave@example.com".to_string(),
        age: 27,
        department: "ops".to_string(),
        seniority: 3,
        team: "backend".to_string(),
    });
    assert!(result.is_ok());
    let backend: Vec<_> = map.get_by_team(&"backend".to_string()).collect();
    assert_eq!(backend.len(), 3);
}

// --- Extend tests ---

#[test]
fn test_extend() {
    let mut map = make_map();
    let people = vec![
        Person {
            email: "dave@example.com".to_string(),
            age: 40,
            department: "sales".to_string(),
            seniority: 10,
            team: "frontend".to_string(),
        },
        Person {
            email: "eve@example.com".to_string(),
            age: 35,
            department: "design".to_string(),
            seniority: 8,
            team: "mobile".to_string(),
        },
    ];
    let errors = map.extend(people);
    assert!(errors.is_empty());
    assert_eq!(map.len(), 5);
}

#[test]
fn test_extend_clash_unique_email() {
    let mut map = make_map();
    let people = vec![
        Person {
            email: "alice@example.com".to_string(), // clashes on email
            age: 99,
            department: "hr".to_string(),
            seniority: 99,
            team: "other".to_string(),
        },
        Person {
            email: "dave@example.com".to_string(),
            age: 28,
            department: "sales".to_string(),
            seniority: 10,
            team: "mobile".to_string(),
        },
    ];
    let errors = map.extend(people);
    assert_eq!(errors.len(), 1);
    assert_eq!(map.len(), 4); // original 3 + dave
    assert!(map.get_by_email(&"dave@example.com".to_string()).is_some());
}

#[test]
fn test_extend_clash_unique_ordered_seniority() {
    let mut map = make_map();
    let people = vec![
        Person {
            email: "dave@example.com".to_string(),
            age: 28,
            department: "sales".to_string(),
            seniority: 5, // clashes with alice's seniority
            team: "mobile".to_string(),
        },
        Person {
            email: "eve@example.com".to_string(),
            age: 26,
            department: "hr".to_string(),
            seniority: 11,
            team: "mobile".to_string(),
        },
    ];
    let errors = map.extend(people);
    assert_eq!(errors.len(), 1);
    assert_eq!(map.len(), 4); // original 3 + eve
    assert!(map.get_by_email(&"eve@example.com".to_string()).is_some());
    assert!(map.get_by_email(&"dave@example.com".to_string()).is_none());
}

#[test]
fn test_get_by_unique_existing() {
    let map = make_map();
    let person = map.get_by_email(&"alice@example.com".to_string());
    assert!(person.is_some());
    assert_eq!(person.unwrap().email, "alice@example.com");
}

#[test]
fn test_get_by_unique_missing() {
    let map = make_map();
    let person = map.get_by_email(&"unknown@example.com".to_string());
    assert!(person.is_none());
}

#[test]
fn test_get_mut_by_unique_existing() {
    let mut map = make_map();
    let entry = map.get_mut_by_email(&"alice@example.com".to_string());
    assert!(entry.is_some());
}

#[test]
fn test_get_mut_by_unique_missing() {
    let mut map = make_map();
    let entry = map.get_mut_by_email(&"unknown@example.com".to_string());
    assert!(entry.is_none());
}

// --- non_unique (get_by_age, get_by_department) ---

#[test]
fn test_get_by_non_unique_multiple_results() {
    let map = make_map();
    let persons: Vec<_> = map.get_by_age(&30).collect();
    assert_eq!(persons.len(), 2);
    assert!(persons.iter().any(|p| p.email == "alice@example.com"));
    assert!(persons.iter().any(|p| p.email == "carol@example.com"));
}

#[test]
fn test_get_by_non_unique_single_result() {
    let map = make_map();
    let persons: Vec<_> = map.get_by_age(&25).collect();
    assert_eq!(persons.len(), 1);
    assert_eq!(persons[0].email, "bob@example.com");
}

#[test]
fn test_get_by_non_unique_missing() {
    let map = make_map();
    let persons: Vec<_> = map.get_by_age(&99).collect();
    assert!(persons.is_empty());
}

#[test]
fn test_get_mut_by_non_unique_existing() {
    let mut map = make_map();
    let entries = map.get_mut_by_department(&"engineering".to_string());
    assert!(entries.is_not_empty());
}

#[test]
fn test_get_mut_by_non_unique_missing() {
    let mut map = make_map();
    let entries = map.get_mut_by_department(&"marketing".to_string());
    assert!(entries.is_empty());
}

// --- unique_ordered (get_by_seniority) ---

#[test]
fn test_get_by_unique_ordered_existing() {
    let map = make_map();
    let person = map.get_by_seniority(&5);
    assert!(person.is_some());
    assert_eq!(person.unwrap().email, "alice@example.com");
}

#[test]
fn test_get_by_unique_ordered_missing() {
    let map = make_map();
    let person = map.get_by_seniority(&99);
    assert!(person.is_none());
}

#[test]
fn test_get_mut_by_unique_ordered_existing() {
    let mut map = make_map();
    let entry = map.get_mut_by_seniority(&5);
    assert!(entry.is_some());
}

#[test]
fn test_get_mut_by_unique_ordered_missing() {
    let mut map = make_map();
    let entry = map.get_mut_by_seniority(&99);
    assert!(entry.is_none());
}

#[test]
fn test_get_by_non_unique_ordered_multiple_results() {
    let map = make_map();
    let persons: Vec<_> = map.get_by_team(&"backend".to_string()).collect();
    assert_eq!(persons.len(), 2);
    assert!(persons.iter().any(|p| p.email == "alice@example.com"));
    assert!(persons.iter().any(|p| p.email == "bob@example.com"));
}

#[test]
fn test_get_by_non_unique_ordered_single_result() {
    let map = make_map();
    let persons: Vec<_> = map.get_by_team(&"frontend".to_string()).collect();
    assert_eq!(persons.len(), 1);
    assert_eq!(persons[0].email, "carol@example.com");
}

#[test]
fn test_get_by_non_unique_ordered_missing() {
    let map = make_map();
    let persons: Vec<_> = map.get_by_team(&"infra".to_string()).collect();
    assert!(persons.is_empty());
}

#[test]
fn test_get_mut_by_non_unique_ordered_existing() {
    let mut map = make_map();
    let entries = map.get_mut_by_team(&"backend".to_string());
    assert!(entries.is_not_empty());
}

#[test]
fn test_get_mut_by_non_unique_ordered_missing() {
    let mut map = make_map();
    let entries = map.get_mut_by_team(&"infra".to_string());
    assert!(entries.is_empty());
}

#[test]
fn test_insert_or_overwrite_same_email() {
    let mut map = make_map();
    // Same email as alice: should replace her entry entirely
    map.insert_or_overwrite(Person {
        email: "alice@example.com".to_string(),
        age: 99,
        department: "hr".to_string(),
        seniority: 99,
        team: "other".to_string(),
    });
    assert_eq!(map.len(), 3); // count unchanged
    let alice = map.get_by_email(&"alice@example.com".to_string()).unwrap();
    assert_eq!(alice.age, 99);
    assert_eq!(alice.seniority, 99);
    // old seniority=5 must be gone from unique_ordered index
    assert!(map.get_by_seniority(&5).is_none());
    // new seniority reachable
    assert!(map.get_by_seniority(&99).is_some());
}

#[test]
fn test_insert_or_overwrite_same_seniority() {
    let mut map = make_map();
    // Same seniority as alice (5), different email: alice is evicted, new entry wins
    map.insert_or_overwrite(Person {
        email: "dave@example.com".to_string(),
        age: 28,
        department: "sales".to_string(),
        seniority: 5,
        team: "mobile".to_string(),
    });
    assert_eq!(map.len(), 3); // alice removed, dave added
    assert!(map.get_by_email(&"alice@example.com".to_string()).is_none());
    assert!(map.get_by_email(&"dave@example.com".to_string()).is_some());
    // seniority=5 now points to dave
    assert_eq!(map.get_by_seniority(&5).unwrap().email, "dave@example.com");
    // alice's age bucket should no longer contain her
    let age_30: Vec<_> = map.get_by_age(&30).collect();
    assert!(age_30.iter().all(|p| p.email != "alice@example.com"));
}

#[test]
fn test_insert_or_overwrite_no_clash() {
    let mut map = make_map();
    map.insert_or_overwrite(Person {
        email: "dave@example.com".to_string(),
        age: 28,
        department: "sales".to_string(),
        seniority: 10,
        team: "mobile".to_string(),
    });
    assert_eq!(map.len(), 4);
    assert!(map.get_by_email(&"dave@example.com".to_string()).is_some());
    assert!(map.get_by_seniority(&10).is_some());
    let sales: Vec<_> = map.get_by_department(&"sales".to_string()).collect();
    assert_eq!(sales.len(), 1);
}

#[test]
fn test_insert_or_overwrite_clears_all_indexes_of_evicted_entry() {
    let mut map = make_map();
    // Overwrite bob (age=25, department=engineering, seniority=2, team=backend)
    // by clashing on his email
    map.insert_or_overwrite(Person {
        email: "bob@example.com".to_string(),
        age: 50,
        department: "legal".to_string(),
        seniority: 20,
        team: "compliance".to_string(),
    });
    assert_eq!(map.len(), 3);

    // bob's OLD values must be gone from every index
    let age_25: Vec<_> = map.get_by_age(&25).collect();
    assert!(age_25.is_empty());

    let eng: Vec<_> = map.get_by_department(&"engineering".to_string()).collect();
    assert!(eng.iter().all(|p| p.email != "bob@example.com"));

    assert!(map.get_by_seniority(&2).is_none());

    let backend: Vec<_> = map.get_by_team(&"backend".to_string()).collect();
    assert!(backend.iter().all(|p| p.email != "bob@example.com"));

    // bob's NEW values must be reachable from every index
    let age_50: Vec<_> = map.get_by_age(&50).collect();
    assert_eq!(age_50.len(), 1);
    assert_eq!(age_50[0].email, "bob@example.com");

    assert_eq!(map.get_by_seniority(&20).unwrap().email, "bob@example.com");

    let legal: Vec<_> = map.get_by_department(&"legal".to_string()).collect();
    assert_eq!(legal.len(), 1);

    let compliance: Vec<_> = map.get_by_team(&"compliance".to_string()).collect();
    assert_eq!(compliance.len(), 1);
}

#[test]
fn test_insert_or_overwrite_multi_clash_removes_all() {
    let mut map = make_map();
    // email clashes with alice, seniority clashes with bob (seniority=2)
    // Both should be evicted; only the new entry and carol remain
    map.insert_or_overwrite(Person {
        email: "alice@example.com".to_string(),
        age: 40,
        department: "product".to_string(),
        seniority: 2, // bob's seniority
        team: "strategy".to_string(),
    });
    assert_eq!(map.len(), 2); // carol + new entry

    assert!(map.get_by_email(&"bob@example.com".to_string()).is_none());
    assert!(map.get_by_seniority(&5).is_none()); // alice's old seniority gone

    let new_alice = map.get_by_email(&"alice@example.com".to_string()).unwrap();
    assert_eq!(new_alice.seniority, 2);
    assert_eq!(new_alice.department, "product");
}

#[test]
fn test_insert_or_overwrite_idempotent() {
    let mut map = make_map();
    let carol = map
        .get_by_email(&"carol@example.com".to_string())
        .unwrap()
        .clone();
    map.insert_or_overwrite(carol.clone());
    assert_eq!(map.len(), 3);
    let fetched = map.get_by_email(&"carol@example.com".to_string()).unwrap();
    assert_eq!(*fetched, carol);
    assert_eq!(map.get_by_seniority(&7).unwrap().email, "carol@example.com");
    let frontend: Vec<_> = map.get_by_team(&"frontend".to_string()).collect();
    assert_eq!(frontend.len(), 1);
}

#[test]
fn test_get_by_department_team_match() {
    let map = make_map();
    // alice and bob are both engineering/backend
    let results: Vec<_> =
        map.get_by_department_team(&"engineering".to_string(), &"backend".to_string()).collect();
    assert_eq!(results.len(), 2);
    assert!(results.iter().any(|p| p.email == "alice@example.com"));
    assert!(results.iter().any(|p| p.email == "bob@example.com"));
}

#[test]
fn test_get_by_department_team_no_match() {
    let map = make_map();
    // no one is in engineering/frontend
    let results: Vec<_> =
        map.get_by_department_team(&"engineering".to_string(), &"frontend".to_string()).collect();
    assert!(results.is_empty());
}

#[test]
fn test_get_by_department_team_single_match() {
    let map = make_map();
    // only carol is design/frontend
    let results: Vec<_> =
        map.get_by_department_team(&"design".to_string(), &"frontend".to_string()).collect();
    assert_eq!(results.len(), 1);
    assert_eq!(results[0].email, "carol@example.com");
}

#[test]
fn test_get_by_department_team_unknown_department() {
    let map = make_map();
    let results: Vec<_> = map.get_by_department_team(&"hr".to_string(), &"backend".to_string()).collect();
    assert!(results.is_empty());
}

#[test]
fn test_get_by_department_team_unknown_team() {
    let map = make_map();
    let results: Vec<_> =
        map.get_by_department_team(&"engineering".to_string(), &"mobile".to_string()).collect();
    assert!(results.is_empty());
}

// --- get_by_age_department_team ---

#[test]
fn test_get_by_age_department_team_single_match() {
    let map = make_map();
    // alice: age=30, engineering, backend
    let results: Vec<_> =
        map.get_by_age_department_team(&30, &"engineering".to_string(), &"backend".to_string()).collect();
    assert_eq!(results.len(), 1);
    assert_eq!(results[0].email, "alice@example.com");
}

#[test]
fn test_get_by_age_department_team_age_narrows_department_team() {
    let map = make_map();
    // bob is also engineering/backend but age=25, not 30; must not appear
    let results: Vec<_> =
        map.get_by_age_department_team(&30, &"engineering".to_string(), &"backend".to_string()).collect();
    assert!(results.iter().all(|p| p.email != "bob@example.com"));
}

#[test]
fn test_get_by_age_department_team_no_match_wrong_age() {
    let map = make_map();
    // engineering/backend exists, but not at age=99
    let results: Vec<_> =
        map.get_by_age_department_team(&99, &"engineering".to_string(), &"backend".to_string()).collect();
    assert!(results.is_empty());
}

#[test]
fn test_get_by_age_department_team_no_match_wrong_department() {
    let map = make_map();
    // age=30 and team=backend exist, but not with department=sales
    let results: Vec<_> =
        map.get_by_age_department_team(&30, &"sales".to_string(), &"backend".to_string()).collect();
    assert!(results.is_empty());
}

#[test]
fn test_get_by_age_department_team_no_match_wrong_team() {
    let map = make_map();
    // age=30 and department=engineering exist, but not with team=mobile
    let results: Vec<_> =
        map.get_by_age_department_team(&30, &"engineering".to_string(), &"mobile".to_string()).collect();
    assert!(results.is_empty());
}

#[test]
fn test_get_by_age_department_team_all_unknown() {
    let map = make_map();
    let results: Vec<_> =
        map.get_by_age_department_team(&0, &"unknown".to_string(), &"unknown".to_string()).collect();
    assert!(results.is_empty());
}

// --- cross-check: get_by_department_team vs get_by_age_department_team ---

#[test]
fn test_combined_subset_of_department_team() {
    let map = make_map();
    // get_by_age_department_team results must always be a subset of get_by_department_team
    let by_dept_team: Vec<_> = map
        .get_by_department_team(&"engineering".to_string(), &"backend".to_string())
        .into_iter()
        .map(|p| p.email.clone())
        .collect();
    let by_age_dept_team: Vec<_> = map
        .get_by_age_department_team(&30, &"engineering".to_string(), &"backend".to_string())
        .into_iter()
        .map(|p| p.email.clone())
        .collect();
    for email in &by_age_dept_team {
        assert!(by_dept_team.contains(email));
    }
}

// --- get_mut_by_department_team ---
#[test]
fn test_remove_via_get_mut_by_department_team_single_match() {
    let mut map = make_map();
    // design/frontend only has carol; remove her
    let removed = map
        .get_mut_by_department_team(&"design".to_string(), &"frontend".to_string())
        .first()
        .unwrap()
        .remove();
    assert_eq!(removed.email, "carol@example.com");
    assert_eq!(map.len(), 2);
    // gone from all indexes
    assert!(map.get_by_email(&"carol@example.com".to_string()).is_none());
    assert!(map.get_by_seniority(&7).is_none());
    let age_30: Vec<_> = map.get_by_age(&30).collect();
    assert!(age_30.iter().all(|p| p.email != "carol@example.com"));
    let frontend: Vec<_> = map.get_by_team(&"frontend".to_string()).collect();
    assert!(frontend.is_empty());
    let design: Vec<_> = map.get_by_department(&"design".to_string()).collect();
    assert!(design.is_empty());
}

#[test]
fn test_remove_via_get_mut_by_department_team_one_of_many() {
    let mut map = make_map();
    // engineering/backend has alice and bob; remove only the first result
    let removed = map
        .get_mut_by_department_team(&"engineering".to_string(), &"backend".to_string())
        .first()
        .unwrap()
        .remove();
    assert_eq!(map.len(), 2);
    // the other engineering/backend person must still be reachable via the combined index
    let remaining: Vec<_> = map
        .get_by_department_team(&"engineering".to_string(), &"backend".to_string()).collect();
    assert_eq!(remaining.len(), 1);
    assert_ne!(remaining[0].email, removed.email);
}

#[test]
fn test_remove_all_via_get_mut_by_department_team() {
    let mut map = make_map();
    // drain all engineering/backend entries
    let emails: Vec<String> = map
        .get_mut_by_department_team(&"engineering".to_string(), &"backend".to_string())
        .remove_all()
        .into_iter()
        .map(|x| x.email)
        .collect()
        ;
    assert_eq!(emails.len(), 2);
    assert!(emails.contains(&"alice@example.com".to_string()));
    assert!(emails.contains(&"bob@example.com".to_string()));
    assert_eq!(map.len(), 1);
    // combined index must now be empty
    let remaining: Vec<_> = map
        .get_by_department_team(&"engineering".to_string(), &"backend".to_string()).collect();
    assert!(remaining.is_empty());
    // carol is untouched
    assert!(map.get_by_email(&"carol@example.com".to_string()).is_some());
}

// --- get_mut_by_age_department_team ---

#[test]
fn test_remove_via_get_mut_by_age_department_team_single_match() {
    let mut map = make_map();
    // age=30, engineering, backend matches only alice (bob is age=25)
    let removed = map
        .get_mut_by_age_department_team(&30, &"engineering".to_string(), &"backend".to_string())
        .first()
        .unwrap()
        .remove();
    assert_eq!(removed.email, "alice@example.com");
    assert_eq!(map.len(), 2);
    // gone from all indexes
    assert!(map.get_by_email(&"alice@example.com".to_string()).is_none());
    assert!(map.get_by_seniority(&5).is_none());
    // bob (age=25, engineering, backend) must be unaffected
    assert!(map.get_by_email(&"bob@example.com".to_string()).is_some());
    let eng_backend: Vec<_> = map
        .get_by_department_team(&"engineering".to_string(), &"backend".to_string()).collect();
    assert_eq!(eng_backend.len(), 1);
    assert_eq!(eng_backend[0].email, "bob@example.com");
}

#[test]
fn test_remove_via_get_mut_by_age_department_team_no_match() {
    let mut map = make_map();
    // age=99 matches nobody; iterator is empty, map unchanged
    let iter =
        map.get_mut_by_age_department_team(&99, &"engineering".to_string(), &"backend".to_string()).first();
    assert!(iter.is_none());
    assert_eq!(map.len(), 3);
}

#[test]
fn test_remove_via_get_mut_by_age_department_team_clears_all_indexes() {
    let mut map = make_map();
    // remove bob via age=25, engineering, backend
    let removed = map
        .get_mut_by_age_department_team(&25, &"engineering".to_string(), &"backend".to_string())
        .first()
        .unwrap()
        .remove();
    assert_eq!(removed.email, "bob@example.com");
    assert_eq!(map.len(), 2);
    // bob gone from every index
    assert!(map.get_by_seniority(&2).is_none());
    let age_25: Vec<_> = map.get_by_age(&25).collect();
    assert!(age_25.is_empty());
    let eng: Vec<_> = map.get_by_department(&"engineering".to_string()).collect();
    assert!(eng.iter().all(|p| p.email != "bob@example.com"));
    let backend: Vec<_> = map.get_by_team(&"backend".to_string()).collect();
    assert!(backend.iter().all(|p| p.email != "bob@example.com"));
    // alice still reachable via the same combined index
    let remaining: Vec<_> = map
        .get_by_age_department_team(&30, &"engineering".to_string(), &"backend".to_string())
        .into_iter()
        .map(|e| e.email.clone())
        .collect();
    assert_eq!(remaining, vec!["alice@example.com".to_string()]);
}

// --- modify_or_remove via get_mut_by_email (unique index) ---

#[test]
fn test_modify_non_indexed_field() {
    let mut map = make_map();
    // modifying a field that isn't part of any index is a simple in-place update
    let result = map
        .get_mut_by_email(&"alice@example.com".to_string())
        .unwrap()
        .modify_or_remove(|p| p.age = 99);
    assert!(result.is_ok());
    assert_eq!(map.len(), 3);
    let alice = map.get_by_email(&"alice@example.com".to_string()).unwrap();
    assert_eq!(alice.age, 99);
}

#[test]
fn test_modify_unique_index_to_unused_value() {
    let mut map = make_map();
    // changing email to a value not held by anyone else succeeds
    let result = map
        .get_mut_by_email(&"alice@example.com".to_string())
        .unwrap()
        .modify_or_remove(|p| p.email = "alice-new@example.com".to_string());
    assert!(result.is_ok());
    assert_eq!(map.len(), 3);
    assert!(map.get_by_email(&"alice@example.com".to_string()).is_none());
    assert!(
        map.get_by_email(&"alice-new@example.com".to_string())
            .is_some()
    );
}

#[test]
fn test_modify_unique_index_clash_removes_entry() {
    let mut map = make_map();
    // changing alice's email to bob's causes a clash on re-insert;
    // alice is permanently removed (not rolled back)
    let result = map
        .get_mut_by_email(&"alice@example.com".to_string())
        .unwrap()
        .modify_or_remove(|p| p.email = "bob@example.com".to_string());
    assert!(result.is_err());
    assert_eq!(map.len(), 2); // alice gone, bob untouched
    assert!(map.get_by_email(&"alice@example.com".to_string()).is_none());
    assert!(map.get_by_email(&"bob@example.com".to_string()).is_some());
    // alice's old indexed values must also be gone
    assert!(map.get_by_seniority(&5).is_none());
    let age_30: Vec<_> = map.get_by_age(&30).collect();
    assert!(age_30.iter().all(|p| p.email != "alice@example.com"));
    let backend: Vec<_> = map.get_by_team(&"backend".to_string()).collect();
    assert!(backend.iter().all(|p| p.email != "alice@example.com"));
}

#[test]
fn test_modify_unique_ordered_index_to_unused_value() {
    let mut map = make_map();
    // changing alice's seniority to a value no one else holds succeeds
    let result = map
        .get_mut_by_email(&"alice@example.com".to_string())
        .unwrap()
        .modify_or_remove(|p| p.seniority = 50);
    assert!(result.is_ok());
    assert_eq!(map.len(), 3);
    assert!(map.get_by_seniority(&5).is_none());
    assert_eq!(
        map.get_by_seniority(&50).unwrap().email,
        "alice@example.com"
    );
}

#[test]
fn test_modify_unique_ordered_index_clash_removes_entry() {
    let mut map = make_map();
    // changing alice's seniority to carol's (7) causes a clash; alice is lost
    let result = map
        .get_mut_by_email(&"alice@example.com".to_string())
        .unwrap()
        .modify_or_remove(|p| p.seniority = 7);
    assert!(result.is_err());
    assert_eq!(map.len(), 2);
    assert!(map.get_by_email(&"alice@example.com".to_string()).is_none());
    // carol's seniority=7 still points to carol
    assert_eq!(map.get_by_seniority(&7).unwrap().email, "carol@example.com");
    assert!(map.get_by_seniority(&5).is_none());
}

#[test]
fn test_modify_non_unique_index_no_clash() {
    let mut map = make_map();
    // moving alice from engineering to a new department; no clash possible on non-unique index
    let result = map
        .get_mut_by_email(&"alice@example.com".to_string())
        .unwrap()
        .modify_or_remove(|p| p.department = "product".to_string());
    assert!(result.is_ok());
    assert_eq!(map.len(), 3);
    // alice no longer in engineering bucket
    let eng: Vec<_> = map.get_by_department(&"engineering".to_string()).collect();
    assert!(eng.iter().all(|p| p.email != "alice@example.com"));
    // alice now in product bucket
    let product: Vec<_> = map.get_by_department(&"product".to_string()).collect();
    assert_eq!(product.len(), 1);
    assert_eq!(product[0].email, "alice@example.com");
}

#[test]
fn test_modify_non_unique_ordered_index_no_clash() {
    let mut map = make_map();
    // moving alice from backend to a new team; non_unique_ordered allows duplicates
    let result = map
        .get_mut_by_email(&"alice@example.com".to_string())
        .unwrap()
        .modify_or_remove(|p| p.team = "mobile".to_string());
    assert!(result.is_ok());
    assert_eq!(map.len(), 3);
    let backend: Vec<_> = map.get_by_team(&"backend".to_string()).collect();
    assert!(backend.iter().all(|p| p.email != "alice@example.com"));
    assert_eq!(backend.len(), 1); // only bob remains
    let mobile: Vec<_> = map.get_by_team(&"mobile".to_string()).collect();
    assert_eq!(mobile.len(), 1);
    assert_eq!(mobile[0].email, "alice@example.com");
}

// --- modify_or_remove via combined get_mut ---

#[test]
fn test_modify_via_get_mut_by_department_team() {
    let mut map = make_map();
    // promote alice's seniority via the combined index
    let result = map
        .get_mut_by_department_team(&"engineering".to_string(), &"backend".to_string())
        .find(|e| e.email == "alice@example.com")
        .unwrap()
        .modify_or_remove(|p| p.seniority = 99);
    assert!(result.is_ok());
    assert_eq!(map.len(), 3);
    assert_eq!(
        map.get_by_seniority(&99).unwrap().email,
        "alice@example.com"
    );
    assert!(map.get_by_seniority(&5).is_none());
}

#[test]
fn test_modify_via_get_mut_by_department_team_clash_removes_entry() {
    let mut map = make_map();
    // changing alice's seniority to bob's (2) via combined index; alice is lost on clash
    let result = map
        .get_mut_by_department_team(&"engineering".to_string(), &"backend".to_string())
        .find(|e| e.email == "alice@example.com")
        .unwrap()
        .modify_or_remove(|p| p.seniority = 2);
    assert!(result.is_err());
    assert_eq!(map.len(), 2);
    assert!(map.get_by_email(&"alice@example.com".to_string()).is_none());
    // bob's seniority=2 still intact
    assert_eq!(map.get_by_seniority(&2).unwrap().email, "bob@example.com");
}

#[test]
fn test_modify_via_get_mut_by_age_department_team() {
    let mut map = make_map();
    // update alice's team via the three-field combined index
    let result = map
        .get_mut_by_age_department_team(&30, &"engineering".to_string(), &"backend".to_string())
        .first()
        .unwrap()
        .modify_or_remove(|p| p.team = "platform".to_string());
    assert!(result.is_ok());
    assert_eq!(map.len(), 3);
    // alice no longer in backend bucket
    let backend: Vec<_> = map.get_by_team(&"backend".to_string()).collect();
    assert!(backend.iter().all(|p| p.email != "alice@example.com"));
    // alice now in platform bucket
    let platform: Vec<_> = map.get_by_team(&"platform".to_string()).collect();
    assert_eq!(platform.len(), 1);
    assert_eq!(platform[0].email, "alice@example.com");
    // alice no longer reachable via old combined index
    let old_combined: Vec<_> = map
        .get_by_age_department_team(&30, &"engineering".to_string(), &"backend".to_string()).collect();
    assert!(old_combined.iter().all(|p| p.email != "alice@example.com"));
}

// --- error value contains the orphaned entry ---

#[test]
fn test_modify_clash_error_contains_attempted_value() {
    let mut map = make_map();
    // the Err should carry back the value that failed to re-insert
    let result = map
        .get_mut_by_email(&"alice@example.com".to_string())
        .unwrap()
        .modify_or_remove(|p| {
            p.email = "bob@example.com".to_string();
            p.seniority = 999;
        });
    let err = result.unwrap_err();
    // the orphaned value reflects the mutation that was attempted
    assert_eq!(err.value.email, "bob@example.com");
    assert_eq!(err.value.seniority, 999);
}

// --- first_by_* and last_by_* on single ordered indexes ---

#[test]
fn test_first_by_seniority() {
    let map = make_map();
    // seniority values: bob=2, alice=5, carol=7; first should be bob
    let first = map.first_by_seniority().unwrap();
    assert_eq!(first.email, "bob@example.com");
}

#[test]
fn test_last_by_seniority() {
    let map = make_map();
    // seniority values: bob=2, alice=5, carol=7; last should be carol
    let last = map.last_by_seniority().unwrap();
    assert_eq!(last.email, "carol@example.com");
}

#[test]
fn test_first_by_seniority_empty() {
    let map = PersonMap::new();
    assert!(map.first_by_seniority().is_none());
}

#[test]
fn test_last_by_seniority_empty() {
    let map = PersonMap::new();
    assert!(map.last_by_seniority().is_none());
}

#[test]
fn test_first_by_team() {
    let map = make_map();
    // team values ordered: backend (alice, bob), frontend (carol)
    // first alphabetically is backend
    let first: Vec<_> = map.first_by_team().collect();
    assert_eq!(first.len(), 2);
    assert!(first.iter().any(|p| p.email == "alice@example.com"));
    assert!(first.iter().any(|p| p.email == "bob@example.com"));
}

#[test]
fn test_last_by_team() {
    let map = make_map();
    // last alphabetically is frontend, only carol
    let last: Vec<_> = map.last_by_team().collect();
    assert_eq!(last.len(), 1);
    assert_eq!(last[0].email, "carol@example.com");
}

#[test]
fn test_first_by_team_empty() {
    let map = PersonMap::new();
    let first: Vec<_> = map.first_by_team().collect();
    assert!(first.is_empty());
}

// --- get_by_*_range on single ordered indexes ---

#[test]
fn test_get_by_seniority_range_inclusive() {
    let map = make_map();
    // seniority 2..=5: bob (2) and alice (5)
    let results: Vec<_> = map.get_by_seniority_range(2..=5).collect();
    assert_eq!(results.len(), 2);
    assert!(results.iter().any(|p| p.email == "alice@example.com"));
    assert!(results.iter().any(|p| p.email == "bob@example.com"));
}

#[test]
fn test_get_by_seniority_range_exclusive() {
    let map = make_map();
    // seniority 2..5 excludes alice (5), returns only bob
    let results: Vec<_> = map.get_by_seniority_range(2..5).collect();
    assert_eq!(results.len(), 1);
    assert_eq!(results[0].email, "bob@example.com");
}

#[test]
fn test_get_by_seniority_range_from() {
    let map = make_map();
    // seniority 5.. returns alice and carol
    let results: Vec<_> = map.get_by_seniority_range(5..).collect();
    assert_eq!(results.len(), 2);
    assert!(results.iter().any(|p| p.email == "alice@example.com"));
    assert!(results.iter().any(|p| p.email == "carol@example.com"));
}

#[test]
fn test_get_by_seniority_range_to() {
    let map = make_map();
    // seniority ..5 excludes alice, returns only bob
    let results: Vec<_> = map.get_by_seniority_range(..5).collect();
    assert_eq!(results.len(), 1);
    assert_eq!(results[0].email, "bob@example.com");
}

#[test]
fn test_get_by_seniority_range_no_match() {
    let map = make_map();
    let results: Vec<_> = map.get_by_seniority_range(10..=20).collect();
    assert!(results.is_empty());
}

#[test]
fn test_get_by_team_range_full() {
    let map = make_map();
    // "backend"..="frontend" covers both teams, all 3 people
    let results: Vec<_> = map
        .get_by_team_range("backend".to_string()..="frontend".to_string())
        .collect();
    assert_eq!(results.len(), 3);
}

#[test]
fn test_get_by_team_range_partial() {
    let map = make_map();
    // "backend"..="backend" covers only backend entries
    let results: Vec<_> = map
        .get_by_team_range("backend".to_string()..="backend".to_string())
        .collect();
    assert_eq!(results.len(), 2);
    assert!(results.iter().any(|p| p.email == "alice@example.com"));
    assert!(results.iter().any(|p| p.email == "bob@example.com"));
}

#[test]
fn test_get_by_team_range_no_match() {
    let map = make_map();
    let results: Vec<_> = map
        .get_by_team_range("zzz".to_string()..)
        .collect();
    assert!(results.is_empty());
}

// --- combined first_by_team_* and last_by_team_* with equality filters ---
// team is the only non_unique_ordered index so it is the range field

#[test]
fn test_first_by_team_department() {
    let map = make_map();
    // department=engineering: alice (backend) and bob (backend)
    // first team alphabetically containing an engineer is backend
    let first = map.first_by_team_department(&"engineering".to_string());
    assert!(first.is_some());
    assert_eq!(first.unwrap().department, "engineering");
}

#[test]
fn test_last_by_team_department() {
    let map = make_map();
    // department=design: only carol (frontend)
    // last team alphabetically containing a designer is frontend
    let last = map.last_by_team_department(&"design".to_string());
    assert_eq!(last.unwrap().email, "carol@example.com");
}

#[test]
fn test_first_by_team_age() {
    let map = make_map();
    // age=30: alice (backend) and carol (frontend)
    // first team alphabetically is backend, so alice
    let first = map.first_by_team_age(&30);
    assert_eq!(first.unwrap().email, "alice@example.com");
}

#[test]
fn test_last_by_team_age() {
    let map = make_map();
    // age=30: alice (backend) and carol (frontend)
    // last team alphabetically is frontend, so carol
    let last = map.last_by_team_age(&30);
    assert_eq!(last.unwrap().email, "carol@example.com");
}

#[test]
fn test_first_by_team_department_age() {
    let map = make_map();
    // engineering + age=30: only alice (backend)
    let first = map.first_by_team_age_department(&30, &"engineering".to_string());
    assert_eq!(first.unwrap().email, "alice@example.com");
}

#[test]
fn test_first_by_team_department_no_match() {
    let map = make_map();
    assert!(map.first_by_team_department(&"hr".to_string()).is_none());
}

#[test]
fn test_last_by_team_department_no_match() {
    let map = make_map();
    assert!(map.last_by_team_department(&"hr".to_string()).is_none());
}

#[test]
fn test_first_by_team_age_no_match() {
    let map = make_map();
    assert!(map.first_by_team_age(&99).is_none());
}

// --- combined get_by_team_range_* with equality filters ---

#[test]
fn test_get_by_team_range_department() {
    let map = make_map();
    // teams "backend"..="frontend", department=engineering: alice and bob
    let results: Vec<_> = map
        .get_by_team_range_department(
            "backend".to_string()..="frontend".to_string(),
            &"engineering".to_string(),
        )
        .collect();
    assert_eq!(results.len(), 2);
    assert!(results.iter().any(|p| p.email == "alice@example.com"));
    assert!(results.iter().any(|p| p.email == "bob@example.com"));
}

#[test]
fn test_get_by_team_range_department_narrows_result() {
    let map = make_map();
    // full range returns all 3; with department=engineering only alice and bob
    let all: Vec<_> = map
        .get_by_team_range("backend".to_string()..="frontend".to_string())
        .collect();
    assert_eq!(all.len(), 3);
    let filtered: Vec<_> = map
        .get_by_team_range_department(
            "backend".to_string()..="frontend".to_string(),
            &"engineering".to_string(),
        )
        .collect();
    assert_eq!(filtered.len(), 2);
    assert!(filtered.iter().all(|p| p.department == "engineering"));
}

#[test]
fn test_get_by_team_range_age() {
    let map = make_map();
    // teams "backend"..="frontend", age=30: alice and carol
    let results: Vec<_> = map
        .get_by_team_range_age(
            "backend".to_string()..="frontend".to_string(),
            &30,
        )
        .collect();
    assert_eq!(results.len(), 2);
    assert!(results.iter().any(|p| p.email == "alice@example.com"));
    assert!(results.iter().any(|p| p.email == "carol@example.com"));
}

#[test]
fn test_get_by_team_range_department_age() {
    let map = make_map();
    // teams "backend".., department=engineering, age=30: only alice
    let results: Vec<_> = map
        .get_by_team_range_age_department(
            "backend".to_string()..,
            &30,
            &"engineering".to_string(),
        )
        .collect();
    assert_eq!(results.len(), 1);
    assert_eq!(results[0].email, "alice@example.com");
}

#[test]
fn test_get_by_team_range_department_no_match_range() {
    let map = make_map();
    // range "zzz".. matches no teams
    let results: Vec<_> = map
        .get_by_team_range_department(
            "zzz".to_string()..,
            &"engineering".to_string(),
        )
        .collect();
    assert!(results.is_empty());
}

#[test]
fn test_get_by_team_range_department_no_match_filter() {
    let map = make_map();
    // range covers all teams but hr has no entries
    let results: Vec<_> = map
        .get_by_team_range_department(
            "backend".to_string()..="frontend".to_string(),
            &"hr".to_string(),
        )
        .collect();
    assert!(results.is_empty());
}

// --- combined get_mut_by_team_range_* with equality filters ---

#[test]
fn test_get_mut_by_team_range_department_modify() {
    let mut map = make_map();
    // move all engineers in any team to department=platform
    map.get_mut_by_team_range_department(
        "backend".to_string()..="frontend".to_string(),
        &"engineering".to_string(),
    )
    .for_each(|mut e| {
        e.modify_or_remove(|p| p.department = "platform".to_string()).unwrap();
    });
    let platform: Vec<_> = map.get_by_department(&"platform".to_string()).collect();
    assert_eq!(platform.len(), 2);
    let eng: Vec<_> = map.get_by_department(&"engineering".to_string()).collect();
    assert!(eng.is_empty());
    // carol (design) untouched
    assert_eq!(map.get_by_email(&"carol@example.com".to_string()).unwrap().department, "design");
}

#[test]
fn test_get_mut_by_team_range_department_remove_all() {
    let mut map = make_map();
    let removed = map
        .get_mut_by_team_range_department(
            "backend".to_string()..="backend".to_string(),
            &"engineering".to_string(),
        )
        .remove_all();
    assert_eq!(removed.len(), 2);
    assert!(removed.iter().any(|p| p.email == "alice@example.com"));
    assert!(removed.iter().any(|p| p.email == "bob@example.com"));
    assert_eq!(map.len(), 1);
    assert!(map.get_by_email(&"carol@example.com".to_string()).is_some());
}

#[test]
fn test_get_mut_by_team_range_department_no_match() {
    let mut map = make_map();
    let removed = map
        .get_mut_by_team_range_department(
            "zzz".to_string()..,
            &"engineering".to_string(),
        )
        .remove_all();
    assert!(removed.is_empty());
    assert_eq!(map.len(), 3);
}

#[test]
fn test_get_mut_by_team_range_age_filter_then_remove() {
    let mut map = make_map();
    // teams "backend"..="frontend", age=30, then filter seniority > 5
    let removed = map
        .get_mut_by_team_range_age(
            "backend".to_string()..="frontend".to_string(),
            &30,
        )
        .filter(|p| p.seniority > 5)
        .remove_all();
    // carol: age=30, seniority=7, frontend — matches
    assert_eq!(removed.len(), 1);
    assert_eq!(removed[0].email, "carol@example.com");
    assert_eq!(map.len(), 2);
    // alice (age=30, seniority=5) not removed
    assert!(map.get_by_email(&"alice@example.com".to_string()).is_some());
}