Skip to content

Commit e5644f5

Browse files
Abseil Teamsuertreus
Abseil Team
authored andcommitted
Googletest export
Introduce a new `Address` matcher to gmock. PiperOrigin-RevId: 346344591
1 parent 8779937 commit e5644f5

File tree

3 files changed

+92
-0
lines changed

3 files changed

+92
-0
lines changed

googlemock/docs/cheat_sheet.md

+1
Original file line numberDiff line numberDiff line change
@@ -420,6 +420,7 @@ messages, you can use:
420420
<!-- mdformat off(no multiline tables) -->
421421
| Matcher | Description |
422422
| :------------------------ | :---------------------------------------------- |
423+
| `Address(m)` | the result of `std::addressof(argument)` matches `m`. |
423424
| `Pointee(m)` | `argument` (either a smart pointer or a raw pointer) points to a value that matches matcher `m`. |
424425
| `Pointer(m)` | `argument` (either a smart pointer or a raw pointer) contains a pointer that matches `m`. `m` will match against the raw pointer regardless of the type of `argument`. |
425426
| `WhenDynamicCastTo<T>(m)` | when `argument` is passed through `dynamic_cast<T>()`, it matches matcher `m`. |

googlemock/include/gmock/gmock-matchers.h

+51
Original file line numberDiff line numberDiff line change
@@ -2833,6 +2833,49 @@ class KeyMatcher {
28332833
const M matcher_for_key_;
28342834
};
28352835

2836+
// Implements polymorphic Address(matcher_for_address).
2837+
template <typename InnerMatcher>
2838+
class AddressMatcher {
2839+
public:
2840+
explicit AddressMatcher(InnerMatcher m) : matcher_(m) {}
2841+
2842+
template <typename Type>
2843+
operator Matcher<Type>() const { // NOLINT
2844+
return Matcher<Type>(new Impl<const Type&>(matcher_));
2845+
}
2846+
2847+
private:
2848+
// The monomorphic implementation that works for a particular object type.
2849+
template <typename Type>
2850+
class Impl : public MatcherInterface<Type> {
2851+
public:
2852+
using Address = const GTEST_REMOVE_REFERENCE_AND_CONST_(Type) *;
2853+
explicit Impl(const InnerMatcher& matcher)
2854+
: matcher_(MatcherCast<Address>(matcher)) {}
2855+
2856+
void DescribeTo(::std::ostream* os) const override {
2857+
*os << "has address that ";
2858+
matcher_.DescribeTo(os);
2859+
}
2860+
2861+
void DescribeNegationTo(::std::ostream* os) const override {
2862+
*os << "does not have address that ";
2863+
matcher_.DescribeTo(os);
2864+
}
2865+
2866+
bool MatchAndExplain(Type object,
2867+
MatchResultListener* listener) const override {
2868+
*listener << "which has address ";
2869+
Address address = std::addressof(object);
2870+
return MatchPrintAndExplain(address, matcher_, listener);
2871+
}
2872+
2873+
private:
2874+
const Matcher<Address> matcher_;
2875+
};
2876+
const InnerMatcher matcher_;
2877+
};
2878+
28362879
// Implements Pair(first_matcher, second_matcher) for the given argument pair
28372880
// type with its two matchers. See Pair() function below.
28382881
template <typename PairType>
@@ -4787,6 +4830,14 @@ inline internal::PointerMatcher<InnerMatcher> Pointer(
47874830
const InnerMatcher& inner_matcher) {
47884831
return internal::PointerMatcher<InnerMatcher>(inner_matcher);
47894832
}
4833+
4834+
// Creates a matcher that matches an object that has an address that matches
4835+
// inner_matcher.
4836+
template <typename InnerMatcher>
4837+
inline internal::AddressMatcher<InnerMatcher> Address(
4838+
const InnerMatcher& inner_matcher) {
4839+
return internal::AddressMatcher<InnerMatcher>(inner_matcher);
4840+
}
47904841
} // namespace no_adl
47914842

47924843
// Returns a predicate that is satisfied by anything that matches the

googlemock/test/gmock-matchers_test.cc

+40
Original file line numberDiff line numberDiff line change
@@ -3787,6 +3787,46 @@ TEST(PointerTest, SmartPointerToConst) {
37873787
EXPECT_FALSE(m.Matches(p));
37883788
}
37893789

3790+
TEST(AddressTest, NonConst) {
3791+
int n = 1;
3792+
const Matcher<int> m = Address(Eq(&n));
3793+
3794+
EXPECT_TRUE(m.Matches(n));
3795+
3796+
int other = 5;
3797+
3798+
EXPECT_FALSE(m.Matches(other));
3799+
3800+
int& n_ref = n;
3801+
3802+
EXPECT_TRUE(m.Matches(n_ref));
3803+
}
3804+
3805+
TEST(AddressTest, Const) {
3806+
const int n = 1;
3807+
const Matcher<int> m = Address(Eq(&n));
3808+
3809+
EXPECT_TRUE(m.Matches(n));
3810+
3811+
int other = 5;
3812+
3813+
EXPECT_FALSE(m.Matches(other));
3814+
}
3815+
3816+
TEST(AddressTest, MatcherDoesntCopy) {
3817+
std::unique_ptr<int> n(new int(1));
3818+
const Matcher<std::unique_ptr<int>> m = Address(Eq(&n));
3819+
3820+
EXPECT_TRUE(m.Matches(n));
3821+
}
3822+
3823+
TEST(AddressTest, Describe) {
3824+
Matcher<int> matcher = Address(_);
3825+
EXPECT_EQ("has address that is anything", Describe(matcher));
3826+
EXPECT_EQ("does not have address that is anything",
3827+
DescribeNegation(matcher));
3828+
}
3829+
37903830
MATCHER_P(FieldIIs, inner_matcher, "") {
37913831
return ExplainMatchResult(inner_matcher, arg.i, result_listener);
37923832
}

0 commit comments

Comments
 (0)