27 int rsvstest::maintest()
30 customtest gridTest(
"all tests (expected run time: 15 minutes)");
31 gridTest.Run(rsvstest::shorttest,
"Short tests");
32 gridTest.Run(rsvstest::longevolution,
"Long tests");
33 gridTest.Run(rsvstest::integrationprocesses,
"Various integration and derivative tests");
34 gridTest.Run(rsvstest::newtest,
"New tests");
36 return (gridTest.ReturnErrCount());
39 int rsvstest::shorttest()
42 customtest gridTest(
"short tests (expected run time: 7 minutes)");
44 gridTest.RunSilent(rsvstest::arraystructtemplates,
"Test Arraystructures templates", 1);
45 gridTest.RunSilent(rsvstest::meshprocesses,
"Test meshes", 15);
46 gridTest.RunSilent(rsvstest::snakeprocesses,
"Test snake processes", 41);
47 gridTest.Run(rsvstest::RSVSprocesses,
"Test RSVS process", 150);
48 gridTest.Run(rsvstest::tetgenprocesses,
"Tetgen interface tests", 200);
49 gridTest.RunSilent(rsvstest::JSONprocesses,
"Parameter and JSON tests", 1);
50 gridTest.RunSilent(rsvstest::polyscopeprocesses,
"Test polyscope processes", 10);
51 return (gridTest.ReturnErrCount());
54 int rsvstest::failingtest()
56 customtest gridTest(
"failing tests (expected run time: 1-mn to 7h)");
57 gridTest.RunSilent(rsvstest::RSVS2Dprocesses,
"Test 2D-RSVS process", 6);
58 gridTest.Run(tetgen::test::RSVSVORO,
"tetgen API testing - Voro to RSVS");
59 gridTest.Run(tetgen::test::RSVSVORO_Contain,
"tetgen API testing - Voro to RSVS");
61 return (gridTest.ReturnErrCount());
64 int rsvstest::arraystructtemplates()
66 customtest gridTest(
"Test Arraystructures templates");
69 gridTest.RunSilent(Test_ArrayStructures,
"arraystructures");
70 gridTest.RunSilent(TestTemplate_ArrayStruct<vert>,
"TestTemplate_ArrayStruct<vert>");
71 gridTest.RunSilent(TestTemplate_ArrayStruct<edge>,
"TestTemplate_ArrayStruct<edge>");
72 gridTest.RunSilent(TestTemplate_ArrayStruct<surf>,
"TestTemplate_ArrayStruct<surf>");
73 gridTest.RunSilent(TestTemplate_ArrayStruct<volu>,
"TestTemplate_ArrayStruct<volu>");
74 gridTest.RunSilent(TestTemplate_ArrayStruct<snax>,
"TestTemplate_ArrayStruct<snax>");
75 gridTest.RunSilent(TestTemplate_ArrayStruct<snaxedge>,
"TestTemplate_ArrayStruct<snaxedge>");
76 gridTest.RunSilent(TestTemplate_ArrayStruct<snaxsurf>,
"TestTemplate_ArrayStruct<snaxsurf>");
77 return (gridTest.ReturnErrCount());
80 int rsvstest::meshprocesses()
85 gridTest.RunSilent(Test_BuildBlockGrid_noout,
"Voxel");
86 gridTest.RunSilent(Test_tecplotfile,
"post-processing class");
87 gridTest.RunSilent(Test_MeshOut,
"Mesh output");
88 gridTest.RunSilent(Test_MeshOut2,
"Functionalised Mesh output");
89 gridTest.RunSilent(Test_MeshReOrder,
"Mesh Reordering");
90 gridTest.RunSilent(Test_surfcentre,
"test SurfCentroid");
91 gridTest.RunSilent(Test_MeshRefinement,
"Multi-Level Meshes");
92 gridTest.RunSilent(Test_MeshOrient,
"Output mesh orientation");
93 gridTest.RunSilent(Test_Crop,
"test cropping of meshes");
95 return (gridTest.ReturnErrCount());
98 int rsvstest::snakeprocesses()
103 gridTest.RunSilent(Test_snakeOrderEdges,
"Snake Order error");
104 gridTest.RunSilent(Test_SnakeStructures,
"Snake containers");
105 gridTest.RunSilent(Test_RSVSalgo_init,
"RSVS spawn");
106 gridTest.RunSilent(Test_RSVSvoro_init,
"Snake spawning voronoi");
107 gridTest.RunSilent(Test_snakeinit_random_short,
"(short) Snake rand velocity");
108 gridTest.RunSilent(Test_snakeinit_unit_short,
"(short) Snake unit velocity (reflected)");
109 gridTest.RunSilent(Test_snakeinit_unitnoreflect_short,
"(short) Snake unit velocity "
111 return (gridTest.ReturnErrCount());
114 int rsvstest::longevolution()
116 customtest gridTest(
"Test process with long processing");
117 gridTest.RunSilent(Test_snakeinit_random,
"Snake rand velocity");
118 gridTest.RunSilent(Test_snakeinit_unit,
"Snake unit velocity (reflected)");
119 gridTest.RunSilent(Test_snakeinit_unitnoreflect,
"Snake unit velocity "
121 return (gridTest.ReturnErrCount());
123 int rsvstest::RSVSprocesses()
127 gridTest.RunSilent(Test_RSVSalgo,
"Snake RSVS from spawn", 90);
128 gridTest.RunSilent(Test_snakeRSVS,
"Snake RSVS", 5);
129 gridTest.RunSilent(Test_snakeRSVS_singlevol,
"Snake RSVS single vol", 5);
130 gridTest.RunSilent(Test_RSVSalgo_singlevol_fullmath,
"Snake RSVS algorithm (full maths)", 25);
131 gridTest.RunSilent(Test_RSVSalgo_singlevol_sparse,
"Snake RSVS algorithm (sparse)", 12);
132 return (gridTest.ReturnErrCount());
135 int rsvstest::RSVS2Dprocesses()
139 gridTest.RunSilent(Test_snakeinitflat,
"Snake spawning 2D");
140 gridTest.Run(Test_RSVSalgoflat,
"RSVS 2D");
142 return (gridTest.ReturnErrCount());
145 int rsvstest::tetgenprocesses()
147 customtest gridTest(
"Tetgen interface tests");
150 gridTest.RunSilent(tetgen::test::CFD,
"tetgen API testing - CFD meshing", 26);
151 gridTest.RunSilent(tetgen::test::call,
"tetgen API testing - RSVS meshing", 30);
154 return (gridTest.ReturnErrCount());
157 int rsvstest::polyscopeprocesses()
159 customtest gridTest(
"Test polyscope processes");
164 return (gridTest.ReturnErrCount());
167 int rsvstest::JSONprocesses()
169 customtest gridTest(
"Parameter and JSON tests");
171 gridTest.RunSilent(param::test::base,
"parameter implementation");
172 gridTest.RunSilent(param::test::symmetry,
"Test json internal symmetry");
173 gridTest.RunSilent(param::test::io,
"parameter read write");
174 gridTest.RunSilent(param::test::ioflat,
"parameter read write flat format");
175 gridTest.RunSilent(param::test::ipartialread,
"parameter partial read"
176 " write flat format");
177 gridTest.RunSilent(param::test::autoflat,
"Algorithm for automatic "
178 "determination of flat json");
179 gridTest.RunSilent(tetgen::test::api,
"tegen test api parameter class");
180 return (gridTest.ReturnErrCount());
183 int rsvstest::integrationprocesses()
186 customtest gridTest(
"Various integration and derivative tests");
189 gridTest.RunSilent(integrate::test::Prepare,
"Mesh integration function");
190 gridTest.RunSilent(integrate::test::All,
"Test full integration");
191 gridTest.Run(Test_SurfCentreDerivatives,
"Surf centroid");
192 gridTest.Run(Test_Matrix3D,
"'3D' matrix maths");
193 gridTest.Run(integrate::test::CompareSurfCentreDerivatives,
"Test Surf centroid");
195 gridTest.Run(integrate::test::CompareDerivativesSpike,
"Test spike issues");
196 gridTest.Run(integrate::test::CompareDerivativesSpikeNoDPos,
"Test spike issues no dPos");
197 gridTest.Run(integrate::test::StudyDerivatives,
"Generate Derivative study");
199 return (gridTest.ReturnErrCount());
202 int rsvstest::newtest()
204 customtest gridTest(
"3-D RSVS tests: New and breaking ");
206 #ifdef TEST_KNOWN_FAILURES
207 gridTest.RunSilent(Test_snakeinitflat,
"Snake spawning 2D");
208 gridTest.Run(Test_RSVSalgoflat,
"RSVS 2D");
209 gridTest.Run(integrate::test::CompareDerivativesSpike,
"Test spike issues");
210 gridTest.Run(integrate::test::CompareDerivativesSpikeNoDPos,
"Test spike issues no dPos");
211 gridTest.Run(integrate::test::StudyDerivatives,
"Generate Derivative study");
213 #ifdef IGNORE_THESE_TESTS
215 gridTest.Run(tetgen::test::RSVSVORO,
"tetgen API testing - Voro to RSVS");
216 gridTest.Run(tetgen::test::RSVSVORO_Contain,
"tetgen API testing - Voro to RSVS");
217 gridTest.Run(rsvstest::polyscopeprocesses,
"Test polyscope processes");
219 gridTest.Run(tetgen::test::CFD,
"tetgen API testing - CFD meshing");
220 gridTest.Run(tetgen::test::call,
"tetgen API testing - RSVS meshing");
221 return (gridTest.ReturnErrCount());
224 int customtest::Run(
function<
int()> test,
const char *funcName,
int expectedTime)
226 cout <<
"-------------------------------------------------------------"
227 "---------------------------"
229 cout <<
"-------------------------------------------------------------"
230 "---------------------------"
232 cout <<
" Start testing " << funcName;
233 if (expectedTime >= 0)
235 std::cout <<
" (expected execution time: " << expectedTime <<
" s)";
237 std::cout << std::endl;
238 cout <<
"-------------------------------------------------------------"
239 "---------------------------"
241 this->prevTime = clock();
243 this->lastRunTime = clock() - this->prevTime;
245 runTotal += this->lastRunTime;
247 cout <<
"-------------------------------------------------------------"
248 "---------------------------"
253 cout <<
"Finished testing " << funcName << endl;
254 cout <<
" - Caught Error: " << errFlag << endl;
258 cout <<
"Finished testing " << funcName << endl;
259 cout <<
" - No Error" << endl;
261 cout <<
" Execution time : " << double(this->lastRunTime) / double(CLOCKS_PER_SEC) * 1000 <<
" ms"
263 cout <<
"-------------------------------------------------------------"
264 "---------------------------"
266 cout <<
"-------------------------------------------------------------"
267 "---------------------------"
284 stringstream streamOut;
287 std::cout <<
"START test " << this->testCount + 1 <<
": " << funcName;
288 if (expectedTime >= 0)
290 std::cout <<
" (expected execution time: " << expectedTime <<
" s)";
292 std::cout << std::endl;
294 auto coutBuff = std::cout.rdbuf(streamOut.rdbuf());
295 auto cerrBuff = std::cerr.rdbuf(streamOut.rdbuf());
300 errFlag = this->Run(test, funcName, expectedTime);
302 catch (exception
const &ex)
304 cerr <<
"Exception: " << ex.what() << endl;
310 std::cerr <<
"-------------------------------------------------------------"
311 "---------------------------"
314 this->unhandledError++;
315 std::cerr <<
"Unhandled error in " << funcName << endl;
316 std::cerr <<
"-------------------------------------------------------------"
317 "---------------------------"
319 std::cerr <<
"-------------------------------------------------------------"
320 "---------------------------"
323 std::cout.rdbuf(coutBuff);
324 std::cerr.rdbuf(cerrBuff);
327 std::cerr << streamOut.str();
331 std::cout <<
" DONE, finished in " << double(this->lastRunTime) / double(CLOCKS_PER_SEC) * 1000 <<
" ms"
337 void customtest::PrintSummary()
341 cout <<
"-------------------------------------------------------------"
342 "---------------------------"
344 cout <<
"-------------------------------------------------------------"
345 "---------------------------"
347 cout <<
" Summary of Tests: (" << this->testName <<
")" << endl;
348 cout <<
" " << testCount <<
" tests completed" << endl;
349 cout <<
" " << errCount <<
" detected errors " << endl;
350 cout <<
" " << unhandledError <<
" errors handled by the test class " << endl;
351 cout <<
" Total run time:" << endl;
352 cout <<
" " << double(this->runTotal) / double(CLOCKS_PER_SEC) <<
" seconds " << endl;
353 cout <<
"-------------------------------------------------------------"
354 "---------------------------"
356 cout <<
"-------------------------------------------------------------"
357 "---------------------------"
360 _CrtDumpMemoryLeaks();
Functions which are part of the RSVS algorithm but not core to the snaking process.
Integration into the full 3 dimensional Restricted Snake Volume of Solid method.
Performs Volume and Area calculations for the RSVS process.
Provide std::vector container with hashed index mapping.
int RunSilent(std::function< int()> test, const char *funcName, int expectedTime=-1)
Runs a test function silently except if it returns an error.
Provides all the mesh tools used for the generation of 3D grids and geometries.
Tools for the refinement and coarsening of meshes.
int show()
Should display the polyscope window.
int init()
Should initialise polyscope.
int meshShow()
Should display a single small cubic mesh.
Namespace for rsvs tests.
Parameters for the integrated 3DRSVS.
Provide an interface between the RSVS process and polyscope.
Provide tecplot file formating for mesh and snake outputs.
Provides the core restricted surface snake container.
Functions needed to evolve the r-surface snake.
Provides the custom testing system used by the RSVS3D project.
Interface between the RSVS project and tetgen.
Provides a triangulation for snake and meshes.
Generation of cartesian grids.