93 lines
2.8 KiB
C++
93 lines
2.8 KiB
C++
// SPDX-License-Identifier: LGPL-2.1-or-later
|
|
|
|
#include "gtest/gtest.h"
|
|
#include <boost/format.hpp>
|
|
#include <App/Application.h>
|
|
#include <App/Document.h>
|
|
#include "Base/Interpreter.h"
|
|
#include <Base/Precision.h>
|
|
#include "Mod/Part/App/FeaturePartBox.h"
|
|
#include "Mod/Part/App/FeaturePartFuse.h"
|
|
#include "Mod/Part/App/FeatureFillet.h"
|
|
#include <BRepBuilderAPI_MakeEdge.hxx>
|
|
#include <BRepBuilderAPI_MakeFace.hxx>
|
|
#include <BRepBuilderAPI_MakeVertex.hxx>
|
|
#include <BRepBuilderAPI_MakeWire.hxx>
|
|
#include <BRepGProp.hxx>
|
|
#include <BRepPrimAPI_MakeBox.hxx>
|
|
#include <GC_MakeCircle.hxx>
|
|
#include <TopoDS.hxx>
|
|
#include <TopExp_Explorer.hxx>
|
|
|
|
namespace PartTestHelpers
|
|
{
|
|
|
|
using namespace Data;
|
|
using namespace Part;
|
|
|
|
double getVolume(const TopoDS_Shape& shape);
|
|
|
|
double getArea(const TopoDS_Shape& shape);
|
|
|
|
double getLength(const TopoDS_Shape& shape);
|
|
|
|
std::vector<Part::FilletElement>
|
|
_getFilletEdges(const std::vector<int>& edges, double startRadius, double endRadius);
|
|
|
|
class PartTestHelperClass
|
|
{
|
|
public:
|
|
App::Document* _doc;
|
|
std::string _docName;
|
|
std::array<Part::Box*, 6> _boxes; // NOLINT magic number
|
|
void createTestDoc();
|
|
};
|
|
|
|
const double minimalDistance = Base::Precision::Confusion() * 1000;
|
|
|
|
void executePython(const std::vector<std::string>& python);
|
|
|
|
void rectangle(double height, double width, char* name);
|
|
|
|
std::tuple<TopoDS_Face, TopoDS_Wire, TopoDS_Edge, TopoDS_Edge, TopoDS_Edge, TopoDS_Edge>
|
|
CreateRectFace(float len = 2.0, float wid = 3.0);
|
|
|
|
std::tuple<TopoDS_Face, TopoDS_Wire, TopoDS_Wire>
|
|
CreateFaceWithRoundHole(float len = 2.0, float wid = 3.0, float radius = 1.0);
|
|
|
|
testing::AssertionResult
|
|
boxesMatch(const Base::BoundBox3d& b1, const Base::BoundBox3d& b2, double prec = 1e-05); // NOLINT
|
|
|
|
std::map<IndexedName, MappedName> elementMap(const TopoShape& shape);
|
|
|
|
/**
|
|
* Checks that all the names occur in the shape's element map. Map can contain additional names
|
|
* @param shape The Shape
|
|
* @param names The Names
|
|
* @return A test result, suitable for display by the gtest framework
|
|
*/
|
|
testing::AssertionResult elementsMatch(const TopoShape& shape,
|
|
const std::vector<std::string>& names);
|
|
|
|
/**
|
|
* Checks that all the names occur in the shape's element map and that there are no additional names
|
|
* @param shape The Shape
|
|
* @param names The Names
|
|
* @return A test result, suitable for display by the gtest framework
|
|
*/
|
|
testing::AssertionResult allElementsMatch(const TopoShape& shape,
|
|
const std::vector<std::string>& names);
|
|
|
|
/**
|
|
*
|
|
* @return Two raw shape cubes without element maps
|
|
*/
|
|
std::pair<TopoDS_Shape, TopoDS_Shape> CreateTwoCubes();
|
|
|
|
/**
|
|
*
|
|
* @return Two TopoShape cubes with elementMaps
|
|
*/
|
|
std::pair<TopoShape, TopoShape> CreateTwoTopoShapeCubes();
|
|
} // namespace PartTestHelpers
|