| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133 |
- /*
- Copyright (C) 2018 Cloudbase Solutions SRL
- This program is free software: you can redistribute it and/or modify
- it under the terms of the GNU Affero General Public License as
- published by the Free Software Foundation, either version 3 of the
- License, or (at your option) any later version.
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Affero General Public License for more details.
- You should have received a copy of the GNU Affero General Public License
- along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
- // @flow
- import config from '../../../config'
- describe('Create VmWare to Azure Replica', () => {
- before(() => {
- cy.login()
- })
- beforeEach(() => {
- Cypress.Cookies.preserveOnce('token', 'projectId')
- })
- it('Shows Wizard page', () => {
- cy.get('div').contains('New').click()
- cy.getById('newItemDropdown-listItem-Replica').click()
- cy.get('#app').should('contain', 'New Replica')
- })
- it('Chooses VmWare as Source Cloud', () => {
- cy.server()
- cy.route({ url: '**/instances**', method: 'GET' }).as('sourceInstances')
- cy.get('button').contains('Next').click()
- cy.getById('wEndpointList-dropdown-vmware_vsphere').first().click()
- cy.get('div').contains('e2e-vmware-test').click()
- cy.wait('@sourceInstances')
- })
- it('Searches and selects instances', () => {
- cy.get('button').contains('Next').click()
- cy.server()
- cy.route({ url: '**/instances**', method: 'GET' }).as('search')
- cy.get('input[placeholder="Search VMs"]').type(config.wizard.instancesSearch.vmwareSearchText)
- cy.wait('@search')
- cy.getById('wInstances-instanceItem').contains(config.wizard.instancesSearch.vmwareSearchText)
- cy.getById('wInstances-instanceItem').its('length').should('be.gt', 0)
- cy.getById('wInstances-instanceItem').eq(config.wizard.instancesSearch.vmwareItemIndex).click()
- })
- it('Chooses Azure as Target Cloud', () => {
- cy.get('button').contains('Next').click()
- cy.getById('wEndpointList-dropdown-azure').first().click()
- cy.server()
- cy.route({ url: '**/destination-options**', method: 'GET' }).as('dest-options')
- cy.get('div').contains('e2e-azure-test').click()
- cy.wait('@dest-options')
- })
- it('Fills Azure replica info', () => {
- cy.get('button').contains('Next').click()
- cy.getById('acDropdown-wrapper').first().click()
- cy.server()
- cy.route({ url: '**/destination-options**', method: 'GET' }).as('dest-options')
- cy.getById('ad-listItem').contains(config.wizard.azure.resourceGroup).click()
- cy.wait('@dest-options')
- })
- it('Selects first available network mapping', () => {
- cy.server()
- cy.route({ url: '**/networks**', method: 'GET' }).as('networks')
- cy.route({ url: '**/instances/**', method: 'GET' }).as('instances')
- cy.get('button').contains('Next').click()
- cy.wait(['@networks', '@instances'])
- cy.get('button').contains('Next').should('be.disabled')
- cy.getById('networkItem').its('length').should('be.gt', 0)
- cy.get('div[value="Select ..."]').first().click()
- cy.getById('dropdownListItem').first().click()
- cy.get('button').contains('Next').should('not.be.disabled')
- })
- it('Shows storage screen', () => {
- cy.get('button').contains('Next').click()
- cy.getById('wpContent-header').should('contain', 'Storage')
- })
- it('Shows schedule page', () => {
- cy.get('button').contains('Next').click()
- cy.getById('wpContent-header').should('contain', 'Schedule')
- })
- it('Shows summary page', () => {
- cy.get('button').contains('Next').click()
- cy.get('#app').should('contain', 'Summary')
- cy.get('#app').should('contain', 'e2e-vmware-test')
- cy.get('#app').should('contain', 'e2e-azure-test')
- cy.get('#app').should('contain', 'Coriolis Replica')
- cy.get('#app').should('contain', 'Replica Target Options')
- cy.getById('wSummary-optionValue-resource_group').should('contain', config.wizard.azure.resourceGroup)
- })
- it('Executes replica', () => {
- cy.server()
- cy.route({ url: '**/replicas', method: 'POST' }).as('replica')
- cy.get('button').contains('Finish').click()
- cy.wait('@replica')
- })
- it('Shows running replica page', () => {
- cy.getById('statusPill-RUNNING').should('exist')
- })
- it('Cancels replica execution', () => {
- cy.server()
- cy.getById('executions-cancelButton').click()
- cy.route({ url: '**/actions', method: 'POST' }).as('cancel')
- cy.getById('aModal-yesButton').click()
- cy.wait('@cancel')
- cy.get('div[data-test-id="dcHeader-statusPill-ERROR"]', { timeout: 120000 })
- })
- it('Should show in usage message when trying to delete', () => {
- cy.getById('dcHeader-backButton').click()
- cy.getById('navigation-smallMenuItem-endpoints').click()
- cy.getById('endpointListItem-content-e2e-azure-test').click()
- cy.getById('edContent-deleteButton').click()
- cy.getById('alertModal').should('contain', 'The endpoint can\'t be deleted because it is in use by replicas or migrations.')
- cy.getById('aModal-dismissButton').click()
- })
- })
|