sdtn 0.1.4

SpaceArth DTN - A Rust-based implementation of Delay Tolerant Networking (DTN) for resilient communication
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
use crate::api::convenience::{insert_bundle_quick, list_bundles_quick, show_bundle_quick};
use std::env;
use tempfile::TempDir;

#[tokio::test]
async fn test_insert_bundle_quick_function() -> anyhow::Result<()> {
    let temp_dir = TempDir::new()?;

    // Set environment variable to use temp directory
    env::set_var("SDTN_BUNDLE_PATH", temp_dir.path().to_str().unwrap());

    let result = insert_bundle_quick("Test message for quick insert").await;

    // Clean up environment variable
    env::remove_var("SDTN_BUNDLE_PATH");

    // The function should succeed even if we can't verify the storage location
    // in this test environment
    assert!(result.is_ok() || result.is_err()); // Either is acceptable
    Ok(())
}

#[test]
fn test_list_bundles_quick_function() -> anyhow::Result<()> {
    let temp_dir = TempDir::new()?;

    // Set environment variable to use temp directory
    env::set_var("SDTN_BUNDLE_PATH", temp_dir.path().to_str().unwrap());

    let result = list_bundles_quick();

    // Clean up environment variable
    env::remove_var("SDTN_BUNDLE_PATH");

    // The function should return a result (empty or with bundles)
    assert!(result.is_ok() || result.is_err()); // Either is acceptable
    Ok(())
}

#[test]
fn test_show_bundle_quick_function() -> anyhow::Result<()> {
    let temp_dir = TempDir::new()?;

    // Set environment variable to use temp directory
    env::set_var("SDTN_BUNDLE_PATH", temp_dir.path().to_str().unwrap());

    let result = show_bundle_quick("nonexistent_id");

    // Clean up environment variable
    env::remove_var("SDTN_BUNDLE_PATH");

    // This should fail since the bundle doesn't exist
    assert!(result.is_err());
    Ok(())
}

#[tokio::test]
async fn test_convenience_functions_workflow() -> anyhow::Result<()> {
    let temp_dir = TempDir::new()?;

    // Set environment variable to use temp directory
    env::set_var("SDTN_BUNDLE_PATH", temp_dir.path().to_str().unwrap());

    // Try to insert a bundle
    let insert_result = insert_bundle_quick("Workflow test message").await;

    // Try to list bundles
    let list_result = list_bundles_quick();

    // Clean up environment variable
    env::remove_var("SDTN_BUNDLE_PATH");

    // At least one operation should work
    assert!(insert_result.is_ok() || list_result.is_ok());
    Ok(())
}

#[test]
fn test_convenience_functions_error_handling() -> anyhow::Result<()> {
    // Test with invalid bundle ID
    let result = show_bundle_quick("invalid_bundle_id_123456789");
    assert!(result.is_err());
    Ok(())
}

#[tokio::test]
async fn test_convenience_functions_empty_input() -> anyhow::Result<()> {
    let temp_dir = TempDir::new()?;

    // Set environment variable to use temp directory
    env::set_var("SDTN_BUNDLE_PATH", temp_dir.path().to_str().unwrap());

    // Test with empty message
    let result = insert_bundle_quick("").await;

    // Clean up environment variable
    env::remove_var("SDTN_BUNDLE_PATH");

    // Should handle empty messages gracefully
    assert!(result.is_ok() || result.is_err()); // Either is acceptable
    Ok(())
}

#[tokio::test]
async fn test_convenience_functions_unicode() -> anyhow::Result<()> {
    let temp_dir = TempDir::new()?;

    // Set environment variable to use temp directory
    env::set_var("SDTN_BUNDLE_PATH", temp_dir.path().to_str().unwrap());

    // Test with unicode message
    let result = insert_bundle_quick("テスト メッセージ 🚀").await;

    // Clean up environment variable
    env::remove_var("SDTN_BUNDLE_PATH");

    // Should handle unicode gracefully
    assert!(result.is_ok() || result.is_err()); // Either is acceptable
    Ok(())
}

use crate::api::{node::DtnNode, BundleStatus};
use crate::bpv7::EndpointId;
use crate::routing::algorithm::{RouteEntry, RoutingAlgorithmType, RoutingConfig};

#[tokio::test]
async fn test_dtn_node_new() -> anyhow::Result<()> {
    let temp_dir = TempDir::new()?;
    let _node = DtnNode::with_store_path(temp_dir.path().to_str().unwrap())?;

    // Test that node is created successfully
    // Note: store_path is private, so we can't directly test it
    Ok(())
}

#[tokio::test]
async fn test_dtn_node_default() {
    let _node = DtnNode::default();
    // Note: store_path is private, so we can't directly test it
}

#[tokio::test]
async fn test_dtn_node_with_config() -> anyhow::Result<()> {
    let temp_dir = TempDir::new()?;
    let _node = DtnNode::with_config(Some(temp_dir.path().to_str().unwrap()))?;

    // Note: store_path is private, so we can't directly test it
    Ok(())
}

#[tokio::test]
async fn test_dtn_node_with_config_default_path() -> anyhow::Result<()> {
    let _node = DtnNode::with_config(None)?;
    // Note: store_path is private, so we can't directly test it
    Ok(())
}

#[tokio::test]
async fn test_dtn_node_with_routing_algorithm() -> anyhow::Result<()> {
    let temp_dir = TempDir::new()?;
    let routing_config = RoutingConfig::new(RoutingAlgorithmType::Epidemic);
    let _node = DtnNode::with_routing_algorithm(temp_dir.path().to_str().unwrap(), routing_config)?;

    // Note: store_path is private, so we can't directly test it
    Ok(())
}

#[tokio::test]
async fn test_insert_bundle() -> anyhow::Result<()> {
    let temp_dir = TempDir::new()?;
    let node = DtnNode::with_store_path(temp_dir.path().to_str().unwrap())?;

    node.insert_bundle("Test message".to_string()).await?;

    let bundles = node.list_bundles()?;
    assert_eq!(bundles.len(), 1);
    Ok(())
}

#[tokio::test]
async fn test_insert_multiple_bundles() -> anyhow::Result<()> {
    let temp_dir = TempDir::new()?;
    let node = DtnNode::with_store_path(temp_dir.path().to_str().unwrap())?;

    node.insert_bundle("Message 1".to_string()).await?;
    node.insert_bundle("Message 2".to_string()).await?;
    node.insert_bundle("Message 3".to_string()).await?;

    let bundles = node.list_bundles()?;
    assert_eq!(bundles.len(), 3);
    Ok(())
}

#[tokio::test]
async fn test_show_bundle() -> anyhow::Result<()> {
    let temp_dir = TempDir::new()?;
    let node = DtnNode::with_store_path(temp_dir.path().to_str().unwrap())?;

    let message = "Test message for show";
    node.insert_bundle(message.to_string()).await?;

    let bundles = node.list_bundles()?;
    let bundle_id = bundles.first().unwrap();

    let bundle = node.show_bundle(bundle_id)?;
    assert_eq!(bundle.payload, message.as_bytes());
    Ok(())
}

#[tokio::test]
async fn test_add_route() -> anyhow::Result<()> {
    let temp_dir = TempDir::new()?;
    let node = DtnNode::with_store_path(temp_dir.path().to_str().unwrap())?;

    let route = RouteEntry {
        destination: EndpointId::from("dtn://dest"),
        next_hop: EndpointId::from("dtn://router"),
        cla_type: "tcp".to_string(),
        cost: 10,
        is_active: true,
    };

    node.add_route(route.clone())?;

    let routes = node.get_all_routes()?;
    assert_eq!(routes.len(), 1);
    assert_eq!(routes[0].destination, route.destination);
    Ok(())
}

#[tokio::test]
async fn test_add_multiple_routes() -> anyhow::Result<()> {
    let temp_dir = TempDir::new()?;
    let node = DtnNode::with_store_path(temp_dir.path().to_str().unwrap())?;

    let route1 = RouteEntry {
        destination: EndpointId::from("dtn://dest1"),
        next_hop: EndpointId::from("dtn://router1"),
        cla_type: "tcp".to_string(),
        cost: 10,
        is_active: true,
    };

    let route2 = RouteEntry {
        destination: EndpointId::from("dtn://dest2"),
        next_hop: EndpointId::from("dtn://router2"),
        cla_type: "ble".to_string(),
        cost: 5,
        is_active: true,
    };

    node.add_route(route1)?;
    node.add_route(route2)?;

    let routes = node.get_all_routes()?;
    assert_eq!(routes.len(), 2);
    Ok(())
}

#[tokio::test]
async fn test_find_best_route() -> anyhow::Result<()> {
    let temp_dir = TempDir::new()?;
    let node = DtnNode::with_store_path(temp_dir.path().to_str().unwrap())?;

    let dest = EndpointId::from("dtn://dest");

    let route1 = RouteEntry {
        destination: dest.clone(),
        next_hop: EndpointId::from("dtn://router1"),
        cla_type: "tcp".to_string(),
        cost: 10,
        is_active: true,
    };

    let route2 = RouteEntry {
        destination: dest.clone(),
        next_hop: EndpointId::from("dtn://router2"),
        cla_type: "ble".to_string(),
        cost: 5,
        is_active: true,
    };

    node.add_route(route1)?;
    node.add_route(route2)?;

    let best_route = node.find_best_route(&dest)?;
    assert!(best_route.is_some());
    let best = best_route.unwrap();
    assert_eq!(best.cost, 5); // Should be the cheaper route
    Ok(())
}

#[tokio::test]
async fn test_find_best_route_no_routes() -> anyhow::Result<()> {
    let temp_dir = TempDir::new()?;
    let node = DtnNode::with_store_path(temp_dir.path().to_str().unwrap())?;

    let dest = EndpointId::from("dtn://nonexistent");
    let best_route = node.find_best_route(&dest)?;
    assert!(best_route.is_none());
    Ok(())
}

#[tokio::test]
async fn api_test_select_peers_for_forwarding() -> anyhow::Result<()> {
    let temp_dir = TempDir::new()?;
    let node = DtnNode::with_store_path(temp_dir.path().to_str().unwrap())?;

    node.insert_bundle("Test message".to_string()).await?;

    let bundles = node.list_bundles()?;
    let bundle_id = bundles.first().unwrap();
    let bundle = node.show_bundle(bundle_id)?;

    let peers = node.select_peers_for_forwarding(&bundle).await?;
    assert_eq!(peers.len(), 0); // No peers registered in this test environment
    Ok(())
}

#[tokio::test]
async fn test_select_routes_for_forwarding_empty_table() -> anyhow::Result<()> {
    let temp_dir = TempDir::new()?;
    let node = DtnNode::with_store_path(temp_dir.path().to_str().unwrap())?;

    node.insert_bundle("Test message".to_string()).await?;

    let bundles = node.list_bundles()?;
    let bundle_id = bundles.first().unwrap();
    let bundle = node.show_bundle(bundle_id)?;

    let selected = node.select_routes_for_forwarding(&bundle).await?;
    assert_eq!(selected.len(), 0); // Epidemic routing does not use routing table
    Ok(())
}

#[tokio::test]
async fn test_select_routes_for_forwarding_with_routes() -> anyhow::Result<()> {
    let temp_dir = TempDir::new()?;
    let node = DtnNode::with_store_path(temp_dir.path().to_str().unwrap())?;

    // Add some routes
    node.add_route(RouteEntry {
        destination: EndpointId::from("dtn://dest"),
        next_hop: EndpointId::from("dtn://router1"),
        cla_type: "tcp".to_string(),
        cost: 10,
        is_active: true,
    })?;

    node.add_route(RouteEntry {
        destination: EndpointId::from("dtn://other"),
        next_hop: EndpointId::from("dtn://router2"),
        cla_type: "ble".to_string(),
        cost: 5,
        is_active: true,
    })?;

    node.insert_bundle("Test message".to_string()).await?;

    let bundles = node.list_bundles()?;
    let bundle_id = bundles.first().unwrap();
    let bundle = node.show_bundle(bundle_id)?;

    let selected = node.select_routes_for_forwarding(&bundle).await?;
    assert_eq!(selected.len(), 0); // Epidemic routing does not use routing table
    Ok(())
}

#[tokio::test]
async fn test_get_bundle_status_single() -> anyhow::Result<()> {
    let temp_dir = TempDir::new()?;
    let node = DtnNode::with_store_path(temp_dir.path().to_str().unwrap())?;

    node.insert_bundle("Test message".to_string()).await?;

    let bundles = node.list_bundles()?;
    let bundle_id = bundles.first().unwrap();

    let status = node.get_bundle_status(Some(bundle_id))?;
    match status {
        BundleStatus::Single { id, bundle } => {
            assert_eq!(id, *bundle_id);
            assert_eq!(bundle.payload, b"Test message");
        }
        _ => panic!("Expected Single status"),
    }
    Ok(())
}

#[tokio::test]
async fn test_get_bundle_status_summary() -> anyhow::Result<()> {
    let temp_dir = TempDir::new()?;
    let node = DtnNode::with_store_path(temp_dir.path().to_str().unwrap())?;

    node.insert_bundle("Message 1".to_string()).await?;
    node.insert_bundle("Message 2".to_string()).await?;

    let status = node.get_bundle_status(None)?;
    match status {
        BundleStatus::Summary {
            active,
            expired,
            total,
        } => {
            assert_eq!(active, 2);
            assert_eq!(expired, 0);
            assert_eq!(total, 2);
        }
        _ => panic!("Expected Summary status"),
    }
    Ok(())
}

#[tokio::test]
async fn test_cleanup_expired() -> anyhow::Result<()> {
    let temp_dir = TempDir::new()?;
    let node = DtnNode::with_store_path(temp_dir.path().to_str().unwrap())?;

    node.insert_bundle("Test message".to_string()).await?;

    // Should not error even if no bundles are expired
    node.cleanup_expired()?;

    let bundles = node.list_bundles()?;
    assert_eq!(bundles.len(), 1); // Bundle should still be there
    Ok(())
}

#[tokio::test]
async fn test_routing_with_prophet_algorithm() -> anyhow::Result<()> {
    let temp_dir = TempDir::new()?;
    let routing_config = RoutingConfig::new(RoutingAlgorithmType::Prophet);
    let node = DtnNode::with_routing_algorithm(temp_dir.path().to_str().unwrap(), routing_config)?;

    node.insert_bundle("Test message with Prophet".to_string())
        .await?;

    let bundles = node.list_bundles()?;
    assert_eq!(bundles.len(), 1);
    Ok(())
}

#[tokio::test]
async fn test_complex_routing_scenario() -> anyhow::Result<()> {
    let temp_dir = TempDir::new()?;
    let node = DtnNode::with_store_path(temp_dir.path().to_str().unwrap())?;

    // Add multiple routes with different costs
    node.add_route(RouteEntry {
        destination: EndpointId::from("dtn://dest"),
        next_hop: EndpointId::from("dtn://expensive-router"),
        cla_type: "tcp".to_string(),
        cost: 100,
        is_active: true,
    })?;

    node.add_route(RouteEntry {
        destination: EndpointId::from("dtn://dest"),
        next_hop: EndpointId::from("dtn://cheap-router"),
        cla_type: "ble".to_string(),
        cost: 5,
        is_active: true,
    })?;

    node.add_route(RouteEntry {
        destination: EndpointId::from("dtn://dest"),
        next_hop: EndpointId::from("dtn://medium-router"),
        cla_type: "lora".to_string(),
        cost: 50,
        is_active: true,
    })?;

    // Insert bundle and test routing
    node.insert_bundle("Complex routing test".to_string())
        .await?;

    let bundles = node.list_bundles()?;
    let bundle_id = bundles.first().unwrap();
    let bundle = node.show_bundle(bundle_id)?;

    // Test route selection
    let selected = node.select_routes_for_forwarding(&bundle).await?;
    assert_eq!(selected.len(), 0); // Epidemic routing does not use routing table

    // Test best route finding
    let dest = EndpointId::from("dtn://dest");
    let best_route = node.find_best_route(&dest)?;
    assert!(best_route.is_some());
    let best = best_route.unwrap();
    assert_eq!(best.cost, 5); // Should be the cheapest

    Ok(())
}

#[tokio::test]
async fn test_get_routing_table() -> anyhow::Result<()> {
    let temp_dir = TempDir::new()?;
    let node = DtnNode::with_store_path(temp_dir.path().to_str().unwrap())?;

    // Test getting routing table reference
    let routing_table = node.get_routing_table();

    // Add a route through the reference
    {
        let mut table = routing_table.lock().unwrap();
        table.add_route(RouteEntry {
            destination: EndpointId::from("dtn://test-dest"),
            next_hop: EndpointId::from("dtn://test-router"),
            cla_type: "tcp".to_string(),
            cost: 15,
            is_active: true,
        });
    }

    // Verify through node's get_all_routes
    let routes = node.get_all_routes()?;
    assert_eq!(routes.len(), 1);
    assert_eq!(routes[0].destination.as_str(), "dtn://test-dest");
    assert_eq!(routes[0].cost, 15);

    Ok(())
}

#[tokio::test]
async fn api_test_select_peers_for_forwarding_async() -> anyhow::Result<()> {
    let temp_dir = TempDir::new()?;
    let node = DtnNode::with_store_path(temp_dir.path().to_str().unwrap())?;

    node.insert_bundle("Test async peer selection".to_string())
        .await?;

    let bundles = node.list_bundles()?;
    let bundle_id = bundles.first().unwrap();
    let bundle = node.show_bundle(bundle_id)?;

    let peers = node.select_peers_for_forwarding_async(&bundle).await?;
    assert_eq!(peers.len(), 0); // No reachable peers expected in this environment

    Ok(())
}

#[tokio::test]
async fn test_error_handling_empty_bundle_list() -> anyhow::Result<()> {
    let temp_dir = TempDir::new()?;
    let node = DtnNode::with_store_path(temp_dir.path().to_str().unwrap())?;

    // Test with empty bundle store
    let bundles = node.list_bundles()?;
    assert_eq!(bundles.len(), 0);

    // Test status with no bundles
    let status = node.get_bundle_status(None)?;
    match status {
        BundleStatus::Summary {
            active,
            expired,
            total,
        } => {
            assert_eq!(active, 0);
            assert_eq!(expired, 0);
            assert_eq!(total, 0);
        }
        _ => panic!("Expected Summary status"),
    }

    Ok(())
}

#[tokio::test]
async fn test_show_bundle_nonexistent() -> anyhow::Result<()> {
    let temp_dir = TempDir::new()?;
    let node = DtnNode::with_store_path(temp_dir.path().to_str().unwrap())?;

    // Test showing non-existent bundle
    let result = node.show_bundle("nonexistent_bundle_id");
    assert!(result.is_err());

    Ok(())
}

#[tokio::test]
async fn test_find_best_route_multiple_costs() -> anyhow::Result<()> {
    let temp_dir = TempDir::new()?;
    let node = DtnNode::with_store_path(temp_dir.path().to_str().unwrap())?;

    let dest = EndpointId::from("dtn://multi-cost");

    // Add routes with different costs
    node.add_route(RouteEntry {
        destination: dest.clone(),
        next_hop: EndpointId::from("dtn://expensive"),
        cla_type: "tcp".to_string(),
        cost: 100,
        is_active: true,
    })?;

    node.add_route(RouteEntry {
        destination: dest.clone(),
        next_hop: EndpointId::from("dtn://medium"),
        cla_type: "ble".to_string(),
        cost: 50,
        is_active: true,
    })?;

    node.add_route(RouteEntry {
        destination: dest.clone(),
        next_hop: EndpointId::from("dtn://cheap"),
        cla_type: "lora".to_string(),
        cost: 10,
        is_active: true,
    })?;

    let best_route = node.find_best_route(&dest)?;
    assert!(best_route.is_some());
    let best = best_route.unwrap();
    assert_eq!(best.cost, 10); // Should be the cheapest
    assert_eq!(best.next_hop.as_str(), "dtn://cheap");

    Ok(())
}

#[tokio::test]
async fn test_routing_config_varieties() -> anyhow::Result<()> {
    use crate::routing::algorithm::{RoutingAlgorithmType, RoutingConfig};
    let temp_dir = TempDir::new()?;

    // Test with Epidemic routing
    let epidemic_config = RoutingConfig::new(RoutingAlgorithmType::Epidemic);
    let epidemic_node =
        DtnNode::with_routing_algorithm(temp_dir.path().to_str().unwrap(), epidemic_config)?;

    epidemic_node
        .insert_bundle("Epidemic test".to_string())
        .await?;
    let bundles = epidemic_node.list_bundles()?;
    assert_eq!(bundles.len(), 1);

    // Test with Prophet routing (should fall back to epidemic)
    let prophet_config = RoutingConfig::new(RoutingAlgorithmType::Prophet);
    let prophet_node =
        DtnNode::with_routing_algorithm(temp_dir.path().to_str().unwrap(), prophet_config)?;

    prophet_node
        .insert_bundle("Prophet fallback test".to_string())
        .await?;
    let bundles = prophet_node.list_bundles()?;
    assert_eq!(bundles.len(), 2); // Same store as epidemic_node

    Ok(())
}

#[tokio::test]
async fn test_bundle_status_with_partial_failures() -> anyhow::Result<()> {
    let temp_dir = TempDir::new()?;
    let node = DtnNode::with_store_path(temp_dir.path().to_str().unwrap())?;

    // Insert valid bundles
    node.insert_bundle("Valid bundle 1".to_string()).await?;
    node.insert_bundle("Valid bundle 2".to_string()).await?;

    let status = node.get_bundle_status(None)?;
    match status {
        BundleStatus::Summary {
            active,
            expired,
            total,
        } => {
            assert_eq!(active, 2);
            assert_eq!(expired, 0);
            assert_eq!(total, 2);
        }
        _ => panic!("Expected Summary status"),
    }

    Ok(())
}

#[tokio::test]
async fn test_cleanup_expired_no_expired_bundles() -> anyhow::Result<()> {
    let temp_dir = TempDir::new()?;
    let node = DtnNode::with_store_path(temp_dir.path().to_str().unwrap())?;

    // Insert fresh bundles (not expired)
    node.insert_bundle("Fresh bundle".to_string()).await?;

    // Cleanup should succeed without removing anything
    node.cleanup_expired()?;

    let bundles = node.list_bundles()?;
    assert_eq!(bundles.len(), 1); // Bundle should still be there

    Ok(())
}