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
|
// Copyright 2021 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "net/dns/host_resolver_results_test_util.h"
#include <ostream>
#include <utility>
#include <vector>
#include "net/base/connection_endpoint_metadata.h"
#include "net/base/ip_endpoint.h"
#include "net/dns/public/host_resolver_results.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace net {
namespace {
class EndpointResultMatcher
: public testing::MatcherInterface<const HostResolverEndpointResult&> {
public:
EndpointResultMatcher(
testing::Matcher<std::vector<IPEndPoint>> ip_endpoints_matcher,
testing::Matcher<const ConnectionEndpointMetadata&> metadata_matcher)
: ip_endpoints_matcher_(std::move(ip_endpoints_matcher)),
metadata_matcher_(std::move(metadata_matcher)) {}
~EndpointResultMatcher() override = default;
EndpointResultMatcher(const EndpointResultMatcher&) = default;
EndpointResultMatcher& operator=(const EndpointResultMatcher&) = default;
EndpointResultMatcher(EndpointResultMatcher&&) = default;
EndpointResultMatcher& operator=(EndpointResultMatcher&&) = default;
bool MatchAndExplain(
const HostResolverEndpointResult& endpoint,
testing::MatchResultListener* result_listener) const override {
return ExplainMatchResult(
testing::Field("ip_endpoints",
&HostResolverEndpointResult::ip_endpoints,
ip_endpoints_matcher_),
endpoint, result_listener) &&
ExplainMatchResult(
testing::Field("metadata", &HostResolverEndpointResult::metadata,
metadata_matcher_),
endpoint, result_listener);
}
void DescribeTo(std::ostream* os) const override {
*os << "matches ";
Describe(*os);
}
void DescribeNegationTo(std::ostream* os) const override {
*os << "does not match ";
Describe(*os);
}
private:
void Describe(std::ostream& os) const {
os << "HostResolverEndpointResult {\nip_endpoints: "
<< testing::PrintToString(ip_endpoints_matcher_)
<< "\nmetadata: " << testing::PrintToString(metadata_matcher_) << "\n}";
}
testing::Matcher<std::vector<IPEndPoint>> ip_endpoints_matcher_;
testing::Matcher<const ConnectionEndpointMetadata&> metadata_matcher_;
};
class ServiceEndpointMatcher
: public testing::MatcherInterface<const ServiceEndpoint&> {
public:
ServiceEndpointMatcher(
testing::Matcher<std::vector<IPEndPoint>> ipv4_endpoints_matcher,
testing::Matcher<std::vector<IPEndPoint>> ipv6_endpoints_matcher,
testing::Matcher<const ConnectionEndpointMetadata&> metadata_matcher)
: ipv4_endpoints_matcher_(std::move(ipv4_endpoints_matcher)),
ipv6_endpoints_matcher_(std::move(ipv6_endpoints_matcher)),
metadata_matcher_(std::move(metadata_matcher)) {}
~ServiceEndpointMatcher() override = default;
ServiceEndpointMatcher(const ServiceEndpointMatcher&) = default;
ServiceEndpointMatcher& operator=(const ServiceEndpointMatcher&) = default;
ServiceEndpointMatcher(ServiceEndpointMatcher&&) = default;
ServiceEndpointMatcher& operator=(ServiceEndpointMatcher&&) = default;
bool MatchAndExplain(
const ServiceEndpoint& endpoint,
testing::MatchResultListener* result_listener) const override {
return ExplainMatchResult(testing::Field("ipv4_endpoints",
&ServiceEndpoint::ipv4_endpoints,
ipv4_endpoints_matcher_),
endpoint, result_listener) &&
ExplainMatchResult(testing::Field("ipv6_endpoints",
&ServiceEndpoint::ipv6_endpoints,
ipv6_endpoints_matcher_),
endpoint, result_listener) &&
ExplainMatchResult(
testing::Field("metadata", &ServiceEndpoint::metadata,
metadata_matcher_),
endpoint, result_listener);
}
void DescribeTo(std::ostream* os) const override {
*os << "matches ";
Describe(*os);
}
void DescribeNegationTo(std::ostream* os) const override {
*os << "does not match ";
Describe(*os);
}
private:
void Describe(std::ostream& os) const {
os << "ServiceEndpoint {\nipv4_endpoints: "
<< testing::PrintToString(ipv4_endpoints_matcher_)
<< "\npv6_endpoints: " << testing::PrintToString(ipv6_endpoints_matcher_)
<< "\nmetadata: " << testing::PrintToString(metadata_matcher_) << "\n}";
}
testing::Matcher<std::vector<IPEndPoint>> ipv4_endpoints_matcher_;
testing::Matcher<std::vector<IPEndPoint>> ipv6_endpoints_matcher_;
testing::Matcher<const ConnectionEndpointMetadata&> metadata_matcher_;
};
} // namespace
testing::Matcher<const HostResolverEndpointResult&> ExpectEndpointResult(
testing::Matcher<std::vector<IPEndPoint>> ip_endpoints_matcher,
testing::Matcher<const ConnectionEndpointMetadata&> metadata_matcher) {
return testing::MakeMatcher(new EndpointResultMatcher(
std::move(ip_endpoints_matcher), std::move(metadata_matcher)));
}
testing::Matcher<const ServiceEndpoint&> ExpectServiceEndpoint(
testing::Matcher<std::vector<IPEndPoint>> ipv4_endpoints_matcher,
testing::Matcher<std::vector<IPEndPoint>> ipv6_endpoints_matcher,
testing::Matcher<const ConnectionEndpointMetadata&> metadata_matcher) {
return testing::MakeMatcher(new ServiceEndpointMatcher(
std::move(ipv4_endpoints_matcher), std::move(ipv6_endpoints_matcher),
std::move(metadata_matcher)));
}
std::ostream& operator<<(std::ostream& os,
const HostResolverEndpointResult& endpoint_result) {
return os << "HostResolverEndpointResult {\nip_endpoints: "
<< testing::PrintToString(endpoint_result.ip_endpoints)
<< "\nmetadata: "
<< testing::PrintToString(endpoint_result.metadata) << "\n}";
}
std::ostream& operator<<(std::ostream& os, const ServiceEndpoint& endpoint) {
return os << "ServiceEndpoint {\nipv4_endpoints: "
<< testing::PrintToString(endpoint.ipv4_endpoints)
<< "\nipv6_endpoints: "
<< testing::PrintToString(endpoint.ipv6_endpoints)
<< "\nmetadata: " << testing::PrintToString(endpoint.metadata)
<< "\n}";
}
} // namespace net
|