summaryrefslogtreecommitdiffstats
path: root/src/pybind/mgr/dashboard/frontend/cypress/integration/cluster/hosts.e2e-spec.ts
blob: e4f9936c3e36f962222f8df1b0995e1ffe07f724 (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
import { HostsPageHelper } from './hosts.po';

describe('Hosts page', () => {
  const hosts = new HostsPageHelper();

  beforeEach(() => {
    cy.login();
    Cypress.Cookies.preserveOnce('token');
    hosts.navigateTo();
  });

  describe('breadcrumb and tab tests', () => {
    it('should open and show breadcrumb', () => {
      hosts.expectBreadcrumbText('Hosts');
    });

    it('should show two tabs', () => {
      hosts.getTabsCount().should('eq', 2);
    });

    it('should show hosts list tab at first', () => {
      hosts.getTabText(0).should('eq', 'Hosts List');
    });

    it('should show overall performance as a second tab', () => {
      hosts.getTabText(1).should('eq', 'Overall Performance');
    });
  });

  describe('services link test', () => {
    it('should check at least one host is present', () => {
      hosts.check_for_host();
    });
  });
});