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

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

  beforeEach(() => {
    cy.login();
    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();
    });
  });
});