Refactor to create a GpuTaskAssignments object
[gromacs.git] / src / testutils / testmatchers.cpp
blob04e41163115db154f76bf29033e23d93157670a1
1 /*
2 * This file is part of the GROMACS molecular simulation package.
4 * Copyright (c) 2018, by the GROMACS development team, led by
5 * Mark Abraham, David van der Spoel, Berk Hess, and Erik Lindahl,
6 * and including many others, as listed in the AUTHORS file in the
7 * top-level source directory and at http://www.gromacs.org.
9 * GROMACS is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Lesser General Public License
11 * as published by the Free Software Foundation; either version 2.1
12 * of the License, or (at your option) any later version.
14 * GROMACS is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * Lesser General Public License for more details.
19 * You should have received a copy of the GNU Lesser General Public
20 * License along with GROMACS; if not, see
21 * http://www.gnu.org/licenses, or write to the Free Software Foundation,
22 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
24 * If you want to redistribute modifications to GROMACS, please
25 * consider that scientific software is very special. Version
26 * control is crucial - bugs must be traceable. We will be happy to
27 * consider code for inclusion in the official distribution, but
28 * derived work must not be called official GROMACS. Details are found
29 * in the README & COPYING files - if they are missing, get the
30 * official version at http://www.gromacs.org.
32 * To help us fund GROMACS development, we humbly ask that you cite
33 * the research papers on the package. Check out http://www.gromacs.org.
36 /*! \internal \file
37 * \brief Implements floating-point matchers from testmatchers.h for
38 * use with Google Mock.
40 * \author Mark Abraham <mark.j.abraham@gmail.com>
41 * \ingroup module_testutils
43 #include "gmxpre.h"
45 #include "testmatchers.h"
47 #include <memory>
49 #include <gmock/gmock.h>
51 #include "testutils/testasserts.h"
53 namespace gmx
55 namespace test
58 /*! \brief Implementation class for RealEq matcher.
60 * See RealEq().
62 * The implementation is templated so that we can support all of real,
63 * float and double in the same build without duplication.
65 template <typename FloatType>
66 class FloatTypeMatcher : public testing::MatcherInterface < std::tuple < FloatType, FloatType>>
68 public:
69 //! Constructor
70 FloatTypeMatcher(const FloatingPointTolerance &tolerance)
71 : tolerance_(tolerance) {}
72 //! Compare the two elements of \c arg, return whether they are equal, and comment on \c listener when they are not.
73 bool MatchAndExplain(std::tuple<FloatType, FloatType> arg,
74 testing::MatchResultListener* listener) const override
76 const FloatType &value1 = std::get<0>(arg);
77 const FloatType &value2 = std::get<1>(arg);
78 FloatingPointDifference diff(value1, value2);
79 if (tolerance_.isWithin(diff))
81 return true;
83 *listener->stream()
84 << " Actual value: " << value2 << std::endl
85 << "Expected value: " << value1 << std::endl
86 << " Difference: " << diff.toString() << std::endl
87 << " Tolerance: " << tolerance_.toString(diff);
88 return false;
90 //! Describe to a human what matching means.
91 void DescribeTo(::std::ostream* os) const override
93 *os << "matches within tolerance";
95 //! Describe to a human what failing to match means.
96 void DescribeNegationTo(::std::ostream* os) const override
98 *os << "does not match within tolerance";
100 private:
101 //! Tolerance used in matching
102 FloatingPointTolerance tolerance_;
105 testing::Matcher < std::tuple < float, float>>
106 FloatEq(const FloatingPointTolerance &tolerance)
108 return testing::MakeMatcher(new FloatTypeMatcher<float>(tolerance));
111 testing::Matcher < std::tuple < double, double>>
112 DoubleEq(const FloatingPointTolerance &tolerance)
114 return testing::MakeMatcher(new FloatTypeMatcher<double>(tolerance));
117 testing::Matcher < std::tuple < real, real>>
118 RealEq(const FloatingPointTolerance &tolerance)
120 return testing::MakeMatcher(new FloatTypeMatcher<real>(tolerance));
123 /*! \brief Implementation class for RvecEq matcher
125 * See RvecEq().
127 template <typename FloatType>
128 class RVecMatcher :
129 public testing::MatcherInterface < std::tuple < BasicVector<FloatType>, BasicVector<FloatType>>>
131 public:
132 //! Convenience type
133 using VectorType = BasicVector<FloatType>;
134 //! Constructor
135 RVecMatcher(const FloatingPointTolerance &tolerance)
136 : tolerance_(tolerance) {}
137 //! Compare the two elements of \c arg, return whether they are equal, and comment on \c listener when they are not.
138 bool MatchAndExplain(std::tuple<VectorType, VectorType> arg,
139 testing::MatchResultListener* listener) const override
141 const VectorType &lhs = std::get<0>(arg);
142 const VectorType &rhs = std::get<1>(arg);
143 FloatTypeMatcher<FloatType> floatTypeMatcher(tolerance_);
144 bool matches = true;
145 for (int d = 0; d < DIM; ++d)
147 auto floatTuple = std::make_tuple<FloatType, FloatType>(lhs[d], rhs[d]);
148 matches = matches && floatTypeMatcher.MatchAndExplain(floatTuple, listener);
150 return matches;
152 //! Describe to a human what matching means.
153 void DescribeTo(::std::ostream* os) const override
155 *os << "matches all elements within tolerance";
157 //! Describe to a human what failing to match means.
158 void DescribeNegationTo(::std::ostream* os) const override
160 *os << "does not match all elements within tolerance";
162 private:
163 //! Tolerance used in matching
164 FloatingPointTolerance tolerance_;
167 // Currently there's no need for explicit float or double flavours of
168 // RVec comparison, but those would be simple to add later.
169 testing::Matcher < std::tuple < RVec, RVec>>
170 RVecEq(const FloatingPointTolerance &tolerance)
172 return testing::MakeMatcher(new RVecMatcher<real>(tolerance));
175 } // namespace test
176 } // namespace gmx