123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177 |
- #pragma once
- #include <igl/read_triangle_mesh.h>
- #include <igl/find.h>
- #include <igl/readDMAT.h>
- #include <Eigen/Core>
- #include <gtest/gtest.h>
- #include <cctype>
- #include <string>
- #include <functional>
- #include <algorithm>
- #include <tuple>
- namespace test_common
- {
- // Input:
- // s arbitrary string
- // Returns s with all non-alphanumeric characters replaced with underscores '_'
- inline std::string safe_test_name(std::string s)
- {
- std::for_each(s.begin(),s.end(),[](char &c){if(!std::isalnum(c)) c='_';});
- return s;
- };
- inline std::string string_test_name(const ::testing::TestParamInfo<std::string>& info)
- {
- return test_common::safe_test_name(info.param);
- };
- inline std::vector<std::string> closed_genus_0_meshes()
- {
- return
- {
- "cube.obj",
- "decimated-knight.obj",
- "boolean_minus_test_cube.obj",
- "boolean_minus_test_green.obj",
- };
- };
- inline std::vector<std::string> closed_manifold_meshes()
- {
- std::vector<std::string> meshes = closed_genus_0_meshes();
- meshes.insert(meshes.end(),
- {
- "TinyTorus.obj",
- });
- return meshes;
- };
- inline std::vector<std::string> manifold_meshes()
- {
- std::vector<std::string> meshes = closed_manifold_meshes();
- meshes.insert(meshes.end(),
- {
- "bunny.off",
- "elephant.off",
- "hemisphere.obj",
- });
- return meshes;
- };
- inline std::vector<std::string> tet_meshes()
- {
- return
- {
- "decimated-knight.mesh"
- };
- };
- inline std::vector<std::string> all_meshes()
- {
- std::vector<std::string> meshes = manifold_meshes();
- meshes.insert(meshes.end(),
- {
- "truck.obj",
- });
- return meshes;
- };
- inline std::string data_path(std::string s)
- {
- return std::string(LIBIGL_DATA_DIR) + "/" + s;
- };
- // TODO: this seems like a pointless indirection. Should just find and
- // replace test_common::load_mesh(X,...) with
- // igl::read_triangle_mesh(test_common::data_path(X),...)
- template<typename DerivedV, typename DerivedF>
- void load_mesh(
- const std::string& filename,
- Eigen::PlainObjectBase<DerivedV>& V,
- Eigen::PlainObjectBase<DerivedF>& F)
- {
- igl::read_triangle_mesh(data_path(filename), V, F);
- }
- // TODO: this seems like a pointless indirection. Should just find and
- // replace test_common::load_matrix(X,...) with
- // igl::readDMAT(test_common::data_path(X),...)
- template<typename Derived>
- void load_matrix(
- const std::string& filename,
- Eigen::PlainObjectBase<Derived>& M)
- {
- igl::readDMAT(data_path(filename), M);
- }
- template <typename DerivedA, typename DerivedB>
- void assert_eq(
- const Eigen::MatrixBase<DerivedA> & A,
- const Eigen::MatrixBase<DerivedB> & B)
- {
- // Sizes should match
- ASSERT_EQ(A.rows(),B.rows());
- ASSERT_EQ(A.cols(),B.cols());
- for(int i = 0;i<A.rows();i++)
- {
- for(int j = 0;j<A.cols();j++)
- {
- // Create an ijv tuple to trick GoogleTest into printing (i,j) so we
- // know where the disagreement is.
- std::tuple<int,int,typename DerivedA::Scalar> Aijv {i,j,A(i,j)};
- std::tuple<int,int,typename DerivedB::Scalar> Bijv {i,j,B(i,j)};
- ASSERT_EQ(Aijv,Bijv);
- }
- }
- }
- template <typename DerivedA, typename DerivedB>
- void assert_eq(
- const Eigen::SparseMatrix<DerivedA> & A,
- const Eigen::SparseMatrix<DerivedB> & B)
- {
- // Sizes should match
- ASSERT_EQ(A.rows(),B.rows());
- ASSERT_EQ(A.cols(),B.cols());
- Eigen::Matrix<long int,Eigen::Dynamic, 1> AI,AJ;
- Eigen::Matrix<long int,Eigen::Dynamic, 1> BI,BJ;
- Eigen::Matrix<DerivedA,Eigen::Dynamic, 1> AV;
- Eigen::Matrix<DerivedB,Eigen::Dynamic, 1> BV;
- // Assumes A and B are in same Major Ordering
- igl::find(A,AI,AJ,AV);
- igl::find(B,BI,BJ,BV);
- // This doesn't generalized to assert_near nicely, and it makes it hard to
- // tell which entries are different:
- assert_eq(AI,BI);
- assert_eq(AJ,BJ);
- assert_eq(AV,BV);
- }
- template <typename DerivedA, typename DerivedB, typename EpsType>
- void assert_near(
- const Eigen::MatrixBase<DerivedA> & A,
- const Eigen::MatrixBase<DerivedB> & B,
- const EpsType & eps)
- {
- // Sizes should match
- ASSERT_EQ(A.rows(),B.rows());
- ASSERT_EQ(A.cols(),B.cols());
- for(int i = 0;i<A.rows();i++)
- {
- for(int j = 0;j<A.cols();j++)
- {
- // Create an ijv tuple to trick GoogleTest into printing (i,j) so we
- // know where the disagreement is.
- //
- // Equivalent to ASSERT_NEAR(Aijv,Bijv)
- {
- std::tuple<int,int,typename DerivedA::Scalar> Aijv {i,j,A(i,j)};
- std::tuple<int,int,typename DerivedB::Scalar> Bijv {i,j,B(i,j)+eps};
- ASSERT_LT(Aijv,Bijv);
- }
- {
- std::tuple<int,int,typename DerivedA::Scalar> Aijv {i,j,A(i,j)+eps};
- std::tuple<int,int,typename DerivedB::Scalar> Bijv {i,j,B(i,j)};
- ASSERT_GT(Aijv,Bijv);
- }
- }
- }
- }
- }
|