Commit b4cd8397 authored by Dorchies David's avatar Dorchies David
Browse files

Debug des tests ParallelStructure suite au commit 50ca78fc

Showing with 68 additions and 26 deletions
+68 -26
...@@ -71,7 +71,7 @@ class Expect { ...@@ -71,7 +71,7 @@ class Expect {
public toBe(expected: any) { public toBe(expected: any) {
const res = this.actual === expected; const res = this.actual === expected;
if (!res) { if (!res) {
console.error("Error : expected " + this.actual + " to be " + expected); console.error("Expected " + this.actual + " to be " + expected);
} }
return res; return res;
} }
...@@ -83,7 +83,7 @@ class Expect { ...@@ -83,7 +83,7 @@ class Expect {
public toEqual(expected: any) { public toEqual(expected: any) {
const res = this.actual === expected; const res = this.actual === expected;
if (!res) { if (!res) {
console.warn("Warning : test 'to be equal to' not tested"); console.warn("Test 'to be equal to' not tested");
} }
return res; return res;
} }
...@@ -117,6 +117,25 @@ class Expect { ...@@ -117,6 +117,25 @@ class Expect {
} }
} }
} }
public toThrow(expected: any) {
let exception: Error;
if (typeof this.actual !== "function") {
throw new Error("Actual is not a function");
}
try {
this.actual();
} catch (e) {
exception = e;
}
if (exception) {
if (exception === undefined) {
console.error("Expected tested function to thow an error");
} else if (exception.message !== expected.message) {
console.error("Function throws " + exception.message + " and " + expected.message + " was expected");
}
}
}
} }
/** /**
......
...@@ -65,12 +65,13 @@ const ps2: ParallelStructure = new ParallelStructure( ...@@ -65,12 +65,13 @@ const ps2: ParallelStructure = new ParallelStructure(
); );
// Ajout d'une structure de chaque type dans ParallelStructure // Ajout d'une structure de chaque type dans ParallelStructure
const iLoiDebits: number[] = [];
for (const s of EnumEx.getValues(StructureType)) { for (const s of EnumEx.getValues(StructureType)) {
for (const i of EnumEx.getValues(LoiDebit)) { for (const i of EnumEx.getValues(LoiDebit)) {
try { try {
ps2.addStructure(CreateStructure(s, i)); ps2.addStructure(CreateStructure(s, i));
} iLoiDebits.push(i);
catch (e) { } catch (e) {
// Pour les combinaisons StructureType X LoiDebit impossibles rejetées par la Factory // Pour les combinaisons StructureType X LoiDebit impossibles rejetées par la Factory
} }
} }
...@@ -82,22 +83,35 @@ ps2.prms.Q.v = ps2.Calc("Q").vCalc; ...@@ -82,22 +83,35 @@ ps2.prms.Q.v = ps2.Calc("Q").vCalc;
describe("Class ParallelStructure: ", () => { describe("Class ParallelStructure: ", () => {
for (let i = 0; i < ps2.structures.length; i++) { for (let i = 0; i < ps2.structures.length; i++) {
const st: Structure = ps2.structures[i]; const st: Structure = ps2.structures[i];
describe(`this.structures[${i}]: Structure${LoiDebit[i]}: `, () => { describe(`this.structures[${i}]: Structure${LoiDebit[iLoiDebits[i]]}: `, () => {
// tslint:disable-next-line:forin // tslint:disable-next-line:forin
for (const prm of st.prms) { for (const prm of st.prms) {
if (prm.calculability === ParamCalculability.DICHO && if (prm.calculability === ParamCalculability.DICHO &&
prm.symbol !== "Z1" && prm.symbol !== "Z2") { prm.symbol !== "Z1" && prm.symbol !== "Z2") {
const ref: number = prm.v;
const res: Result = ps2.Calc(i + "." + prm.symbol); if (prm.symbol === "W" && prm.v === Infinity) {
prm.v = ref; // Go back to initial value for following tests // Le calcul de l'ouverture sur les seuils doit renvoyer une exception (cas impossible)
if ((i === 2 || i === 4) && prm.symbol === "ZDV") { it(`Calc(${prm.symbol}) should return exception`, () => {
xit(`Calc(${prm.symbol}) should return ${ref}`, () => { expect(
checkResult(res, ref); () => { ps2.Calc(i + "." + prm.symbol); }
).toThrow(new Error("Structure:Calc : Calcul de W impossible sur un seuil"));
}); });
} else { } else {
it(`Calc(${prm.symbol}) should return ${ref}`, () => { const ref: number = prm.v;
checkResult(res, ref); const res: Result = ps2.Calc(i + "." + prm.symbol);
}); if ((iLoiDebits[i] === 2 || iLoiDebits[i] === 4) && prm.symbol === "ZDV") {
// Les lois CEM88D et CUNGE80 ne font pas intervenir ZDV dans le calcul d'un orifice noyé
// TODO Il faudrait générer une erreur pour dire que le résultat est indéfini
xit(`Calc(${prm.symbol}) should return undefined`, () => {
checkResult(res, undefined);
});
} else {
// On ne teste pas le calcul de l'ouverture sur les seuils
it(`Calc(${prm.symbol}) should return ${ref}`, () => {
checkResult(res, ref);
});
}
prm.v = ref; // Go back to initial value for following tests
} }
} }
} }
......
...@@ -67,6 +67,7 @@ describe("Class Structure: ", () => { ...@@ -67,6 +67,7 @@ describe("Class Structure: ", () => {
}); });
it("Q=0 => W=0", () => { it("Q=0 => W=0", () => {
structTest.prms.Q.v = 0; structTest.prms.Q.v = 0;
structTest.prms.W.v = 1; // Sinon, W = Infinity => Structure = Seuil => Throw Error
checkResult(structTest.Calc("W"), 0); checkResult(structTest.Calc("W"), 0);
expect(structTest.Calc("W").extraResults).toEqual(flagsNull); expect(structTest.Calc("W").extraResults).toEqual(flagsNull);
structTest.prms.Q.v = 1; structTest.prms.Q.v = 1;
......
...@@ -67,11 +67,19 @@ export abstract class Structure extends Nub { ...@@ -67,11 +67,19 @@ export abstract class Structure extends Nub {
* @param rPrec précision de calcul * @param rPrec précision de calcul
*/ */
public Calc(sVarCalc: string, rInit?: number, rPrec: number = 0.001): Result { public Calc(sVarCalc: string, rInit?: number, rPrec: number = 0.001): Result {
// Gestion de l'exception de calcul de W sur les seuils
if (rInit === undefined) {
rInit = this._prms.map[sVarCalc].v;
}
if (sVarCalc === "W" && rInit === Infinity) {
throw new Error("Structure:Calc : Calcul de W impossible sur un seuil");
}
// Mise à jour de h1 et h2 // Mise à jour de h1 et h2
this.prms.update_h1h2(); this.prms.update_h1h2();
// Gestion du débit nul // Gestion du débit nul
const flagsNull = {Mode: StructureFlowMode.NULL, Regime: StructureFlowRegime.NULL}; const flagsNull = { Mode: StructureFlowMode.NULL, Regime: StructureFlowRegime.NULL };
if (sVarCalc === "Q") { if (sVarCalc === "Q") {
if (this.prms.h1.v === this.prms.h2.v || this.prms.W.v <= 0) { if (this.prms.h1.v === this.prms.h2.v || this.prms.W.v <= 0) {
return new Result(0, flagsNull); return new Result(0, flagsNull);
...@@ -79,13 +87,13 @@ export abstract class Structure extends Nub { ...@@ -79,13 +87,13 @@ export abstract class Structure extends Nub {
} else if (this.prms.Q.v === 0) { } else if (this.prms.Q.v === 0) {
// Débit nul <=> tirant d'eau amont = tirant d'eau aval ou tout autre paramètre nul // Débit nul <=> tirant d'eau amont = tirant d'eau aval ou tout autre paramètre nul
switch (sVarCalc) { switch (sVarCalc) {
case "Z1" : case "Z1":
return new Result(this.prms.h2.v, flagsNull); return new Result(this.prms.h2.v, flagsNull);
case "Z2" : case "Z2":
return new Result(this.prms.h1.v, flagsNull); return new Result(this.prms.h1.v, flagsNull);
default : default:
// Est-ce toujours vrai ? Nécessitera peut-être d'étendre la méthode // Est-ce toujours vrai ? Nécessitera peut-être d'étendre la méthode
return new Result(0, flagsNull); return new Result(0, flagsNull);
} }
} else if (this.prms.W.v === 0 && sVarCalc === "Z1") { } else if (this.prms.W.v === 0 && sVarCalc === "Z1") {
return new Result(Infinity, flagsNull); // Si la vanne est fermée la cote amont est infinie return new Result(Infinity, flagsNull); // Si la vanne est fermée la cote amont est infinie
...@@ -101,9 +109,9 @@ export abstract class Structure extends Nub { ...@@ -101,9 +109,9 @@ export abstract class Structure extends Nub {
let rPrm: number; let rPrm: number;
switch (sVarCalc) { switch (sVarCalc) {
case "ZDV": case "ZDV":
rPrm = Infinity; rPrm = Infinity;
default: default:
rPrm = 0; rPrm = 0;
} }
// TODO Ajouter un message d'erreur // TODO Ajouter un message d'erreur
// "Les cotes et le débit ne sont pas cohérents => fermeture de l'ouvrage // "Les cotes et le débit ne sont pas cohérents => fermeture de l'ouvrage
...@@ -146,7 +154,7 @@ export abstract class Structure extends Nub { ...@@ -146,7 +154,7 @@ export abstract class Structure extends Nub {
/** /**
* Give the flow mode : weir or orifice flow * Give the flow mode : weir or orifice flow
*/ */
protected getFlowMode(): StructureFlowMode { protected getFlowMode(): StructureFlowMode {
if (this.prms.h1.v > this.prms.W.v) { if (this.prms.h1.v > this.prms.W.v) {
this.debug("Structure.getFlowMode(h1=" + this.prms.h1.v + ",W=" + this.prms.W.v + ")=ORIFICE"); this.debug("Structure.getFlowMode(h1=" + this.prms.h1.v + ",W=" + this.prms.W.v + ")=ORIFICE");
return StructureFlowMode.ORIFICE; return StructureFlowMode.ORIFICE;
...@@ -160,7 +168,7 @@ export abstract class Structure extends Nub { ...@@ -160,7 +168,7 @@ export abstract class Structure extends Nub {
/** /**
* Give the flow regime for a rectangular section : free, partially submerged or submerged flow * Give the flow regime for a rectangular section : free, partially submerged or submerged flow
*/ */
protected getFlowRegime(): StructureFlowRegime { protected getFlowRegime(): StructureFlowRegime {
// Weir have only two flow regimes: free and submerged flow // Weir have only two flow regimes: free and submerged flow
// Orifice have three flow regimes: free, partially submerged and (totally) submerged // Orifice have three flow regimes: free, partially submerged and (totally) submerged
if (this.prms.h2.v <= 2 / 3 * this.prms.h1.v) { if (this.prms.h2.v <= 2 / 3 * this.prms.h1.v) {
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment