ip-discovery 0.4.0

A lightweight, high-performance library for detecting public IP addresses via DNS, HTTP, and STUN protocols
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
//! Unit tests for the resolver module — strategies, error paths, and helpers.

#[cfg(test)]
mod resolver_tests {
    use ip_discovery::{
        Config, Error, IpVersion, Protocol, Provider, ProviderError, Resolver, Strategy,
    };
    use std::future::Future;
    use std::net::{IpAddr, Ipv4Addr};
    use std::pin::Pin;
    use std::time::Duration;

    // ── Mock providers ──────────────────────────────────────────────

    /// A provider that always returns the configured IP after an optional delay.
    struct MockProvider {
        name: String,
        ip: IpAddr,
        delay: Duration,
        v4: bool,
        v6: bool,
    }

    impl MockProvider {
        fn ok(name: &str, ip: IpAddr) -> Box<dyn Provider> {
            Box::new(Self {
                name: name.to_string(),
                ip,
                delay: Duration::ZERO,
                v4: true,
                v6: false,
            })
        }

        fn ok_delayed(name: &str, ip: IpAddr, delay: Duration) -> Box<dyn Provider> {
            Box::new(Self {
                name: name.to_string(),
                ip,
                delay,
                v4: true,
                v6: false,
            })
        }

        fn v6_only(name: &str, ip: IpAddr) -> Box<dyn Provider> {
            Box::new(Self {
                name: name.to_string(),
                ip,
                delay: Duration::ZERO,
                v4: false,
                v6: true,
            })
        }
    }

    impl Provider for MockProvider {
        fn name(&self) -> &str {
            &self.name
        }
        fn protocol(&self) -> Protocol {
            Protocol::Dns
        }
        fn supports_v4(&self) -> bool {
            self.v4
        }
        fn supports_v6(&self) -> bool {
            self.v6
        }
        fn get_ip(
            &self,
            _version: IpVersion,
        ) -> Pin<Box<dyn Future<Output = Result<IpAddr, ProviderError>> + Send + '_>> {
            let ip = self.ip;
            let delay = self.delay;
            Box::pin(async move {
                if !delay.is_zero() {
                    tokio::time::sleep(delay).await;
                }
                Ok(ip)
            })
        }
    }

    /// A provider that always fails.
    struct FailProvider {
        name: String,
        msg: String,
    }

    impl FailProvider {
        fn boxed(name: &str, msg: &str) -> Box<dyn Provider> {
            Box::new(Self {
                name: name.to_string(),
                msg: msg.to_string(),
            })
        }
    }

    impl Provider for FailProvider {
        fn name(&self) -> &str {
            &self.name
        }
        fn protocol(&self) -> Protocol {
            Protocol::Stun
        }
        fn get_ip(
            &self,
            _version: IpVersion,
        ) -> Pin<Box<dyn Future<Output = Result<IpAddr, ProviderError>> + Send + '_>> {
            let name = self.name.clone();
            let msg = self.msg.clone();
            Box::pin(async move { Err(ProviderError::message(name, msg)) })
        }
    }

    /// A provider that hangs forever (for timeout testing).
    struct HangProvider {
        name: String,
    }

    impl HangProvider {
        fn boxed(name: &str) -> Box<dyn Provider> {
            Box::new(Self {
                name: name.to_string(),
            })
        }
    }

    impl Provider for HangProvider {
        fn name(&self) -> &str {
            &self.name
        }
        fn protocol(&self) -> Protocol {
            Protocol::Http
        }
        fn get_ip(
            &self,
            _version: IpVersion,
        ) -> Pin<Box<dyn Future<Output = Result<IpAddr, ProviderError>> + Send + '_>> {
            Box::pin(async move {
                // Never completes
                std::future::pending().await
            })
        }
    }

    // ── Helpers ──────────────────────────────────────────────────────

    fn ip(a: u8, b: u8, c: u8, d: u8) -> IpAddr {
        IpAddr::V4(Ipv4Addr::new(a, b, c, d))
    }

    fn config_with(providers: Vec<Box<dyn Provider>>, strategy: Strategy) -> Config {
        let mut builder = Config::builder()
            .strategy(strategy)
            .timeout(Duration::from_secs(2));

        for p in providers {
            builder = builder.add_provider(p);
        }
        builder.build()
    }

    // ── Strategy::First ─────────────────────────────────────────────

    #[tokio::test]
    async fn first_returns_first_success() {
        let config = config_with(
            vec![
                MockProvider::ok("A", ip(1, 1, 1, 1)),
                MockProvider::ok("B", ip(2, 2, 2, 2)),
            ],
            Strategy::First,
        );
        let result = Resolver::new(config).resolve().await.unwrap();
        assert_eq!(result.ip, ip(1, 1, 1, 1));
        assert_eq!(result.provider, "A");
    }

    #[tokio::test]
    async fn first_skips_failed_returns_second() {
        let config = config_with(
            vec![
                FailProvider::boxed("Bad", "down"),
                MockProvider::ok("Good", ip(3, 3, 3, 3)),
            ],
            Strategy::First,
        );
        let result = Resolver::new(config).resolve().await.unwrap();
        assert_eq!(result.ip, ip(3, 3, 3, 3));
        assert_eq!(result.provider, "Good");
    }

    #[tokio::test]
    async fn first_all_fail_returns_all_errors() {
        let config = config_with(
            vec![
                FailProvider::boxed("A", "err1"),
                FailProvider::boxed("B", "err2"),
            ],
            Strategy::First,
        );
        let err = Resolver::new(config).resolve().await.unwrap_err();
        match err {
            Error::AllProvidersFailed(errors) => {
                assert_eq!(errors.len(), 2);
                assert!(errors[0].to_string().contains("err1"));
                assert!(errors[1].to_string().contains("err2"));
            }
            other => panic!("expected AllProvidersFailed, got: {other}"),
        }
    }

    #[tokio::test]
    async fn first_timeout_is_collected_as_error() {
        let config = config_with(
            vec![
                HangProvider::boxed("Slow"),
                MockProvider::ok("Fast", ip(4, 4, 4, 4)),
            ],
            Strategy::First,
        );
        // Should timeout on Slow, then succeed on Fast
        let result = Resolver::new(config).resolve().await.unwrap();
        assert_eq!(result.ip, ip(4, 4, 4, 4));
    }

    // ── Strategy::Race ──────────────────────────────────────────────

    #[tokio::test]
    async fn race_returns_fastest() {
        let config = config_with(
            vec![
                MockProvider::ok_delayed("Slow", ip(1, 1, 1, 1), Duration::from_millis(100)),
                MockProvider::ok("Fast", ip(2, 2, 2, 2)),
            ],
            Strategy::Race,
        );
        let result = Resolver::new(config).resolve().await.unwrap();
        assert_eq!(result.ip, ip(2, 2, 2, 2));
        assert_eq!(result.provider, "Fast");
    }

    #[tokio::test]
    async fn race_with_one_failure_still_succeeds() {
        let config = config_with(
            vec![
                FailProvider::boxed("Bad", "down"),
                MockProvider::ok("Good", ip(5, 5, 5, 5)),
            ],
            Strategy::Race,
        );
        let result = Resolver::new(config).resolve().await.unwrap();
        assert_eq!(result.ip, ip(5, 5, 5, 5));
    }

    #[tokio::test]
    async fn race_all_fail() {
        let config = config_with(
            vec![
                FailProvider::boxed("A", "err1"),
                FailProvider::boxed("B", "err2"),
                FailProvider::boxed("C", "err3"),
            ],
            Strategy::Race,
        );
        let err = Resolver::new(config).resolve().await.unwrap_err();
        match err {
            Error::AllProvidersFailed(errors) => assert_eq!(errors.len(), 3),
            other => panic!("expected AllProvidersFailed, got: {other}"),
        }
    }

    #[tokio::test]
    async fn race_timeout_plus_success() {
        let config = config_with(
            vec![
                HangProvider::boxed("Hangs"),
                MockProvider::ok("Works", ip(6, 6, 6, 6)),
            ],
            Strategy::Race,
        );
        let result = Resolver::new(config).resolve().await.unwrap();
        assert_eq!(result.ip, ip(6, 6, 6, 6));
    }

    // ── Strategy::Consensus ─────────────────────────────────────────

    #[tokio::test]
    async fn consensus_reached() {
        let config = config_with(
            vec![
                MockProvider::ok("A", ip(1, 1, 1, 1)),
                MockProvider::ok("B", ip(1, 1, 1, 1)),
                MockProvider::ok("C", ip(2, 2, 2, 2)),
            ],
            Strategy::Consensus { min_agree: 2 },
        );
        let result = Resolver::new(config).resolve().await.unwrap();
        assert_eq!(result.ip, ip(1, 1, 1, 1));
    }

    #[tokio::test]
    async fn consensus_not_reached() {
        let config = config_with(
            vec![
                MockProvider::ok("A", ip(1, 1, 1, 1)),
                MockProvider::ok("B", ip(2, 2, 2, 2)),
                MockProvider::ok("C", ip(3, 3, 3, 3)),
            ],
            Strategy::Consensus { min_agree: 2 },
        );
        let err = Resolver::new(config).resolve().await.unwrap_err();
        match err {
            Error::ConsensusNotReached {
                required,
                got,
                errors,
            } => {
                assert_eq!(required, 2);
                assert_eq!(got, 1);
                assert!(errors.is_empty()); // all providers succeeded, just disagreed
            }
            other => panic!("expected ConsensusNotReached, got: {other}"),
        }
    }

    #[tokio::test]
    async fn consensus_errors_are_reported() {
        let config = config_with(
            vec![
                MockProvider::ok("A", ip(1, 1, 1, 1)),
                FailProvider::boxed("B", "connection refused"),
                FailProvider::boxed("C", "dns timeout"),
            ],
            Strategy::Consensus { min_agree: 2 },
        );
        let err = Resolver::new(config).resolve().await.unwrap_err();
        match err {
            Error::ConsensusNotReached {
                required,
                got,
                errors,
            } => {
                assert_eq!(required, 2);
                assert_eq!(got, 1); // only A returned an IP
                assert_eq!(errors.len(), 2); // B and C both failed
                let error_msgs: Vec<String> = errors.iter().map(|e| e.to_string()).collect();
                assert!(error_msgs.iter().any(|m| m.contains("connection refused")));
                assert!(error_msgs.iter().any(|m| m.contains("dns timeout")));
            }
            other => panic!("expected ConsensusNotReached, got: {other}"),
        }
    }

    #[tokio::test]
    async fn consensus_picks_fastest_in_winning_group() {
        let config = config_with(
            vec![
                MockProvider::ok_delayed("Slow", ip(1, 1, 1, 1), Duration::from_millis(50)),
                MockProvider::ok("Fast", ip(1, 1, 1, 1)),
            ],
            Strategy::Consensus { min_agree: 2 },
        );
        let result = Resolver::new(config).resolve().await.unwrap();
        assert_eq!(result.ip, ip(1, 1, 1, 1));
        assert_eq!(result.provider, "Fast");
    }

    #[tokio::test]
    async fn consensus_picks_largest_group() {
        let config = config_with(
            vec![
                MockProvider::ok("A", ip(1, 1, 1, 1)),
                MockProvider::ok("B", ip(2, 2, 2, 2)),
                MockProvider::ok("C", ip(2, 2, 2, 2)),
                MockProvider::ok("D", ip(2, 2, 2, 2)),
            ],
            Strategy::Consensus { min_agree: 2 },
        );
        let result = Resolver::new(config).resolve().await.unwrap();
        // Group {2.2.2.2: [B,C,D]} has 3 members vs {1.1.1.1: [A]} has 1
        assert_eq!(result.ip, ip(2, 2, 2, 2));
    }

    // ── Error paths ─────────────────────────────────────────────────

    #[tokio::test]
    async fn no_providers_for_version() {
        // All providers are v4-only, but we request v6
        let config = {
            let mut builder = Config::builder()
                .version(IpVersion::V6)
                .timeout(Duration::from_secs(1));
            builder = builder.add_provider(MockProvider::ok("A", ip(1, 1, 1, 1)));
            builder.build()
        };
        let err = Resolver::new(config).resolve().await.unwrap_err();
        assert!(matches!(err, Error::NoProvidersForVersion));
    }

    #[tokio::test]
    async fn v6_provider_matches_v6_request() {
        let v6 = "2001:db8::1".parse::<IpAddr>().unwrap();
        let config = {
            let mut builder = Config::builder()
                .version(IpVersion::V6)
                .timeout(Duration::from_secs(1));
            builder = builder.add_provider(MockProvider::v6_only("IPv6", v6));
            builder.build()
        };
        let result = Resolver::new(config).resolve().await.unwrap();
        assert_eq!(result.ip, v6);
    }

    // ── min_agree clamping ──────────────────────────────────────────

    #[tokio::test]
    async fn min_agree_clamped_to_2_at_build() {
        // min_agree=1 should be clamped to 2 by the builder, so a single
        // provider agreeing with itself is NOT enough for consensus.
        let config = config_with(
            vec![
                MockProvider::ok("A", ip(1, 1, 1, 1)),
                MockProvider::ok("B", ip(2, 2, 2, 2)),
            ],
            Strategy::Consensus { min_agree: 1 },
        );
        // With clamping to 2: neither IP has 2 agreements → ConsensusNotReached
        let err = Resolver::new(config).resolve().await.unwrap_err();
        assert!(matches!(err, Error::ConsensusNotReached { .. }));
    }

    #[tokio::test]
    async fn min_agree_2_passes_with_clamping() {
        // min_agree=1 is clamped to 2, and two providers agree → success
        let config = config_with(
            vec![
                MockProvider::ok("A", ip(8, 8, 8, 8)),
                MockProvider::ok("B", ip(8, 8, 8, 8)),
            ],
            Strategy::Consensus { min_agree: 1 },
        );
        let result = Resolver::new(config).resolve().await.unwrap();
        assert_eq!(result.ip, ip(8, 8, 8, 8));
    }

    // ── Latency tracking ────────────────────────────────────────────

    #[tokio::test]
    async fn latency_is_nonzero_for_delayed_provider() {
        let config = config_with(
            vec![MockProvider::ok_delayed(
                "Delayed",
                ip(1, 1, 1, 1),
                Duration::from_millis(20),
            )],
            Strategy::First,
        );
        let result = Resolver::new(config).resolve().await.unwrap();
        assert!(result.latency >= Duration::from_millis(15));
    }

    // ── ConsensusNotReached Display ─────────────────────────────────

    #[test]
    fn consensus_error_display_includes_error_count() {
        let err = Error::ConsensusNotReached {
            required: 3,
            got: 1,
            errors: vec![
                ProviderError::message("A", "timeout"),
                ProviderError::message("B", "refused"),
            ],
        };
        let msg = format!("{err}");
        assert!(msg.contains("3"), "should show required count");
        assert!(msg.contains("1"), "should show got count");
        assert!(msg.contains("2 provider errors"), "should show error count");
    }

    // ── Protocol reported correctly ─────────────────────────────────

    #[tokio::test]
    async fn result_protocol_matches_provider() {
        let config = config_with(
            vec![MockProvider::ok("TestDns", ip(1, 2, 3, 4))],
            Strategy::First,
        );
        let result = Resolver::new(config).resolve().await.unwrap();
        assert_eq!(result.protocol, Protocol::Dns); // MockProvider returns Dns
    }
}