123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225 |
- /**
- * @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/>.
- *
- */
- import { User } from '@nextcloud/cypress'
- import { getUserListRow, handlePasswordConfirmation, toggleEditButton } from './usersUtils'
- // eslint-disable-next-line n/no-extraneous-import
- import randomString from 'crypto-random-string'
- const admin = new User('admin', 'admin')
- describe('Settings: Create groups', () => {
- before(() => {
- cy.login(admin)
- cy.visit('/settings/users')
- })
- it('Can create a group', () => {
- const groupName = randomString(7)
- // open the Create group menu
- cy.get('button[aria-label="Create group"]').click()
- cy.get('li[data-cy-settings-new-group-name]').within(() => {
- // see that the group name is ""
- cy.get('input').should('exist').and('have.value', '')
- // set the group name to foo
- cy.get('input').type(groupName)
- // see that the group name is foo
- cy.get('input').should('have.value', groupName)
- // submit the group name
- cy.get('input ~ button').click()
- })
- // Make sure no confirmation modal is shown
- handlePasswordConfirmation(admin.password)
- // see that the created group is in the list
- cy.get('ul.app-navigation__list').within(() => {
- // see that the list of groups contains the group foo
- cy.contains(groupName).should('exist')
- })
- })
- })
- describe('Settings: Assign user to a group', { testIsolation: false }, () => {
- const groupName = randomString(7)
- let testUser: User
- after(() => cy.deleteUser(testUser))
- before(() => {
- cy.createRandomUser().then((user) => {
- testUser = user
- })
- cy.runOccCommand(`group:add '${groupName}'`)
- cy.login(admin)
- cy.visit('/settings/users')
- })
- it('see that the group is in the list', () => {
- cy.get('ul.app-navigation__list').contains('li', groupName).should('exist')
- cy.get('ul.app-navigation__list').contains('li', groupName).within(() => {
- cy.get('.counter-bubble__counter')
- .should('not.exist') // is hidden when 0
- })
- })
- it('see that the user is in the list', () => {
- getUserListRow(testUser.userId)
- .contains(testUser.userId)
- .should('exist')
- .scrollIntoView()
- })
- it('switch into user edit mode', () => {
- toggleEditButton(testUser)
- getUserListRow(testUser.userId)
- .find('[data-cy-user-list-input-groups]')
- .should('exist')
- })
- it('assign the group', () => {
- // focus inside the input
- getUserListRow(testUser.userId)
- .find('[data-cy-user-list-input-groups] input')
- .click({ force: true })
- // enter the group name
- getUserListRow(testUser.userId)
- .find('[data-cy-user-list-input-groups] input')
- .type(`${groupName.slice(0, 5)}`) // only type part as otherwise we would create a new one with the same name
- cy.contains('li.vs__dropdown-option', groupName)
- .click({ force: true })
- handlePasswordConfirmation(admin.password)
- })
- it('leave the user edit mode', () => {
- toggleEditButton(testUser, false)
- })
- it('see the group was successfully assigned', () => {
- // see a new memeber
- cy.get('ul.app-navigation__list')
- .contains('li', groupName)
- .find('.counter-bubble__counter')
- .should('contain', '1')
- })
- it('validate the user was added on backend', () => {
- cy.runOccCommand(`user:info --output=json '${testUser.userId}'`).then((output) => {
- cy.wrap(output.code).should('eq', 0)
- cy.wrap(JSON.parse(output.stdout)?.groups).should('include', groupName)
- })
- })
- })
- describe('Settings: Delete an empty group', { testIsolation: false }, () => {
- const groupName = randomString(7)
- before(() => {
- cy.runOccCommand(`group:add '${groupName}'`)
- cy.login(admin)
- cy.visit('/settings/users')
- })
- it('see that the group is in the list', () => {
- cy.get('ul.app-navigation__list').within(() => {
- // see that the list of groups contains the group foo
- cy.contains(groupName).should('exist').scrollIntoView()
- // open the actions menu for the group
- cy.contains('li', groupName).within(() => {
- cy.get('button.action-item__menutoggle').click({ force: true })
- })
- })
- })
- it('can delete the group', () => {
- // The "Remove group" action in the actions menu is shown and clicked
- cy.get('.action-item__popper button').contains('Remove group').should('exist').click({ force: true })
- // And confirmation dialog accepted
- cy.get('.modal-container button').contains('Confirm').click({ force: true })
- // Make sure no confirmation modal is shown
- handlePasswordConfirmation(admin.password)
- })
- it('deleted group is not shown anymore', () => {
- cy.get('ul.app-navigation__list').within(() => {
- // see that the list of groups does not contain the group
- cy.contains(groupName).should('not.exist')
- })
- // and also not in database
- cy.runOccCommand('group:list --output=json').then(($response) => {
- const groups: string[] = Object.keys(JSON.parse($response.stdout))
- expect(groups).to.not.include(groupName)
- })
- })
- })
- describe('Settings: Delete a non empty group', () => {
- let testUser: User
- const groupName = randomString(7)
- before(() => {
- cy.runOccCommand(`group:add '${groupName}'`)
- cy.createRandomUser().then(($user) => {
- testUser = $user
- cy.runOccCommand(`group:addUser '${groupName}' '${$user.userId}'`)
- })
- cy.login(admin)
- cy.visit('/settings/users')
- })
- after(() => cy.deleteUser(testUser))
- it('see that the group is in the list', () => {
- // see that the list of groups contains the group
- cy.get('ul.app-navigation__list').contains('li', groupName).should('exist').scrollIntoView()
- })
- it('can delete the group', () => {
- // open the menu
- cy.get('ul.app-navigation__list')
- .contains('li', groupName)
- .find('button.action-item__menutoggle')
- .click({ force: true })
- // The "Remove group" action in the actions menu is shown and clicked
- cy.get('.action-item__popper button').contains('Remove group').should('exist').click({ force: true })
- // And confirmation dialog accepted
- cy.get('.modal-container button').contains('Confirm').click({ force: true })
- // Make sure no confirmation modal is shown
- handlePasswordConfirmation(admin.password)
- })
- it('deleted group is not shown anymore', () => {
- cy.get('ul.app-navigation__list').within(() => {
- // see that the list of groups does not contain the group foo
- cy.contains(groupName).should('not.exist')
- })
- // and also not in database
- cy.runOccCommand('group:list --output=json').then(($response) => {
- const groups: string[] = Object.keys(JSON.parse($response.stdout))
- expect(groups).to.not.include(groupName)
- })
- })
- })
|