Skip to content
Snippets Groups Projects
pab.e2e-spec.ts 10.7 KiB
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() => {
      // create PAB
      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);
mathias.chouet's avatar
mathias.chouet committed

      // 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);
    it("complete example of all PAB modules", async() => {
      // PAB - chute
      await navbar.clickNewCalculatorButton();
      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();

mathias.chouet's avatar
mathias.chouet committed
      // make sure "Generate PAB" button is visible (it might be hidden behind navbar)
      await browser.executeScript("window.scrollTo(0, 0);");
      // generate PAB
      const genButton = calcPage.getGeneratePabButton();
mathias.chouet's avatar
mathias.chouet committed
      await genButton.isPresent();
      await genButton.isDisplayed();
      await genButton.click();
      const nbBassins = calcPage.getInputById("generatePabNbBassins");
      await nbBassins.clear();
mathias.chouet's avatar
mathias.chouet committed
      await nbBassins.sendKeys("9");

      // 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");
      // calculate Cloisons
      const calcButtonCl = calcPage.getCalculateButton();
      await calcButtonCl.click();

mathias.chouet's avatar
mathias.chouet committed
      // 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");
mathias.chouet's avatar
mathias.chouet committed
      expect(await debit.getAttribute("value")).toBe("0.564");
      await debit.clear();
      await browser.sleep(300);
mathias.chouet's avatar
mathias.chouet committed
      // 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");
mathias.chouet's avatar
mathias.chouet committed
      await browser.sleep(300);
      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");
      // check number of basins
      const innerFieldsets = element.all(by.css("td.basin_number"));
      expect(await innerFieldsets.count()).toBe(5);
mathias.chouet's avatar
mathias.chouet committed
      // 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 () => {

    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);
      await sidenav.loadSessionFile("./session/session-pab-complete.json");
      await browser.sleep(500);
      // check existence of the loaded modules
mathias.chouet's avatar
mathias.chouet committed
      expect(await navbar.getAllCalculatorTabs().count()).toBe(6);
      // check parameters values
mathias.chouet's avatar
mathias.chouet committed
      await navbar.clickCalculatorTab(5);
      const P_Q = calcPage.getInputById("Q");
      expect(await P_Q.getAttribute("value")).toBe("0.275");
      const P_Z2 = calcPage.getInputById("Z2");
      expect(await P_Z2.getAttribute("value")).toBe("74.865");
      // check number of basins
      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);
mathias.chouet's avatar
mathias.chouet committed
      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
mathias.chouet's avatar
mathias.chouet committed
      await browser.sleep(300);
      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
mathias.chouet's avatar
mathias.chouet committed
      expect(await calcPage.nbLogEntries()).toBe(2);