Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(cypress): Flaky tests #39682

Merged
merged 2 commits into from
Aug 9, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions cypress/e2e/settings/users.cy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,20 @@ describe('Settings: Create and delete users', function() {
cy.get('.action-item__popper .action').contains('Delete user').should('exist').click()
// And confirmation dialog accepted
cy.get('.oc-dialog button').contains(`Delete ${jdoe.userId}`).click()

// Ignore failure if modal is not shown
cy.once('fail', (error) => {
expect(error.name).to.equal('AssertionError')
expect(error).to.have.property('node', '.modal-container')
})
// Make sure no confirmation modal is shown
cy.get('body').find('.modal-container').then(($modal) => {
if ($modal.length > 0) {
cy.wrap($modal).find('input[type="password"]').type(admin.password)
cy.wrap($modal).find('button').contains('Confirm').click()
}
})

// deleted clicked the user is not shown anymore
cy.get(`tbody.user-list__body tr td[data-test="${jdoe.userId}"]`).parents('tr').should('not.be.visible')
})
Expand Down
33 changes: 33 additions & 0 deletions cypress/e2e/settings/usersUtils.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
/**
* @copyright 2023 Christopher Ng <chrng8@gmail.com>
*
* @author Christopher Ng <chrng8@gmail.com>
*
* @license AGPL-3.0-or-later
*
* 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/>.
*
*/

/**
* Assert that `element` does not exist or is not visible
*
* Useful in cases such as when NcModal is opened/closed rapidly
*/
export function assertNotExistOrNotVisible(element: JQuery<HTMLElement>) {
Pytal marked this conversation as resolved.
Show resolved Hide resolved
const doesNotExist = element.length === 0
const isNotVisible = !element.is(':visible')

expect(doesNotExist || isNotVisible, 'does not exist or is not visible').to.be.true
}
7 changes: 4 additions & 3 deletions cypress/e2e/settings/users_columns.cy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
*/

import { User } from '@nextcloud/cypress'
import { assertNotExistOrNotVisible } from './usersUtils.js'

const admin = new User('admin', 'admin')

Expand All @@ -43,7 +44,7 @@ describe('Settings: Show and hide columns', function() {
// close the settings dialog
cy.get('button.modal-container__close').click()
})
cy.waitUntil(() => cy.get('.modal-container').should('not.be.visible'))
cy.waitUntil(() => cy.get('.modal-container').should(el => assertNotExistOrNotVisible(el)))
})

it('Can show a column', function() {
Expand All @@ -68,7 +69,7 @@ describe('Settings: Show and hide columns', function() {
// close the settings dialog
cy.get('button.modal-container__close').click()
})
cy.waitUntil(() => cy.get('.modal-container').should('not.be.visible'))
cy.waitUntil(() => cy.get('.modal-container').should(el => assertNotExistOrNotVisible(el)))

// see that the language column is in the header
cy.get(`.user-list__header tr`).within(() => {
Expand Down Expand Up @@ -103,7 +104,7 @@ describe('Settings: Show and hide columns', function() {
// close the settings dialog
cy.get('button.modal-container__close').click()
})
cy.waitUntil(() => cy.get('.modal-container').should('not.be.visible'))
cy.waitUntil(() => cy.get('.modal-container').should(el => assertNotExistOrNotVisible(el)))

// see that the last login column is not in the header
cy.get(`.user-list__header tr`).within(() => {
Expand Down
Loading