Skip to content
Snippets Groups Projects
Commit 34ba5d09 authored by François Grand's avatar François Grand
Browse files

feat(test): fuzzing tests: add MacroRugoRemous

refs #325
parent ba1ad77b
No related branches found
No related tags found
No related merge requests found
import { CalculatorType } from "../src/compute-node";
import { Grille, ParamDomainValue, Session, SPP, YAXN, YAXNParams, Par, ParSimulation, PressureLoss, PL_LechaptCalmonParams, PL_LechaptCalmon, PL_StricklerParams, PL_Strickler } from "../src/index";
import { Grille, ParamDomainValue, Session, SPP, YAXN, YAXNParams, Par, ParSimulation, PressureLoss, PL_LechaptCalmonParams, PL_LechaptCalmon, PL_StricklerParams, PL_Strickler, MacroRugoRemous, MacroRugo } from "../src/index";
import { MacrorugoCompound } from "../src/macrorugo/macrorugo_compound";
import { Trigo, TrigoOperation } from "../src/math/trigo";
import { Nub } from "../src/nub";
......@@ -60,7 +60,8 @@ const nubsWithStructures: CalculatorType[] = [
const nubsWithSection: CalculatorType[] = [
CalculatorType.RegimeUniforme,
CalculatorType.SectionParametree,
CalculatorType.CourbeRemous
CalculatorType.CourbeRemous,
CalculatorType.MacroRugoRemous
];
const nubsWithPressureLossLaw: CalculatorType[] = [
......@@ -205,6 +206,13 @@ function setMacrorugoCompound(n: MacrorugoCompound) {
n.setPropValue("inclinedApron", Math.floor(Math.random() * 2));
}
function setMacrorugoRemous(mrr: MacroRugoRemous) {
const mr: MacroRugo = CreateTestNub(CalculatorType.MacroRugo) as MacroRugo;
Session.getInstance().registerNub(mr);
mrr.setPropValue("nubMacroRugo", mr.uid);
mrr.setNubMacroRugoFromProps();
}
function setGrille(g: Grille) {
const type = Math.floor(Math.random() * 3);
const profile = Math.floor(Math.random() * 2);
......@@ -266,6 +274,10 @@ function CreateTestNub(iCalType: number): Nub {
case CalculatorType.ParSimulation:
setRandomParType(n as ParSimulation);
break;
case CalculatorType.MacroRugoRemous:
setMacrorugoRemous(n as MacroRugoRemous);
break;
}
for (const p of n.parameterIterator) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment