mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-25 15:44:12 -06:00
Port sla tests to catch2
This commit is contained in:
parent
5ca962a1da
commit
1df1ef481d
3 changed files with 82 additions and 85 deletions
|
@ -12,7 +12,7 @@
|
||||||
|
|
||||||
namespace ClipperLib { struct Polygon; }
|
namespace ClipperLib { struct Polygon; }
|
||||||
|
|
||||||
namespace Slic3r {
|
namespace Slic3r {
|
||||||
namespace sla {
|
namespace sla {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -27,7 +27,7 @@ class Raster {
|
||||||
class Impl;
|
class Impl;
|
||||||
std::unique_ptr<Impl> m_impl;
|
std::unique_ptr<Impl> m_impl;
|
||||||
public:
|
public:
|
||||||
|
|
||||||
// Raw byte buffer paired with its size. Suitable for compressed image data.
|
// Raw byte buffer paired with its size. Suitable for compressed image data.
|
||||||
class RawData
|
class RawData
|
||||||
{
|
{
|
||||||
|
@ -38,16 +38,16 @@ public:
|
||||||
RawData() = default;
|
RawData() = default;
|
||||||
RawData(std::vector<std::uint8_t>&& data): m_buffer(std::move(data)) {}
|
RawData(std::vector<std::uint8_t>&& data): m_buffer(std::move(data)) {}
|
||||||
virtual ~RawData();
|
virtual ~RawData();
|
||||||
|
|
||||||
RawData(const RawData &) = delete;
|
RawData(const RawData &) = delete;
|
||||||
RawData &operator=(const RawData &) = delete;
|
RawData &operator=(const RawData &) = delete;
|
||||||
|
|
||||||
RawData(RawData &&) = default;
|
RawData(RawData &&) = default;
|
||||||
RawData &operator=(RawData &&) = default;
|
RawData &operator=(RawData &&) = default;
|
||||||
|
|
||||||
size_t size() const { return m_buffer.size(); }
|
size_t size() const { return m_buffer.size(); }
|
||||||
const uint8_t * data() const { return m_buffer.data(); }
|
const uint8_t * data() const { return m_buffer.data(); }
|
||||||
|
|
||||||
virtual RawData& serialize(const Raster &/*raster*/) { return *this; }
|
virtual RawData& serialize(const Raster &/*raster*/) { return *this; }
|
||||||
virtual std::string get_file_extension() const = 0;
|
virtual std::string get_file_extension() const = 0;
|
||||||
};
|
};
|
||||||
|
@ -71,22 +71,22 @@ public:
|
||||||
inline PixelDim(double px_width_mm = 0.0, double px_height_mm = 0.0):
|
inline PixelDim(double px_width_mm = 0.0, double px_height_mm = 0.0):
|
||||||
w_mm(px_width_mm), h_mm(px_height_mm) {}
|
w_mm(px_width_mm), h_mm(px_height_mm) {}
|
||||||
};
|
};
|
||||||
|
|
||||||
enum Orientation { roLandscape, roPortrait };
|
enum Orientation { roLandscape, roPortrait };
|
||||||
|
|
||||||
using TMirroring = std::array<bool, 2>;
|
using TMirroring = std::array<bool, 2>;
|
||||||
static const TMirroring NoMirror;
|
static const TMirroring NoMirror;
|
||||||
static const TMirroring MirrorX;
|
static const TMirroring MirrorX;
|
||||||
static const TMirroring MirrorY;
|
static const TMirroring MirrorY;
|
||||||
static const TMirroring MirrorXY;
|
static const TMirroring MirrorXY;
|
||||||
|
|
||||||
struct Trafo {
|
struct Trafo {
|
||||||
bool mirror_x = false, mirror_y = false, flipXY = false;
|
bool mirror_x = false, mirror_y = false, flipXY = false;
|
||||||
coord_t origin_x = 0, origin_y = .0;
|
coord_t origin_x = 0, origin_y = 0;
|
||||||
|
|
||||||
// If gamma is zero, thresholding will be performed which disables AA.
|
// If gamma is zero, thresholding will be performed which disables AA.
|
||||||
double gamma = 1.;
|
double gamma = 1.;
|
||||||
|
|
||||||
// Portrait orientation will make sure the drawed polygons are rotated
|
// Portrait orientation will make sure the drawed polygons are rotated
|
||||||
// by 90 degrees.
|
// by 90 degrees.
|
||||||
Trafo(Orientation o = roLandscape, const TMirroring &mirror = NoMirror)
|
Trafo(Orientation o = roLandscape, const TMirroring &mirror = NoMirror)
|
||||||
|
@ -96,12 +96,12 @@ public:
|
||||||
, flipXY(o == roPortrait)
|
, flipXY(o == roPortrait)
|
||||||
{}
|
{}
|
||||||
};
|
};
|
||||||
|
|
||||||
Raster();
|
Raster();
|
||||||
Raster(const Resolution &r,
|
Raster(const Resolution &r,
|
||||||
const PixelDim & pd,
|
const PixelDim & pd,
|
||||||
const Trafo & tr = {});
|
const Trafo & tr = {});
|
||||||
|
|
||||||
Raster(const Raster& cpy) = delete;
|
Raster(const Raster& cpy) = delete;
|
||||||
Raster& operator=(const Raster& cpy) = delete;
|
Raster& operator=(const Raster& cpy) = delete;
|
||||||
Raster(Raster&& m);
|
Raster(Raster&& m);
|
||||||
|
@ -109,10 +109,10 @@ public:
|
||||||
~Raster();
|
~Raster();
|
||||||
|
|
||||||
/// Reallocated everything for the given resolution and pixel dimension.
|
/// Reallocated everything for the given resolution and pixel dimension.
|
||||||
void reset(const Resolution& r,
|
void reset(const Resolution& r,
|
||||||
const PixelDim& pd,
|
const PixelDim& pd,
|
||||||
const Trafo &tr = {});
|
const Trafo &tr = {});
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Release the allocated resources. Drawing in this state ends in
|
* Release the allocated resources. Drawing in this state ends in
|
||||||
* unspecified behavior.
|
* unspecified behavior.
|
||||||
|
@ -129,11 +129,11 @@ public:
|
||||||
/// Draw a polygon with holes.
|
/// Draw a polygon with holes.
|
||||||
void draw(const ExPolygon& poly);
|
void draw(const ExPolygon& poly);
|
||||||
void draw(const ClipperLib::Polygon& poly);
|
void draw(const ClipperLib::Polygon& poly);
|
||||||
|
|
||||||
uint8_t read_pixel(size_t w, size_t h) const;
|
uint8_t read_pixel(size_t w, size_t h) const;
|
||||||
|
|
||||||
inline bool empty() const { return ! bool(m_impl); }
|
inline bool empty() const { return ! bool(m_impl); }
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
class PNGImage: public Raster::RawData {
|
class PNGImage: public Raster::RawData {
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
get_filename_component(_TEST_NAME ${CMAKE_CURRENT_LIST_DIR} NAME)
|
get_filename_component(_TEST_NAME ${CMAKE_CURRENT_LIST_DIR} NAME)
|
||||||
add_executable(${_TEST_NAME}_tests ${_TEST_NAME}_tests_main.cpp)
|
add_executable(${_TEST_NAME}_tests ${_TEST_NAME}_tests_main.cpp)
|
||||||
target_link_libraries(${_TEST_NAME}_tests test_gtest_common libslic3r ${Boost_LIBRARIES} ${TBB_LIBRARIES} ${Boost_LIBRARIES})
|
target_link_libraries(${_TEST_NAME}_tests test_common libslic3r ${Boost_LIBRARIES} ${TBB_LIBRARIES} ${Boost_LIBRARIES})
|
||||||
|
|
||||||
catch_discover_tests(${_TEST_NAME}_tests TEST_PREFIX "${_TEST_NAME}: ")
|
catch_discover_tests(${_TEST_NAME}_tests TEST_PREFIX "${_TEST_NAME}: ")
|
||||||
|
|
|
@ -1,3 +1,6 @@
|
||||||
|
#define CATCH_CONFIG_MAIN
|
||||||
|
#include <catch2/catch.hpp>
|
||||||
|
|
||||||
#include <unordered_set>
|
#include <unordered_set>
|
||||||
#include <unordered_map>
|
#include <unordered_map>
|
||||||
#include <random>
|
#include <random>
|
||||||
|
@ -5,7 +8,7 @@
|
||||||
// Debug
|
// Debug
|
||||||
#include <fstream>
|
#include <fstream>
|
||||||
|
|
||||||
#include <gtest/gtest.h>
|
//#include <gtest/gtest.h>
|
||||||
|
|
||||||
#include "libslic3r/libslic3r.h"
|
#include "libslic3r/libslic3r.h"
|
||||||
#include "libslic3r/Format/OBJ.hpp"
|
#include "libslic3r/Format/OBJ.hpp"
|
||||||
|
@ -51,23 +54,23 @@ void check_validity(const TriangleMesh &input_mesh,
|
||||||
TriangleMesh mesh{input_mesh};
|
TriangleMesh mesh{input_mesh};
|
||||||
|
|
||||||
if (flags & ASSUME_NO_EMPTY) {
|
if (flags & ASSUME_NO_EMPTY) {
|
||||||
ASSERT_FALSE(mesh.empty());
|
REQUIRE_FALSE(mesh.empty());
|
||||||
} else if (mesh.empty())
|
} else if (mesh.empty())
|
||||||
return; // If it can be empty and it is, there is nothing left to do.
|
return; // If it can be empty and it is, there is nothing left to do.
|
||||||
|
|
||||||
ASSERT_TRUE(stl_validate(&mesh.stl));
|
REQUIRE(stl_validate(&mesh.stl));
|
||||||
|
|
||||||
bool do_update_shared_vertices = false;
|
bool do_update_shared_vertices = false;
|
||||||
mesh.repair(do_update_shared_vertices);
|
mesh.repair(do_update_shared_vertices);
|
||||||
|
|
||||||
if (flags & ASSUME_NO_REPAIR) {
|
if (flags & ASSUME_NO_REPAIR) {
|
||||||
ASSERT_FALSE(mesh.needed_repair());
|
REQUIRE_FALSE(mesh.needed_repair());
|
||||||
}
|
}
|
||||||
|
|
||||||
if (flags & ASSUME_MANIFOLD) {
|
if (flags & ASSUME_MANIFOLD) {
|
||||||
mesh.require_shared_vertices();
|
mesh.require_shared_vertices();
|
||||||
if (!mesh.is_manifold()) mesh.WriteOBJFile("non_manifold.obj");
|
if (!mesh.is_manifold()) mesh.WriteOBJFile("non_manifold.obj");
|
||||||
ASSERT_TRUE(mesh.is_manifold());
|
REQUIRE(mesh.is_manifold());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -82,16 +85,16 @@ void test_pad(const std::string & obj_filename,
|
||||||
const sla::PadConfig &padcfg,
|
const sla::PadConfig &padcfg,
|
||||||
PadByproducts & out)
|
PadByproducts & out)
|
||||||
{
|
{
|
||||||
ASSERT_TRUE(padcfg.validate().empty());
|
REQUIRE(padcfg.validate().empty());
|
||||||
|
|
||||||
TriangleMesh mesh = load_model(obj_filename);
|
TriangleMesh mesh = load_model(obj_filename);
|
||||||
|
|
||||||
ASSERT_FALSE(mesh.empty());
|
REQUIRE_FALSE(mesh.empty());
|
||||||
|
|
||||||
// Create pad skeleton only from the model
|
// Create pad skeleton only from the model
|
||||||
Slic3r::sla::pad_blueprint(mesh, out.model_contours);
|
Slic3r::sla::pad_blueprint(mesh, out.model_contours);
|
||||||
|
|
||||||
ASSERT_FALSE(out.model_contours.empty());
|
REQUIRE_FALSE(out.model_contours.empty());
|
||||||
|
|
||||||
// Create the pad geometry for the model contours only
|
// Create the pad geometry for the model contours only
|
||||||
Slic3r::sla::create_pad({}, out.model_contours, out.mesh, padcfg);
|
Slic3r::sla::create_pad({}, out.model_contours, out.mesh, padcfg);
|
||||||
|
@ -99,8 +102,7 @@ void test_pad(const std::string & obj_filename,
|
||||||
check_validity(out.mesh);
|
check_validity(out.mesh);
|
||||||
|
|
||||||
auto bb = out.mesh.bounding_box();
|
auto bb = out.mesh.bounding_box();
|
||||||
ASSERT_DOUBLE_EQ(bb.max.z() - bb.min.z(),
|
REQUIRE(bb.max.z() - bb.min.z() == Approx(padcfg.full_height()));
|
||||||
padcfg.full_height());
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void test_pad(const std::string & obj_filename,
|
void test_pad(const std::string & obj_filename,
|
||||||
|
@ -125,23 +127,22 @@ void check_support_tree_integrity(const sla::SupportTreeBuilder &stree,
|
||||||
double gnd = stree.ground_level;
|
double gnd = stree.ground_level;
|
||||||
double H1 = cfg.max_solo_pillar_height_mm;
|
double H1 = cfg.max_solo_pillar_height_mm;
|
||||||
double H2 = cfg.max_dual_pillar_height_mm;
|
double H2 = cfg.max_dual_pillar_height_mm;
|
||||||
|
|
||||||
for (const sla::Head &head : stree.heads()) {
|
for (const sla::Head &head : stree.heads()) {
|
||||||
ASSERT_TRUE(!head.is_valid() ||
|
REQUIRE((!head.is_valid() || head.pillar_id != sla::ID_UNSET ||
|
||||||
head.pillar_id != sla::ID_UNSET ||
|
head.bridge_id != sla::ID_UNSET));
|
||||||
head.bridge_id != sla::ID_UNSET);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
for (const sla::Pillar &pillar : stree.pillars()) {
|
for (const sla::Pillar &pillar : stree.pillars()) {
|
||||||
if (std::abs(pillar.endpoint().z() - gnd) < EPSILON) {
|
if (std::abs(pillar.endpoint().z() - gnd) < EPSILON) {
|
||||||
double h = pillar.height;
|
double h = pillar.height;
|
||||||
|
|
||||||
if (h > H1) ASSERT_GE(pillar.links, 1);
|
if (h > H1) REQUIRE(pillar.links >= 1);
|
||||||
else if(h > H2) { ASSERT_GE(pillar.links, 2); }
|
else if(h > H2) { REQUIRE(pillar.links >= 2); }
|
||||||
}
|
}
|
||||||
|
|
||||||
ASSERT_LE(pillar.links, cfg.pillar_cascade_neighbors);
|
REQUIRE(pillar.links <= cfg.pillar_cascade_neighbors);
|
||||||
ASSERT_LE(pillar.bridges, cfg.max_bridges_on_pillar);
|
REQUIRE(pillar.bridges <= cfg.max_bridges_on_pillar);
|
||||||
}
|
}
|
||||||
|
|
||||||
double max_bridgelen = 0.;
|
double max_bridgelen = 0.;
|
||||||
|
@ -153,17 +154,17 @@ void check_support_tree_integrity(const sla::SupportTreeBuilder &stree,
|
||||||
double z = n.z();
|
double z = n.z();
|
||||||
double polar = std::acos(z / d);
|
double polar = std::acos(z / d);
|
||||||
double slope = -polar + PI / 2.;
|
double slope = -polar + PI / 2.;
|
||||||
ASSERT_GE(std::abs(slope), cfg.bridge_slope - EPSILON);
|
REQUIRE(std::abs(slope) >= cfg.bridge_slope - EPSILON);
|
||||||
};
|
};
|
||||||
|
|
||||||
for (auto &bridge : stree.bridges()) chck_bridge(bridge, max_bridgelen);
|
for (auto &bridge : stree.bridges()) chck_bridge(bridge, max_bridgelen);
|
||||||
ASSERT_LE(max_bridgelen, cfg.max_bridge_length_mm);
|
REQUIRE(max_bridgelen <= cfg.max_bridge_length_mm);
|
||||||
|
|
||||||
max_bridgelen = 0;
|
max_bridgelen = 0;
|
||||||
for (auto &bridge : stree.crossbridges()) chck_bridge(bridge, max_bridgelen);
|
for (auto &bridge : stree.crossbridges()) chck_bridge(bridge, max_bridgelen);
|
||||||
|
|
||||||
double md = cfg.max_pillar_link_distance_mm / std::cos(-cfg.bridge_slope);
|
double md = cfg.max_pillar_link_distance_mm / std::cos(-cfg.bridge_slope);
|
||||||
ASSERT_LE(max_bridgelen, md);
|
REQUIRE(max_bridgelen <= md);
|
||||||
}
|
}
|
||||||
|
|
||||||
void test_supports(const std::string & obj_filename,
|
void test_supports(const std::string & obj_filename,
|
||||||
|
@ -173,7 +174,7 @@ void test_supports(const std::string & obj_filename,
|
||||||
using namespace Slic3r;
|
using namespace Slic3r;
|
||||||
TriangleMesh mesh = load_model(obj_filename);
|
TriangleMesh mesh = load_model(obj_filename);
|
||||||
|
|
||||||
ASSERT_FALSE(mesh.empty());
|
REQUIRE_FALSE(mesh.empty());
|
||||||
|
|
||||||
TriangleMeshSlicer slicer{&mesh};
|
TriangleMeshSlicer slicer{&mesh};
|
||||||
|
|
||||||
|
@ -208,7 +209,7 @@ void test_supports(const std::string & obj_filename,
|
||||||
supportcfg.base_height_mm);
|
supportcfg.base_height_mm);
|
||||||
} else {
|
} else {
|
||||||
// Should be support points at least on the bottom of the model
|
// Should be support points at least on the bottom of the model
|
||||||
ASSERT_FALSE(support_points.empty());
|
REQUIRE_FALSE(support_points.empty());
|
||||||
|
|
||||||
// Also the support mesh should not be empty.
|
// Also the support mesh should not be empty.
|
||||||
validityflags |= ASSUME_NO_EMPTY;
|
validityflags |= ASSUME_NO_EMPTY;
|
||||||
|
@ -226,17 +227,17 @@ void test_supports(const std::string & obj_filename,
|
||||||
|
|
||||||
// Quick check if the dimensions and placement of supports are correct
|
// Quick check if the dimensions and placement of supports are correct
|
||||||
auto obb = output_mesh.bounding_box();
|
auto obb = output_mesh.bounding_box();
|
||||||
|
|
||||||
double allowed_zmin = zmin - supportcfg.object_elevation_mm;
|
double allowed_zmin = zmin - supportcfg.object_elevation_mm;
|
||||||
|
|
||||||
if (std::abs(supportcfg.object_elevation_mm) < EPSILON)
|
if (std::abs(supportcfg.object_elevation_mm) < EPSILON)
|
||||||
allowed_zmin = zmin - 2 * supportcfg.head_back_radius_mm;
|
allowed_zmin = zmin - 2 * supportcfg.head_back_radius_mm;
|
||||||
|
|
||||||
if (std::abs(obb.min.z() - allowed_zmin) > EPSILON)
|
if (std::abs(obb.min.z() - allowed_zmin) > EPSILON)
|
||||||
output_mesh.WriteOBJFile("outmesh_supports.obj");
|
output_mesh.WriteOBJFile("outmesh_supports.obj");
|
||||||
|
|
||||||
ASSERT_GE(obb.min.z(), allowed_zmin);
|
REQUIRE(obb.min.z() >= allowed_zmin);
|
||||||
ASSERT_LE(obb.max.z(), zmax);
|
REQUIRE(obb.max.z() <= zmax);
|
||||||
|
|
||||||
// Move out the support tree into the byproducts, we can examine it further
|
// Move out the support tree into the byproducts, we can examine it further
|
||||||
// in various tests.
|
// in various tests.
|
||||||
|
@ -269,7 +270,7 @@ void test_support_model_collision(
|
||||||
byproducts.supporttree.slice(byproducts.slicegrid, CLOSING_RADIUS);
|
byproducts.supporttree.slice(byproducts.slicegrid, CLOSING_RADIUS);
|
||||||
|
|
||||||
// The slices originate from the same slice grid so the numbers must match
|
// The slices originate from the same slice grid so the numbers must match
|
||||||
ASSERT_EQ(support_slices.size(), byproducts.model_slices.size());
|
REQUIRE(support_slices.size() == byproducts.model_slices.size());
|
||||||
|
|
||||||
bool notouch = true;
|
bool notouch = true;
|
||||||
for (size_t n = 0; notouch && n < support_slices.size(); ++n) {
|
for (size_t n = 0; notouch && n < support_slices.size(); ++n) {
|
||||||
|
@ -277,11 +278,11 @@ void test_support_model_collision(
|
||||||
const ExPolygons &mod_slice = byproducts.model_slices[n];
|
const ExPolygons &mod_slice = byproducts.model_slices[n];
|
||||||
|
|
||||||
Polygons intersections = intersection(sup_slice, mod_slice);
|
Polygons intersections = intersection(sup_slice, mod_slice);
|
||||||
|
|
||||||
notouch = notouch && intersections.empty();
|
notouch = notouch && intersections.empty();
|
||||||
}
|
}
|
||||||
|
|
||||||
ASSERT_TRUE(notouch);
|
REQUIRE(notouch);
|
||||||
}
|
}
|
||||||
|
|
||||||
const char * const BELOW_PAD_TEST_OBJECTS[] = {
|
const char * const BELOW_PAD_TEST_OBJECTS[] = {
|
||||||
|
@ -335,30 +336,31 @@ template <class I, class II> void test_pairhash()
|
||||||
for (size_t i = 0; i < nums; ++i) {
|
for (size_t i = 0; i < nums; ++i) {
|
||||||
I a = A[i], b = B[i];
|
I a = A[i], b = B[i];
|
||||||
|
|
||||||
ASSERT_TRUE(a != b);
|
REQUIRE(a != b);
|
||||||
|
|
||||||
II hash_ab = sla::pairhash<I, II>(a, b);
|
II hash_ab = sla::pairhash<I, II>(a, b);
|
||||||
II hash_ba = sla::pairhash<I, II>(b, a);
|
II hash_ba = sla::pairhash<I, II>(b, a);
|
||||||
ASSERT_EQ(hash_ab, hash_ba);
|
REQUIRE(hash_ab == hash_ba);
|
||||||
|
|
||||||
auto it = ints.find(hash_ab);
|
auto it = ints.find(hash_ab);
|
||||||
|
|
||||||
if (it != ints.end()) {
|
if (it != ints.end()) {
|
||||||
ASSERT_TRUE(
|
REQUIRE((
|
||||||
(it->second.first == a && it->second.second == b) ||
|
(it->second.first == a && it->second.second == b) ||
|
||||||
(it->second.first == b && it->second.second == a));
|
(it->second.first == b && it->second.second == a)
|
||||||
|
));
|
||||||
} else
|
} else
|
||||||
ints[hash_ab] = std::make_pair(a, b);
|
ints[hash_ab] = std::make_pair(a, b);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
TEST(SLASupportGeneration, PillarPairHashShouldBeUnique) {
|
TEST_CASE("Pillar pairhash should be unique", "[SLASupportGeneration]") {
|
||||||
test_pairhash<int, long>();
|
test_pairhash<int, long>();
|
||||||
test_pairhash<unsigned, unsigned>();
|
test_pairhash<unsigned, unsigned>();
|
||||||
test_pairhash<unsigned, unsigned long>();
|
test_pairhash<unsigned, unsigned long>();
|
||||||
}
|
}
|
||||||
|
|
||||||
TEST(SLASupportGeneration, FlatPadGeometryIsValid) {
|
TEST_CASE("Flat pad geometry is valid", "[SLASupportGeneration]") {
|
||||||
sla::PadConfig padcfg;
|
sla::PadConfig padcfg;
|
||||||
|
|
||||||
// Disable wings
|
// Disable wings
|
||||||
|
@ -367,7 +369,7 @@ TEST(SLASupportGeneration, FlatPadGeometryIsValid) {
|
||||||
for (auto &fname : BELOW_PAD_TEST_OBJECTS) test_pad(fname, padcfg);
|
for (auto &fname : BELOW_PAD_TEST_OBJECTS) test_pad(fname, padcfg);
|
||||||
}
|
}
|
||||||
|
|
||||||
TEST(SLASupportGeneration, WingedPadGeometryIsValid) {
|
TEST_CASE("WingedPadGeometryIsValid", "[SLASupportGeneration]") {
|
||||||
sla::PadConfig padcfg;
|
sla::PadConfig padcfg;
|
||||||
|
|
||||||
// Add some wings to the pad to test the cavity
|
// Add some wings to the pad to test the cavity
|
||||||
|
@ -376,7 +378,7 @@ TEST(SLASupportGeneration, WingedPadGeometryIsValid) {
|
||||||
for (auto &fname : BELOW_PAD_TEST_OBJECTS) test_pad(fname, padcfg);
|
for (auto &fname : BELOW_PAD_TEST_OBJECTS) test_pad(fname, padcfg);
|
||||||
}
|
}
|
||||||
|
|
||||||
TEST(SLASupportGeneration, FlatPadAroundObjectIsValid) {
|
TEST_CASE("FlatPadAroundObjectIsValid", "[SLASupportGeneration]") {
|
||||||
sla::PadConfig padcfg;
|
sla::PadConfig padcfg;
|
||||||
|
|
||||||
// Add some wings to the pad to test the cavity
|
// Add some wings to the pad to test the cavity
|
||||||
|
@ -388,7 +390,7 @@ TEST(SLASupportGeneration, FlatPadAroundObjectIsValid) {
|
||||||
for (auto &fname : AROUND_PAD_TEST_OBJECTS) test_pad(fname, padcfg);
|
for (auto &fname : AROUND_PAD_TEST_OBJECTS) test_pad(fname, padcfg);
|
||||||
}
|
}
|
||||||
|
|
||||||
TEST(SLASupportGeneration, WingedPadAroundObjectIsValid) {
|
TEST_CASE("WingedPadAroundObjectIsValid", "[SLASupportGeneration]") {
|
||||||
sla::PadConfig padcfg;
|
sla::PadConfig padcfg;
|
||||||
|
|
||||||
// Add some wings to the pad to test the cavity
|
// Add some wings to the pad to test the cavity
|
||||||
|
@ -399,21 +401,21 @@ TEST(SLASupportGeneration, WingedPadAroundObjectIsValid) {
|
||||||
for (auto &fname : AROUND_PAD_TEST_OBJECTS) test_pad(fname, padcfg);
|
for (auto &fname : AROUND_PAD_TEST_OBJECTS) test_pad(fname, padcfg);
|
||||||
}
|
}
|
||||||
|
|
||||||
TEST(SLASupportGeneration, ElevatedSupportGeometryIsValid) {
|
TEST_CASE("ElevatedSupportGeometryIsValid", "[SLASupportGeneration]") {
|
||||||
sla::SupportConfig supportcfg;
|
sla::SupportConfig supportcfg;
|
||||||
supportcfg.object_elevation_mm = 5.;
|
supportcfg.object_elevation_mm = 5.;
|
||||||
|
|
||||||
for (auto fname : SUPPORT_TEST_MODELS) test_supports(fname);
|
for (auto fname : SUPPORT_TEST_MODELS) test_supports(fname);
|
||||||
}
|
}
|
||||||
|
|
||||||
TEST(SLASupportGeneration, FloorSupportGeometryIsValid) {
|
TEST_CASE("FloorSupportGeometryIsValid", "[SLASupportGeneration]") {
|
||||||
sla::SupportConfig supportcfg;
|
sla::SupportConfig supportcfg;
|
||||||
supportcfg.object_elevation_mm = 0;
|
supportcfg.object_elevation_mm = 0;
|
||||||
|
|
||||||
for (auto &fname: SUPPORT_TEST_MODELS) test_supports(fname, supportcfg);
|
for (auto &fname: SUPPORT_TEST_MODELS) test_supports(fname, supportcfg);
|
||||||
}
|
}
|
||||||
|
|
||||||
TEST(SLASupportGeneration, ElevatedSupportsDoNotPierceModel) {
|
TEST_CASE("ElevatedSupportsDoNotPierceModel", "[SLASupportGeneration]") {
|
||||||
|
|
||||||
sla::SupportConfig supportcfg;
|
sla::SupportConfig supportcfg;
|
||||||
|
|
||||||
|
@ -421,32 +423,32 @@ TEST(SLASupportGeneration, ElevatedSupportsDoNotPierceModel) {
|
||||||
test_support_model_collision(fname, supportcfg);
|
test_support_model_collision(fname, supportcfg);
|
||||||
}
|
}
|
||||||
|
|
||||||
TEST(SLASupportGeneration, FloorSupportsDoNotPierceModel) {
|
TEST_CASE("FloorSupportsDoNotPierceModel", "[SLASupportGeneration]") {
|
||||||
|
|
||||||
sla::SupportConfig supportcfg;
|
sla::SupportConfig supportcfg;
|
||||||
supportcfg.object_elevation_mm = 0;
|
supportcfg.object_elevation_mm = 0;
|
||||||
|
|
||||||
for (auto fname : SUPPORT_TEST_MODELS)
|
for (auto fname : SUPPORT_TEST_MODELS)
|
||||||
test_support_model_collision(fname, supportcfg);
|
test_support_model_collision(fname, supportcfg);
|
||||||
}
|
}
|
||||||
|
|
||||||
TEST(SLARasterOutput, DefaultRasterShouldBeEmpty) {
|
TEST_CASE("DefaultRasterShouldBeEmpty", "[SLARasterOutput]") {
|
||||||
sla::Raster raster;
|
sla::Raster raster;
|
||||||
ASSERT_TRUE(raster.empty());
|
REQUIRE(raster.empty());
|
||||||
}
|
}
|
||||||
|
|
||||||
TEST(SLARasterOutput, InitializedRasterShouldBeNONEmpty) {
|
TEST_CASE("InitializedRasterShouldBeNONEmpty", "[SLARasterOutput]") {
|
||||||
// Default Prusa SL1 display parameters
|
// Default Prusa SL1 display parameters
|
||||||
sla::Raster::Resolution res{2560, 1440};
|
sla::Raster::Resolution res{2560, 1440};
|
||||||
sla::Raster::PixelDim pixdim{120. / res.width_px, 68. / res.height_px};
|
sla::Raster::PixelDim pixdim{120. / res.width_px, 68. / res.height_px};
|
||||||
|
|
||||||
sla::Raster raster;
|
sla::Raster raster;
|
||||||
raster.reset(res, pixdim);
|
raster.reset(res, pixdim);
|
||||||
ASSERT_FALSE(raster.empty());
|
REQUIRE_FALSE(raster.empty());
|
||||||
ASSERT_EQ(raster.resolution().width_px, res.width_px);
|
REQUIRE(raster.resolution().width_px == res.width_px);
|
||||||
ASSERT_EQ(raster.resolution().height_px, res.height_px);
|
REQUIRE(raster.resolution().height_px == res.height_px);
|
||||||
ASSERT_DOUBLE_EQ(raster.pixel_dimensions().w_mm, pixdim.w_mm);
|
REQUIRE(raster.pixel_dimensions().w_mm == Approx(pixdim.w_mm));
|
||||||
ASSERT_DOUBLE_EQ(raster.pixel_dimensions().h_mm, pixdim.h_mm);
|
REQUIRE(raster.pixel_dimensions().h_mm == Approx(pixdim.h_mm));
|
||||||
}
|
}
|
||||||
|
|
||||||
using TPixel = uint8_t;
|
using TPixel = uint8_t;
|
||||||
|
@ -498,7 +500,7 @@ static void check_raster_transformations(sla::Raster::Orientation o,
|
||||||
auto w = size_t(std::floor(rx));
|
auto w = size_t(std::floor(rx));
|
||||||
auto h = res.height_px - size_t(std::floor(ry));
|
auto h = res.height_px - size_t(std::floor(ry));
|
||||||
|
|
||||||
ASSERT_TRUE(w < res.width_px && h < res.height_px);
|
REQUIRE((w < res.width_px && h < res.height_px));
|
||||||
|
|
||||||
auto px = raster.read_pixel(w, h);
|
auto px = raster.read_pixel(w, h);
|
||||||
|
|
||||||
|
@ -509,10 +511,10 @@ static void check_raster_transformations(sla::Raster::Orientation o,
|
||||||
outf << img.serialize(raster);
|
outf << img.serialize(raster);
|
||||||
}
|
}
|
||||||
|
|
||||||
ASSERT_EQ(px, FullWhite);
|
REQUIRE(px == FullWhite);
|
||||||
}
|
}
|
||||||
|
|
||||||
TEST(SLARasterOutput, MirroringShouldBeCorrect) {
|
TEST_CASE("MirroringShouldBeCorrect", "[SLARasterOutput]") {
|
||||||
sla::Raster::TMirroring mirrorings[] = {sla::Raster::NoMirror,
|
sla::Raster::TMirroring mirrorings[] = {sla::Raster::NoMirror,
|
||||||
sla::Raster::MirrorX,
|
sla::Raster::MirrorX,
|
||||||
sla::Raster::MirrorY,
|
sla::Raster::MirrorY,
|
||||||
|
@ -574,7 +576,7 @@ static double predict_error(const ExPolygon &p, const sla::Raster::PixelDim &pd)
|
||||||
return error;
|
return error;
|
||||||
}
|
}
|
||||||
|
|
||||||
TEST(SLARasterOutput, RasterizedPolygonAreaShouldMatch) {
|
TEST_CASE("RasterizedPolygonAreaShouldMatch", "[SLARasterOutput]") {
|
||||||
double disp_w = 120., disp_h = 68.;
|
double disp_w = 120., disp_h = 68.;
|
||||||
sla::Raster::Resolution res{2560, 1440};
|
sla::Raster::Resolution res{2560, 1440};
|
||||||
sla::Raster::PixelDim pixdim{disp_w / res.width_px, disp_h / res.height_px};
|
sla::Raster::PixelDim pixdim{disp_w / res.width_px, disp_h / res.height_px};
|
||||||
|
@ -590,7 +592,7 @@ TEST(SLARasterOutput, RasterizedPolygonAreaShouldMatch) {
|
||||||
double ra = raster_white_area(raster);
|
double ra = raster_white_area(raster);
|
||||||
double diff = std::abs(a - ra);
|
double diff = std::abs(a - ra);
|
||||||
|
|
||||||
ASSERT_LE(diff, predict_error(poly, pixdim));
|
REQUIRE(diff <= predict_error(poly, pixdim));
|
||||||
|
|
||||||
raster.clear();
|
raster.clear();
|
||||||
poly = square_with_hole(60.);
|
poly = square_with_hole(60.);
|
||||||
|
@ -601,10 +603,5 @@ TEST(SLARasterOutput, RasterizedPolygonAreaShouldMatch) {
|
||||||
ra = raster_white_area(raster);
|
ra = raster_white_area(raster);
|
||||||
diff = std::abs(a - ra);
|
diff = std::abs(a - ra);
|
||||||
|
|
||||||
ASSERT_LE(diff, predict_error(poly, pixdim));
|
REQUIRE(diff <= predict_error(poly, pixdim));
|
||||||
}
|
|
||||||
|
|
||||||
int main(int argc, char **argv) {
|
|
||||||
::testing::InitGoogleTest(&argc, argv);
|
|
||||||
return RUN_ALL_TESTS();
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue