summaryrefslogtreecommitdiffstats
path: root/src/pybind/mgr/dashboard/frontend/cypress/e2e/rgw/roles.po.ts
blob: 717655b2f08c35d893a900503a8a9429a69d7e69 (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
import { PageHelper } from '../page-helper.po';

const pages = {
  index: { url: '#/rgw/roles', id: 'cd-crud-table' },
  create: { url: '#/rgw/roles/create', id: 'cd-crud-form' }
};

export class RolesPageHelper extends PageHelper {
  pages = pages;

  columnIndex = {
    roleName: 2,
    path: 3,
    arn: 4,
    createDate: 5,
    maxSessionDuration: 6
  };

  @PageHelper.restrictTo(pages.create.url)
  create(name: string, path: string, policyDocument: string) {
    cy.get('[id$="string_role_name_0"]').type(name);
    cy.get('[id$="role_assume_policy_doc_2"]').type(policyDocument);
    cy.get('[id$="role_path_1"]').type(path);
    cy.get("[aria-label='Create Role']").should('exist').click();
    cy.get('cd-crud-table').should('exist');
  }

  edit(name: string, maxSessionDuration: number) {
    this.navigateEdit(name);
    cy.get('[id$="max_session_duration_1"]').clear().type(maxSessionDuration.toString());
    cy.get("[aria-label='Edit Role']").should('exist').click();
    cy.get('cd-crud-table').should('exist');

    this.getTableCell(this.columnIndex.roleName, name)
      .click()
      .parent()
      .find(`datatable-body-cell:nth-child(${this.columnIndex.maxSessionDuration})`)
      .should(($elements) => {
        const roleName = $elements.map((_, el) => el.textContent).get();
        expect(roleName).to.include(`${maxSessionDuration} hours`);
      });
  }

  @PageHelper.restrictTo(pages.index.url)
  checkExist(name: string, exist: boolean) {
    this.getTableCell(this.columnIndex.roleName, name).should(($elements) => {
      const roleName = $elements.map((_, el) => el.textContent).get();
      if (exist) {
        expect(roleName).to.include(name);
      } else {
        expect(roleName).to.not.include(name);
      }
    });
  }
}