systemdaemon 1.0.1

System daemon building blocks. Designed for but not limited to systemd.
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
// SPDX-FileCopyrightText: 2025 Simon BrummeR
//
// SPDX-License-Identifier: MPL-2.0

#[cfg(all(test, not(feature = "tokio"), feature = "agnostic"))]
mod tests {
    use crate::error::mocks::MockError;
    use crate::integration::mocks::MockIntegration;
    use crate::{
        Daemon, MockConfigFormat, MockService, MockWatchdog, ReloadPolicy, RestartPolicy,
        ServiceConfig,
    };

    use async_timer::Interval;
    use futures::{FutureExt, join};
    use mockall::{Sequence, predicate::eq};
    use smol::block_on;
    use smol_timeout::TimeoutExt;
    use std::future::{pending, ready};
    use std::path::PathBuf;
    use std::time::Duration;

    /// Setup a mock that with a single use reload trigger.
    /// On usage, the first usage continues immediately, the next invocation blocks forever.
    /// The mock expects that wait_for_reload is called two times.
    fn mock_single_use_reload_trigger() -> (MockIntegration, Sequence) {
        let mut sequence = Sequence::new();
        let mut mock = MockIntegration::new();
        mock.expect_wait_for_reload()
            .times(1)
            .in_sequence(&mut sequence)
            .returning(|| Box::pin(ready(())));
        mock.expect_wait_for_reload()
            .times(1)
            .in_sequence(&mut sequence)
            .returning(|| Box::pin(pending()));
        (mock, sequence)
    }

    /// Setup a mock were the first config file loading is successfully and the next attempt fails.
    /// The mock expects that try_load is called two times.
    fn mock_single_use_config_loading(config: &'static str) -> (MockConfigFormat, Sequence) {
        let mut sequence = Sequence::new();
        let mut mock = MockConfigFormat::new();
        mock.expect_try_load()
            .times(1)
            .in_sequence(&mut sequence)
            .returning(|_| Ok(config.to_string()));
        mock.expect_try_load()
            .times(1)
            .in_sequence(&mut sequence)
            .returning(|_| Err(MockError.into()));
        (mock, sequence)
    }

    /// Expected behavior:
    /// A signal is send after the given function implementation leaves the function.
    #[test]
    fn shutdown_trigger() {
        block_on(async {
            let mut mock = MockIntegration::new();
            mock.expect_wait_for_shutdown()
                .times(1)
                .returning(|| Box::pin(ready(())));
            mock.expect_notify_stopping().times(1).returning(|| ());

            let mocked_daemon = Daemon::new(mock);

            assert!(!mocked_daemon.shutdown.is_canceled());
            mocked_daemon.shutdown_handler().await;
            assert!(mocked_daemon.shutdown.is_canceled());
        });
    }

    /// Expected behavior:
    /// The shutdown trigger is not the only source for global shutdown. In case the
    /// cancellation token is triggered externally, a blocking shutdown handler must terminate.
    #[test]
    fn shutdown_external_trigger() {
        block_on(async {
            let mut mock = MockIntegration::new();
            mock.expect_wait_for_shutdown()
                .times(1)
                .returning(|| Box::pin(pending()));

            let mocked_daemon = Daemon::new(mock);

            join!(mocked_daemon.shutdown_handler(), async {
                mocked_daemon.shutdown.cancel();
            })
        });
    }

    /// Expected behavior:
    /// A watchdog shuts down stopped by a shutdown signal.
    #[test]
    fn watchdog_shutdown() {
        block_on(async {
            // 1) Unblock by signal
            let mut mock = MockWatchdog::new();
            mock.expect_notify_interval().times(1).returning(|| None);
            mock.expect_notify().times(0).returning(|| ());

            let mocked_daemon = Daemon::<MockWatchdog>::new(mock);

            join!(mocked_daemon.watchdog_handler(), async {
                mocked_daemon.shutdown.cancel();
            });
        });
    }

    /// Expected behavior:
    /// - A disabled watchdog must never call notify().
    /// - A disabled watchdog must not terminate on its own
    ///   it can only be interrupted.
    #[test]
    fn disabled_watchdog_is_pending() {
        block_on(async {
            let mut mock = MockWatchdog::new();
            mock.expect_notify_interval().times(1).returning(|| None);
            mock.expect_notify().times(0).returning(|| ());

            let mocked_daemon = Daemon::<MockWatchdog>::new(mock);

            assert!(
                mocked_daemon
                    .watchdog_handler()
                    .timeout(Duration::from_millis(100))
                    .await
                    .is_none()
            );
        });
    }

    /// Expected behavior:
    /// - A enable watchdog must call notify() on start and keep triggering it the given interval.
    /// - A disabled watchdog must not terminate on its own
    ///   it can only be interrupted.
    #[test]
    fn enabled_watchdog_is_triggering() {
        block_on(async {
            // The actual notify interval is halfed minus some offset.
            // Using 50ms means an effective trigger of ~24.9ms.
            // If running for 100ms that makes 4 trigger executions

            let mut mock = MockWatchdog::new();
            mock.expect_notify_interval()
                .times(1)
                .returning(|| Some(Duration::from_millis(50)));
            mock.expect_notify().times(4..).returning(|| ());

            let mocked_daemon = Daemon::<MockWatchdog>::new(mock);

            assert!(
                mocked_daemon
                    .watchdog_handler()
                    .timeout(Duration::from_millis(100))
                    .await
                    .is_none()
            );
        });
    }

    /// Expected behavior:
    /// After a reload trigger was received and a following configuration file loading fails, the
    /// `ReloadPolicy::KeepOnError` ensures that the current, working configuration is kept.
    #[test]
    fn reload_handler_reload_policy_keep_on_error() {
        block_on(async {
            let (mut reload_trigger_mock, _) = mock_single_use_reload_trigger();
            reload_trigger_mock
                .expect_notify_reloading()
                .times(1)
                .returning(|| ());

            let config_data = "non_default_config";
            let (config_loading_mock, _) = mock_single_use_config_loading(config_data);
            let config = ServiceConfig::try_load(&PathBuf::new(), config_loading_mock).unwrap();
            let daemon = Daemon::new(reload_trigger_mock);

            let mut config_update_receiver = config.receiver().clone();
            let config_received = futures::select! {
                _ = config_update_receiver.recv().fuse() => true,
                _ = daemon.reload_handler(&config, ReloadPolicy::KeepOnError).fuse() => false,
            };
            assert!(
                config_received,
                "reload_handler must only return on shutdown token cancellation."
            );
            assert_eq!(config.get(), config_data);
        });
    }

    /// Expected behavior:
    /// After a reload trigger was received and a following configuration file loading fails, the
    /// `ReloadPolicy::DefaultOnError` replaces the current configuration with the default
    /// configuration. The underlying config file must not be rewritten.
    #[test]
    fn reload_handler_reload_policy_default_on_error() {
        block_on(async {
            let (mut reload_trigger_mock, _) = mock_single_use_reload_trigger();
            reload_trigger_mock
                .expect_notify_reloading()
                .times(1)
                .returning(|| ());

            let (config_loading_mock, _) = mock_single_use_config_loading("non_default_config");
            let config = ServiceConfig::try_load(&PathBuf::new(), config_loading_mock).unwrap();
            let daemon = Daemon::new(reload_trigger_mock);

            let mut config_update_receiver = config.receiver().clone();
            let config_received = futures::select! {
                _ = config_update_receiver.recv().fuse() => true,
                _ = daemon.reload_handler(&config, ReloadPolicy::DefaultOnError).fuse() => false,
            };
            assert!(
                config_received,
                "reload_handler must only return on shutdown token cancellation."
            );
            assert_eq!(config.get(), String::default());
        });
    }

    /// Expected behavior:
    /// After a reload trigger was received and a following configuration file loading fails, the
    /// `ReloadPolicy::ShutdownOnError` initiates global teardown by setting the shutdown token
    /// instead. The underlying config file must not be rewritten and no new configuration is
    /// propagated.
    #[test]
    fn reload_handler_reload_policy_shutdown_on_error() {
        block_on(async {
            let mut reload_trigger_mock = MockIntegration::new();
            reload_trigger_mock
                .expect_wait_for_reload()
                .times(1)
                .returning(|| Box::pin(ready(())));
            reload_trigger_mock
                .expect_notify_stopping()
                .times(1)
                .returning(|| ());

            let (config_loading_mock, _) = mock_single_use_config_loading("non_default_config");
            let config = ServiceConfig::try_load(&PathBuf::new(), config_loading_mock).unwrap();
            let daemon = Daemon::new(reload_trigger_mock);

            let mut config_update_receiver = config.receiver().clone();
            let config_received = futures::select! {
                _ = config_update_receiver.recv().fuse() => true,
                _ = daemon.reload_handler(&config, ReloadPolicy::ShutdownOnError).fuse() => false,
            };
            assert!(
                !config_received,
                "new configurations must not be received on shutdown."
            );
            assert!(daemon.shutdown.is_canceled());
        });
    }

    // Expected behavior:
    // The reload handler shall return after the daemons cancellation token was triggered.
    #[test]
    fn reload_handler_shutdown() {
        block_on(async {
            let mut reload_trigger_mock = MockIntegration::new();
            reload_trigger_mock
                .expect_wait_for_reload()
                .times(1)
                .returning(|| Box::pin(pending()));

            let mut config_loading_mock = MockConfigFormat::new();
            config_loading_mock
                .expect_try_load()
                .returning(|_| Ok(String::default()));

            let config = ServiceConfig::try_load(&PathBuf::new(), config_loading_mock).unwrap();
            let daemon = Daemon::new(reload_trigger_mock);

            join!(
                daemon.reload_handler(&config, ReloadPolicy::KeepOnError),
                async {
                    daemon.shutdown.cancel();
                }
            );
        });
    }

    // Expected behavior:
    // A reload trigger distributes the latest configuration in case it could be loaded.
    #[test]
    fn reload_handler_reload_successfully() {
        block_on(async {
            // Prepare a reload trigger
            let mut reload_sequence = Sequence::new();
            let mut reload_trigger_mock = MockIntegration::new();
            reload_trigger_mock
                .expect_wait_for_reload()
                .times(1)
                .in_sequence(&mut reload_sequence)
                .returning(|| Box::pin(ready(())));
            reload_trigger_mock
                .expect_notify_reloading()
                .times(1)
                .in_sequence(&mut reload_sequence)
                .returning(|| ());
            reload_trigger_mock
                .expect_wait_for_reload()
                .times(1)
                .in_sequence(&mut reload_sequence)
                .returning(|| Box::pin(pending()));

            // Prepare two subsequent different configuration contents
            let config1 = "Config1";
            let config2 = "Config2";
            let mut config_loading_sequence = Sequence::new();
            let mut config_loading_mock = MockConfigFormat::new();
            config_loading_mock
                .expect_try_load()
                .times(1)
                .in_sequence(&mut config_loading_sequence)
                .returning(|_| Ok(config1.to_string()));
            config_loading_mock
                .expect_try_load()
                .times(1)
                .in_sequence(&mut config_loading_sequence)
                .returning(|_| Ok(config2.to_string()));

            // Spawn daemon
            let daemon = Daemon::new(reload_trigger_mock);
            let config = ServiceConfig::try_load(&PathBuf::new(), config_loading_mock).unwrap();

            assert_eq!(config.get(), config1);
            let mut config_update_receiver = config.receiver().clone();
            let config_received = futures::select! {
                _ = config_update_receiver.recv().fuse() => true,
                _ = daemon.reload_handler(&config, ReloadPolicy::DefaultOnError).fuse() => false,
            };
            assert!(
                config_received,
                "reload_handler must only return on shutdown token cancellation."
            );
            assert_eq!(config.get(), config2);
            assert!(!daemon.shutdown.is_canceled());
        });
    }

    // Expected behavior:
    // A service is always restarted on an okay result, service_handler
    // does not return.
    #[test]
    fn service_handler_restart_policy_always_service_returns_ok() {
        let mut config_mock = MockConfigFormat::new();
        config_mock
            .expect_try_load()
            .times(1)
            .returning(|_| Ok(String::new()));
        let config = ServiceConfig::try_load(&PathBuf::new(), config_mock).unwrap();

        block_on(async {
            let mut sequence = Sequence::new();
            let mut service_mock = MockService::new();
            service_mock
                .expect_run()
                .times(1)
                .in_sequence(&mut sequence)
                .returning(|_| Box::pin(ready(Ok(()))));
            service_mock
                .expect_run()
                .times(1)
                .in_sequence(&mut sequence)
                .returning(|_| Box::pin(pending()));

            let mut integration_mock = MockIntegration::new();
            integration_mock
                .expect_notify_ready()
                .times(2)
                .returning(|| ());

            let daemon = Daemon::new(integration_mock);
            assert!(
                daemon
                    .service_handler(&service_mock, &config, RestartPolicy::Always)
                    .timeout(Duration::from_millis(100))
                    .await
                    .is_none()
            );
            assert!(!daemon.shutdown.is_canceled());
        })
    }

    // Expected behavior:
    // A service is always restarted on an error result, service_handler
    // does not return.
    #[test]
    fn service_handler_restart_policy_always_service_returns_error() {
        let mut config_mock = MockConfigFormat::new();
        config_mock
            .expect_try_load()
            .times(1)
            .returning(|_| Ok(String::new()));
        let config = ServiceConfig::try_load(&PathBuf::new(), config_mock).unwrap();

        block_on(async {
            let mut sequence = Sequence::new();
            let mut service_mock = MockService::new();
            service_mock
                .expect_run()
                .times(1)
                .in_sequence(&mut sequence)
                .returning(|_| Box::pin(ready(Err(MockError))));
            service_mock
                .expect_run()
                .times(1)
                .in_sequence(&mut sequence)
                .returning(|_| Box::pin(pending()));

            let mut integration_mock = MockIntegration::new();
            integration_mock
                .expect_notify_ready()
                .times(2)
                .returning(|| ());

            let daemon = Daemon::new(integration_mock);
            assert!(
                daemon
                    .service_handler(&service_mock, &config, RestartPolicy::Always)
                    .timeout(Duration::from_millis(100))
                    .await
                    .is_none()
            );
            assert!(!daemon.shutdown.is_canceled());
        })
    }

    // Expected behavior:
    // A service is never restarted in case of an okay result. This means that service_handler returns on its own.
    // Before returning, the global shutdown token must be triggered and the shutdown is notified.
    #[test]
    fn service_handler_restart_policy_never_service_returns_okay() {
        let mut config_mock = MockConfigFormat::new();
        config_mock
            .expect_try_load()
            .times(1)
            .returning(|_| Ok(String::new()));
        let config = ServiceConfig::try_load(&PathBuf::new(), config_mock).unwrap();

        block_on(async {
            let mut service_mock = MockService::new();
            service_mock
                .expect_run()
                .times(1)
                .returning(|_| Box::pin(ready(Ok(()))));

            let mut integration_mock = MockIntegration::new();
            integration_mock
                .expect_notify_ready()
                .times(1)
                .returning(|| ());
            integration_mock
                .expect_notify_stopping()
                .times(1)
                .returning(|| ());

            let daemon = Daemon::new(integration_mock);
            assert!(
                daemon
                    .service_handler(&service_mock, &config, RestartPolicy::Never)
                    .timeout(Duration::from_millis(100))
                    .await
                    .is_some()
            );
            assert!(daemon.shutdown.is_canceled());
        });
    }

    // Expected behavior:
    // A service is never restarted in case of an error result. This means that service_handler returns on its own.
    // Before returning, the global shutdown token must be triggered and the shutdown is notified.
    #[test]
    fn service_handler_restart_policy_never_service_returns_error() {
        let mut config_mock = MockConfigFormat::new();
        config_mock
            .expect_try_load()
            .times(1)
            .returning(|_| Ok(String::new()));
        let config = ServiceConfig::try_load(&PathBuf::new(), config_mock).unwrap();

        block_on(async {
            let mut service_mock = MockService::new();
            service_mock
                .expect_run()
                .times(1)
                .returning(|_| Box::pin(ready(Err(MockError))));

            let mut integration_mock = MockIntegration::new();
            integration_mock
                .expect_notify_ready()
                .times(1)
                .returning(|| ());
            integration_mock
                .expect_notify_stopping()
                .times(1)
                .returning(|| ());

            let daemon = Daemon::new(integration_mock);
            assert!(
                daemon
                    .service_handler(&service_mock, &config, RestartPolicy::Never)
                    .timeout(Duration::from_millis(100))
                    .await
                    .is_some()
            );
            assert!(daemon.shutdown.is_canceled());
        });
    }

    // Expected behavior:
    // A service is restarted in case the result was okay, service_handler
    // does not return.
    #[test]
    fn service_handler_restart_policy_on_success_service_returns_okay() {
        let mut config_mock = MockConfigFormat::new();
        config_mock
            .expect_try_load()
            .times(1)
            .returning(|_| Ok(String::new()));
        let config = ServiceConfig::try_load(&PathBuf::new(), config_mock).unwrap();

        block_on(async {
            let mut service_mock = MockService::new();
            service_mock
                .expect_run()
                .times(2)
                .returning(|_| Box::pin(ready(Ok(()))));
            service_mock
                .expect_run()
                .times(1)
                .returning(|_| Box::pin(pending()));

            let mut integration_mock = MockIntegration::new();
            integration_mock
                .expect_notify_ready()
                .times(3)
                .returning(|| ());

            let daemon = Daemon::new(integration_mock);
            assert!(
                daemon
                    .service_handler(&service_mock, &config, RestartPolicy::OnSuccess)
                    .timeout(Duration::from_millis(100))
                    .await
                    .is_none()
            );
            assert!(!daemon.shutdown.is_canceled());
        });
    }

    // Expected behavior:
    // In case of an error, the service_handler returns on its own. Before
    // returning, the global shutdown token must be triggered and the shutdown is notified.
    #[test]
    fn service_handler_restart_policy_on_success_service_returns_error() {
        let mut config_mock = MockConfigFormat::new();
        config_mock
            .expect_try_load()
            .times(1)
            .returning(|_| Ok(String::new()));
        let config = ServiceConfig::try_load(&PathBuf::new(), config_mock).unwrap();

        block_on(async {
            let mut service_mock = MockService::new();
            service_mock
                .expect_run()
                .times(1)
                .returning(|_| Box::pin(ready(Err(MockError))));

            let mut integration_mock = MockIntegration::new();
            integration_mock
                .expect_notify_ready()
                .times(1)
                .returning(|| ());
            integration_mock
                .expect_notify_stopping()
                .times(1)
                .returning(|| ());

            let daemon = Daemon::new(integration_mock);
            assert!(
                daemon
                    .service_handler(&service_mock, &config, RestartPolicy::OnSuccess)
                    .timeout(Duration::from_millis(100))
                    .await
                    .is_some()
            );
            assert!(daemon.shutdown.is_canceled());
        })
    }

    // Expected behavior:
    // In case of an okay result, the service_handler returns on its own. Before
    // returning, the global shutdown token must be triggered and the shutdown is notified.
    #[test]
    fn service_handler_restart_policy_on_error_service_returns_okay() {
        let mut config_mock = MockConfigFormat::new();
        config_mock
            .expect_try_load()
            .times(1)
            .returning(|_| Ok(String::new()));
        let config = ServiceConfig::try_load(&PathBuf::new(), config_mock).unwrap();

        block_on(async {
            let mut service_mock = MockService::new();
            service_mock
                .expect_run()
                .times(1)
                .returning(|_| Box::pin(ready(Ok(()))));

            let mut integration_mock = MockIntegration::new();
            integration_mock
                .expect_notify_ready()
                .times(1)
                .returning(|| ());
            integration_mock
                .expect_notify_stopping()
                .times(1)
                .returning(|| ());

            let daemon = Daemon::new(integration_mock);
            assert!(
                daemon
                    .service_handler(&service_mock, &config, RestartPolicy::OnError)
                    .timeout(Duration::from_millis(100))
                    .await
                    .is_some()
            );
            assert!(daemon.shutdown.is_canceled());
        })
    }

    // Expected behavior:
    // A service is restarted in case the result was an error, service_handler
    // does not return.
    #[test]
    fn service_handler_restart_policy_on_errpr_service_returns_error() {
        let mut config_mock = MockConfigFormat::new();
        config_mock
            .expect_try_load()
            .times(1)
            .returning(|_| Ok(String::new()));
        let config = ServiceConfig::try_load(&PathBuf::new(), config_mock).unwrap();

        block_on(async {
            let mut service_mock = MockService::new();
            service_mock
                .expect_run()
                .times(2)
                .returning(|_| Box::pin(ready(Err(MockError))));
            service_mock
                .expect_run()
                .times(1)
                .returning(|_| Box::pin(pending()));

            let mut integration_mock = MockIntegration::new();
            integration_mock
                .expect_notify_ready()
                .times(3)
                .returning(|| ());

            let daemon = Daemon::new(integration_mock);
            assert!(
                daemon
                    .service_handler(&service_mock, &config, RestartPolicy::OnError)
                    .timeout(Duration::from_millis(100))
                    .await
                    .is_none()
            );
            assert!(!daemon.shutdown.is_canceled());
        });
    }

    // Expected behavior:
    // The service handler shall return after the daemons cancellation token was triggered.
    #[test]
    fn service_handler_shutdown() {
        block_on(async {
            let mut integration_mock = MockIntegration::new();
            integration_mock
                .expect_notify_ready()
                .times(1)
                .returning(|| ());

            let mut config_loading_mock = MockConfigFormat::new();
            config_loading_mock
                .expect_try_load()
                .returning(|_| Ok(String::default()));

            let mut service_mock = MockService::new();
            service_mock
                .expect_run()
                .times(1)
                .returning(|_| Box::pin(pending()));

            let daemon = Daemon::new(integration_mock);
            let config_mock =
                ServiceConfig::try_load(&PathBuf::new(), config_loading_mock).unwrap();

            join!(
                daemon.service_handler(&service_mock, &config_mock, RestartPolicy::Always),
                async {
                    daemon.shutdown.cancel();
                }
            );
        });
    }

    // Expected behavior:
    // The service handler shall be re-run in case the configuration was updated.
    #[test]
    fn service_handler_restart_on_config_update() {
        block_on(async {
            let mut integration_mock = MockIntegration::new();
            integration_mock
                .expect_notify_ready()
                .times(3)
                .returning(|| ());

            let config1 = "Config 1";
            let config2 = "Config 2";
            let config3 = "Config 3";
            let mut config_mock = MockConfigFormat::new();
            config_mock
                .expect_try_load()
                .returning(|_| Ok(config1.to_string()));

            let mut sequence = Sequence::new();
            let mut service_mock = MockService::new();
            service_mock
                .expect_run()
                .times(1)
                .with(eq(config1.to_string()))
                .in_sequence(&mut sequence)
                .returning(|_| Box::pin(pending()));
            service_mock
                .expect_run()
                .times(1)
                .with(eq(config2.to_string()))
                .in_sequence(&mut sequence)
                .returning(|_| Box::pin(pending()));
            service_mock
                .expect_run()
                .times(1)
                .with(eq(config3.to_string()))
                .in_sequence(&mut sequence)
                .returning(|_| Box::pin(pending()));

            // Re-configure the service multiple times then wait until the mock expectation are
            // fulfilled.
            let daemon = Daemon::new(integration_mock);
            let config_mock = ServiceConfig::try_load(&PathBuf::new(), config_mock).unwrap();
            join!(
                daemon.service_handler(&service_mock, &config_mock, RestartPolicy::Always),
                async {
                    let mut delay = Interval::platform_new(Duration::from_millis(50));
                    delay.as_mut().await;
                    config_mock.sender().send(config2.to_string()).unwrap();
                    delay.as_mut().await;
                    config_mock.sender().send(config3.to_string()).unwrap();
                    delay.as_mut().await;
                    daemon.shutdown.cancel();
                }
            );
        });
    }
}