Newer
Older
import { ListPage } from "./list.po";
import { CalculatorPage } from "./calculator.po";
import { Navbar } from "./navbar.po";
import { browser, by, element } from "protractor";
import { AppPage } from "./app.po";
import { SideNav } from "./sidenav.po";
import { PreferencesPage } from "./preferences.po";
/**
* Clone calculators
*/
describe("ngHyd − Passe à Bassins", () => {
let startPage: AppPage;
let listPage: ListPage;
let calcPage: CalculatorPage;
let navbar: Navbar;
let sidenav: SideNav;
let prefPage: PreferencesPage;
beforeEach(() => {
startPage = new AppPage();
listPage = new ListPage();
calcPage = new CalculatorPage();
navbar = new Navbar();
sidenav = new SideNav();
prefPage = new PreferencesPage();
});
describe("create PAB - ", async () => {
beforeEach(async () => {
// disable evil option "empty fields on module creation"
await prefPage.navigateTo();
await prefPage.disableEvilEmptyFields();
await browser.sleep(200);
});
it("when PAB is created from scratch", async() => {
await navbar.clickNewCalculatorButton();
await listPage.clickMenuEntryForCalcType(15);
// check that pab-table is present
const innerFieldsets = element.all(by.css(".pab-data-table"));
expect(await innerFieldsets.count()).toBe(1);
// calculate PAB
const calcButton = calcPage.getCalculateButton();
await calcButton.click();
// check that result is not empty
const hasResults = await calcPage.hasResults();
expect(hasResults).toBe(true);
// check absence of logs
expect(await calcPage.nbLogEntries()).toBe(0);
mathias.chouet
committed
it("complete example of all PAB modules", async() => {
// PAB - chute
await navbar.clickNewCalculatorButton();
mathias.chouet
committed
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
await listPage.clickMenuEntryForCalcType(12);
const c_Z1 = calcPage.getInputById("Z1");
await c_Z1.clear();
await c_Z1.sendKeys("78.27");
const c_Z2 = calcPage.getInputById("Z1");
await c_Z2.clear();
await c_Z2.sendKeys("74.86");
// PAB - nombre
await navbar.clickNewCalculatorButton();
await listPage.clickMenuEntryForCalcType(13);
const n_DHT = calcPage.getInputById("DHT");
await calcPage.setParamMode(n_DHT, "link");
const n_DH = calcPage.getInputById("DH");
await calcPage.setParamMode(n_DH, "cal");
const n_N = calcPage.getInputById("N");
await n_N.clear();
await n_N.sendKeys("15");
// PAB - dimensions
await navbar.clickNewCalculatorButton();
await listPage.clickMenuEntryForCalcType(5);
const d_V = calcPage.getInputById("V");
await calcPage.setParamMode(d_V, "cal");
const d_Y = calcPage.getInputById("Y");
await d_Y.clear();
await d_Y.sendKeys("1.5");
const d_L = calcPage.getInputById("L");
await d_L.clear();
await d_L.sendKeys("3.100");
const d_W = calcPage.getInputById("W");
await d_W.clear();
await d_W.sendKeys("2.5");
// PAB - puissance dissipée (volume)
await navbar.clickNewCalculatorButton();
await listPage.clickMenuEntryForCalcType(6);
const p_DH = calcPage.getInputById("DH");
await calcPage.setParamMode(p_DH, "link");
const p_Q = calcPage.getInputById("Q");
await calcPage.setParamMode(p_Q, "cal");
const p_V = calcPage.getInputById("V");
await calcPage.setParamMode(p_V, "link");
const p_PV = calcPage.getInputById("PV");
await p_PV.clear();
await p_PV.sendKeys("150");
// PAB - cloisons
await navbar.clickNewCalculatorButton();
await listPage.clickMenuEntryForCalcType(10);
const cl_LB = calcPage.getInputById("LB");
await calcPage.setParamMode(cl_LB, "link");
const cl_BB = calcPage.getInputById("BB");
await calcPage.setParamMode(cl_BB, "link");
const cl_DH = calcPage.getInputById("DH");
await calcPage.setParamMode(cl_DH, "link");
const cl_Z1 = calcPage.getInputById("Z1");
await calcPage.setParamMode(cl_Z1, "link");
const cl_PB = calcPage.getInputById("PB");
await cl_PB.clear();
await cl_PB.sendKeys("1.5");
// calculate Cloisons
const calcButtonCl = calcPage.getCalculateButton();
await calcButtonCl.click();
// make sure "Generate PAB" button is visible (it might be hidden behind navbar)
await browser.executeScript("window.scrollTo(0, 0);");
mathias.chouet
committed
// generate PAB
const genButton = calcPage.getGeneratePabButton();
await genButton.isPresent();
await genButton.isDisplayed();
mathias.chouet
committed
await genButton.click();
const nbBassins = calcPage.getInputById("generatePabNbBassins");
await nbBassins.clear();
mathias.chouet
committed
// click "Generate"
await element(by.css("dialog-generate-pab button#do-generate")).click();
await browser.sleep(1000);
// calculate PAB
const calcButtonPAB = calcPage.getCalculateButton();
await calcButtonPAB.click();
// check that result is not empty
const hasResults = await calcPage.hasResults();
expect(hasResults).toBe(true);
});
});
describe("generate PAB - ", async () => {
beforeEach(async () => {
// disable evil option "empty fields on module creation"
await prefPage.navigateTo();
await prefPage.disableEvilEmptyFields();
await browser.sleep(200);
});
it("from a Cloisons among many", async() => {
// create many Cloisons
await navbar.clickNewCalculatorButton();
await listPage.clickMenuEntryForCalcType(10);
await navbar.clickNewCalculatorButton();
await listPage.clickMenuEntryForCalcType(10);
await navbar.clickNewCalculatorButton();
await listPage.clickMenuEntryForCalcType(10);
// choose one of them and change its parameters
await navbar.clickCalculatorTab(1);
const Z1 = calcPage.getInputById("Z1");
await Z1.clear();
await Z1.sendKeys("114");
const LB = calcPage.getInputById("LB");
await LB.clear();
await LB.sendKeys("11.5");
const DH = calcPage.getInputById("DH");
await DH.clear();
await DH.sendKeys("0.72");
mathias.chouet
committed
// calculate Cloisons
const calcButtonCl = calcPage.getCalculateButton();
await calcButtonCl.click();
// make sure "Generate PAB" button is visible (it might be hidden behind navbar)
await browser.executeScript("window.scrollTo(0, 0);");
// create PAB from it, changing modal parameters
const genButton = calcPage.getGeneratePabButton();
await genButton.click();
const debit = calcPage.getInputById("generatePabDebit");
// send "1.6" in 3 movements, because "." triggers an error and Angular can't cope with the subsequent keys
await debit.sendKeys("1");
await browser.sleep(300);
await debit.sendKeys(".");
await browser.sleep(300);
await debit.sendKeys("6");
const coteAmont = calcPage.getInputById("generatePabCoteAmont");
expect(await coteAmont.getAttribute("value")).toBe("114");
await coteAmont.clear();
await coteAmont.sendKeys("115");
const nbBassins = calcPage.getInputById("generatePabNbBassins");
expect(await nbBassins.getAttribute("value")).toBe("6");
await nbBassins.clear();
await nbBassins.sendKeys("5");
// click "Generate"
await element(by.css("dialog-generate-pab button#do-generate")).click();
await browser.sleep(1000);
// check parameters values
const P_Q = calcPage.getInputById("Q");
expect(await P_Q.getAttribute("value")).toBe("1.6");
const P_Z2 = calcPage.getInputById("Z2");
expect(await P_Z2.getAttribute("value")).toBe("111.4");
const innerFieldsets = element.all(by.css("td.basin_number"));
expect(await innerFieldsets.count()).toBe(5);
// calculate PAB
const calcButton = calcPage.getCalculateButton();
await calcButton.click();
// check that result is not empty
const hasResults = await calcPage.hasResults();
expect(hasResults).toBe(true);
});
});
describe("load session files - ", async () => {
mathias.chouet
committed
it("complete example of all PAB modules", async() => {
await startPage.navigateTo();
// load
await navbar.clickMenuButton();
await browser.sleep(200);
await sidenav.clickLoadSessionButton();
await browser.sleep(200);
mathias.chouet
committed
await sidenav.loadSessionFile("./session/session-pab-complete.json");
await browser.sleep(500);
// check existence of the loaded modules
expect(await navbar.getAllCalculatorTabs().count()).toBe(6);
mathias.chouet
committed
mathias.chouet
committed
await browser.sleep(700);
const P_Q = calcPage.getInputById("Q");
mathias.chouet
committed
expect(await P_Q.getAttribute("value")).toBe("0.275");
const P_Z2 = calcPage.getInputById("Z2");
mathias.chouet
committed
expect(await P_Z2.getAttribute("value")).toBe("74.865");
mathias.chouet
committed
const innerFieldsets = element.all(by.css("td.basin_number"));
expect(await innerFieldsets.count()).toBe(15);
// calculate PAB
const calcButton = calcPage.getCalculateButton();
await calcButton.click();
// check that result is not empty
const hasResults = await calcPage.hasResults();
expect(hasResults).toBe(true);
// check absence of logs
expect(await calcPage.nbLogEntries()).toBe(0);
describe("load regulated variated PAB with calc errors - ", async () => {
it("should display logs", async() => {
await startPage.navigateTo();
// load
await navbar.clickMenuButton();
await browser.sleep(200);
await sidenav.clickLoadSessionButton();
await browser.sleep(200);
await sidenav.loadSessionFile("./session/session-pab-regulee-variee.json");
await browser.sleep(500);
// check existence of the loaded module
expect(await navbar.getAllCalculatorTabs().count()).toBe(1);
await navbar.clickCalculatorTab(0);
// calculate
const calcButton = calcPage.getCalculateButton();
await calcButton.click();
// check that result is not empty
const hasResults = await calcPage.hasResults();
expect(hasResults).toBe(true);
// check presence of logs
expect(await calcPage.nbLogEntries()).toBe(2);
// change iteration
const pve = calcPage.getSelectById("pab-variating-element");
calcPage.changeSelectValue(pve, 3);
await browser.sleep(300);
// check absence of logs
});
});