|
270 | 270 |
|
271 | 271 | #include "gmock/internal/gmock-internal-utils.h"
|
272 | 272 | #include "gmock/internal/gmock-port.h"
|
| 273 | +#include "gmock/internal/gmock-pp.h" |
273 | 274 | #include "gtest/gtest.h"
|
274 | 275 |
|
275 | 276 | // MSVC warning C5046 is new as of VS2017 version 15.8.
|
@@ -4813,29 +4814,154 @@ PolymorphicMatcher<internal::variant_matcher::VariantMatcher<T> > VariantWith(
|
4813 | 4814 | ::testing::internal::MakePredicateFormatterFromMatcher(matcher), value)
|
4814 | 4815 |
|
4815 | 4816 | // MATCHER* macroses itself are listed below.
|
4816 |
| -#define MATCHER(name, description) GMOCK_INTERNAL_MATCHER(name, description) |
| 4817 | +#define MATCHER(name, description) \ |
| 4818 | + class name##Matcher \ |
| 4819 | + : public ::testing::internal::MatcherBaseImpl<name##Matcher> { \ |
| 4820 | + public: \ |
| 4821 | + template <typename arg_type> \ |
| 4822 | + class gmock_Impl : public ::testing::MatcherInterface<const arg_type&> { \ |
| 4823 | + public: \ |
| 4824 | + gmock_Impl() {} \ |
| 4825 | + bool MatchAndExplain( \ |
| 4826 | + const arg_type& arg, \ |
| 4827 | + ::testing::MatchResultListener* result_listener) const override; \ |
| 4828 | + void DescribeTo(::std::ostream* gmock_os) const override { \ |
| 4829 | + *gmock_os << FormatDescription(false); \ |
| 4830 | + } \ |
| 4831 | + void DescribeNegationTo(::std::ostream* gmock_os) const override { \ |
| 4832 | + *gmock_os << FormatDescription(true); \ |
| 4833 | + } \ |
| 4834 | + \ |
| 4835 | + private: \ |
| 4836 | + ::std::string FormatDescription(bool negation) const { \ |
| 4837 | + ::std::string gmock_description = (description); \ |
| 4838 | + if (!gmock_description.empty()) { \ |
| 4839 | + return gmock_description; \ |
| 4840 | + } \ |
| 4841 | + return ::testing::internal::FormatMatcherDescription(negation, #name, \ |
| 4842 | + {}); \ |
| 4843 | + } \ |
| 4844 | + }; \ |
| 4845 | + }; \ |
| 4846 | + GTEST_ATTRIBUTE_UNUSED_ inline name##Matcher name() { return {}; } \ |
| 4847 | + template <typename arg_type> \ |
| 4848 | + bool name##Matcher::gmock_Impl<arg_type>::MatchAndExplain( \ |
| 4849 | + const arg_type& arg, \ |
| 4850 | + ::testing::MatchResultListener* result_listener GTEST_ATTRIBUTE_UNUSED_) \ |
| 4851 | + const |
| 4852 | + |
4817 | 4853 | #define MATCHER_P(name, p0, description) \
|
4818 |
| - GMOCK_INTERNAL_MATCHER_P(name, description, p0) |
| 4854 | + GMOCK_INTERNAL_MATCHER(name, name##MatcherP, description, (p0)) |
4819 | 4855 | #define MATCHER_P2(name, p0, p1, description) \
|
4820 |
| - GMOCK_INTERNAL_MATCHER_P2(name, description, p0, p1) |
| 4856 | + GMOCK_INTERNAL_MATCHER(name, name##MatcherP2, description, (p0, p1)) |
4821 | 4857 | #define MATCHER_P3(name, p0, p1, p2, description) \
|
4822 |
| - GMOCK_INTERNAL_MATCHER_P3(name, description, p0, p1, p2) |
| 4858 | + GMOCK_INTERNAL_MATCHER(name, name##MatcherP3, description, (p0, p1, p2)) |
4823 | 4859 | #define MATCHER_P4(name, p0, p1, p2, p3, description) \
|
4824 |
| - GMOCK_INTERNAL_MATCHER_P4(name, description, p0, p1, p2, p3) |
4825 |
| -#define MATCHER_P5(name, p0, p1, p2, p3, p4, description) \ |
4826 |
| - GMOCK_INTERNAL_MATCHER_P5(name, description, p0, p1, p2, p3, p4) |
| 4860 | + GMOCK_INTERNAL_MATCHER(name, name##MatcherP4, description, (p0, p1, p2, p3)) |
| 4861 | +#define MATCHER_P5(name, p0, p1, p2, p3, p4, description) \ |
| 4862 | + GMOCK_INTERNAL_MATCHER(name, name##MatcherP5, description, \ |
| 4863 | + (p0, p1, p2, p3, p4)) |
4827 | 4864 | #define MATCHER_P6(name, p0, p1, p2, p3, p4, p5, description) \
|
4828 |
| - GMOCK_INTERNAL_MATCHER_P6(name, description, p0, p1, p2, p3, p4, p5) |
| 4865 | + GMOCK_INTERNAL_MATCHER(name, name##MatcherP6, description, \ |
| 4866 | + (p0, p1, p2, p3, p4, p5)) |
4829 | 4867 | #define MATCHER_P7(name, p0, p1, p2, p3, p4, p5, p6, description) \
|
4830 |
| - GMOCK_INTERNAL_MATCHER_P7(name, description, p0, p1, p2, p3, p4, p5, p6) |
| 4868 | + GMOCK_INTERNAL_MATCHER(name, name##MatcherP7, description, \ |
| 4869 | + (p0, p1, p2, p3, p4, p5, p6)) |
4831 | 4870 | #define MATCHER_P8(name, p0, p1, p2, p3, p4, p5, p6, p7, description) \
|
4832 |
| - GMOCK_INTERNAL_MATCHER_P8(name, description, p0, p1, p2, p3, p4, p5, p6, p7) |
4833 |
| -#define MATCHER_P9(name, p0, p1, p2, p3, p4, p5, p6, p7, p8, description) \ |
4834 |
| - GMOCK_INTERNAL_MATCHER_P9(name, description, p0, p1, p2, p3, p4, p5, p6, p7, \ |
4835 |
| - p8) |
| 4871 | + GMOCK_INTERNAL_MATCHER(name, name##MatcherP8, description, \ |
| 4872 | + (p0, p1, p2, p3, p4, p5, p6, p7)) |
| 4873 | +#define MATCHER_P9(name, p0, p1, p2, p3, p4, p5, p6, p7, p8, description) \ |
| 4874 | + GMOCK_INTERNAL_MATCHER(name, name##MatcherP9, description, \ |
| 4875 | + (p0, p1, p2, p3, p4, p5, p6, p7, p8)) |
4836 | 4876 | #define MATCHER_P10(name, p0, p1, p2, p3, p4, p5, p6, p7, p8, p9, description) \
|
4837 |
| - GMOCK_INTERNAL_MATCHER_P10(name, description, p0, p1, p2, p3, p4, p5, p6, \ |
4838 |
| - p7, p8, p9) |
| 4877 | + GMOCK_INTERNAL_MATCHER(name, name##MatcherP10, description, \ |
| 4878 | + (p0, p1, p2, p3, p4, p5, p6, p7, p8, p9)) |
| 4879 | + |
| 4880 | +#define GMOCK_INTERNAL_MATCHER(name, full_name, description, args) \ |
| 4881 | + template <GMOCK_INTERNAL_MATCHER_TEMPLATE_PARAMS(args)> \ |
| 4882 | + class full_name : public ::testing::internal::MatcherBaseImpl< \ |
| 4883 | + full_name<GMOCK_INTERNAL_MATCHER_TYPE_PARAMS(args)>> { \ |
| 4884 | + public: \ |
| 4885 | + using full_name::MatcherBaseImpl::MatcherBaseImpl; \ |
| 4886 | + template <typename arg_type> \ |
| 4887 | + class gmock_Impl : public ::testing::MatcherInterface<const arg_type&> { \ |
| 4888 | + public: \ |
| 4889 | + explicit gmock_Impl(GMOCK_INTERNAL_MATCHER_FUNCTION_ARGS(args)) \ |
| 4890 | + : GMOCK_INTERNAL_MATCHER_FORWARD_ARGS(args) {} \ |
| 4891 | + bool MatchAndExplain( \ |
| 4892 | + const arg_type& arg, \ |
| 4893 | + ::testing::MatchResultListener* result_listener) const override; \ |
| 4894 | + void DescribeTo(::std::ostream* gmock_os) const override { \ |
| 4895 | + *gmock_os << FormatDescription(false); \ |
| 4896 | + } \ |
| 4897 | + void DescribeNegationTo(::std::ostream* gmock_os) const override { \ |
| 4898 | + *gmock_os << FormatDescription(true); \ |
| 4899 | + } \ |
| 4900 | + GMOCK_INTERNAL_MATCHER_MEMBERS(args) \ |
| 4901 | + \ |
| 4902 | + private: \ |
| 4903 | + ::std::string FormatDescription(bool negation) const { \ |
| 4904 | + ::std::string gmock_description = (description); \ |
| 4905 | + if (!gmock_description.empty()) { \ |
| 4906 | + return gmock_description; \ |
| 4907 | + } \ |
| 4908 | + return ::testing::internal::FormatMatcherDescription( \ |
| 4909 | + negation, #name, \ |
| 4910 | + ::testing::internal::UniversalTersePrintTupleFieldsToStrings( \ |
| 4911 | + ::std::tuple<GMOCK_INTERNAL_MATCHER_TYPE_PARAMS(args)>( \ |
| 4912 | + GMOCK_INTERNAL_MATCHER_MEMBERS_USAGE(args)))); \ |
| 4913 | + } \ |
| 4914 | + }; \ |
| 4915 | + }; \ |
| 4916 | + template <GMOCK_INTERNAL_MATCHER_TEMPLATE_PARAMS(args)> \ |
| 4917 | + inline full_name<GMOCK_INTERNAL_MATCHER_TYPE_PARAMS(args)> name( \ |
| 4918 | + GMOCK_INTERNAL_MATCHER_FUNCTION_ARGS(args)) { \ |
| 4919 | + return full_name<GMOCK_INTERNAL_MATCHER_TYPE_PARAMS(args)>( \ |
| 4920 | + GMOCK_INTERNAL_MATCHER_ARGS_USAGE(args)); \ |
| 4921 | + } \ |
| 4922 | + template <GMOCK_INTERNAL_MATCHER_TEMPLATE_PARAMS(args)> \ |
| 4923 | + template <typename arg_type> \ |
| 4924 | + bool full_name<GMOCK_INTERNAL_MATCHER_TYPE_PARAMS(args)>::gmock_Impl< \ |
| 4925 | + arg_type>::MatchAndExplain(const arg_type& arg, \ |
| 4926 | + ::testing::MatchResultListener* \ |
| 4927 | + result_listener GTEST_ATTRIBUTE_UNUSED_) \ |
| 4928 | + const |
| 4929 | + |
| 4930 | +#define GMOCK_INTERNAL_MATCHER_TEMPLATE_PARAMS(args) \ |
| 4931 | + GMOCK_PP_TAIL( \ |
| 4932 | + GMOCK_PP_FOR_EACH(GMOCK_INTERNAL_MATCHER_TEMPLATE_PARAM, , args)) |
| 4933 | +#define GMOCK_INTERNAL_MATCHER_TEMPLATE_PARAM(i_unused, data_unused, arg) \ |
| 4934 | + , typename arg##_type |
| 4935 | + |
| 4936 | +#define GMOCK_INTERNAL_MATCHER_TYPE_PARAMS(args) \ |
| 4937 | + GMOCK_PP_TAIL(GMOCK_PP_FOR_EACH(GMOCK_INTERNAL_MATCHER_TYPE_PARAM, , args)) |
| 4938 | +#define GMOCK_INTERNAL_MATCHER_TYPE_PARAM(i_unused, data_unused, arg) \ |
| 4939 | + , arg##_type |
| 4940 | + |
| 4941 | +#define GMOCK_INTERNAL_MATCHER_FUNCTION_ARGS(args) \ |
| 4942 | + GMOCK_PP_TAIL(dummy_first GMOCK_PP_FOR_EACH( \ |
| 4943 | + GMOCK_INTERNAL_MATCHER_FUNCTION_ARG, , args)) |
| 4944 | +#define GMOCK_INTERNAL_MATCHER_FUNCTION_ARG(i, data_unused, arg) \ |
| 4945 | + , arg##_type gmock_p##i |
| 4946 | + |
| 4947 | +#define GMOCK_INTERNAL_MATCHER_FORWARD_ARGS(args) \ |
| 4948 | + GMOCK_PP_TAIL(GMOCK_PP_FOR_EACH(GMOCK_INTERNAL_MATCHER_FORWARD_ARG, , args)) |
| 4949 | +#define GMOCK_INTERNAL_MATCHER_FORWARD_ARG(i, data_unused, arg) \ |
| 4950 | + , arg(::std::forward<arg##_type>(gmock_p##i)) |
| 4951 | + |
| 4952 | +#define GMOCK_INTERNAL_MATCHER_MEMBERS(args) \ |
| 4953 | + GMOCK_PP_FOR_EACH(GMOCK_INTERNAL_MATCHER_MEMBER, , args) |
| 4954 | +#define GMOCK_INTERNAL_MATCHER_MEMBER(i_unused, data_unused, arg) \ |
| 4955 | + const arg##_type arg; |
| 4956 | + |
| 4957 | +#define GMOCK_INTERNAL_MATCHER_MEMBERS_USAGE(args) \ |
| 4958 | + GMOCK_PP_TAIL(GMOCK_PP_FOR_EACH(GMOCK_INTERNAL_MATCHER_MEMBER_USAGE, , args)) |
| 4959 | +#define GMOCK_INTERNAL_MATCHER_MEMBER_USAGE(i_unused, data_unused, arg) , arg |
| 4960 | + |
| 4961 | +#define GMOCK_INTERNAL_MATCHER_ARGS_USAGE(args) \ |
| 4962 | + GMOCK_PP_TAIL(GMOCK_PP_FOR_EACH(GMOCK_INTERNAL_MATCHER_ARG_USAGE, , args)) |
| 4963 | +#define GMOCK_INTERNAL_MATCHER_ARG_USAGE(i, data_unused, arg_unused) \ |
| 4964 | + , gmock_p##i |
4839 | 4965 |
|
4840 | 4966 | } // namespace testing
|
4841 | 4967 |
|
|
0 commit comments