Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d6adfe07 authored by Mike Yu's avatar Mike Yu Committed by Automerger Merge Worker
Browse files

Fix flaky tests due to onDnsEvent am: b8faac42

Original change: https://android-review.googlesource.com/c/platform/packages/modules/DnsResolver/+/1344817

Change-Id: I887012830441151ba9515aa419e4b24cd7ffe9d0
parents a3951229 b8faac42
Loading
Loading
Loading
Loading
+7 −3
Original line number Diff line number Diff line
@@ -237,9 +237,13 @@ class ResolverTest : public ::testing::Test {
        const DnsMetricsListener::DnsEvent expect = {
                TEST_NETID, eventType,   returnCode,
                hostname,   ipAddresses, static_cast<int32_t>(ipAddresses.size())};
        do {
            // Blocking call until timeout.
            const auto dnsEvent = sDnsMetricsListener->popDnsEvent();
        ASSERT_TRUE(dnsEvent.has_value());
        EXPECT_EQ(dnsEvent.value(), expect);
            ASSERT_TRUE(dnsEvent.has_value()) << "Expected DnsEvent " << expect;
            if (dnsEvent.value() == expect) break;
            LOG(INFO) << "Skip unexpected DnsEvent: " << dnsEvent.value();
        } while (true);
    }

    bool expectStatsFromGetResolverInfo(const std::vector<NameserverStats>& nameserversStats) {