123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139 |
- /**
- * @copyright Copyright (c) 2023 Ferdinand Thiessen <opensource@fthiessen.de>
- *
- * @author Ferdinand Thiessen <opensource@fthiessen.de>
- *
- * @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/>.
- *
- */
- /// <reference types="cypress-if" />
- import { User } from '@nextcloud/cypress'
- import { getUserListRow, handlePasswordConfirmation } from './usersUtils'
- const admin = new User('admin', 'admin')
- const john = new User('john', '123456')
- describe('Settings: Create and delete accounts', function() {
- beforeEach(function() {
- cy.listUsers().then((users) => {
- if ((users as string[]).includes(john.userId)) {
- // ensure created user is deleted
- cy.deleteUser(john)
- }
- })
- cy.login(admin)
- // open the User settings
- cy.visit('/settings/users')
- })
- it('Can create a user', function() {
- // open the New user modal
- cy.get('button#new-user-button').click()
- cy.get('form[data-test="form"]').within(() => {
- // see that the username is ""
- cy.get('input[data-test="username"]').should('exist').and('have.value', '')
- // set the username to john
- cy.get('input[data-test="username"]').type(john.userId)
- // see that the username is john
- cy.get('input[data-test="username"]').should('have.value', john.userId)
- // see that the password is ""
- cy.get('input[type="password"]').should('exist').and('have.value', '')
- // set the password to 123456
- cy.get('input[type="password"]').type(john.password)
- // see that the password is 123456
- cy.get('input[type="password"]').should('have.value', john.password)
- // submit the new user form
- cy.get('button[type="submit"]').click({ force: true })
- })
- // Make sure no confirmation modal is shown
- handlePasswordConfirmation(admin.password)
- // see that the created user is in the list
- getUserListRow(john.userId)
- // see that the list of users contains the user john
- .contains(john.userId).should('exist')
- })
- it('Can create a user with additional field data', function() {
- // open the New user modal
- cy.get('button#new-user-button').click()
- cy.get('form[data-test="form"]').within(() => {
- // set the username
- cy.get('input[data-test="username"]').should('exist').and('have.value', '')
- cy.get('input[data-test="username"]').type(john.userId)
- cy.get('input[data-test="username"]').should('have.value', john.userId)
- // set the display name
- cy.get('input[data-test="displayName"]').should('exist').and('have.value', '')
- cy.get('input[data-test="displayName"]').type('John Smith')
- cy.get('input[data-test="displayName"]').should('have.value', 'John Smith')
- // set the email
- cy.get('input[data-test="email"]').should('exist').and('have.value', '')
- cy.get('input[data-test="email"]').type('john@example.org')
- cy.get('input[data-test="email"]').should('have.value', 'john@example.org')
- // set the password
- cy.get('input[type="password"]').should('exist').and('have.value', '')
- cy.get('input[type="password"]').type(john.password)
- cy.get('input[type="password"]').should('have.value', john.password)
- // submit the new user form
- cy.get('button[type="submit"]').click({ force: true })
- })
- // Make sure no confirmation modal is shown
- handlePasswordConfirmation(admin.password)
- // see that the created user is in the list
- getUserListRow(john.userId)
- // see that the list of users contains the user john
- .contains(john.userId)
- .should('exist')
- })
- it('Can delete a user', function() {
- let testUser
- // create user
- cy.createRandomUser()
- .then(($user) => {
- testUser = $user
- })
- cy.login(admin)
- // ensure created user is present
- cy.reload().then(() => {
- // see that the user is in the list
- getUserListRow(testUser.userId).within(() => {
- // see that the list of users contains the user testUser
- cy.contains(testUser.userId).should('exist')
- // open the actions menu for the user
- cy.get('[data-cy-user-list-cell-actions]')
- .find('button.action-item__menutoggle')
- .click({ force: true })
- })
- // The "Delete account" action in the actions menu is shown and clicked
- cy.get('.action-item__popper .action').contains('Delete account').should('exist').click({ force: true })
- // And confirmation dialog accepted
- cy.get('.oc-dialog button').contains(`Delete ${testUser.userId}`).click({ force: true })
- // Make sure no confirmation modal is shown
- handlePasswordConfirmation(admin.password)
- // deleted clicked the user is not shown anymore
- getUserListRow(testUser.userId).should('not.exist')
- })
- })
- })
|