aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/actors/dnsresolver/dnsresolver_caching_ut.cpp
blob: c3b7cb3c77c519ae7a2a6245d1ab720e42428963 (plain) (blame)
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
#include "dnsresolver.h"

#include <library/cpp/actors/core/hfunc.h>
#include <library/cpp/actors/testlib/test_runtime.h>
#include <library/cpp/testing/unittest/registar.h>
#include <util/string/builder.h>

#include <ares.h>

using namespace NActors;
using namespace NActors::NDnsResolver;

// FIXME: use a mock resolver
Y_UNIT_TEST_SUITE(CachingDnsResolver) {

    struct TAddrToString {
        TString operator()(const std::monostate&) const {
            return "<nothing>";
        }

        TString operator()(const struct in6_addr& addr) const {
            char dst[INET6_ADDRSTRLEN];
            auto res = ares_inet_ntop(AF_INET6, &addr, dst, INET6_ADDRSTRLEN);
            Y_VERIFY(res, "Cannot convert ipv6 address");
            return dst;
        }

        TString operator()(const struct in_addr& addr) const {
            char dst[INET_ADDRSTRLEN];
            auto res = ares_inet_ntop(AF_INET, &addr, dst, INET_ADDRSTRLEN);
            Y_VERIFY(res, "Cannot convert ipv4 address");
            return dst;
        }
    };

    TString AddrToString(const std::variant<std::monostate, struct in6_addr, struct in_addr>& v) {
        return std::visit(TAddrToString(), v);
    }

    struct TMockReply {
        static constexpr TDuration DefaultDelay = TDuration::MilliSeconds(1);

        int Status = 0;
        TDuration Delay;
        TVector<struct in6_addr> AddrsV6;
        TVector<struct in_addr> AddrsV4;

        static TMockReply Error(int status, TDuration delay = DefaultDelay) {
            Y_VERIFY(status != 0);
            TMockReply reply;
            reply.Status = status;
            reply.Delay = delay;
            return reply;
        }

        static TMockReply Empty(TDuration delay = DefaultDelay) {
            TMockReply reply;
            reply.Delay = delay;
            return reply;
        }

        static TMockReply ManyV6(const TVector<TString>& addrs, TDuration delay = DefaultDelay) {
            TMockReply reply;
            reply.Delay = delay;
            for (const TString& addr : addrs) {
                void* dst = &reply.AddrsV6.emplace_back();
                int status = ares_inet_pton(AF_INET6, addr.c_str(), dst);
                Y_VERIFY(status == 1, "Invalid ipv6 address: %s", addr.c_str());
            }
            return reply;
        }

        static TMockReply ManyV4(const TVector<TString>& addrs, TDuration delay = DefaultDelay) {
            TMockReply reply;
            reply.Delay = delay;
            for (const TString& addr : addrs) {
                void* dst = &reply.AddrsV4.emplace_back();
                int status = ares_inet_pton(AF_INET, addr.c_str(), dst);
                Y_VERIFY(status == 1, "Invalid ipv4 address: %s", addr.c_str());
            }
            return reply;
        }

        static TMockReply SingleV6(const TString& addr, TDuration delay = DefaultDelay) {
            return ManyV6({ addr }, delay);
        }

        static TMockReply SingleV4(const TString& addr, TDuration delay = DefaultDelay) {
            return ManyV4({ addr }, delay);
        }
    };

    using TMockDnsCallback = std::function<TMockReply (const TString&, int)>;

    class TMockDnsResolver : public TActor<TMockDnsResolver> {
    public:
        TMockDnsResolver(TMockDnsCallback callback)
            : TActor(&TThis::StateWork)
            , Callback(std::move(callback))
        { }

    private:
        struct TEvPrivate {
            enum EEv {
                EvScheduled = EventSpaceBegin(TEvents::ES_PRIVATE),
            };

            struct TEvScheduled : public TEventLocal<TEvScheduled, EvScheduled> {
                TActorId Sender;
                ui64 Cookie;
                TMockReply Reply;

                TEvScheduled(TActorId sender, ui64 cookie, TMockReply reply)
                    : Sender(sender)
                    , Cookie(cookie)
                    , Reply(std::move(reply))
                { }
            };
        };

    private:
        STRICT_STFUNC(StateWork, {
            hFunc(TEvents::TEvPoison, Handle);
            hFunc(TEvDns::TEvGetHostByName, Handle);
            hFunc(TEvPrivate::TEvScheduled, Handle);
        });

        void Handle(TEvents::TEvPoison::TPtr&) {
            PassAway();
        }

        void Handle(TEvDns::TEvGetHostByName::TPtr& ev) {
            auto reply = Callback(ev->Get()->Name, ev->Get()->Family);
            if (reply.Delay) {
                Schedule(reply.Delay, new TEvPrivate::TEvScheduled(ev->Sender, ev->Cookie, std::move(reply)));
            } else {
                SendReply(ev->Sender, ev->Cookie, std::move(reply));
            }
        }

        void Handle(TEvPrivate::TEvScheduled::TPtr& ev) {
            SendReply(ev->Get()->Sender, ev->Get()->Cookie, std::move(ev->Get()->Reply));
        }

    private:
        void SendReply(const TActorId& sender, ui64 cookie, TMockReply&& reply) {
            auto res = MakeHolder<TEvDns::TEvGetHostByNameResult>();
            res->Status = reply.Status;
            if (res->Status != 0) {
                res->ErrorText = ares_strerror(res->Status);
            } else {
                res->AddrsV6 = std::move(reply.AddrsV6);
                res->AddrsV4 = std::move(reply.AddrsV4);
            }
            Send(sender, res.Release(), 0, cookie);
        }

    private:
        TMockDnsCallback Callback;
    };

    struct TCachingDnsRuntime : public TTestActorRuntimeBase {
        TCachingDnsResolverOptions ResolverOptions;
        TActorId MockResolver;
        TActorId Resolver;
        TActorId Sleeper;
        TString Section_;

        NMonitoring::TDynamicCounters::TCounterPtr InFlight6;
        NMonitoring::TDynamicCounters::TCounterPtr InFlight4;
        NMonitoring::TDynamicCounters::TCounterPtr Total6;
        NMonitoring::TDynamicCounters::TCounterPtr Total4;
        NMonitoring::TDynamicCounters::TCounterPtr Misses;
        NMonitoring::TDynamicCounters::TCounterPtr Hits;

        THashMap<TString, TMockReply> ReplyV6;
        THashMap<TString, TMockReply> ReplyV4;

        TCachingDnsRuntime() {
            SetScheduledEventFilter([](auto&&, auto&&, auto&&, auto&&) { return false; });
            ResolverOptions.MonCounters = new NMonitoring::TDynamicCounters;

            ReplyV6["localhost"] = TMockReply::SingleV6("::1");
            ReplyV4["localhost"] = TMockReply::SingleV4("127.0.0.1");
            ReplyV6["yandex.ru"] = TMockReply::SingleV6("2a02:6b8:a::a", TDuration::MilliSeconds(500));
            ReplyV4["yandex.ru"] = TMockReply::SingleV4("77.88.55.77", TDuration::MilliSeconds(250));
            ReplyV6["router.asus.com"] = TMockReply::Error(ARES_ENODATA);
            ReplyV4["router.asus.com"] = TMockReply::SingleV4("192.168.0.1");
        }

        void Start(TMockDnsCallback callback) {
            MockResolver = Register(new TMockDnsResolver(std::move(callback)));
            EnableScheduleForActor(MockResolver);
            Resolver = Register(CreateCachingDnsResolver(MockResolver, ResolverOptions));
            Sleeper = AllocateEdgeActor();

            InFlight6 = ResolverOptions.MonCounters->GetCounter("DnsResolver/Outgoing/InFlight/V6", false);
            InFlight4 = ResolverOptions.MonCounters->GetCounter("DnsResolver/Outgoing/InFlight/V4", false);
            Total6 = ResolverOptions.MonCounters->GetCounter("DnsResolver/Outgoing/Total/V6", true);
            Total4 = ResolverOptions.MonCounters->GetCounter("DnsResolver/Outgoing/Total/V4", true);
            Misses = ResolverOptions.MonCounters->GetCounter("DnsResolver/Cache/Misses", true);
            Hits = ResolverOptions.MonCounters->GetCounter("DnsResolver/Cache/Hits", true);
        }

        void Start() {
            Start([this](const TString& name, int family) {
                switch (family) {
                    case AF_INET6: {
                        auto it = ReplyV6.find(name);
                        if (it != ReplyV6.end()) {
                            return it->second;
                        }
                        break;
                    }
                    case AF_INET: {
                        auto it = ReplyV4.find(name);
                        if (it != ReplyV4.end()) {
                            return it->second;
                        }
                        break;
                    }
                }
                return TMockReply::Error(ARES_ENOTFOUND);
            });
        }

        void Section(const TString& section) {
            Section_ = section;
        }

        void Sleep(TDuration duration) {
            Schedule(new IEventHandle(Sleeper, Sleeper, new TEvents::TEvWakeup), duration);
            GrabEdgeEventRethrow<TEvents::TEvWakeup>(Sleeper);
        }

        void WaitNoInFlight() {
            if (*InFlight6 || *InFlight4) {
                TDispatchOptions options;
                options.CustomFinalCondition = [&]() {
                    return !*InFlight6 && !*InFlight4;
                };
                DispatchEvents(options);
                UNIT_ASSERT_C(!*InFlight6 && !*InFlight4, "Failed to wait for no inflight in " << Section_);
            }
        }

        void SendGetHostByName(const TActorId& sender, const TString& name, int family = AF_UNSPEC) {
            Send(new IEventHandle(Resolver, sender, new TEvDns::TEvGetHostByName(name, family)), 0, true);
        }

        void SendGetAddr(const TActorId& sender, const TString& name, int family = AF_UNSPEC) {
            Send(new IEventHandle(Resolver, sender, new TEvDns::TEvGetAddr(name, family)), 0, true);
        }

        TEvDns::TEvGetHostByNameResult::TPtr WaitGetHostByName(const TActorId& sender) {
            return GrabEdgeEventRethrow<TEvDns::TEvGetHostByNameResult>(sender);
        }

        TEvDns::TEvGetAddrResult::TPtr WaitGetAddr(const TActorId& sender) {
            return GrabEdgeEventRethrow<TEvDns::TEvGetAddrResult>(sender);
        }

        void ExpectInFlight6(i64 count) {
            UNIT_ASSERT_VALUES_EQUAL_C(InFlight6->Val(), count, Section_);
        }

        void ExpectInFlight4(i64 count) {
            UNIT_ASSERT_VALUES_EQUAL_C(InFlight4->Val(), count, Section_);
        }

        void ExpectTotal6(i64 count) {
            UNIT_ASSERT_VALUES_EQUAL_C(Total6->Val(), count, Section_);
        }

        void ExpectTotal4(i64 count) {
            UNIT_ASSERT_VALUES_EQUAL_C(Total4->Val(), count, Section_);
        }

        void Expect6(i64 total, i64 inflight) {
            UNIT_ASSERT_C(
                Total6->Val() == total && InFlight6->Val() == inflight,
                Section_ << ": Expect6(" << total << ", " << inflight << ") "
                << " but got (" << Total6->Val() << ", " << InFlight6->Val() << ")");
        }

        void Expect4(i64 total, i64 inflight) {
            UNIT_ASSERT_C(
                Total4->Val() == total && InFlight4->Val() == inflight,
                Section_ << ": Expect4(" << total << ", " << inflight << ") "
                << " got (" << Total4->Val() << ", " << InFlight4->Val() << ")");
        }

        void ExpectMisses(i64 count) {
            UNIT_ASSERT_VALUES_EQUAL_C(Misses->Val(), count, Section_);
        }

        void ExpectHits(i64 count) {
            UNIT_ASSERT_VALUES_EQUAL_C(Hits->Val(), count, Section_);
        }

        void ExpectGetHostByNameError(const TActorId& sender, int status) {
            auto ev = WaitGetHostByName(sender);
            UNIT_ASSERT_VALUES_EQUAL_C(ev->Get()->Status, status, Section_ << ": " << ev->Get()->ErrorText);
        }

        void ExpectGetAddrError(const TActorId& sender, int status) {
            auto ev = WaitGetAddr(sender);
            UNIT_ASSERT_VALUES_EQUAL_C(ev->Get()->Status, status, Section_ << ": " << ev->Get()->ErrorText);
        }

        void ExpectGetHostByNameSuccess(const TActorId& sender, const TString& expected) {
            auto ev = WaitGetHostByName(sender);
            UNIT_ASSERT_VALUES_EQUAL_C(ev->Get()->Status, 0, Section_ << ": " << ev->Get()->ErrorText);
            TStringBuilder result;
            for (const auto& addr : ev->Get()->AddrsV6) {
                if (result) {
                    result << ',';
                }
                result << TAddrToString()(addr);
            }
            for (const auto& addr : ev->Get()->AddrsV4) {
                if (result) {
                    result << ',';
                }
                result << TAddrToString()(addr);
            }
            UNIT_ASSERT_VALUES_EQUAL_C(TString(result), expected, Section_);
        }

        void ExpectGetAddrSuccess(const TActorId& sender, const TString& expected) {
            auto ev = WaitGetAddr(sender);
            UNIT_ASSERT_VALUES_EQUAL_C(ev->Get()->Status, 0, Section_ << ": " << ev->Get()->ErrorText);
            TString result = AddrToString(ev->Get()->Addr);
            UNIT_ASSERT_VALUES_EQUAL_C(result, expected, Section_);
        }
    };

    Y_UNIT_TEST(UnusableResolver) {
        TCachingDnsRuntime runtime;
        runtime.Initialize();
        runtime.Start();

        auto sender = runtime.AllocateEdgeActor();

        runtime.SendGetAddr(sender, "yandex.ru", AF_UNSPEC);
        runtime.ExpectGetAddrSuccess(sender, "2a02:6b8:a::a");

        runtime.Send(new IEventHandle(runtime.MockResolver, { }, new TEvents::TEvPoison), 0, true);
        runtime.SendGetAddr(sender, "foo.ru", AF_UNSPEC);
        runtime.ExpectGetAddrError(sender, ARES_ENOTINITIALIZED);
    }

    Y_UNIT_TEST(ResolveCaching) {
        TCachingDnsRuntime runtime;
        runtime.Initialize();
        runtime.Start();

        auto sender = runtime.AllocateEdgeActor();

        // First time resolve, ipv4 and ipv6 sent in parallel, we wait for ipv6 result
        runtime.Section("First time resolve");
        runtime.SendGetAddr(sender, "yandex.ru", AF_UNSPEC);
        runtime.ExpectGetAddrSuccess(sender, "2a02:6b8:a::a");
        runtime.Expect6(1, 0);
        runtime.Expect4(1, 0);
        runtime.ExpectMisses(1);
        runtime.ExpectHits(0);

        // Second resolve, ipv6 and ipv4 queries result in a cache hit
        runtime.Section("Second resolve, ipv6");
        runtime.SendGetAddr(sender, "yandex.ru", AF_INET6);
        runtime.ExpectGetAddrSuccess(sender, "2a02:6b8:a::a");
        runtime.Expect6(1, 0);
        runtime.ExpectHits(1);
        runtime.Section("Second resolve, ipv4");
        runtime.SendGetAddr(sender, "yandex.ru", AF_INET);
        runtime.ExpectGetAddrSuccess(sender, "77.88.55.77");
        runtime.Expect4(1, 0);
        runtime.ExpectHits(2);

        // Wait until soft expiration and try ipv4 again
        // Will cause a cache hit, but will start a new ipv4 request in background
        runtime.Section("Retry ipv4 after soft expiration");
        runtime.Sleep(TDuration::Seconds(15));
        runtime.SendGetAddr(sender, "yandex.ru", AF_INET);
        runtime.ExpectGetAddrSuccess(sender, "77.88.55.77");
        runtime.Expect6(1, 0);
        runtime.Expect4(2, 1);
        runtime.ExpectMisses(1);
        runtime.ExpectHits(3);
        runtime.WaitNoInFlight();

        // Wait until soft expiration and try both again
        // Will cause a cache hit, but will start a new ipv6 request in background
        runtime.Section("Retry both after soft expiration");
        runtime.Sleep(TDuration::Seconds(15));
        runtime.SendGetAddr(sender, "yandex.ru", AF_UNSPEC);
        runtime.ExpectGetAddrSuccess(sender, "2a02:6b8:a::a");
        runtime.Expect6(2, 1);
        runtime.Expect4(2, 0);
        runtime.ExpectMisses(1);
        runtime.ExpectHits(4);
        runtime.WaitNoInFlight();

        // Wait until hard expiration and try both again
        // Will cause a cache miss and new resolve requests
        runtime.Section("Retry both after hard expiration");
        runtime.Sleep(TDuration::Hours(2));
        runtime.SendGetAddr(sender, "yandex.ru", AF_UNSPEC);
        runtime.ExpectGetAddrSuccess(sender, "2a02:6b8:a::a");
        runtime.Expect6(3, 0);
        runtime.Expect4(3, 0);
        runtime.ExpectMisses(2);
        runtime.ExpectHits(4);

        // Wait half the hard expiration time, must always result in a cache hit
        runtime.Section("Retry both after half hard expiration");
        for (ui64 i = 1; i <= 4; ++i) {
            runtime.Sleep(TDuration::Hours(1));
            runtime.SendGetAddr(sender, "yandex.ru", AF_UNSPEC);
            runtime.ExpectGetAddrSuccess(sender, "2a02:6b8:a::a");
            runtime.Expect6(3 + i, 1);
            runtime.ExpectHits(4 + i);
            runtime.WaitNoInFlight();
        }

        // Change v6 result to a timeout, must keep using cached result until hard expiration
        runtime.Section("Dns keeps timing out");
        runtime.ReplyV6["yandex.ru"] = TMockReply::Error(ARES_ETIMEOUT);
        for (ui64 i = 1; i <= 4; ++i) {
            runtime.Sleep(TDuration::Seconds(15));
            runtime.SendGetAddr(sender, "yandex.ru", AF_UNSPEC);
            runtime.ExpectGetAddrSuccess(sender, "2a02:6b8:a::a");
            runtime.Expect6(7 + i, 1);
            runtime.ExpectHits(8 + i);
            runtime.WaitNoInFlight();
        }

        // Change v6 result to nodata, must switch to a v4 result eventually
        runtime.Section("Host changes to being ipv4 only");
        runtime.ReplyV6["yandex.ru"] = TMockReply::Error(ARES_ENODATA);
        runtime.Sleep(TDuration::Seconds(2));
        runtime.SendGetAddr(sender, "yandex.ru", AF_UNSPEC);
        runtime.ExpectGetAddrSuccess(sender, "2a02:6b8:a::a");
        runtime.WaitNoInFlight();
        runtime.SendGetAddr(sender, "yandex.ru", AF_UNSPEC);
        runtime.ExpectGetAddrSuccess(sender, "77.88.55.77");
        runtime.Expect6(12, 0);
        runtime.Expect4(4, 0);
        runtime.ExpectMisses(3);

        // Change v6 result to nxdomain, must not fall back to a v4 result
        runtime.Section("Host is removed from dns");
        runtime.ReplyV6["yandex.ru"] = TMockReply::Error(ARES_ENOTFOUND);
        runtime.Sleep(TDuration::Seconds(15));
        runtime.SendGetAddr(sender, "yandex.ru", AF_UNSPEC);
        runtime.ExpectGetAddrSuccess(sender, "77.88.55.77");
        runtime.WaitNoInFlight();
        runtime.SendGetAddr(sender, "yandex.ru", AF_UNSPEC);
        runtime.ExpectGetAddrError(sender, ARES_ENOTFOUND);
    }

    Y_UNIT_TEST(ResolveCachingV4) {
        TCachingDnsRuntime runtime;
        runtime.Initialize();
        runtime.Start();

        auto sender = runtime.AllocateEdgeActor();

        runtime.Section("First request");
        runtime.SendGetAddr(sender, "router.asus.com", AF_UNSPEC);
        runtime.ExpectGetAddrSuccess(sender, "192.168.0.1");
        runtime.ExpectMisses(1);

        runtime.Section("Second request");
        runtime.SendGetAddr(sender, "router.asus.com", AF_UNSPEC);
        runtime.ExpectGetAddrSuccess(sender, "192.168.0.1");
        runtime.ExpectHits(1);

        runtime.Section("Dns keeps timing out");
        runtime.ReplyV6["router.asus.com"] = TMockReply::Error(ARES_ETIMEOUT);
        runtime.ReplyV4["router.asus.com"] = TMockReply::Error(ARES_ETIMEOUT);
        for (ui64 i = 1; i <= 4; ++i) {
            runtime.Sleep(TDuration::Seconds(15));
            runtime.SendGetAddr(sender, "router.asus.com", AF_UNSPEC);
            runtime.ExpectGetAddrSuccess(sender, "192.168.0.1");
            runtime.Expect6(1 + i, 1);
            runtime.Expect4(1 + i, 1);
            runtime.ExpectHits(1 + i);
            runtime.WaitNoInFlight();
        }

        runtime.Section("Host is removed from ipv4 dns");
        runtime.ReplyV4["router.asus.com"] = TMockReply::Error(ARES_ENOTFOUND);
        runtime.Sleep(TDuration::Seconds(15));
        runtime.SendGetAddr(sender, "router.asus.com", AF_UNSPEC);
        runtime.ExpectGetAddrSuccess(sender, "192.168.0.1");
        runtime.WaitNoInFlight();
        runtime.SendGetAddr(sender, "router.asus.com", AF_UNSPEC);
        runtime.ExpectGetAddrError(sender, ARES_ENOTFOUND);
    }

    Y_UNIT_TEST(EventualTimeout) {
        TCachingDnsRuntime runtime;
        runtime.Initialize();
        runtime.Start();

        auto sender = runtime.AllocateEdgeActor();

        runtime.ReplyV6["notfound.ru"] = TMockReply::Error(ARES_ENODATA);
        runtime.ReplyV4["notfound.ru"] = TMockReply::Error(ARES_ENOTFOUND);
        runtime.SendGetAddr(sender, "notfound.ru", AF_UNSPEC);
        runtime.ExpectGetAddrError(sender, ARES_ENOTFOUND);

        runtime.ReplyV4["notfound.ru"] = TMockReply::Error(ARES_ETIMEOUT);
        runtime.SendGetAddr(sender, "notfound.ru", AF_UNSPEC);
        runtime.ExpectGetAddrError(sender, ARES_ENOTFOUND);
        runtime.WaitNoInFlight();

        bool timeout = false;
        for (ui64 i = 1; i <= 8; ++i) {
            runtime.Sleep(TDuration::Minutes(30));
            runtime.SendGetAddr(sender, "notfound.ru", AF_UNSPEC);
            auto ev = runtime.WaitGetAddr(sender);
            if (ev->Get()->Status == ARES_ETIMEOUT && i > 2) {
                timeout = true;
                break;
            }
            UNIT_ASSERT_VALUES_EQUAL_C(ev->Get()->Status, ARES_ENOTFOUND,
                    "Iteration " << i << ": " << ev->Get()->ErrorText);
        }

        UNIT_ASSERT_C(timeout, "DnsResolver did not reply with a timeout");
    }

    Y_UNIT_TEST(MultipleRequestsAndHosts) {
        TCachingDnsRuntime runtime;
        runtime.Initialize();
        runtime.Start();

        auto sender = runtime.AllocateEdgeActor();

        runtime.SendGetHostByName(sender, "router.asus.com", AF_UNSPEC);
        runtime.SendGetAddr(sender, "router.asus.com", AF_UNSPEC);
        runtime.SendGetHostByName(sender, "yandex.ru", AF_UNSPEC);
        runtime.SendGetAddr(sender, "yandex.ru", AF_UNSPEC);
        runtime.ExpectGetHostByNameSuccess(sender, "192.168.0.1");
        runtime.ExpectGetAddrSuccess(sender, "192.168.0.1");
        runtime.ExpectGetHostByNameSuccess(sender, "2a02:6b8:a::a");
        runtime.ExpectGetAddrSuccess(sender, "2a02:6b8:a::a");

        runtime.SendGetHostByName(sender, "notfound.ru", AF_UNSPEC);
        runtime.SendGetAddr(sender, "notfound.ru", AF_UNSPEC);
        runtime.ExpectGetHostByNameError(sender, ARES_ENOTFOUND);
        runtime.ExpectGetAddrError(sender, ARES_ENOTFOUND);
    }

    Y_UNIT_TEST(DisabledIPv6) {
        TCachingDnsRuntime runtime;
        runtime.ResolverOptions.AllowIPv6 = false;
        runtime.Initialize();
        runtime.Start();

        auto sender = runtime.AllocateEdgeActor();

        runtime.SendGetHostByName(sender, "yandex.ru", AF_UNSPEC);
        runtime.SendGetAddr(sender, "yandex.ru", AF_UNSPEC);
        runtime.ExpectGetHostByNameSuccess(sender, "77.88.55.77");
        runtime.ExpectGetAddrSuccess(sender, "77.88.55.77");

        runtime.SendGetHostByName(sender, "yandex.ru", AF_INET6);
        runtime.SendGetAddr(sender, "yandex.ru", AF_INET6);
        runtime.ExpectGetHostByNameError(sender, ARES_EBADFAMILY);
        runtime.ExpectGetAddrError(sender, ARES_EBADFAMILY);

        runtime.SendGetHostByName(sender, "yandex.ru", AF_UNSPEC);
        runtime.SendGetAddr(sender, "yandex.ru", AF_UNSPEC);
        runtime.ExpectGetHostByNameSuccess(sender, "77.88.55.77");
        runtime.ExpectGetAddrSuccess(sender, "77.88.55.77");

        runtime.SendGetHostByName(sender, "notfound.ru", AF_UNSPEC);
        runtime.SendGetAddr(sender, "notfound.ru", AF_UNSPEC);
        runtime.ExpectGetHostByNameError(sender, ARES_ENOTFOUND);
        runtime.ExpectGetAddrError(sender, ARES_ENOTFOUND);
    }

    Y_UNIT_TEST(DisabledIPv4) {
        TCachingDnsRuntime runtime;
        runtime.ResolverOptions.AllowIPv4 = false;
        runtime.Initialize();
        runtime.Start();

        auto sender = runtime.AllocateEdgeActor();

        runtime.SendGetHostByName(sender, "router.asus.com", AF_UNSPEC);
        runtime.SendGetAddr(sender, "router.asus.com", AF_UNSPEC);
        runtime.ExpectGetHostByNameError(sender, ARES_ENODATA);
        runtime.ExpectGetAddrError(sender, ARES_ENODATA);

        runtime.SendGetHostByName(sender, "router.asus.com", AF_INET);
        runtime.SendGetAddr(sender, "router.asus.com", AF_INET);
        runtime.ExpectGetHostByNameError(sender, ARES_EBADFAMILY);
        runtime.ExpectGetAddrError(sender, ARES_EBADFAMILY);

        runtime.SendGetHostByName(sender, "router.asus.com", AF_UNSPEC);
        runtime.SendGetAddr(sender, "router.asus.com", AF_UNSPEC);
        runtime.ExpectGetHostByNameError(sender, ARES_ENODATA);
        runtime.ExpectGetAddrError(sender, ARES_ENODATA);

        runtime.SendGetHostByName(sender, "notfound.ru", AF_UNSPEC);
        runtime.SendGetAddr(sender, "notfound.ru", AF_UNSPEC);
        runtime.ExpectGetHostByNameError(sender, ARES_ENOTFOUND);
        runtime.ExpectGetAddrError(sender, ARES_ENOTFOUND);
    }

    Y_UNIT_TEST(PoisonPill) {
        TCachingDnsRuntime runtime;
        runtime.Initialize();
        runtime.Start();

        auto sender = runtime.AllocateEdgeActor();

        runtime.SendGetHostByName(sender, "yandex.ru", AF_UNSPEC);
        runtime.SendGetAddr(sender, "yandex.ru", AF_UNSPEC);
        runtime.Send(new IEventHandle(runtime.Resolver, sender, new TEvents::TEvPoison), 0, true);
        runtime.ExpectGetHostByNameError(sender, ARES_ECANCELLED);
        runtime.ExpectGetAddrError(sender, ARES_ECANCELLED);
    }

}