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 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301
|
/*
* Copyright (c) 2011-2021, The DART development contributors
* All rights reserved.
*
* The list of contributors can be found at:
* https://github.com/dartsim/dart/blob/master/LICENSE
*
* This file is provided under the following "BSD-style" License:
* Redistribution and use in source and binary forms, with or
* without modification, are permitted provided that the following
* conditions are met:
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following
* disclaimer in the documentation and/or other materials provided
* with the distribution.
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
* CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
* INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
* USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*/
#ifndef DART_UNITTESTS_GTESTUTILS_HPP_
#define DART_UNITTESTS_GTESTUTILS_HPP_
#include <Eigen/Dense>
#include <gtest/gtest.h>
#include "dart/math/Geometry.hpp"
#include "dart/math/MathTypes.hpp"
//==============================================================================
#define EXPECT_VECTOR_DOUBLE_EQ(vec1, vec2) \
if (!::dart::test::equals(vec1, vec2)) \
{ \
std::stringstream ss; \
ss << "Expected equality of these vectors:\n" \
<< " Expected: " << vec1.transpose() << "\n" \
<< " Actual : " << vec2.transpose() << "\n"; \
GTEST_NONFATAL_FAILURE_(ss.str().c_str()); \
} \
do \
{ \
} while (0)
// do {} while (0) is to require semicolon after the macro
//==============================================================================
#define EXPECT_MATRIX_DOUBLE_EQ(mat1, mat2) \
if (!::dart::test::equals(mat1, mat2)) \
{ \
std::stringstream ss; \
ss << "Expected equality of these matrices:\n" \
<< " Expected:\n" \
<< " " << mat1.matrix() << "\n" \
<< " Actual :\n" \
<< " " << mat2.matrix() << "\n"; \
GTEST_NONFATAL_FAILURE_(ss.str().c_str()); \
} \
do \
{ \
} while (0)
//==============================================================================
#define EXPECT_ROTATION_DOUBLE_EQ(rot1, rot2) \
if (!::dart::test::rotationEquals(rot1, rot2)) \
{ \
std::stringstream ss; \
ss << "Expected equality of these rotations:\n" \
<< " Expected:\n" \
<< " " << rot1 << "\n" \
<< " Actual :\n" \
<< " " << rot2 << "\n"; \
GTEST_NONFATAL_FAILURE_(ss.str().c_str()); \
} \
do \
{ \
} while (0)
//==============================================================================
#define EXPECT_TRANSFORM_DOUBLE_EQ(tf1, tf2) \
if (!::dart::test::equals(tf1, tf2)) \
{ \
std::stringstream ss; \
ss << "Expected equality of these transforms:\n" \
<< " Expected:\n" \
<< " " << tf1.matrix() << "\n" \
<< " Actual :\n" \
<< " " << tf2.matrix() << "\n"; \
GTEST_NONFATAL_FAILURE_(ss.str().c_str()); \
} \
do \
{ \
} while (0)
//==============================================================================
#define EXPECT_VECTOR_NEAR(vec1, vec2, abs_error) \
if (!::dart::test::equals(vec1, vec2, abs_error)) \
{ \
std::stringstream ss; \
ss << "The element-wise difference between:\n" \
<< vec1.transpose() << "\n" \
<< "and\n" \
<< vec2.transpose() << "\n" \
<< "exceeds " << abs_error << ".\n"; \
GTEST_NONFATAL_FAILURE_(ss.str().c_str()); \
} \
do \
{ \
} while (0)
//==============================================================================
#define EXPECT_MATRIX_NEAR(mat1, mat2, abs_error) \
if (!::dart::test::equals(mat1, mat2, abs_error)) \
{ \
std::stringstream ss; \
ss << "The element-wise difference between:\n" \
<< mat1.matrix() << "\n" \
<< "and\n" \
<< mat2.matrix() << "\n" \
<< "exceeds " << abs_error << ".\n"; \
GTEST_NONFATAL_FAILURE_(ss.str().c_str()); \
} \
do \
{ \
} while (0)
//==============================================================================
#define EXPECT_ROTATION_NEAR(rot1, rot2, abs_error) \
if (!::dart::test::rotationEquals(rot1, rot2, abs_error)) \
{ \
std::stringstream ss; \
ss << "The distance between:\n" \
<< rot1 << "\n" \
<< "and\n" \
<< rot2 << "\n" \
<< "exceeds " << abs_error << ".\n"; \
GTEST_NONFATAL_FAILURE_(ss.str().c_str()); \
} \
do \
{ \
} while (0)
//==============================================================================
#define EXPECT_TRANSFORM_NEAR(tf1, tf2, abs_error) \
if (!::dart::test::equals(tf1, tf2, abs_error)) \
{ \
std::stringstream ss; \
ss << "The distance between:\n" \
<< tf1.matrix() << "\n" \
<< "and\n" \
<< tf2.matrix() << "\n" \
<< "exceeds " << abs_error << ".\n"; \
GTEST_NONFATAL_FAILURE_(ss.str().c_str()); \
} \
do \
{ \
} while (0)
namespace dart {
namespace test {
namespace detail {
template <typename DerivedA, typename DerivedB, typename Enable = void>
struct EqualsImpl
{
static bool run(
const Eigen::DenseBase<DerivedA>& expected,
const Eigen::DenseBase<DerivedB>& actual,
typename DerivedA::Scalar tol)
{
// Get the matrix sizes and sanity check the call
const std::size_t n1 = expected.cols(), m1 = expected.rows();
const std::size_t n2 = actual.cols(), m2 = actual.rows();
if (m1 != m2 || n1 != n2)
return false;
// Check each index
for (std::size_t i = 0; i < m1; i++)
{
for (std::size_t j = 0; j < n1; j++)
{
if (std::isnan(expected(i, j)) ^ std::isnan(actual(i, j)))
{
return false;
}
else if (std::abs(expected(i, j)) > 1)
{
// Test relative error for values that are larger than 1
if (std::abs((expected(i, j) - actual(i, j)) / expected(i, j)) > tol)
return false;
}
else if (std::abs(expected(i, j) - actual(i, j)) > tol)
{
return false;
}
}
}
// If no problems, the two matrices are equal
return true;
}
};
// Workaround to resolve: "fpclassify': ambiguous call to overloaded function
// Reference: https://stackoverflow.com/a/61646279
#ifdef _WIN32
template <typename DerivedA, typename DerivedB>
struct EqualsImpl<
DerivedA,
DerivedB,
std::enable_if_t<std::is_integral<typename DerivedA::Scalar>::value>>
{
static bool run(
const Eigen::DenseBase<DerivedA>& expected,
const Eigen::DenseBase<DerivedB>& actual,
typename DerivedA::Scalar tol)
{
// Get the matrix sizes and sanity check the call
const std::size_t n1 = expected.cols(), m1 = expected.rows();
const std::size_t n2 = actual.cols(), m2 = actual.rows();
if (m1 != m2 || n1 != n2)
return false;
// Check each index
for (std::size_t i = 0; i < m1; i++)
{
for (std::size_t j = 0; j < n1; j++)
{
if (std::isnan(static_cast<double>(expected(i, j)))
^ std::isnan(static_cast<double>(actual(i, j))))
{
return false;
}
else if (std::abs(expected(i, j)) > 1)
{
// Test relative error for values that are larger than 1
if (std::abs((expected(i, j) - actual(i, j)) / expected(i, j)) > tol)
return false;
}
else if (std::abs(expected(i, j) - actual(i, j)) > tol)
{
return false;
}
}
}
// If no problems, the two matrices are equal
return true;
}
};
#endif
} // namespace detail
//==============================================================================
/// Returns true if the two matrices are equal within the given bound
template <typename T1, typename T2>
bool equals(
const T1& expected,
const T2& actual,
typename T1::Scalar tol = static_cast<typename T1::Scalar>(1e-5))
{
return detail::EqualsImpl<T1, T2>::run(expected, actual, tol);
}
//==============================================================================
bool rotationEquals(
const Eigen::Matrix3d& rot1, const Eigen::Matrix3d& rot2, double tol = 1e-5)
{
const Eigen::Matrix3d rotError = rot1.transpose() * rot2;
const Eigen::Vector3d error = dart::math::logMap(rotError);
return (error.norm() < tol);
}
//==============================================================================
bool equals(
const Eigen::Isometry3d& tf1,
const Eigen::Isometry3d& tf2,
double tol = 1e-5)
{
auto se3 = dart::math::logMap(tf1.inverse() * tf2);
auto norm = se3.norm();
return (norm < tol);
}
} // namespace test
} // namespace dart
#endif // DART_UNITTESTS_GTESTUTILS_HPP_
|