123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302 |
- /**
- * SPDX-FileCopyrightText: 2022 Nextcloud GmbH and Nextcloud contributors
- * SPDX-License-Identifier: AGPL-3.0-or-later
- */
- import { User } from '@nextcloud/cypress'
- import { defaultPrimary, defaultBackground, validateBodyThemingCss } from './themingUtils'
- import { NavigationHeader } from '../../pages/NavigationHeader'
- const admin = new User('admin', 'admin')
- describe('User default background settings', function() {
- before(function() {
- cy.resetAdminTheming()
- cy.resetUserTheming(admin)
- cy.createRandomUser().then((user: User) => {
- cy.login(user)
- })
- })
- it('See the user background settings', function() {
- cy.visit('/settings/user/theming')
- cy.get('[data-user-theming-background-settings]').scrollIntoView()
- cy.get('[data-user-theming-background-settings]').should('be.visible')
- })
- // Default cloud background is not rendered if admin theming background remains unchanged
- it('Default cloud background is not rendered', function() {
- cy.get(`[data-user-theming-background-shipped="${defaultBackground}"]`).should('not.exist')
- })
- it('Default is selected on new users', function() {
- cy.get('[data-user-theming-background-default]').should('be.visible')
- cy.get('[data-user-theming-background-default]').should('have.class', 'background--active')
- })
- it('Default background has accessibility attribute set', function() {
- cy.get('[data-user-theming-background-default]').should('have.attr', 'aria-pressed', 'true')
- })
- })
- describe('User select shipped backgrounds and remove background', function() {
- before(function() {
- cy.createRandomUser().then((user: User) => {
- cy.login(user)
- })
- })
- it('See the user background settings', function() {
- cy.visit('/settings/user/theming')
- cy.get('[data-user-theming-background-settings]').scrollIntoView()
- cy.get('[data-user-theming-background-settings]').should('be.visible')
- })
- it('Select a shipped background', function() {
- const background = 'anatoly-mikhaltsov-butterfly-wing-scale.jpg'
- cy.intercept('*/apps/theming/background/shipped').as('setBackground')
- // Select background
- cy.get(`[data-user-theming-background-shipped="${background}"]`).click()
- // Set the accessibility state
- cy.get(`[data-user-theming-background-shipped="${background}"]`).should('have.attr', 'aria-pressed', 'true')
- // Validate changed background and primary
- cy.wait('@setBackground')
- cy.waitUntil(() => validateBodyThemingCss('#a53c17', background, '#652e11'))
- })
- it('Select a bright shipped background', function() {
- const background = 'bernie-cetonia-aurata-take-off-composition.jpg'
- cy.intercept('*/apps/theming/background/shipped').as('setBackground')
- // Select background
- cy.get(`[data-user-theming-background-shipped="${background}"]`).click()
- // Set the accessibility state
- cy.get(`[data-user-theming-background-shipped="${background}"]`).should('have.attr', 'aria-pressed', 'true')
- // Validate changed background and primary
- cy.wait('@setBackground')
- cy.waitUntil(() => validateBodyThemingCss('#56633d', background, '#dee0d3'))
- })
- it('Remove background', function() {
- cy.intercept('*/apps/theming/background/color').as('clearBackground')
- // Clear background
- cy.get('[data-user-theming-background-color]').click()
- // Set the accessibility state
- cy.get('[data-user-theming-background-color]').should('have.attr', 'aria-pressed', 'true')
- // Validate clear background
- cy.wait('@clearBackground')
- cy.waitUntil(() => validateBodyThemingCss('#56633d', null, '#dee0d3'))
- })
- })
- describe('User select a custom color', function() {
- before(function() {
- cy.createRandomUser().then((user: User) => {
- cy.login(user)
- })
- })
- it('See the user background settings', function() {
- cy.visit('/settings/user/theming')
- cy.get('[data-user-theming-background-settings]').scrollIntoView()
- cy.get('[data-user-theming-background-settings]').should('be.visible')
- })
- it('Select a custom color', function() {
- cy.intercept('*/apps/theming/background/color').as('setColor')
- cy.get('[data-user-theming-background-color]').click()
- cy.get('.color-picker__simple-color-circle').eq(5).click()
- // Validate custom colour change
- cy.wait('@setColor')
- cy.waitUntil(() => validateBodyThemingCss(defaultPrimary, null, '#a5b872'))
- })
- })
- describe('User select a bright custom color and remove background', function() {
- const navigationHeader = new NavigationHeader()
- before(function() {
- cy.createRandomUser().then((user: User) => {
- cy.login(user)
- })
- })
- it('See the user background settings', function() {
- cy.visit('/settings/user/theming')
- cy.get('[data-user-theming-background-settings]').scrollIntoView()
- cy.get('[data-user-theming-background-settings]').should('be.visible')
- })
- it('Remove background', function() {
- cy.intercept('*/apps/theming/background/color').as('clearBackground')
- // Clear background
- cy.get('[data-user-theming-background-color]').click()
- cy.get('[data-user-theming-background-color]').click()
- // Validate clear background
- cy.wait('@clearBackground')
- cy.waitUntil(() => validateBodyThemingCss(undefined, null))
- })
- it('Select a custom color', function() {
- cy.intercept('*/apps/theming/background/color').as('setColor')
- // Pick one of the bright color preset
- cy.get('[data-user-theming-background-color]').scrollIntoView()
- cy.get('[data-user-theming-background-color]').click()
- cy.get('.color-picker__simple-color-circle:eq(4)').click()
- // Validate custom colour change
- cy.wait('@setColor')
- })
- it('See the header being inverted', function() {
- cy.waitUntil(() => navigationHeader.getNavigationEntries().find('img').then((el) => {
- let ret = true
- el.each(function() {
- ret = ret && window.getComputedStyle(this).filter === 'invert(1)'
- })
- return ret
- }))
- })
- it('Select another but non-bright shipped background', function() {
- const background = 'anatoly-mikhaltsov-butterfly-wing-scale.jpg'
- cy.intercept('*/apps/theming/background/shipped').as('setBackground')
- // Select background
- cy.get(`[data-user-theming-background-shipped="${background}"]`).click()
- // Validate changed background and primary
- cy.wait('@setBackground')
- cy.waitUntil(() => validateBodyThemingCss('#a53c17', background, '#652e11'))
- })
- it('See the header NOT being inverted this time', function() {
- cy.waitUntil(() => navigationHeader.getNavigationEntries().find('img').then((el) => {
- let ret = true
- el.each(function() {
- ret = ret && window.getComputedStyle(this).filter === 'none'
- })
- return ret
- }))
- })
- })
- describe('User select a custom background', function() {
- const image = 'image.jpg'
- before(function() {
- cy.createRandomUser().then((user: User) => {
- cy.uploadFile(user, image, 'image/jpeg')
- cy.login(user)
- })
- })
- it('See the user background settings', function() {
- cy.visit('/settings/user/theming')
- cy.get('[data-user-theming-background-settings]').scrollIntoView()
- cy.get('[data-user-theming-background-settings]').should('be.visible')
- })
- it('Select a custom background', function() {
- cy.intercept('*/apps/theming/background/custom').as('setBackground')
- cy.on('uncaught:exception', (err) => {
- // This can happen because of blink engine & skeleton animation, its not a bug just engine related.
- if (err.message.includes('ResizeObserver loop limit exceeded')) {
- return false
- }
- })
- // Pick background
- cy.get('[data-user-theming-background-custom]').click()
- cy.get('.file-picker__files tr').contains(image).click()
- cy.get('.dialog__actions .button-vue--vue-primary').click()
- // Wait for background to be set
- cy.wait('@setBackground')
- cy.waitUntil(() => validateBodyThemingCss(defaultPrimary, 'apps/theming/background?v=', '#2f2221'))
- })
- })
- describe('User changes settings and reload the page', function() {
- const image = 'image.jpg'
- const colorFromImage = '#2f2221'
- before(function() {
- cy.createRandomUser().then((user: User) => {
- cy.uploadFile(user, image, 'image/jpeg')
- cy.login(user)
- })
- })
- it('See the user background settings', function() {
- cy.visit('/settings/user/theming')
- cy.get('[data-user-theming-background-settings]').scrollIntoView()
- cy.get('[data-user-theming-background-settings]').should('be.visible')
- })
- it('Select a custom background', function() {
- cy.intercept('*/apps/theming/background/custom').as('setBackground')
- cy.on('uncaught:exception', (err) => {
- // This can happen because of blink engine & skeleton animation, its not a bug just engine related.
- if (err.message.includes('ResizeObserver loop limit exceeded')) {
- return false
- }
- })
- // Pick background
- cy.get('[data-user-theming-background-custom]').click()
- cy.get('.file-picker__files tr').contains(image).click()
- cy.get('.dialog__actions .button-vue--vue-primary').click()
- // Wait for background to be set
- cy.wait('@setBackground')
- cy.waitUntil(() => validateBodyThemingCss(defaultPrimary, 'apps/theming/background?v=', colorFromImage))
- })
- it('Select a custom color', function() {
- cy.intercept('*/apps/theming/background/color').as('setColor')
- cy.get('[data-user-theming-background-color]').click()
- cy.get('.color-picker__simple-color-circle:eq(5)').click()
- cy.get('[data-user-theming-background-color]').click()
- // Validate clear background
- cy.wait('@setColor')
- cy.waitUntil(() => validateBodyThemingCss(defaultPrimary, null, '#a5b872'))
- })
- it('Select a custom primary color', function() {
- cy.intercept('/ocs/v2.php/apps/provisioning_api/api/v1/config/users/theming/primary_color').as('setPrimaryColor')
- cy.get('[data-user-theming-primary-color-trigger]').scrollIntoView()
- cy.get('[data-user-theming-primary-color-trigger]').click()
- // eslint-disable-next-line cypress/no-unnecessary-waiting
- cy.wait(500)
- cy.get('.color-picker__simple-color-circle').should('be.visible')
- cy.get('.color-picker__simple-color-circle:eq(2)').click()
- cy.get('[data-user-theming-primary-color-trigger]').click()
- // Validate clear background
- cy.wait('@setPrimaryColor')
- cy.waitUntil(() => validateBodyThemingCss('#c98879', null, '#a5b872'))
- })
- it('Reload the page and validate persistent changes', function() {
- cy.reload()
- cy.waitUntil(() => validateBodyThemingCss('#c98879', null, '#a5b872'))
- })
- })
|