aboutsummaryrefslogtreecommitdiffstats
path: root/cypress/e2e
diff options
context:
space:
mode:
authorFerdinand Thiessen <opensource@fthiessen.de>2023-09-25 14:21:23 +0200
committerFerdinand Thiessen <opensource@fthiessen.de>2023-10-20 00:24:17 +0200
commite9d4036389097708a6075d8882c32b1c7db4fb0f (patch)
tree97216c9a992ca14660193d5b0926fc72997bd044 /cypress/e2e
parent363d9ebb130862d5fc5617e94b1c369caf02553f (diff)
downloadnextcloud-server-e9d4036389097708a6075d8882c32b1c7db4fb0f.tar.gz
nextcloud-server-e9d4036389097708a6075d8882c32b1c7db4fb0f.zip
feat(theming): Allow to configure default apps and app order in frontend settings
* Also add API for setting the value using ajax. * Add cypress tests for app order and defaul apps Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
Diffstat (limited to 'cypress/e2e')
-rw-r--r--cypress/e2e/theming/navigation-bar-settings.cy.ts212
1 files changed, 212 insertions, 0 deletions
diff --git a/cypress/e2e/theming/navigation-bar-settings.cy.ts b/cypress/e2e/theming/navigation-bar-settings.cy.ts
new file mode 100644
index 00000000000..50c48d5ac6d
--- /dev/null
+++ b/cypress/e2e/theming/navigation-bar-settings.cy.ts
@@ -0,0 +1,212 @@
+/**
+ * @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/>.
+ *
+ */
+
+import { User } from '@nextcloud/cypress'
+
+const admin = new User('admin', 'admin')
+
+describe('Admin theming set default apps', () => {
+ before(function() {
+ // Just in case previous test failed
+ cy.resetAdminTheming()
+ cy.login(admin)
+ })
+
+ it('See the current default app is the dashboard', () => {
+ cy.visit('/')
+ cy.url().should('match', /apps\/dashboard/)
+ cy.get('#nextcloud').click()
+ cy.url().should('match', /apps\/dashboard/)
+ })
+
+ it('See the default app settings', () => {
+ cy.visit('/settings/admin/theming')
+
+ cy.get('.settings-section').contains('Navigation bar settings').should('exist')
+ cy.get('[data-cy-switch-default-app]').should('exist')
+ cy.get('[data-cy-switch-default-app]').scrollIntoView()
+ })
+
+ it('Toggle the "use custom default app" switch', () => {
+ cy.get('[data-cy-switch-default-app] input').should('not.be.checked')
+ cy.get('[data-cy-switch-default-app] label').click()
+ cy.get('[data-cy-switch-default-app] input').should('be.checked')
+ })
+
+ it('See the default app order selector', () => {
+ cy.get('[data-cy-app-order] [data-cy-app-order-element]').each(($el, idx) => {
+ if (idx === 0) cy.wrap($el).should('have.attr', 'data-cy-app-order-element', 'dashboard')
+ else cy.wrap($el).should('have.attr', 'data-cy-app-order-element', 'files')
+ })
+ })
+
+ it('Change the default app', () => {
+ cy.get('[data-cy-app-order] [data-cy-app-order-element="files"]').scrollIntoView()
+
+ cy.get('[data-cy-app-order] [data-cy-app-order-element="files"] [data-cy-app-order-button="up"]').should('be.visible')
+ cy.get('[data-cy-app-order] [data-cy-app-order-element="files"] [data-cy-app-order-button="up"]').click()
+ cy.get('[data-cy-app-order] [data-cy-app-order-element="files"] [data-cy-app-order-button="up"]').should('not.be.visible')
+
+ })
+
+ it('See the default app is changed', () => {
+ cy.get('[data-cy-app-order] [data-cy-app-order-element]').each(($el, idx) => {
+ if (idx === 0) cy.wrap($el).should('have.attr', 'data-cy-app-order-element', 'files')
+ else cy.wrap($el).should('have.attr', 'data-cy-app-order-element', 'dashboard')
+ })
+
+ cy.get('#nextcloud').click()
+ cy.url().should('match', /apps\/files/)
+ })
+
+ it('Toggle the "use custom default app" switch back to reset the default apps', () => {
+ cy.visit('/settings/admin/theming')
+ cy.get('[data-cy-switch-default-app]').scrollIntoView()
+
+ cy.get('[data-cy-switch-default-app] input').should('be.checked')
+ cy.get('[data-cy-switch-default-app] label').click()
+ cy.get('[data-cy-switch-default-app] input').should('be.not.checked')
+ })
+
+ it('See the default app is changed back to default', () => {
+ cy.get('#nextcloud').click()
+ cy.url().should('match', /apps\/dashboard/)
+ })
+})
+
+describe('User theming set app order', () => {
+ before(() => {
+ cy.resetAdminTheming()
+ // Create random user for this test
+ cy.createRandomUser().then((user) => {
+ cy.login(user)
+ })
+ })
+
+ after(() => cy.logout())
+
+ it('See the app order settings', () => {
+ cy.visit('/settings/user/theming')
+
+ cy.get('.settings-section').contains('Navigation bar settings').should('exist')
+ cy.get('[data-cy-app-order]').scrollIntoView()
+ })
+
+ it('See that the dashboard app is the first one', () => {
+ cy.get('[data-cy-app-order] [data-cy-app-order-element]').each(($el, idx) => {
+ if (idx === 0) cy.wrap($el).should('have.attr', 'data-cy-app-order-element', 'dashboard')
+ else cy.wrap($el).should('have.attr', 'data-cy-app-order-element', 'files')
+ })
+
+ cy.get('.app-menu-main .app-menu-entry').each(($el, idx) => {
+ if (idx === 0) cy.wrap($el).should('have.attr', 'data-app-id', 'dashboard')
+ else cy.wrap($el).should('have.attr', 'data-app-id', 'files')
+ })
+ })
+
+ it('Change the app order', () => {
+ cy.get('[data-cy-app-order] [data-cy-app-order-element="files"] [data-cy-app-order-button="up"]').should('be.visible')
+ cy.get('[data-cy-app-order] [data-cy-app-order-element="files"] [data-cy-app-order-button="up"]').click()
+ cy.get('[data-cy-app-order] [data-cy-app-order-element="files"] [data-cy-app-order-button="up"]').should('not.be.visible')
+
+ cy.get('[data-cy-app-order] [data-cy-app-order-element]').each(($el, idx) => {
+ if (idx === 0) cy.wrap($el).should('have.attr', 'data-cy-app-order-element', 'files')
+ else cy.wrap($el).should('have.attr', 'data-cy-app-order-element', 'dashboard')
+ })
+ })
+
+ it('See the app menu order is changed', () => {
+ cy.reload()
+ cy.get('.app-menu-main .app-menu-entry').each(($el, idx) => {
+ if (idx === 0) cy.wrap($el).should('have.attr', 'data-app-id', 'files')
+ else cy.wrap($el).should('have.attr', 'data-app-id', 'dashboard')
+ })
+ })
+})
+
+describe('User theming set app order with default app', () => {
+ before(() => {
+ cy.resetAdminTheming()
+ // install a third app
+ cy.runOccCommand('app:install --force --allow-unstable calendar')
+ // set calendar as default app
+ cy.runOccCommand('config:system:set --value "calendar,files" defaultapp')
+
+ // Create random user for this test
+ cy.createRandomUser().then((user) => {
+ cy.login(user)
+ })
+ })
+
+ after(() => {
+ cy.logout()
+ cy.runOccCommand('app:remove calendar')
+ })
+
+ it('See calendar is the default app', () => {
+ cy.visit('/')
+ cy.url().should('match', /apps\/calendar/)
+
+ cy.get('.app-menu-main .app-menu-entry').each(($el, idx) => {
+ if (idx === 0) cy.wrap($el).should('have.attr', 'data-app-id', 'calendar')
+ })
+ })
+
+ it('See the app order settings: calendar is the first one', () => {
+ cy.visit('/settings/user/theming')
+ cy.get('[data-cy-app-order]').scrollIntoView()
+ cy.get('[data-cy-app-order] [data-cy-app-order-element]').should('have.length', 3).each(($el, idx) => {
+ if (idx === 0) cy.wrap($el).should('have.attr', 'data-cy-app-order-element', 'calendar')
+ else if (idx === 1) cy.wrap($el).should('have.attr', 'data-cy-app-order-element', 'dashboard')
+ })
+ })
+
+ it('Can not change the default app', () => {
+ cy.get('[data-cy-app-order] [data-cy-app-order-element="calendar"] [data-cy-app-order-button="up"]').should('not.be.visible')
+ cy.get('[data-cy-app-order] [data-cy-app-order-element="calendar"] [data-cy-app-order-button="down"]').should('not.be.visible')
+
+ cy.get('[data-cy-app-order] [data-cy-app-order-element="dashboard"] [data-cy-app-order-button="up"]').should('not.be.visible')
+ cy.get('[data-cy-app-order] [data-cy-app-order-element="dashboard"] [data-cy-app-order-button="down"]').should('be.visible')
+ cy.get('[data-cy-app-order] [data-cy-app-order-element="files"] [data-cy-app-order-button="down"]').should('not.be.visible')
+ cy.get('[data-cy-app-order] [data-cy-app-order-element="files"] [data-cy-app-order-button="up"]').should('be.visible')
+ })
+
+ it('Change the other apps order', () => {
+ cy.get('[data-cy-app-order] [data-cy-app-order-element="files"] [data-cy-app-order-button="up"]').click()
+ cy.get('[data-cy-app-order] [data-cy-app-order-element="files"] [data-cy-app-order-button="up"]').should('not.be.visible')
+
+ cy.get('[data-cy-app-order] [data-cy-app-order-element]').each(($el, idx) => {
+ if (idx === 0) cy.wrap($el).should('have.attr', 'data-cy-app-order-element', 'calendar')
+ else if (idx === 1) cy.wrap($el).should('have.attr', 'data-cy-app-order-element', 'files')
+ else cy.wrap($el).should('have.attr', 'data-cy-app-order-element', 'dashboard')
+ })
+ })
+
+ it('See the app menu order is changed', () => {
+ cy.reload()
+ cy.get('.app-menu-main .app-menu-entry').each(($el, idx) => {
+ if (idx === 0) cy.wrap($el).should('have.attr', 'data-app-id', 'calendar')
+ else if (idx === 1) cy.wrap($el).should('have.attr', 'data-app-id', 'files')
+ else cy.wrap($el).should('have.attr', 'data-app-id', 'dashboard')
+ })
+ })
+})