summaryrefslogtreecommitdiffstats
path: root/src/pybind/mgr/dashboard/frontend/cypress/e2e/block/mirroring.po.ts
blob: c4adca8b72fe91cc847f9ac4d46e43637009ba2b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
import { PageHelper } from '../page-helper.po';

const pages = {
  index: { url: '#/block/mirroring', id: 'cd-mirroring' }
};

export class MirroringPageHelper extends PageHelper {
  pages = pages;

  poolsColumnIndex = {
    name: 1,
    health: 6
  };

  /**
   * Goes to the mirroring page and edits a pool in the Pool table. Clicks on the
   * pool and chooses an option (either pool, image, or disabled)
   */
  @PageHelper.restrictTo(pages.index.url)
  editMirror(name: string, option: string) {
    // Clicks the pool in the table
    this.getFirstTableCell(name).click();

    // Clicks the Edit Mode button
    cy.contains('button', 'Edit Mode').click();

    // Clicks the drop down in the edit pop-up, then clicks the Update button
    cy.get('.modal-content').should('be.visible');
    this.selectOption('mirrorMode', option);

    // Clicks update button and checks if the mode has been changed
    cy.contains('button', 'Update').click();
    cy.contains('.modal-dialog', 'Edit pool mirror mode').should('not.exist');
    const val = option.toLowerCase(); // used since entries in table are lower case
    this.getFirstTableCell(val).should('be.visible');
  }

  @PageHelper.restrictTo(pages.index.url)
  generateToken(poolName: string) {
    cy.get('[aria-label="Create Bootstrap Token"]').first().click();
    cy.get('cd-bootstrap-create-modal').within(() => {
      cy.get(`label[for=${poolName}]`).click();
      cy.get('button[type=submit]').click();
      cy.get('textarea[id=token]').wait(200).invoke('val').as('token');
      cy.get('[aria-label="Back"]').click();
    });
  }

  @PageHelper.restrictTo(pages.index.url)
  checkPoolHealthStatus(poolName: string, status: string) {
    cy.get('cd-mirroring-pools').within(() => {
      this.getTableCell(this.poolsColumnIndex.name, poolName)
        .parent()
        .find(`datatable-body-cell:nth-child(${this.poolsColumnIndex.health}) .badge`)
        .should(($ele) => {
          const newLabels = $ele.toArray().map((v) => v.innerText);
          expect(newLabels).to.include(status);
        });
    });
  }
}