lazydns 0.2.63

A light and fast DNS server/forwarder implementation in Rust
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
//! Server launcher module
//!
//! This module provides utilities to launch DNS servers based on plugin configurations,
//! reducing code duplication in main.rs.
//!
//! # Overview
//!
//! The `ServerLauncher` is responsible for starting various DNS server types (UDP, TCP, DoH, DoT, DoQ)
//! based on plugin configurations loaded from YAML files. It eliminates the repetitive server
//! initialization code that was previously scattered throughout `main.rs`.
//!
//! # Architecture
//!
//! The launcher works by:
//! 1. Iterating through plugin configurations
//! 2. Matching plugin types to server types
//! 3. Parsing configuration arguments (listen addresses, TLS certificates, etc.)
//! 4. Creating and spawning server tasks
//!
//! # Supported Server Types
//!
//! - **UDP Server**: Basic DNS over UDP (`udp_server`)
//! - **TCP Server**: DNS over TCP (`tcp_server`)
//! - **DoH Server**: DNS over HTTPS (`doh_server`) - requires `tls` feature
//! - **DoT Server**: DNS over TLS (`dot_server`) - requires `tls` feature
//! - **DoQ Server**: DNS over QUIC (`doq_server`) - requires `doq` feature
//!
//! # Example
//!
//! ```rust,no_run
//! use lazydns::config::Config;
//! use lazydns::plugin::PluginBuilder;
//! use lazydns::server::ServerLauncher;
//! use std::sync::Arc;
//!
//! # async fn example() -> Result<(), Box<dyn std::error::Error>> {
//! // Load configuration
//! let config = Config::from_file("config.yaml")?;
//!
//! // Build plugins
//! let mut builder = PluginBuilder::new();
//! for plugin_config in &config.plugins {
//!     builder.build(plugin_config);
//! }
//! let registry = Arc::new(builder.get_registry());
//!
//! // Launch all servers
//! let launcher = ServerLauncher::new(registry);
//! launcher.launch_all(&config.plugins).await;
//! # Ok(())
//! # }
//! ```

use crate::config::PluginConfig;
use crate::plugin::{PluginHandler, Registry};
#[cfg(feature = "doh")]
use crate::server::DohServer;
#[cfg(feature = "doq")]
use crate::server::DoqServer;
#[cfg(feature = "dot")]
use crate::server::DotServer;
#[cfg(feature = "metrics")]
use crate::server::MonitoringServer;
#[cfg(any(feature = "doh", feature = "dot"))]
use crate::server::TlsConfig;
#[cfg(feature = "admin")]
use crate::server::admin::{AdminServer, AdminState};
use crate::server::{ServerConfig, TcpServer, UdpServer};
use serde_yaml::Value;
use std::collections::HashMap;
use std::net::SocketAddr;
use std::sync::Arc;
use tokio::sync::RwLock;
#[cfg(any(feature = "admin", feature = "metrics"))]
use tracing::info;
use tracing::{error, warn};

/// Normalize listen address shorthand like ":5353" -> "0.0.0.0:5353"
///
/// This function converts shorthand listen addresses (starting with ':') to full
/// IPv4 addresses by prepending "0.0.0.0".
///
/// # Arguments
///
/// * `listen` - The listen address string, potentially in shorthand form
///
/// # Returns
///
/// A normalized address string suitable for parsing as a `SocketAddr`
fn normalize_listen_addr(listen: &str) -> String {
    if listen.starts_with(':') {
        format!("0.0.0.0{}", listen)
    } else {
        listen.to_string()
    }
}

/// Server launcher responsible for starting DNS servers based on plugin configurations
///
/// The `ServerLauncher` encapsulates the logic for launching different types of DNS servers
/// based on plugin configurations. It maintains a reference to the plugin registry and
/// provides methods to launch individual server types or all configured servers at once.
///
/// # Fields
///
/// * `registry` - Reference to the plugin registry containing all loaded plugins
///
/// # Thread Safety
///
/// The launcher is thread-safe and can be used to launch multiple servers concurrently.
/// Each launched server runs in its own async task.
pub struct ServerLauncher {
    /// Reference to the plugin registry
    registry: Arc<Registry>,
}

impl ServerLauncher {
    /// Create a new ServerLauncher with the given plugin registry
    ///
    /// # Arguments
    ///
    /// * `registry` - The plugin registry containing all loaded plugins
    ///
    /// # Returns
    ///
    /// A new `ServerLauncher` instance
    ///
    /// # Examples
    ///
    /// ```rust,no_run
    /// use lazydns::plugin::Registry;
    /// use lazydns::server::ServerLauncher;
    /// use std::sync::Arc;
    ///
    /// let registry = Arc::new(Registry::new());
    /// let launcher = ServerLauncher::new(registry);
    /// ```
    pub fn new(registry: Arc<Registry>) -> Self {
        Self { registry }
    }

    /// Launch all servers configured in the plugin list
    ///
    /// This method iterates through all plugin configurations and launches the appropriate
    /// server type for each recognized plugin. Unknown plugin types are silently ignored.
    ///
    /// # Arguments
    ///
    /// * `plugins` - Slice of plugin configurations to process
    ///
    /// # Behavior
    ///
    /// - Recognized server plugins are launched in separate async tasks
    /// - Each server runs indefinitely until the process is terminated
    /// - Errors during server startup are logged but don't prevent other servers from starting
    /// - Unknown plugin types are skipped without error
    ///
    /// # Examples
    ///
    /// ```rust,no_run
    /// use lazydns::config::Config;
    /// use lazydns::server::ServerLauncher;
    /// use std::sync::Arc;
    ///
    /// # async fn example() -> Result<(), Box<dyn std::error::Error>> {
    /// let config = Config::from_file("config.yaml")?;
    /// let registry = Arc::new(lazydns::plugin::Registry::new());
    /// let launcher = ServerLauncher::new(registry);
    ///
    /// launcher.launch_all(&config.plugins).await;
    /// # Ok(())
    /// # }
    /// ```
    pub async fn launch_all(
        &self,
        plugins: &[PluginConfig],
    ) -> Vec<tokio::sync::oneshot::Receiver<()>> {
        let mut receivers = Vec::new();

        for plugin_config in plugins {
            let receiver = match plugin_config.plugin_type.as_str() {
                "udp_server" => self.launch_udp_server(plugin_config).await,
                "tcp_server" => self.launch_tcp_server(plugin_config).await,
                "doh_server" => self.launch_doh_server(plugin_config).await,
                "dot_server" => self.launch_dot_server(plugin_config).await,
                "doq_server" => self.launch_doq_server(plugin_config).await,
                _ => continue,
            };

            if let Some(rx) = receiver {
                receivers.push(rx);
            }
        }

        receivers
    }

    /// Parse listen address from plugin args
    ///
    /// Extracts and parses the listen address from plugin configuration arguments.
    /// Supports shorthand notation (e.g., ":5353" becomes "0.0.0.0:5353").
    ///
    /// # Arguments
    ///
    /// * `args` - Plugin configuration arguments
    /// * `default` - Default address to use if not specified in args
    ///
    /// # Returns
    ///
    /// `Some(SocketAddr)` if parsing succeeds, `None` if the address is invalid
    fn parse_listen_addr(
        &self,
        args: &HashMap<String, Value>,
        default: &str,
    ) -> Option<SocketAddr> {
        let listen_str = args
            .get("listen")
            .and_then(|v| v.as_str())
            .unwrap_or(default);
        let normalized = normalize_listen_addr(listen_str);

        match normalized.parse::<SocketAddr>() {
            Ok(addr) => Some(addr),
            Err(e) => {
                error!("Failed to parse listen address '{}': {}", listen_str, e);
                None
            }
        }
    }

    /// Get entry plugin name from args
    ///
    /// Extracts the entry plugin name from plugin configuration arguments.
    /// Falls back to "main_sequence" if not specified or invalid.
    ///
    /// # Arguments
    ///
    /// * `args` - Plugin configuration arguments
    ///
    /// # Returns
    ///
    /// The entry plugin name as a string
    fn get_entry(&self, args: &HashMap<String, Value>) -> String {
        args.get("entry")
            .and_then(|v| v.as_str())
            .unwrap_or("main_sequence")
            .to_string()
    }

    /// Create plugin handler for the given entry
    ///
    /// Creates a new `PluginHandler` instance configured to use the specified
    /// entry plugin from the registry.
    ///
    /// # Arguments
    ///
    /// * `entry` - Name of the entry plugin to use
    ///
    /// # Returns
    ///
    /// A new `PluginHandler` wrapped in an `Arc`
    fn create_handler(&self, entry: String) -> Arc<PluginHandler> {
        Arc::new(PluginHandler {
            registry: Arc::clone(&self.registry),
            entry,
        })
    }

    /// Launch UDP server
    ///
    /// Creates and starts a UDP DNS server based on the plugin configuration.
    /// The server will listen on the specified address and use the configured entry plugin.
    ///
    /// # Arguments
    ///
    /// * `plugin_config` - Plugin configuration containing server settings
    ///
    /// # Configuration Parameters
    ///
    /// - `listen`: Listen address (default: "0.0.0.0:53")
    /// - `entry`: Entry plugin name (default: "main_sequence")
    ///
    /// # Behavior
    ///
    /// - Parses the listen address from plugin args
    /// - Creates a UDP server with the specified configuration
    /// - Spawns the server in a background task
    /// - Logs errors if server creation or startup fails
    ///
    /// # Examples
    ///
    /// ```yaml
    /// plugins:
    ///   - type: udp_server
    ///     args:
    ///       listen: "127.0.0.1:5353"
    ///       entry: "main_sequence"
    /// ```
    async fn launch_udp_server(
        &self,
        plugin_config: &PluginConfig,
    ) -> Option<tokio::sync::oneshot::Receiver<()>> {
        let args = plugin_config.effective_args();
        let addr = self.parse_listen_addr(&args, "0.0.0.0:53")?;

        let entry = self.get_entry(&args);
        let config = ServerConfig {
            udp_addr: Some(addr),
            ..Default::default()
        };
        let handler = self.create_handler(entry);

        match UdpServer::new(config, handler).await {
            Ok(server) => {
                let (tx, rx) = tokio::sync::oneshot::channel();
                tokio::spawn(async move {
                    // Send startup completion signal immediately
                    let _ = tx.send(());
                    if let Err(e) = server.run().await {
                        error!("UDP server error: {}", e);
                    }
                });
                Some(rx)
            }
            Err(e) => {
                error!("Failed to start UDP server on {}: {}", addr, e);
                None
            }
        }
    }

    /// Launch TCP server
    ///
    /// Creates and starts a TCP DNS server based on the plugin configuration.
    /// The server will listen on the specified address and use the configured entry plugin.
    ///
    /// # Arguments
    ///
    /// * `plugin_config` - Plugin configuration containing server settings
    ///
    /// # Configuration Parameters
    ///
    /// - `listen`: Listen address (default: "0.0.0.0:53")
    /// - `entry`: Entry plugin name (default: "main_sequence")
    ///
    /// # Behavior
    ///
    /// - Parses the listen address from plugin args
    /// - Creates a TCP server with the specified configuration
    /// - Spawns the server in a background task
    /// - Logs errors if server creation or startup fails
    ///
    /// # Examples
    ///
    /// ```yaml
    /// plugins:
    ///   - type: tcp_server
    ///     args:
    ///       listen: "127.0.0.1:5353"
    ///       entry: "main_sequence"
    /// ```
    async fn launch_tcp_server(
        &self,
        plugin_config: &PluginConfig,
    ) -> Option<tokio::sync::oneshot::Receiver<()>> {
        let args = plugin_config.effective_args();
        let addr = self.parse_listen_addr(&args, "0.0.0.0:53")?;

        let entry = self.get_entry(&args);
        let config = ServerConfig {
            tcp_addr: Some(addr),
            ..Default::default()
        };
        let handler = self.create_handler(entry);

        match TcpServer::new(config, handler).await {
            Ok(server) => {
                let (tx, rx) = tokio::sync::oneshot::channel();
                tokio::spawn(async move {
                    // Send startup completion signal immediately
                    let _ = tx.send(());
                    if let Err(e) = server.run().await {
                        error!("TCP server error: {}", e);
                    }
                });
                Some(rx)
            }
            Err(e) => {
                error!("Failed to start TCP server on {}: {}", addr, e);
                None
            }
        }
    }

    /// Launch DoH (DNS over HTTPS) server
    ///
    /// Creates and starts a DNS over HTTPS server based on the plugin configuration.
    /// Requires the `tls` feature to be enabled at compile time.
    ///
    /// # Arguments
    ///
    /// * `plugin_config` - Plugin configuration containing server settings
    ///
    /// # Configuration Parameters
    ///
    /// - `listen`: Listen address (default: "0.0.0.0:443")
    /// - `entry`: Entry plugin name (default: "main_sequence")
    /// - `cert_file`: Path to TLS certificate file (required)
    /// - `key_file`: Path to TLS private key file (required)
    ///
    /// # Behavior
    ///
    /// - Parses the listen address from plugin args
    /// - Loads TLS certificate and key files
    /// - Creates a DoH server with TLS configuration
    /// - Spawns the server in a background task
    /// - Logs errors if TLS config loading or server startup fails
    /// - Warns if certificate/key files are not specified
    ///
    /// # Examples
    ///
    /// ```yaml
    /// plugins:
    ///   - type: doh_server
    ///     args:
    ///       listen: "0.0.0.0:443"
    ///       entry: "main_sequence"
    ///       cert_file: "/path/to/cert.pem"
    ///       key_file: "/path/to/key.pem"
    /// ```
    ///
    /// # Feature Requirements
    ///
    /// This method is only available when the `doh` feature is enabled:
    /// ```toml
    /// lazydns = { version = "*", features = ["doh"] }
    /// ```
    #[cfg(feature = "doh")]
    async fn launch_doh_server(
        &self,
        plugin_config: &PluginConfig,
    ) -> Option<tokio::sync::oneshot::Receiver<()>> {
        let args = plugin_config.effective_args();
        let addr = self.parse_listen_addr(&args, "0.0.0.0:443")?;

        let cert_path = args.get("cert_file").and_then(|v| v.as_str());
        let key_path = args.get("key_file").and_then(|v| v.as_str());

        let (Some(cert_path), Some(key_path)) = (cert_path, key_path) else {
            warn!("doh_server plugin configured without cert_file/key_file");
            return None;
        };

        let tls = match TlsConfig::from_files(cert_path, key_path) {
            Ok(t) => t,
            Err(e) => {
                error!("Failed to load TLS config for DoH: {}", e);
                return None;
            }
        };

        let entry = self.get_entry(&args);
        let handler = self.create_handler(entry);
        let server = DohServer::new(addr.to_string(), tls, handler);

        let (tx, rx) = tokio::sync::oneshot::channel();
        tokio::spawn(async move {
            // Send startup completion signal immediately
            let _ = tx.send(());
            if let Err(e) = server.run().await {
                error!("DoH server error: {}", e);
            }
        });
        Some(rx)
    }

    /// Launch DoH server (TLS feature disabled)
    ///
    /// This is a stub implementation that logs a warning when the `tls` feature
    /// is not enabled but a DoH server is requested.
    ///
    /// # Arguments
    ///
    /// * `plugin_config` - Plugin configuration (ignored in this implementation)
    #[cfg(not(feature = "doh"))]
    async fn launch_doh_server(
        &self,
        _plugin_config: &PluginConfig,
    ) -> Option<tokio::sync::oneshot::Receiver<()>> {
        warn!("DoH server requested but TLS feature is not enabled");
        None
    }

    /// Launch DoT (DNS over TLS) server
    ///
    /// Creates and starts a DNS over TLS server based on the plugin configuration.
    /// Requires the `tls` feature to be enabled at compile time.
    ///
    /// # Arguments
    ///
    /// * `plugin_config` - Plugin configuration containing server settings
    ///
    /// # Configuration Parameters
    ///
    /// - `listen`: Listen address (default: "0.0.0.0:853")
    /// - `entry`: Entry plugin name (default: "main_sequence")
    /// - `cert_file`: Path to TLS certificate file (required)
    /// - `key_file`: Path to TLS private key file (required)
    ///
    /// # Behavior
    ///
    /// - Parses the listen address from plugin args
    /// - Loads TLS certificate and key files
    /// - Creates a DoT server with TLS configuration
    /// - Spawns the server in a background task
    /// - Logs errors if TLS config loading or server startup fails
    /// - Warns if certificate/key files are not specified
    ///
    /// # Examples
    ///
    /// ```yaml
    /// plugins:
    ///   - type: dot_server
    ///     args:
    ///       listen: "0.0.0.0:853"
    ///       entry: "main_sequence"
    ///       cert_file: "/path/to/cert.pem"
    ///       key_file: "/path/to/key.pem"
    /// ```
    ///
    /// # Feature Requirements
    ///
    /// This method is only available when the `dot` feature is enabled:
    /// ```toml
    /// lazydns = { version = "*", features = ["dot"] }
    /// ```
    #[cfg(feature = "dot")]
    async fn launch_dot_server(
        &self,
        plugin_config: &PluginConfig,
    ) -> Option<tokio::sync::oneshot::Receiver<()>> {
        let args = plugin_config.effective_args();
        let addr = self.parse_listen_addr(&args, "0.0.0.0:853")?;

        let cert_path = args.get("cert_file").and_then(|v| v.as_str());
        let key_path = args.get("key_file").and_then(|v| v.as_str());

        let (Some(cert_path), Some(key_path)) = (cert_path, key_path) else {
            warn!("dot_server plugin configured without cert_file/key_file");
            return None;
        };

        let tls = match TlsConfig::from_files(cert_path, key_path) {
            Ok(t) => t,
            Err(e) => {
                error!("Failed to load TLS config for DoT: {}", e);
                return None;
            }
        };

        let entry = self.get_entry(&args);
        let handler = self.create_handler(entry);
        let server = DotServer::new(addr.to_string(), tls, handler);

        let (tx, rx) = tokio::sync::oneshot::channel();
        tokio::spawn(async move {
            // Send startup completion signal immediately
            let _ = tx.send(());
            if let Err(e) = server.run().await {
                error!("DoT server error: {}", e);
            }
        });
        Some(rx)
    }

    /// Launch DoT server (TLS feature disabled)
    ///
    /// This is a stub implementation that logs a warning when the `tls` feature
    /// is not enabled but a DoT server is requested.
    ///
    /// # Arguments
    ///
    /// * `plugin_config` - Plugin configuration (ignored in this implementation)
    #[cfg(not(feature = "dot"))]
    async fn launch_dot_server(
        &self,
        _plugin_config: &PluginConfig,
    ) -> Option<tokio::sync::oneshot::Receiver<()>> {
        warn!("DoT server requested but TLS feature is not enabled");
        None
    }

    /// Launch DoQ (DNS over QUIC) server
    ///
    /// Creates and starts a DNS over QUIC server based on the plugin configuration.
    /// Requires the `doq` feature to be enabled at compile time.
    ///
    /// # Arguments
    ///
    /// * `plugin_config` - Plugin configuration containing server settings
    ///
    /// # Configuration Parameters
    ///
    /// - `listen`: Listen address (default: "0.0.0.0:784")
    /// - `entry`: Entry plugin name (default: "main_sequence")
    /// - `cert_file`: Path to TLS certificate file (required)
    /// - `key_file`: Path to TLS private key file (required)
    ///
    /// # Behavior
    ///
    /// - Parses the listen address from plugin args
    /// - Creates a DoQ server with the certificate and key paths
    /// - Spawns the server in a background task
    /// - Logs errors if server creation or startup fails
    /// - Warns if certificate/key files are not specified
    ///
    /// # Examples
    ///
    /// ```yaml
    /// plugins:
    ///   - type: doq_server
    ///     args:
    ///       listen: "0.0.0.0:784"
    ///       entry: "main_sequence"
    ///       cert_file: "/path/to/cert.pem"
    ///       key_file: "/path/to/key.pem"
    /// ```
    ///
    /// # Feature Requirements
    ///
    /// This method is only available when the `doq` feature is enabled:
    /// ```toml
    /// lazydns = { version = "*", features = ["doq"] }
    /// ```
    #[cfg(feature = "doq")]
    async fn launch_doq_server(
        &self,
        plugin_config: &PluginConfig,
    ) -> Option<tokio::sync::oneshot::Receiver<()>> {
        let args = plugin_config.effective_args();
        let addr = self.parse_listen_addr(&args, "0.0.0.0:784")?;

        let cert_path = args.get("cert_file").and_then(|v| v.as_str());
        let key_path = args.get("key_file").and_then(|v| v.as_str());

        let (Some(cert_path), Some(key_path)) = (cert_path, key_path) else {
            warn!("doq_server plugin configured without cert_file/key_file");
            return None;
        };

        let entry = self.get_entry(&args);
        let handler = self.create_handler(entry);
        let server = DoqServer::new(addr.to_string(), cert_path, key_path, handler);

        let (tx, rx) = tokio::sync::oneshot::channel();
        tokio::spawn(async move {
            // Send startup completion signal immediately
            let _ = tx.send(());
            if let Err(e) = server.run().await {
                error!("DoQ server error: {}", e);
            }
        });
        Some(rx)
    }

    /// Launch DoQ server (DoQ feature disabled)
    ///
    /// This is a stub implementation that logs a warning when the `doq` feature
    /// is not enabled but a DoQ server is requested.
    ///
    /// # Arguments
    ///
    /// * `plugin_config` - Plugin configuration (ignored in this implementation)
    #[cfg(not(feature = "doq"))]
    async fn launch_doq_server(
        &self,
        _plugin_config: &PluginConfig,
    ) -> Option<tokio::sync::oneshot::Receiver<()>> {
        warn!("DoQ server requested but DoQ feature is not enabled");
        None
    }

    /// Launch Admin API server (admin feature enabled)
    ///
    /// Creates and starts the Admin API server based on the configuration.
    /// The server provides HTTP endpoints for runtime management including
    /// cache control, config reload, and server status.
    ///
    /// # Arguments
    ///
    /// * `config` - Shared configuration reference
    ///
    /// # Configuration Parameters
    ///
    /// - `enabled`: Whether to start the admin server (default: false)
    /// - `addr`: Listen address (default: "127.0.0.1:8080")
    ///
    /// # Behavior
    ///
    /// - Only starts if admin.enabled is true in configuration
    /// - Parses the listen address from configuration
    /// - Creates AdminServer with shared config
    /// - Spawns the server in a background task
    /// - Logs info when starting and errors if server creation fails
    ///
    /// # Examples
    ///
    /// ```yaml
    /// admin:
    ///   enabled: true
    ///   addr: "127.0.0.1:8080"
    /// ```
    #[cfg(feature = "admin")]
    pub async fn launch_admin_server(
        &self,
        config: Arc<RwLock<crate::config::Config>>,
    ) -> Option<tokio::sync::oneshot::Receiver<()>> {
        let cfg = config.read().await;
        if !cfg.admin.enabled {
            return None;
        }

        let addr = normalize_listen_addr(&cfg.admin.addr);
        drop(cfg);

        info!("Starting admin API server on {}", addr);

        let state = AdminState::new(Arc::clone(&config), Arc::clone(&self.registry));
        let server = AdminServer::new(addr, state);

        let (tx, rx) = tokio::sync::oneshot::channel();
        tokio::spawn(async move {
            info!("Admin server task started");
            if let Err(e) = server.run_with_signal(Some(tx), None).await {
                error!("Admin server error: {}", e);
            }
            info!("Admin server task finished");
        });
        Some(rx)
    }

    /// Launch monitoring server
    ///
    /// Creates and starts the monitoring HTTP server (metrics, health, stats)
    /// based on the configuration. Returns a tuple of `(startup_rx, shutdown_tx)`
    /// which can be used to wait for server startup and to trigger a graceful
    /// shutdown.
    #[cfg(feature = "metrics")]
    pub async fn launch_monitoring_server(
        &self,
        config: Arc<RwLock<crate::config::Config>>,
    ) -> Option<tokio::sync::oneshot::Receiver<()>> {
        let cfg = config.read().await;
        if !cfg.monitoring.enabled {
            return None;
        }

        let addr = normalize_listen_addr(&cfg.monitoring.addr);
        drop(cfg);

        info!("Starting monitoring server on {}", addr);

        let server = MonitoringServer::new(addr);

        let (startup_tx, startup_rx) = tokio::sync::oneshot::channel();

        tokio::spawn(async move {
            info!("Monitoring server task started");
            // No external shutdown receiver provided - the server will listen to
            // OS signals itself for graceful shutdown.
            if let Err(e) = server.run_with_signal(Some(startup_tx), None).await {
                error!("Monitoring server error: {}", e);
            }
            info!("Monitoring server task finished");
        });

        Some(startup_rx)
    }

    /// Launch monitoring server (metrics feature disabled)
    ///
    /// Stub implementation when the `metrics` feature is not enabled.
    #[cfg(not(feature = "metrics"))]
    pub async fn launch_monitoring_server(
        &self,
        config: Arc<RwLock<crate::config::Config>>,
    ) -> Option<tokio::sync::oneshot::Receiver<()>> {
        if config.read().await.monitoring.enabled {
            warn!("Monitoring server requested but metrics feature is not enabled");
        }

        None
    }

    /// Launch Admin API server (admin feature disabled)
    ///
    /// This is a stub implementation that returns None when the `admin` feature
    /// is not enabled.
    #[cfg(not(feature = "admin"))]
    pub async fn launch_admin_server(
        &self,
        config: Arc<RwLock<crate::config::Config>>,
    ) -> Option<tokio::sync::oneshot::Receiver<()>> {
        if config.read().await.admin.enabled {
            warn!("Admin server requested but admin feature is not enabled");
        }

        None
    }
}

#[cfg(test)]
mod tests {
    //! Test module for ServerLauncher
    //!
    //! This module contains comprehensive unit tests for the ServerLauncher functionality,
    //! covering normal operation, edge cases, and error conditions.

    use super::*;
    use crate::plugin::{Plugin, Registry};
    use async_trait::async_trait;
    use serde_yaml::Value;
    use std::collections::HashMap;

    // Mock plugin for testing
    /// Mock plugin implementation for testing purposes
    ///
    /// This plugin provides a minimal implementation of the Plugin trait
    /// that can be used in tests to verify plugin registry functionality.
    /// Mock plugin for testing
    ///
    /// This plugin provides a minimal implementation of the Plugin trait
    /// that can be used in tests to verify plugin registry functionality.
    #[derive(Debug)]
    struct MockPlugin;

    #[async_trait]
    impl Plugin for MockPlugin {
        /// Execute method - always succeeds for testing
        async fn execute(&self, _ctx: &mut crate::plugin::Context) -> crate::Result<()> {
            Ok(())
        }

        /// Returns the plugin name
        fn name(&self) -> &str {
            "mock_plugin"
        }
    }

    /// Test address normalization function
    ///
    /// Verifies that the `normalize_listen_addr` function correctly handles
    /// shorthand addresses and regular addresses.
    #[test]
    fn test_normalize_listen_addr() {
        assert_eq!(normalize_listen_addr(":5353"), "0.0.0.0:5353");
        assert_eq!(normalize_listen_addr("127.0.0.1:8080"), "127.0.0.1:8080");
        assert_eq!(normalize_listen_addr("0.0.0.0:53"), "0.0.0.0:53");
        assert_eq!(normalize_listen_addr("[::1]:53"), "[::1]:53");
        assert_eq!(normalize_listen_addr("localhost:8080"), "localhost:8080");
    }

    /// Test IPv6 address parsing
    ///
    /// Verifies that IPv6 addresses are correctly parsed from plugin arguments.
    #[test]
    fn test_parse_listen_addr_with_ipv6() {
        let registry = Arc::new(Registry::new());
        let launcher = ServerLauncher::new(registry);

        let mut args = HashMap::new();
        args.insert(
            "listen".to_string(),
            Value::String("[::1]:5353".to_string()),
        );

        let addr = launcher.parse_listen_addr(&args, "0.0.0.0:53");
        assert_eq!(addr, Some("[::1]:5353".parse().unwrap()));
    }

    /// Test hostname address parsing
    ///
    /// Verifies that hostname-based addresses are correctly parsed.
    #[test]
    fn test_parse_listen_addr_with_hostname() {
        let registry = Arc::new(Registry::new());
        let launcher = ServerLauncher::new(registry);

        let mut args = HashMap::new();
        args.insert(
            "listen".to_string(),
            Value::String("127.0.0.1:8080".to_string()),
        );

        let addr = launcher.parse_listen_addr(&args, "0.0.0.0:53");
        assert_eq!(addr, Some("127.0.0.1:8080".parse().unwrap()));
    }

    /// Test non-string entry value handling
    ///
    /// Verifies that non-string entry values fall back to the default.
    #[test]
    fn test_get_entry_with_non_string_value() {
        let registry = Arc::new(Registry::new());
        let launcher = ServerLauncher::new(registry);

        let mut args = HashMap::new();
        args.insert(
            "entry".to_string(),
            Value::Number(serde_yaml::Number::from(42)),
        );

        // Should fall back to default when entry is not a string
        let entry = launcher.get_entry(&args);
        assert_eq!(entry, "main_sequence");
    }

    /// Test launching multiple plugins
    ///
    /// Verifies that multiple plugins of different types can be launched together.
    #[test]
    fn test_launch_all_with_multiple_plugins() {
        let registry = Arc::new(Registry::new());
        let launcher = ServerLauncher::new(registry);

        let plugin1 = crate::config::PluginConfig::new("udp_server".to_string()).with_arg(
            "listen".to_string(),
            Value::String("127.0.0.1:0".to_string()),
        );

        let plugin2 = crate::config::PluginConfig::new("unknown_plugin".to_string());

        let plugin3 = crate::config::PluginConfig::new("tcp_server".to_string()).with_arg(
            "listen".to_string(),
            Value::String("127.0.0.1:0".to_string()),
        );

        let plugins = vec![plugin1, plugin2, plugin3];

        // Should handle multiple plugins, launching servers for known types and skipping unknown ones
        let rt = tokio::runtime::Runtime::new().unwrap();
        rt.block_on(async {
            let _receivers = launcher.launch_all(&plugins).await;
            // Note: We don't wait for receivers in tests as servers run indefinitely
        });
    }

    /// Test TCP server launching
    ///
    /// Verifies that TCP server configuration is processed correctly.
    #[test]
    fn test_launch_all_with_tcp_server_config() {
        let registry = Arc::new(Registry::new());
        let launcher = ServerLauncher::new(registry);

        let plugin_config = crate::config::PluginConfig::new("tcp_server".to_string()).with_arg(
            "listen".to_string(),
            Value::String("127.0.0.1:0".to_string()),
        );

        let plugins = vec![plugin_config];

        let rt = tokio::runtime::Runtime::new().unwrap();
        rt.block_on(async {
            let _receivers = launcher.launch_all(&plugins).await;
            // Note: We don't wait for receivers in tests as servers run indefinitely
        });
    }

    #[cfg(feature = "metrics")]
    #[tokio::test]
    async fn test_launch_monitoring_server() {
        let registry = Arc::new(Registry::new());
        let launcher = ServerLauncher::new(registry);

        // Build a minimal config enabling monitoring
        let mut cfg = crate::config::Config::new();
        cfg.monitoring.enabled = true;
        cfg.monitoring.addr = "127.0.0.1:0".to_string(); // 0 means OS assign port

        let cfg_arc = Arc::new(RwLock::new(cfg));

        if let Some(startup_rx) = launcher
            .launch_monitoring_server(Arc::clone(&cfg_arc))
            .await
        {
            // Wait for server to signal startup (should complete quickly)
            let started = tokio::time::timeout(std::time::Duration::from_secs(2), startup_rx).await;
            assert!(started.is_ok());
        } else {
            panic!("Expected monitoring server to be launched");
        }
    }

    /// Test monitoring server with shorthand address notation
    ///
    /// Verifies that monitoring server supports ":port" shorthand format
    #[cfg(feature = "metrics")]
    #[tokio::test]
    async fn test_launch_monitoring_server_with_shorthand_addr() {
        let registry = Arc::new(Registry::new());
        let launcher = ServerLauncher::new(registry);

        // Build a config with shorthand address notation
        let mut cfg = crate::config::Config::new();
        cfg.monitoring.enabled = true;
        cfg.monitoring.addr = ":0".to_string(); // Shorthand: should expand to 0.0.0.0:0

        let cfg_arc = Arc::new(RwLock::new(cfg));

        if let Some(startup_rx) = launcher
            .launch_monitoring_server(Arc::clone(&cfg_arc))
            .await
        {
            // Wait for server to signal startup
            let started = tokio::time::timeout(std::time::Duration::from_secs(2), startup_rx).await;
            assert!(
                started.is_ok(),
                "Monitoring server should start with shorthand address"
            );
        } else {
            panic!("Expected monitoring server to be launched with shorthand address");
        }
    }

    /// Test admin server with shorthand address notation
    ///
    /// Verifies that admin server supports ":port" shorthand format
    #[cfg(feature = "admin")]
    #[tokio::test]
    async fn test_launch_admin_server_with_shorthand_addr() {
        let registry = Arc::new(Registry::new());
        let launcher = ServerLauncher::new(registry);

        // Build a config with shorthand address notation
        let mut cfg = crate::config::Config::new();
        cfg.admin.enabled = true;
        cfg.admin.addr = ":0".to_string(); // Shorthand: should expand to 0.0.0.0:0

        let cfg_arc = Arc::new(RwLock::new(cfg));

        if let Some(startup_rx) = launcher.launch_admin_server(Arc::clone(&cfg_arc)).await {
            // Wait for server to signal startup
            let started = tokio::time::timeout(std::time::Duration::from_secs(2), startup_rx).await;
            assert!(
                started.is_ok(),
                "Admin server should start with shorthand address"
            );
        } else {
            panic!("Expected admin server to be launched with shorthand address");
        }
    }

    /// Test DoH server launching with doh feature
    ///
    /// Verifies that DoH server configuration is processed when doh is available.
    #[cfg(feature = "doh")]
    #[test]
    fn test_launch_all_with_doh_server_config() {
        let registry = Arc::new(Registry::new());
        let launcher = ServerLauncher::new(registry);

        let plugin_config = crate::config::PluginConfig::new("doh_server".to_string())
            .with_arg(
                "listen".to_string(),
                Value::String("127.0.0.1:0".to_string()),
            )
            .with_arg(
                "cert_file".to_string(),
                Value::String("/nonexistent/cert.pem".to_string()),
            )
            .with_arg(
                "key_file".to_string(),
                Value::String("/nonexistent/key.pem".to_string()),
            );

        let plugins = vec![plugin_config];

        let rt = tokio::runtime::Runtime::new().unwrap();
        rt.block_on(async {
            let _receivers = launcher.launch_all(&plugins).await;
            // Note: We don't wait for receivers in tests as servers run indefinitely
        });
    }

    /// Test DoT server launching with dot feature
    ///
    /// Verifies that DoT server configuration is processed when dot is available.
    #[cfg(feature = "dot")]
    #[test]
    fn test_launch_all_with_dot_server_config() {
        let registry = Arc::new(Registry::new());
        let launcher = ServerLauncher::new(registry);

        let plugin_config = crate::config::PluginConfig::new("dot_server".to_string())
            .with_arg(
                "listen".to_string(),
                Value::String("127.0.0.1:0".to_string()),
            )
            .with_arg(
                "cert_file".to_string(),
                Value::String("/nonexistent/cert.pem".to_string()),
            )
            .with_arg(
                "key_file".to_string(),
                Value::String("/nonexistent/key.pem".to_string()),
            );

        let plugins = vec![plugin_config];

        let rt = tokio::runtime::Runtime::new().unwrap();
        rt.block_on(async {
            let _receivers = launcher.launch_all(&plugins).await;
            // Note: We don't wait for receivers in tests as servers run indefinitely
        });
    }

    /// Test DoQ server launching with DoQ feature
    ///
    /// Verifies that DoQ server configuration is processed when DoQ is available.
    #[cfg(feature = "doq")]
    #[test]
    fn test_launch_all_with_doq_server_config() {
        let registry = Arc::new(Registry::new());
        let launcher = ServerLauncher::new(registry);

        let plugin_config = crate::config::PluginConfig::new("doq_server".to_string())
            .with_arg(
                "listen".to_string(),
                Value::String("127.0.0.1:0".to_string()),
            )
            .with_arg(
                "cert_file".to_string(),
                Value::String("/nonexistent/cert.pem".to_string()),
            )
            .with_arg(
                "key_file".to_string(),
                Value::String("/nonexistent/key.pem".to_string()),
            );

        let plugins = vec![plugin_config];

        let rt = tokio::runtime::Runtime::new().unwrap();
        rt.block_on(async {
            let _receivers = launcher.launch_all(&plugins).await;
            // Note: We don't wait for receivers in tests as servers run indefinitely
        });
    }

    /// Test ServerLauncher creation
    ///
    /// Verifies that a ServerLauncher can be created successfully.
    #[test]
    fn test_server_launcher_creation() {
        let registry = Arc::new(Registry::new());
        let launcher = ServerLauncher::new(registry);
        // Just verify it was created successfully
        let _ = launcher;
    }

    /// Test valid address parsing
    ///
    /// Verifies that valid addresses are parsed correctly.
    #[test]
    fn test_parse_listen_addr_with_valid_address() {
        let registry = Arc::new(Registry::new());
        let launcher = ServerLauncher::new(registry);

        let mut args = HashMap::new();
        args.insert(
            "listen".to_string(),
            Value::String("127.0.0.1:5353".to_string()),
        );

        let addr = launcher.parse_listen_addr(&args, "0.0.0.0:53");
        assert_eq!(addr, Some("127.0.0.1:5353".parse().unwrap()));
    }

    /// Test shorthand address parsing
    ///
    /// Verifies that shorthand addresses (starting with ':') are normalized.
    #[test]
    fn test_parse_listen_addr_with_shorthand() {
        let registry = Arc::new(Registry::new());
        let launcher = ServerLauncher::new(registry);

        let mut args = HashMap::new();
        args.insert("listen".to_string(), Value::String(":8080".to_string()));

        let addr = launcher.parse_listen_addr(&args, "0.0.0.0:53");
        assert_eq!(addr, Some("0.0.0.0:8080".parse().unwrap()));
    }

    /// Test default address fallback
    ///
    /// Verifies that the default address is used when no listen address is specified.
    #[test]
    fn test_parse_listen_addr_with_default() {
        let registry = Arc::new(Registry::new());
        let launcher = ServerLauncher::new(registry);

        let args = HashMap::new(); // No listen key

        let addr = launcher.parse_listen_addr(&args, "0.0.0.0:53");
        assert_eq!(addr, Some("0.0.0.0:53".parse().unwrap()));
    }

    /// Test invalid address handling
    ///
    /// Verifies that invalid addresses return None.
    #[test]
    fn test_parse_listen_addr_with_invalid_address() {
        let registry = Arc::new(Registry::new());
        let launcher = ServerLauncher::new(registry);

        let mut args = HashMap::new();
        args.insert(
            "listen".to_string(),
            Value::String("invalid:address".to_string()),
        );

        let addr = launcher.parse_listen_addr(&args, "0.0.0.0:53");
        assert!(addr.is_none());
    }

    /// Test custom entry plugin
    ///
    /// Verifies that custom entry plugin names are extracted correctly.
    #[test]
    fn test_get_entry_with_custom_entry() {
        let registry = Arc::new(Registry::new());
        let launcher = ServerLauncher::new(registry);

        let mut args = HashMap::new();
        args.insert(
            "entry".to_string(),
            Value::String("custom_sequence".to_string()),
        );

        let entry = launcher.get_entry(&args);
        assert_eq!(entry, "custom_sequence");
    }

    /// Test default entry plugin
    ///
    /// Verifies that the default entry plugin is used when none is specified.
    #[test]
    fn test_get_entry_with_default() {
        let registry = Arc::new(Registry::new());
        let launcher = ServerLauncher::new(registry);

        let args = HashMap::new(); // No entry key

        let entry = launcher.get_entry(&args);
        assert_eq!(entry, "main_sequence");
    }

    /// Test plugin handler creation
    ///
    /// Verifies that plugin handlers are created correctly with the right entry point.
    #[test]
    fn test_create_handler() {
        let mut registry = Registry::new();
        registry.register(Arc::new(MockPlugin)).unwrap();
        let registry = Arc::new(registry);

        let launcher = ServerLauncher::new(Arc::clone(&registry));

        let handler = launcher.create_handler("mock_plugin".to_string());
        assert_eq!(handler.entry, "mock_plugin");
        assert!(Arc::ptr_eq(&handler.registry, &registry));
    }

    /// Test empty plugin list
    ///
    /// Verifies that launching with an empty plugin list doesn't cause issues.
    #[test]
    fn test_launch_all_with_empty_plugins() {
        let registry = Arc::new(Registry::new());
        let launcher = ServerLauncher::new(registry);

        let plugins = Vec::new();

        // This should not panic and should complete quickly
        // We can't easily test the async launch_all without complex mocking,
        // but we can at least verify it doesn't crash with empty input
        let rt = tokio::runtime::Runtime::new().unwrap();
        rt.block_on(async {
            let _receivers = launcher.launch_all(&plugins).await;
            // Should return empty vector for empty plugins
            assert!(_receivers.is_empty());
        });
    }

    /// Test unknown plugin type handling
    ///
    /// Verifies that unknown plugin types are silently ignored.
    #[test]
    fn test_launch_all_with_unknown_plugin_type() {
        let registry = Arc::new(Registry::new());
        let launcher = ServerLauncher::new(registry);

        let plugin_config = crate::config::PluginConfig::new("unknown_server".to_string());

        let plugins = vec![plugin_config];

        // This should not panic and should skip unknown plugin types
        let rt = tokio::runtime::Runtime::new().unwrap();
        rt.block_on(async {
            let _receivers = launcher.launch_all(&plugins).await;
            // Should return empty vector for unknown plugin types
            assert!(_receivers.is_empty());
        });
    }

    /// Test UDP server launching
    ///
    /// Verifies that UDP server configuration is processed correctly.
    #[test]
    fn test_launch_all_with_udp_server_config() {
        let registry = Arc::new(Registry::new());
        let launcher = ServerLauncher::new(registry);

        let plugin_config = crate::config::PluginConfig::new("udp_server".to_string()).with_arg(
            "listen".to_string(),
            serde_yaml::Value::String("127.0.0.1:0".to_string()),
        );

        let plugins = vec![plugin_config];

        // This will attempt to start a server but should fail gracefully
        // since we can't bind to privileged ports in tests
        let rt = tokio::runtime::Runtime::new().unwrap();
        rt.block_on(async {
            let _receivers = launcher.launch_all(&plugins).await;
            // Should return one receiver for the UDP server
            assert_eq!(_receivers.len(), 1);
        });
    }
}