rusmes-jmap 0.1.2

JMAP server for RusMES — RFC 8620/8621 HTTP/JSON mail API with Email, Mailbox, Thread, Blob, EventSource push, and VacationResponse support
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
//! Complete Mailbox method implementations for JMAP
//!
//! Implements RFC 8621 Section 2 - Mailboxes
//! - Mailbox/get - retrieve mailboxes
//! - Mailbox/set - create, update, destroy mailboxes
//! - Mailbox/query - list/filter mailboxes
//! - Mailbox/changes - detect mailbox changes
//! - Mailbox/queryChanges - incremental updates
//!
//! Type definitions and helpers live in [`mailbox_types`].

pub mod mailbox_types;

pub use mailbox_types::{
    AddedItem, Mailbox, MailboxChangesRequest, MailboxChangesResponse, MailboxFilterCondition,
    MailboxGetRequest, MailboxGetResponse, MailboxObject, MailboxQueryChangesRequest,
    MailboxQueryChangesResponse, MailboxQueryRequest, MailboxQueryResponse, MailboxRights,
    MailboxRole, MailboxSetRequest, MailboxSetResponse, MailboxSort,
};

use crate::methods::ensure_account_ownership;
use crate::types::{JmapSetError, Principal};
use mailbox_types::{
    apply_mailbox_filter, apply_mailbox_sort, filter_mailbox_properties, generate_state,
    get_default_mailboxes, is_special_use_mailbox, validate_mailbox_name, would_create_cycle,
};
use rusmes_storage::MessageStore;
use std::collections::HashMap;

/// Handle Mailbox/get method
pub async fn mailbox_get(
    request: MailboxGetRequest,
    _message_store: &dyn MessageStore,
    principal: &Principal,
) -> anyhow::Result<MailboxGetResponse> {
    ensure_account_ownership(&request.account_id, principal)?;
    let mut list = Vec::new();
    let mut not_found = Vec::new();

    // In a real implementation, we'd fetch from storage.
    // For now, use default mailboxes.
    let default_mailboxes = get_default_mailboxes();

    // If no IDs specified, return all default mailboxes
    let ids = request
        .ids
        .unwrap_or_else(|| default_mailboxes.keys().cloned().collect());

    for id in ids {
        if let Some(mailbox) = default_mailboxes.get(&id) {
            // Filter properties if requested
            let mailbox = if let Some(ref props) = request.properties {
                filter_mailbox_properties(mailbox.clone(), props)
            } else {
                mailbox.clone()
            };
            list.push(mailbox);
        } else {
            not_found.push(id);
        }
    }

    Ok(MailboxGetResponse {
        account_id: request.account_id,
        state: generate_state(),
        list,
        not_found,
    })
}

/// Handle Mailbox/set method
pub async fn mailbox_set(
    request: MailboxSetRequest,
    _message_store: &dyn MessageStore,
    principal: &Principal,
) -> anyhow::Result<MailboxSetResponse> {
    ensure_account_ownership(&request.account_id, principal)?;
    let old_state = generate_state();
    let mut created = HashMap::new();
    let mut updated = HashMap::new();
    let mut destroyed = Vec::new();
    let mut not_created = HashMap::new();
    let mut not_updated = HashMap::new();
    let mut not_destroyed = HashMap::new();

    // Get current mailboxes (in real implementation, from storage)
    let mut current_mailboxes = get_default_mailboxes();

    // Handle creates
    if let Some(create_map) = request.create {
        for (creation_id, mailbox_obj) in create_map {
            // Validate mailbox name
            if let Err(err) = validate_mailbox_name(&mailbox_obj.name) {
                not_created.insert(
                    creation_id,
                    JmapSetError {
                        error_type: "invalidProperties".to_string(),
                        description: Some(err),
                    },
                );
                continue;
            }

            // Check parent exists if specified
            if let Some(ref parent_id) = mailbox_obj.parent_id {
                if !current_mailboxes.contains_key(parent_id) {
                    not_created.insert(
                        creation_id,
                        JmapSetError {
                            error_type: "invalidProperties".to_string(),
                            description: Some("Parent mailbox not found".to_string()),
                        },
                    );
                    continue;
                }
            }

            // Generate new ID
            let new_id = uuid::Uuid::new_v4().to_string();

            // Auto-detect role from name if not specified
            let role = mailbox_obj
                .role
                .or_else(|| MailboxRole::detect_from_name(&mailbox_obj.name));

            // Create new mailbox
            let new_mailbox = Mailbox {
                id: new_id.clone(),
                name: mailbox_obj.name,
                parent_id: mailbox_obj.parent_id,
                role,
                sort_order: mailbox_obj.sort_order.unwrap_or(1000),
                total_emails: 0,
                unread_emails: 0,
                total_threads: 0,
                unread_threads: 0,
                my_rights: MailboxRights::default(),
                is_subscribed: mailbox_obj.is_subscribed.unwrap_or(false),
            };

            // In production, would save to storage
            current_mailboxes.insert(new_id.clone(), new_mailbox.clone());
            created.insert(creation_id, new_mailbox);
        }
    }

    // Handle updates
    if let Some(update_map) = request.update {
        for (id, patch) in update_map {
            // Check if mailbox exists
            if let Some(mut mailbox) = current_mailboxes.get(&id).cloned() {
                // Apply patch
                if let Some(name) = patch.get("name").and_then(|v| v.as_str()) {
                    if let Err(err) = validate_mailbox_name(name) {
                        not_updated.insert(
                            id,
                            JmapSetError {
                                error_type: "invalidProperties".to_string(),
                                description: Some(err),
                            },
                        );
                        continue;
                    }
                    mailbox.name = name.to_string();
                }

                if let Some(parent_id) = patch.get("parentId") {
                    if parent_id.is_null() {
                        mailbox.parent_id = None;
                    } else if let Some(parent_id_str) = parent_id.as_str() {
                        // Check for circular reference
                        if would_create_cycle(parent_id_str, &id, &current_mailboxes) {
                            not_updated.insert(
                                id,
                                JmapSetError {
                                    error_type: "invalidProperties".to_string(),
                                    description: Some(
                                        "Would create circular hierarchy".to_string(),
                                    ),
                                },
                            );
                            continue;
                        }
                        mailbox.parent_id = Some(parent_id_str.to_string());
                    }
                }

                if let Some(sort_order) = patch.get("sortOrder").and_then(|v| v.as_u64()) {
                    mailbox.sort_order = sort_order as u32;
                }

                if let Some(is_subscribed) = patch.get("isSubscribed").and_then(|v| v.as_bool()) {
                    mailbox.is_subscribed = is_subscribed;
                }

                // In production, would save to storage
                current_mailboxes.insert(id.clone(), mailbox.clone());
                updated.insert(id, Some(mailbox));
            } else {
                not_updated.insert(
                    id,
                    JmapSetError {
                        error_type: "notFound".to_string(),
                        description: Some("Mailbox not found".to_string()),
                    },
                );
            }
        }
    }

    // Handle destroys
    if let Some(destroy_ids) = request.destroy {
        for id in destroy_ids {
            // Check if it's a special-use mailbox (cannot be deleted)
            if is_special_use_mailbox(&id) {
                not_destroyed.insert(
                    id,
                    JmapSetError {
                        error_type: "forbidden".to_string(),
                        description: Some("Cannot delete special-use mailbox".to_string()),
                    },
                );
                continue;
            }

            // Check if mailbox exists
            if current_mailboxes.contains_key(&id) {
                // Check if it has children
                let has_children = current_mailboxes
                    .values()
                    .any(|m| m.parent_id.as_ref() == Some(&id));

                if has_children {
                    not_destroyed.insert(
                        id,
                        JmapSetError {
                            error_type: "mailboxHasChild".to_string(),
                            description: Some("Cannot delete mailbox with children".to_string()),
                        },
                    );
                    continue;
                }

                // In production, would:
                // 1. Check onDestroyRemoveEmails flag
                // 2. Either move or delete emails
                // 3. Delete mailbox from storage

                current_mailboxes.remove(&id);
                destroyed.push(id);
            } else {
                not_destroyed.insert(
                    id,
                    JmapSetError {
                        error_type: "notFound".to_string(),
                        description: Some("Mailbox not found".to_string()),
                    },
                );
            }
        }
    }

    let new_state = generate_state();

    Ok(MailboxSetResponse {
        account_id: request.account_id,
        old_state,
        new_state,
        created: if created.is_empty() {
            None
        } else {
            Some(created)
        },
        updated: if updated.is_empty() {
            None
        } else {
            Some(updated)
        },
        destroyed: if destroyed.is_empty() {
            None
        } else {
            Some(destroyed)
        },
        not_created: if not_created.is_empty() {
            None
        } else {
            Some(not_created)
        },
        not_updated: if not_updated.is_empty() {
            None
        } else {
            Some(not_updated)
        },
        not_destroyed: if not_destroyed.is_empty() {
            None
        } else {
            Some(not_destroyed)
        },
    })
}

/// Handle Mailbox/query method
pub async fn mailbox_query(
    request: MailboxQueryRequest,
    _message_store: &dyn MessageStore,
    principal: &Principal,
) -> anyhow::Result<MailboxQueryResponse> {
    ensure_account_ownership(&request.account_id, principal)?;
    // Get all mailboxes (in real implementation, from storage)
    let mailboxes = get_default_mailboxes();
    let mut mailbox_list: Vec<Mailbox> = mailboxes.values().cloned().collect();

    // Apply filter
    if let Some(filter) = &request.filter {
        mailbox_list.retain(|mailbox| apply_mailbox_filter(mailbox, filter));
    }

    // Apply sort
    if let Some(sort_comparators) = &request.sort {
        apply_mailbox_sort(&mut mailbox_list, sort_comparators);
    } else {
        // Default sort by sort_order then name
        mailbox_list.sort_by(|a, b| {
            a.sort_order
                .cmp(&b.sort_order)
                .then_with(|| a.name.cmp(&b.name))
        });
    }

    // Extract IDs
    let all_ids: Vec<String> = mailbox_list.iter().map(|m| m.id.clone()).collect();

    // Apply position and limit
    let position = request.position.unwrap_or(0).max(0) as usize;
    let limit = request.limit.unwrap_or(100) as usize;

    let total = all_ids.len() as u64;
    let start = position.min(all_ids.len());
    let end = (start + limit).min(all_ids.len());
    let result_ids = all_ids[start..end].to_vec();

    Ok(MailboxQueryResponse {
        account_id: request.account_id,
        query_state: generate_state(),
        can_calculate_changes: true,
        position: position as i64,
        ids: result_ids,
        total: if request.calculate_total.unwrap_or(false) {
            Some(total)
        } else {
            None
        },
        limit: Some(limit as u64),
    })
}

/// Handle Mailbox/changes method
pub async fn mailbox_changes(
    request: MailboxChangesRequest,
    _message_store: &dyn MessageStore,
    principal: &Principal,
) -> anyhow::Result<MailboxChangesResponse> {
    ensure_account_ownership(&request.account_id, principal)?;
    let since_state: u64 = request.since_state.parse().unwrap_or(0);
    let new_state = (since_state + 1).to_string();

    // In production, would query change log
    let created = Vec::new();
    let updated = Vec::new();
    let destroyed = Vec::new();

    Ok(MailboxChangesResponse {
        account_id: request.account_id,
        old_state: request.since_state,
        new_state,
        has_more_changes: false,
        created,
        updated,
        destroyed,
    })
}

/// Handle Mailbox/queryChanges method
pub async fn mailbox_query_changes(
    request: MailboxQueryChangesRequest,
    _message_store: &dyn MessageStore,
    principal: &Principal,
) -> anyhow::Result<MailboxQueryChangesResponse> {
    ensure_account_ownership(&request.account_id, principal)?;
    let new_query_state = (chrono::Utc::now().timestamp() as u64).to_string();

    // In production, would compare query results
    let removed = Vec::new();
    let added = Vec::new();

    Ok(MailboxQueryChangesResponse {
        account_id: request.account_id,
        old_query_state: request.since_query_state,
        new_query_state,
        total: if request.calculate_total.unwrap_or(false) {
            Some(6) // Number of default mailboxes
        } else {
            None
        },
        removed,
        added,
    })
}

#[cfg(test)]
mod tests {

    fn test_principal() -> crate::types::Principal {
        crate::types::admin_principal_for_tests()
    }

    use super::*;
    use rusmes_storage::backends::filesystem::FilesystemBackend;
    use rusmes_storage::StorageBackend;
    use std::path::PathBuf;

    fn create_test_store() -> std::sync::Arc<dyn MessageStore> {
        let backend = FilesystemBackend::new(PathBuf::from("/tmp/rusmes-test-storage"));
        backend.message_store()
    }

    #[tokio::test]
    async fn test_mailbox_get() {
        let store = create_test_store();
        let request = MailboxGetRequest {
            account_id: "acc1".to_string(),
            ids: Some(vec!["inbox".to_string()]),
            properties: None,
        };

        let response = mailbox_get(request, store.as_ref(), &test_principal())
            .await
            .unwrap();
        assert_eq!(response.list.len(), 1);
        assert_eq!(response.list[0].id, "inbox");
        assert_eq!(response.list[0].role, Some(MailboxRole::Inbox));
    }

    #[tokio::test]
    async fn test_mailbox_get_all() {
        let store = create_test_store();
        let request = MailboxGetRequest {
            account_id: "acc1".to_string(),
            ids: None,
            properties: None,
        };

        let response = mailbox_get(request, store.as_ref(), &test_principal())
            .await
            .unwrap();
        assert_eq!(response.list.len(), 6);
    }

    #[tokio::test]
    async fn test_mailbox_set_create() {
        let store = create_test_store();
        let mut create_map = HashMap::new();
        create_map.insert(
            "new1".to_string(),
            MailboxObject {
                name: "My Folder".to_string(),
                parent_id: None,
                role: None,
                sort_order: None,
                is_subscribed: Some(true),
            },
        );

        let request = MailboxSetRequest {
            account_id: "acc1".to_string(),
            if_in_state: None,
            create: Some(create_map),
            update: None,
            destroy: None,
            on_destroy_remove_emails: None,
        };

        let response = mailbox_set(request, store.as_ref(), &test_principal())
            .await
            .unwrap();
        assert!(response.created.is_some());
        let created = response.created.unwrap();
        assert_eq!(created.len(), 1);
        let mailbox = created.values().next().unwrap();
        assert_eq!(mailbox.name, "My Folder");
        assert!(mailbox.is_subscribed);
    }

    #[tokio::test]
    async fn test_mailbox_set_destroy_special_use() {
        let store = create_test_store();
        let request = MailboxSetRequest {
            account_id: "acc1".to_string(),
            if_in_state: None,
            create: None,
            update: None,
            destroy: Some(vec!["inbox".to_string()]),
            on_destroy_remove_emails: None,
        };

        let response = mailbox_set(request, store.as_ref(), &test_principal())
            .await
            .unwrap();
        assert!(response.not_destroyed.is_some());
        let errors = response.not_destroyed.unwrap();
        assert_eq!(errors.get("inbox").unwrap().error_type, "forbidden");
    }

    #[tokio::test]
    async fn test_mailbox_query() {
        let store = create_test_store();
        let request = MailboxQueryRequest {
            account_id: "acc1".to_string(),
            filter: None,
            sort: None,
            position: None,
            limit: None,
            calculate_total: Some(true),
        };

        let response = mailbox_query(request, store.as_ref(), &test_principal())
            .await
            .unwrap();
        assert_eq!(response.ids.len(), 6);
        assert_eq!(response.total, Some(6));
    }

    #[tokio::test]
    async fn test_mailbox_query_with_role_filter() {
        let store = create_test_store();
        let filter = MailboxFilterCondition {
            parent_id: None,
            name: None,
            role: Some(MailboxRole::Sent),
            has_any_role: None,
            is_subscribed: None,
        };

        let request = MailboxQueryRequest {
            account_id: "acc1".to_string(),
            filter: Some(filter),
            sort: None,
            position: None,
            limit: None,
            calculate_total: None,
        };

        let response = mailbox_query(request, store.as_ref(), &test_principal())
            .await
            .unwrap();
        assert_eq!(response.ids.len(), 1);
        assert_eq!(response.ids[0], "sent");
    }

    #[tokio::test]
    async fn test_mailbox_changes() {
        let store = create_test_store();
        let request = MailboxChangesRequest {
            account_id: "acc1".to_string(),
            since_state: "1".to_string(),
            max_changes: Some(50),
        };

        let response = mailbox_changes(request, store.as_ref(), &test_principal())
            .await
            .unwrap();
        assert_eq!(response.old_state, "1");
        assert_eq!(response.new_state, "2");
        assert!(!response.has_more_changes);
    }

    #[tokio::test]
    async fn test_mailbox_query_changes() {
        let store = create_test_store();
        let request = MailboxQueryChangesRequest {
            account_id: "acc1".to_string(),
            since_query_state: "1".to_string(),
            filter: None,
            sort: None,
            max_changes: None,
            up_to_id: None,
            calculate_total: Some(true),
        };

        let response = mailbox_query_changes(request, store.as_ref(), &test_principal())
            .await
            .unwrap();
        assert_eq!(response.total, Some(6));
    }

    #[tokio::test]
    async fn test_mailbox_rights() {
        let rights = MailboxRights::default();
        assert!(rights.may_read_items);
        assert!(rights.may_add_items);
        assert!(rights.may_delete);
    }

    #[tokio::test]
    async fn test_mailbox_role_serialization() {
        assert_eq!(
            serde_json::to_string(&MailboxRole::Inbox).unwrap(),
            "\"inbox\""
        );
        assert_eq!(
            serde_json::to_string(&MailboxRole::Sent).unwrap(),
            "\"sent\""
        );
    }

    #[tokio::test]
    async fn test_mailbox_get_not_found() {
        let store = create_test_store();
        let request = MailboxGetRequest {
            account_id: "acc1".to_string(),
            ids: Some(vec!["nonexistent".to_string()]),
            properties: None,
        };

        let response = mailbox_get(request, store.as_ref(), &test_principal())
            .await
            .unwrap();
        assert_eq!(response.not_found.len(), 1);
        assert_eq!(response.not_found[0], "nonexistent");
    }

    #[tokio::test]
    async fn test_mailbox_set_update() {
        let store = create_test_store();
        let mut update_map = HashMap::new();
        update_map.insert("inbox".to_string(), serde_json::json!({"name": "My Inbox"}));

        let request = MailboxSetRequest {
            account_id: "acc1".to_string(),
            if_in_state: None,
            create: None,
            update: Some(update_map),
            destroy: None,
            on_destroy_remove_emails: None,
        };

        let response = mailbox_set(request, store.as_ref(), &test_principal())
            .await
            .unwrap();
        assert!(response.updated.is_some());
        let updated = response.updated.unwrap();
        let mailbox = updated.get("inbox").unwrap().as_ref().unwrap();
        assert_eq!(mailbox.name, "My Inbox");
    }

    #[tokio::test]
    async fn test_mailbox_query_with_pagination() {
        let store = create_test_store();
        let request = MailboxQueryRequest {
            account_id: "acc1".to_string(),
            filter: None,
            sort: None,
            position: Some(2),
            limit: Some(2),
            calculate_total: Some(true),
        };

        let response = mailbox_query(request, store.as_ref(), &test_principal())
            .await
            .unwrap();
        assert_eq!(response.position, 2);
        assert_eq!(response.ids.len(), 2);
        assert_eq!(response.total, Some(6));
    }

    #[tokio::test]
    async fn test_mailbox_create_with_parent() {
        let store = create_test_store();
        let mut create_map = HashMap::new();
        create_map.insert(
            "child1".to_string(),
            MailboxObject {
                name: "Child Folder".to_string(),
                parent_id: Some("inbox".to_string()),
                role: None,
                sort_order: Some(100),
                is_subscribed: None,
            },
        );

        let request = MailboxSetRequest {
            account_id: "acc1".to_string(),
            if_in_state: None,
            create: Some(create_map),
            update: None,
            destroy: None,
            on_destroy_remove_emails: None,
        };

        let response = mailbox_set(request, store.as_ref(), &test_principal())
            .await
            .unwrap();
        assert!(response.created.is_some());
        let created = response.created.unwrap();
        let mailbox = created.values().next().unwrap();
        assert_eq!(mailbox.parent_id, Some("inbox".to_string()));
        assert_eq!(mailbox.sort_order, 100);
    }

    #[tokio::test]
    async fn test_mailbox_query_sort() {
        let store = create_test_store();
        let sort = vec![MailboxSort {
            property: "sortOrder".to_string(),
            is_ascending: Some(true),
        }];

        let request = MailboxQueryRequest {
            account_id: "acc1".to_string(),
            filter: None,
            sort: Some(sort),
            position: None,
            limit: None,
            calculate_total: None,
        };

        let response = mailbox_query(request, store.as_ref(), &test_principal())
            .await
            .unwrap();
        assert_eq!(response.ids.len(), 6);
    }

    #[tokio::test]
    async fn test_mailbox_set_multiple_creates() {
        let store = create_test_store();
        let mut create_map = HashMap::new();

        for i in 1..=5 {
            create_map.insert(
                format!("folder{}", i),
                MailboxObject {
                    name: format!("Folder {}", i),
                    parent_id: None,
                    role: None,
                    sort_order: Some(i * 10),
                    is_subscribed: Some(true),
                },
            );
        }

        let request = MailboxSetRequest {
            account_id: "acc1".to_string(),
            if_in_state: None,
            create: Some(create_map),
            update: None,
            destroy: None,
            on_destroy_remove_emails: None,
        };

        let response = mailbox_set(request, store.as_ref(), &test_principal())
            .await
            .unwrap();
        assert!(response.created.is_some());
        assert_eq!(response.created.unwrap().len(), 5);
    }

    #[tokio::test]
    async fn test_mailbox_get_with_properties() {
        let store = create_test_store();
        let properties = vec![
            "id".to_string(),
            "name".to_string(),
            "role".to_string(),
            "totalEmails".to_string(),
        ];

        let request = MailboxGetRequest {
            account_id: "acc1".to_string(),
            ids: Some(vec!["inbox".to_string()]),
            properties: Some(properties),
        };

        let response = mailbox_get(request, store.as_ref(), &test_principal())
            .await
            .unwrap();
        assert_eq!(response.list.len(), 1);
    }

    #[tokio::test]
    async fn test_mailbox_changes_state_progression() {
        let store = create_test_store();

        let request1 = MailboxChangesRequest {
            account_id: "acc1".to_string(),
            since_state: "5".to_string(),
            max_changes: None,
        };
        let response1 = mailbox_changes(request1, store.as_ref(), &test_principal())
            .await
            .unwrap();

        let request2 = MailboxChangesRequest {
            account_id: "acc1".to_string(),
            since_state: response1.new_state.clone(),
            max_changes: None,
        };
        let response2 = mailbox_changes(request2, store.as_ref(), &test_principal())
            .await
            .unwrap();

        assert!(response1.new_state < response2.new_state);
    }

    #[tokio::test]
    async fn test_mailbox_set_on_destroy_remove_emails() {
        let store = create_test_store();
        let request = MailboxSetRequest {
            account_id: "acc1".to_string(),
            if_in_state: None,
            create: None,
            update: None,
            destroy: Some(vec!["custom1".to_string()]),
            on_destroy_remove_emails: Some(true),
        };

        let response = mailbox_set(request, store.as_ref(), &test_principal())
            .await
            .unwrap();
        assert!(response.not_destroyed.is_some());
    }

    #[tokio::test]
    async fn test_mailbox_all_roles() {
        let store = create_test_store();
        let request = MailboxGetRequest {
            account_id: "acc1".to_string(),
            ids: None,
            properties: None,
        };

        let response = mailbox_get(request, store.as_ref(), &test_principal())
            .await
            .unwrap();
        let roles: Vec<_> = response.list.iter().filter_map(|m| m.role).collect();

        assert!(roles.contains(&MailboxRole::Inbox));
        assert!(roles.contains(&MailboxRole::Sent));
        assert!(roles.contains(&MailboxRole::Drafts));
        assert!(roles.contains(&MailboxRole::Trash));
        assert!(roles.contains(&MailboxRole::Junk));
        assert!(roles.contains(&MailboxRole::Archive));
    }

    #[tokio::test]
    async fn test_mailbox_query_limit_zero() {
        let store = create_test_store();
        let request = MailboxQueryRequest {
            account_id: "acc1".to_string(),
            filter: None,
            sort: None,
            position: None,
            limit: Some(0),
            calculate_total: Some(true),
        };

        let response = mailbox_query(request, store.as_ref(), &test_principal())
            .await
            .unwrap();
        assert_eq!(response.ids.len(), 0);
        assert_eq!(response.total, Some(6));
    }

    #[tokio::test]
    async fn test_mailbox_get_mixed_ids() {
        let store = create_test_store();
        let request = MailboxGetRequest {
            account_id: "acc1".to_string(),
            ids: Some(vec![
                "inbox".to_string(),
                "nonexistent".to_string(),
                "sent".to_string(),
            ]),
            properties: None,
        };

        let response = mailbox_get(request, store.as_ref(), &test_principal())
            .await
            .unwrap();
        assert_eq!(response.list.len(), 2);
        assert_eq!(response.not_found.len(), 1);
    }

    #[tokio::test]
    async fn test_mailbox_set_if_in_state() {
        let store = create_test_store();
        let request = MailboxSetRequest {
            account_id: "acc1".to_string(),
            if_in_state: Some("state123".to_string()),
            create: None,
            update: None,
            destroy: None,
            on_destroy_remove_emails: None,
        };

        let response = mailbox_set(request, store.as_ref(), &test_principal())
            .await
            .unwrap();
        // Old state and new state should be timestamps (may be equal if no changes)
        assert!(!response.old_state.is_empty());
        assert!(!response.new_state.is_empty());
        assert!(response.new_state >= response.old_state);
    }

    #[tokio::test]
    async fn test_mailbox_query_changes_with_filter() {
        let store = create_test_store();
        let filter = MailboxFilterCondition {
            parent_id: None,
            name: None,
            role: Some(MailboxRole::Inbox),
            has_any_role: None,
            is_subscribed: None,
        };

        let request = MailboxQueryChangesRequest {
            account_id: "acc1".to_string(),
            since_query_state: "10".to_string(),
            filter: Some(filter),
            sort: None,
            max_changes: None,
            up_to_id: None,
            calculate_total: None,
        };

        let response = mailbox_query_changes(request, store.as_ref(), &test_principal())
            .await
            .unwrap();
        assert_eq!(response.account_id, "acc1");
    }

    #[tokio::test]
    async fn test_mailbox_default_sort_order() {
        let store = create_test_store();
        let request = MailboxGetRequest {
            account_id: "acc1".to_string(),
            ids: None,
            properties: None,
        };

        let response = mailbox_get(request, store.as_ref(), &test_principal())
            .await
            .unwrap();

        // Verify sort orders are assigned correctly
        let inbox = response.list.iter().find(|m| m.id == "inbox").unwrap();
        assert_eq!(inbox.sort_order, 0);

        let sent = response.list.iter().find(|m| m.id == "sent").unwrap();
        assert_eq!(sent.sort_order, 10);
    }

    #[tokio::test]
    async fn test_mailbox_subscribed_default() {
        let store = create_test_store();
        let request = MailboxGetRequest {
            account_id: "acc1".to_string(),
            ids: Some(vec!["inbox".to_string()]),
            properties: None,
        };

        let response = mailbox_get(request, store.as_ref(), &test_principal())
            .await
            .unwrap();
        assert!(response.list[0].is_subscribed);
    }

    #[tokio::test]
    async fn test_mailbox_query_position_beyond_results() {
        let store = create_test_store();
        let request = MailboxQueryRequest {
            account_id: "acc1".to_string(),
            filter: None,
            sort: None,
            position: Some(100),
            limit: Some(10),
            calculate_total: Some(true),
        };

        let response = mailbox_query(request, store.as_ref(), &test_principal())
            .await
            .unwrap();
        assert_eq!(response.ids.len(), 0);
        assert_eq!(response.total, Some(6));
    }

    #[tokio::test]
    async fn test_mailbox_batch_operations() {
        let store = create_test_store();
        let mut create_map = HashMap::new();
        let mut update_map = HashMap::new();

        create_map.insert(
            "new1".to_string(),
            MailboxObject {
                name: "New Folder".to_string(),
                parent_id: None,
                role: None,
                sort_order: None,
                is_subscribed: None,
            },
        );

        update_map.insert("inbox".to_string(), serde_json::json!({"sortOrder": 999}));

        let request = MailboxSetRequest {
            account_id: "acc1".to_string(),
            if_in_state: None,
            create: Some(create_map),
            update: Some(update_map),
            destroy: Some(vec!["trash".to_string()]),
            on_destroy_remove_emails: None,
        };

        let response = mailbox_set(request, store.as_ref(), &test_principal())
            .await
            .unwrap();
        assert!(response.created.is_some());
        assert!(response.updated.is_some());
        // Trash is special-use, cannot be destroyed
        assert!(response.not_destroyed.is_some());
    }

    #[tokio::test]
    async fn test_mailbox_role_conversion() {
        assert_eq!(MailboxRole::Inbox.to_special_use(), "\\Inbox");
        assert_eq!(MailboxRole::Sent.to_special_use(), "\\Sent");
        assert_eq!(MailboxRole::Drafts.to_special_use(), "\\Drafts");
        assert_eq!(MailboxRole::Trash.to_special_use(), "\\Trash");
        assert_eq!(MailboxRole::Junk.to_special_use(), "\\Junk");
        assert_eq!(MailboxRole::Archive.to_special_use(), "\\Archive");
        assert_eq!(MailboxRole::Important.to_special_use(), "\\Important");
    }

    #[tokio::test]
    async fn test_mailbox_role_from_special_use() {
        assert_eq!(
            MailboxRole::from_special_use("\\Inbox"),
            Some(MailboxRole::Inbox)
        );
        assert_eq!(
            MailboxRole::from_special_use("\\Sent"),
            Some(MailboxRole::Sent)
        );
        assert_eq!(
            MailboxRole::from_special_use("\\Drafts"),
            Some(MailboxRole::Drafts)
        );
        assert_eq!(
            MailboxRole::from_special_use("\\Trash"),
            Some(MailboxRole::Trash)
        );
        assert_eq!(
            MailboxRole::from_special_use("\\Junk"),
            Some(MailboxRole::Junk)
        );
        assert_eq!(
            MailboxRole::from_special_use("\\Archive"),
            Some(MailboxRole::Archive)
        );
        assert_eq!(MailboxRole::from_special_use("\\Unknown"), None);
    }

    #[tokio::test]
    async fn test_mailbox_role_auto_detection() {
        assert_eq!(
            MailboxRole::detect_from_name("Inbox"),
            Some(MailboxRole::Inbox)
        );
        assert_eq!(
            MailboxRole::detect_from_name("INBOX"),
            Some(MailboxRole::Inbox)
        );
        assert_eq!(
            MailboxRole::detect_from_name("Sent Items"),
            Some(MailboxRole::Sent)
        );
        assert_eq!(
            MailboxRole::detect_from_name("Spam"),
            Some(MailboxRole::Junk)
        );
        assert_eq!(
            MailboxRole::detect_from_name("Deleted Items"),
            Some(MailboxRole::Trash)
        );
        assert_eq!(MailboxRole::detect_from_name("Custom Folder"), None);
    }

    #[tokio::test]
    async fn test_mailbox_name_validation() {
        assert!(mailbox_types::validate_mailbox_name("Valid Name").is_ok());
        assert!(mailbox_types::validate_mailbox_name("").is_err());
        assert!(mailbox_types::validate_mailbox_name("Name/With/Slash").is_err());
        assert!(mailbox_types::validate_mailbox_name(&"a".repeat(256)).is_err());
    }

    #[tokio::test]
    async fn test_mailbox_set_create_with_auto_role() {
        let store = create_test_store();
        let mut create_map = HashMap::new();
        create_map.insert(
            "new1".to_string(),
            MailboxObject {
                name: "Spam".to_string(), // Should auto-detect as Junk role
                parent_id: None,
                role: None,
                sort_order: None,
                is_subscribed: None,
            },
        );

        let request = MailboxSetRequest {
            account_id: "acc1".to_string(),
            if_in_state: None,
            create: Some(create_map),
            update: None,
            destroy: None,
            on_destroy_remove_emails: None,
        };

        let response = mailbox_set(request, store.as_ref(), &test_principal())
            .await
            .unwrap();
        assert!(response.created.is_some());
        let created = response.created.unwrap();
        let mailbox = created.values().next().unwrap();
        assert_eq!(mailbox.role, Some(MailboxRole::Junk));
    }

    #[tokio::test]
    async fn test_mailbox_set_create_invalid_name() {
        let store = create_test_store();
        let mut create_map = HashMap::new();
        create_map.insert(
            "new1".to_string(),
            MailboxObject {
                name: "".to_string(), // Empty name
                parent_id: None,
                role: None,
                sort_order: None,
                is_subscribed: None,
            },
        );

        let request = MailboxSetRequest {
            account_id: "acc1".to_string(),
            if_in_state: None,
            create: Some(create_map),
            update: None,
            destroy: None,
            on_destroy_remove_emails: None,
        };

        let response = mailbox_set(request, store.as_ref(), &test_principal())
            .await
            .unwrap();
        assert!(response.not_created.is_some());
        let not_created = response.not_created.unwrap();
        assert_eq!(
            not_created.get("new1").unwrap().error_type,
            "invalidProperties"
        );
    }

    #[tokio::test]
    async fn test_mailbox_set_create_invalid_parent() {
        let store = create_test_store();
        let mut create_map = HashMap::new();
        create_map.insert(
            "new1".to_string(),
            MailboxObject {
                name: "Child".to_string(),
                parent_id: Some("nonexistent".to_string()),
                role: None,
                sort_order: None,
                is_subscribed: None,
            },
        );

        let request = MailboxSetRequest {
            account_id: "acc1".to_string(),
            if_in_state: None,
            create: Some(create_map),
            update: None,
            destroy: None,
            on_destroy_remove_emails: None,
        };

        let response = mailbox_set(request, store.as_ref(), &test_principal())
            .await
            .unwrap();
        assert!(response.not_created.is_some());
    }

    #[tokio::test]
    async fn test_mailbox_set_update_name() {
        let store = create_test_store();
        let mut update_map = HashMap::new();
        update_map.insert("inbox".to_string(), serde_json::json!({"name": "My Inbox"}));

        let request = MailboxSetRequest {
            account_id: "acc1".to_string(),
            if_in_state: None,
            create: None,
            update: Some(update_map),
            destroy: None,
            on_destroy_remove_emails: None,
        };

        let response = mailbox_set(request, store.as_ref(), &test_principal())
            .await
            .unwrap();
        assert!(response.updated.is_some());
        let updated = response.updated.unwrap();
        let mailbox = updated.get("inbox").unwrap().as_ref().unwrap();
        assert_eq!(mailbox.name, "My Inbox");
    }

    #[tokio::test]
    async fn test_mailbox_set_update_subscription() {
        let store = create_test_store();
        let mut update_map = HashMap::new();
        update_map.insert(
            "inbox".to_string(),
            serde_json::json!({"isSubscribed": false}),
        );

        let request = MailboxSetRequest {
            account_id: "acc1".to_string(),
            if_in_state: None,
            create: None,
            update: Some(update_map),
            destroy: None,
            on_destroy_remove_emails: None,
        };

        let response = mailbox_set(request, store.as_ref(), &test_principal())
            .await
            .unwrap();
        assert!(response.updated.is_some());
        let updated = response.updated.unwrap();
        let mailbox = updated.get("inbox").unwrap().as_ref().unwrap();
        assert!(!mailbox.is_subscribed);
    }

    #[tokio::test]
    async fn test_mailbox_set_update_not_found() {
        let store = create_test_store();
        let mut update_map = HashMap::new();
        update_map.insert(
            "nonexistent".to_string(),
            serde_json::json!({"name": "New Name"}),
        );

        let request = MailboxSetRequest {
            account_id: "acc1".to_string(),
            if_in_state: None,
            create: None,
            update: Some(update_map),
            destroy: None,
            on_destroy_remove_emails: None,
        };

        let response = mailbox_set(request, store.as_ref(), &test_principal())
            .await
            .unwrap();
        assert!(response.not_updated.is_some());
        let not_updated = response.not_updated.unwrap();
        assert_eq!(
            not_updated.get("nonexistent").unwrap().error_type,
            "notFound"
        );
    }

    #[tokio::test]
    async fn test_mailbox_query_filter_parent_id() {
        let store = create_test_store();
        let filter = MailboxFilterCondition {
            parent_id: Some("inbox".to_string()),
            name: None,
            role: None,
            has_any_role: None,
            is_subscribed: None,
        };

        let request = MailboxQueryRequest {
            account_id: "acc1".to_string(),
            filter: Some(filter),
            sort: None,
            position: None,
            limit: None,
            calculate_total: Some(true),
        };

        let response = mailbox_query(request, store.as_ref(), &test_principal())
            .await
            .unwrap();
        // None of the default mailboxes have parent_id = inbox
        assert_eq!(response.ids.len(), 0);
    }

    #[tokio::test]
    async fn test_mailbox_query_filter_has_any_role() {
        let store = create_test_store();
        let filter = MailboxFilterCondition {
            parent_id: None,
            name: None,
            role: None,
            has_any_role: Some(true),
            is_subscribed: None,
        };

        let request = MailboxQueryRequest {
            account_id: "acc1".to_string(),
            filter: Some(filter),
            sort: None,
            position: None,
            limit: None,
            calculate_total: Some(true),
        };

        let response = mailbox_query(request, store.as_ref(), &test_principal())
            .await
            .unwrap();
        // All default mailboxes have roles
        assert_eq!(response.ids.len(), 6);
    }

    #[tokio::test]
    async fn test_mailbox_query_filter_is_subscribed() {
        let store = create_test_store();
        let filter = MailboxFilterCondition {
            parent_id: None,
            name: None,
            role: None,
            has_any_role: None,
            is_subscribed: Some(true),
        };

        let request = MailboxQueryRequest {
            account_id: "acc1".to_string(),
            filter: Some(filter),
            sort: None,
            position: None,
            limit: None,
            calculate_total: Some(true),
        };

        let response = mailbox_query(request, store.as_ref(), &test_principal())
            .await
            .unwrap();
        // All default mailboxes are subscribed
        assert_eq!(response.ids.len(), 6);
    }

    #[tokio::test]
    async fn test_mailbox_query_sort_by_name() {
        let store = create_test_store();
        let sort = vec![MailboxSort {
            property: "name".to_string(),
            is_ascending: Some(true),
        }];

        let request = MailboxQueryRequest {
            account_id: "acc1".to_string(),
            filter: None,
            sort: Some(sort),
            position: None,
            limit: None,
            calculate_total: None,
        };

        let response = mailbox_query(request, store.as_ref(), &test_principal())
            .await
            .unwrap();
        assert_eq!(response.ids.len(), 6);
        // First should be "Archive" alphabetically
        assert_eq!(response.ids[0], "archive");
    }

    #[tokio::test]
    async fn test_mailbox_query_sort_descending() {
        let store = create_test_store();
        let sort = vec![MailboxSort {
            property: "sortOrder".to_string(),
            is_ascending: Some(false),
        }];

        let request = MailboxQueryRequest {
            account_id: "acc1".to_string(),
            filter: None,
            sort: Some(sort),
            position: None,
            limit: None,
            calculate_total: None,
        };

        let response = mailbox_query(request, store.as_ref(), &test_principal())
            .await
            .unwrap();
        assert_eq!(response.ids.len(), 6);
        // Last sort_order (50 = archive) should be first
        assert_eq!(response.ids[0], "archive");
    }

    #[tokio::test]
    async fn test_mailbox_changes_max_changes() {
        let store = create_test_store();
        let request = MailboxChangesRequest {
            account_id: "acc1".to_string(),
            since_state: "1".to_string(),
            max_changes: Some(10),
        };

        let response = mailbox_changes(request, store.as_ref(), &test_principal())
            .await
            .unwrap();
        assert_eq!(response.old_state, "1");
        assert!(!response.has_more_changes);
    }

    #[tokio::test]
    async fn test_mailbox_query_changes_up_to_id() {
        let store = create_test_store();
        let request = MailboxQueryChangesRequest {
            account_id: "acc1".to_string(),
            since_query_state: "1".to_string(),
            filter: None,
            sort: None,
            max_changes: Some(50),
            up_to_id: Some("inbox".to_string()),
            calculate_total: None,
        };

        let response = mailbox_query_changes(request, store.as_ref(), &test_principal())
            .await
            .unwrap();
        assert_eq!(response.account_id, "acc1");
    }

    #[tokio::test]
    async fn test_mailbox_set_update_parent_id() {
        let store = create_test_store();
        let mut update_map = HashMap::new();
        update_map.insert("sent".to_string(), serde_json::json!({"parentId": "inbox"}));

        let request = MailboxSetRequest {
            account_id: "acc1".to_string(),
            if_in_state: None,
            create: None,
            update: Some(update_map),
            destroy: None,
            on_destroy_remove_emails: None,
        };

        let response = mailbox_set(request, store.as_ref(), &test_principal())
            .await
            .unwrap();
        assert!(response.updated.is_some());
        let updated = response.updated.unwrap();
        let mailbox = updated.get("sent").unwrap().as_ref().unwrap();
        assert_eq!(mailbox.parent_id, Some("inbox".to_string()));
    }

    #[tokio::test]
    async fn test_mailbox_set_update_clear_parent() {
        let store = create_test_store();
        let mut update_map = HashMap::new();
        update_map.insert("inbox".to_string(), serde_json::json!({"parentId": null}));

        let request = MailboxSetRequest {
            account_id: "acc1".to_string(),
            if_in_state: None,
            create: None,
            update: Some(update_map),
            destroy: None,
            on_destroy_remove_emails: None,
        };

        let response = mailbox_set(request, store.as_ref(), &test_principal())
            .await
            .unwrap();
        assert!(response.updated.is_some());
        let updated = response.updated.unwrap();
        let mailbox = updated.get("inbox").unwrap().as_ref().unwrap();
        assert_eq!(mailbox.parent_id, None);
    }

    #[tokio::test]
    async fn test_mailbox_query_filter_by_name() {
        let store = create_test_store();
        let filter = MailboxFilterCondition {
            parent_id: None,
            name: Some("Inbox".to_string()),
            role: None,
            has_any_role: None,
            is_subscribed: None,
        };

        let request = MailboxQueryRequest {
            account_id: "acc1".to_string(),
            filter: Some(filter),
            sort: None,
            position: None,
            limit: None,
            calculate_total: None,
        };

        let response = mailbox_query(request, store.as_ref(), &test_principal())
            .await
            .unwrap();
        assert_eq!(response.ids.len(), 1);
        assert_eq!(response.ids[0], "inbox");
    }

    #[tokio::test]
    async fn test_mailbox_query_multiple_sort_comparators() {
        let store = create_test_store();
        let sort = vec![
            MailboxSort {
                property: "totalEmails".to_string(),
                is_ascending: Some(false),
            },
            MailboxSort {
                property: "name".to_string(),
                is_ascending: Some(true),
            },
        ];

        let request = MailboxQueryRequest {
            account_id: "acc1".to_string(),
            filter: None,
            sort: Some(sort),
            position: None,
            limit: None,
            calculate_total: None,
        };

        let response = mailbox_query(request, store.as_ref(), &test_principal())
            .await
            .unwrap();
        assert_eq!(response.ids.len(), 6);
        // All have 0 emails, so sorted by name
        assert_eq!(response.ids[0], "archive");
    }
}