]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/pybind/mgr/dashboard/frontend/cypress/integration/orchestrator/workflow/04-create-cluster-create-osds.e2e-spec.ts
update ceph source to reef 18.1.2
[ceph.git] / ceph / src / pybind / mgr / dashboard / frontend / cypress / integration / orchestrator / workflow / 04-create-cluster-create-osds.e2e-spec.ts
diff --git a/ceph/src/pybind/mgr/dashboard/frontend/cypress/integration/orchestrator/workflow/04-create-cluster-create-osds.e2e-spec.ts b/ceph/src/pybind/mgr/dashboard/frontend/cypress/integration/orchestrator/workflow/04-create-cluster-create-osds.e2e-spec.ts
deleted file mode 100644 (file)
index 2426243..0000000
+++ /dev/null
@@ -1,41 +0,0 @@
-/* tslint:disable*/
-import { CreateClusterWizardHelper } from '../../cluster/create-cluster.po';
-import { OSDsPageHelper } from '../../cluster/osds.po';
-/* tslint:enable*/
-
-const osds = new OSDsPageHelper();
-
-describe('Create cluster create osds page', () => {
-  const createCluster = new CreateClusterWizardHelper();
-
-  beforeEach(() => {
-    cy.login();
-    Cypress.Cookies.preserveOnce('token');
-    createCluster.navigateTo();
-    createCluster.createCluster();
-    cy.get('.nav-link').contains('Create OSDs').click();
-  });
-
-  it('should check if title contains Create OSDs', () => {
-    cy.get('.title').should('contain.text', 'Create OSDs');
-  });
-
-  describe('when Orchestrator is available', () => {
-    it('should create OSDs', () => {
-      const hostnames = ['ceph-node-00', 'ceph-node-01'];
-      for (const hostname of hostnames) {
-        osds.create('hdd', hostname, true);
-
-        // Go to the Review section and Expand the cluster
-        // because the drive group spec is only stored
-        // in frontend and will be lost when refreshed
-        cy.get('.nav-link').contains('Review').click();
-        cy.get('button[aria-label="Next"]').click();
-        cy.get('cd-dashboard').should('exist');
-        createCluster.navigateTo();
-        createCluster.createCluster();
-        cy.get('.nav-link').contains('Create OSDs').click();
-      }
-    });
-  });
-});