98 lines
3.6 KiB
JavaScript
98 lines
3.6 KiB
JavaScript
|
|
/*
|
||
|
|
* Copyright (C) 2025 Xibo Signage Ltd
|
||
|
|
*
|
||
|
|
* Xibo - Digital Signage - https://xibosignage.com
|
||
|
|
*
|
||
|
|
* This file is part of Xibo.
|
||
|
|
*
|
||
|
|
* Xibo 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
|
||
|
|
* any later version.
|
||
|
|
*
|
||
|
|
* Xibo 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 Xibo. If not, see <http://www.gnu.org/licenses/>.
|
||
|
|
*/
|
||
|
|
|
||
|
|
/* eslint-disable max-len */
|
||
|
|
describe('Clock Analogue Widget', function() {
|
||
|
|
beforeEach(function() {
|
||
|
|
cy.login();
|
||
|
|
});
|
||
|
|
|
||
|
|
it('should create a new layout and be redirected to the layout designer, add/delete analogue clock', function() {
|
||
|
|
cy.intercept('/playlist/widget/*').as('saveWidget');
|
||
|
|
cy.intercept('DELETE', '**/region/**').as('deleteWidget');
|
||
|
|
cy.intercept('POST', '/user/pref').as('userPref');
|
||
|
|
|
||
|
|
cy.visit('/layout/view');
|
||
|
|
cy.get('button[href="/layout"]').click();
|
||
|
|
|
||
|
|
// Open widget menu
|
||
|
|
cy.openToolbarMenu(0);
|
||
|
|
|
||
|
|
cy.get('[data-sub-type="clock"]')
|
||
|
|
.should('be.visible')
|
||
|
|
.click();
|
||
|
|
cy.wait('@userPref');
|
||
|
|
|
||
|
|
cy.get('[data-sub-type="clock-analogue"] > .toolbar-card-thumb')
|
||
|
|
.should('be.visible')
|
||
|
|
.click();
|
||
|
|
cy.wait('@userPref');
|
||
|
|
|
||
|
|
cy.get('.viewer-object.layout.ui-droppable-active')
|
||
|
|
.should('be.visible')
|
||
|
|
.click();
|
||
|
|
|
||
|
|
// Check if the widget is in the viewer
|
||
|
|
cy.get('#layout-viewer .designer-region .widget-preview[data-type="widget_clock-analogue"]').should('exist');
|
||
|
|
|
||
|
|
cy.get('[name="themeId"]').select('Dark', {force: true});
|
||
|
|
cy.get('[name="offset"]').clear().type('1').trigger('change');
|
||
|
|
cy.wait('@saveWidget');
|
||
|
|
|
||
|
|
cy.get('.widget-form .nav-link[href="#advancedTab"]').click();
|
||
|
|
|
||
|
|
// Type the new name in the input
|
||
|
|
cy.get('#advancedTab input[name="name"]').clear().type('newName');
|
||
|
|
cy.wait('@saveWidget');
|
||
|
|
|
||
|
|
// Set a duration
|
||
|
|
cy.get('#advancedTab input[name="useDuration"]').check();
|
||
|
|
cy.wait('@saveWidget');
|
||
|
|
cy.get('#advancedTab input[name="duration"]').clear().type('12').trigger('change');
|
||
|
|
cy.wait('@saveWidget');
|
||
|
|
|
||
|
|
// Change the background of the layout
|
||
|
|
cy.get('.viewer-object').click({force: true});
|
||
|
|
cy.get('[name="backgroundColor"]').clear().type('#ffffff').trigger('change');
|
||
|
|
|
||
|
|
// Validate background color changed wo white
|
||
|
|
cy.get('.viewer-object').should('have.css', 'background-color', 'rgb(255, 255, 255)');
|
||
|
|
|
||
|
|
// Check if the name and duration values are the same entered
|
||
|
|
cy.get('#layout-viewer .designer-region .widget-preview[data-type="widget_clock-analogue"]').parents('.designer-region').click();
|
||
|
|
cy.get('.widget-form .nav-link[href="#advancedTab"]').click();
|
||
|
|
cy.get('#advancedTab input[name="name"]').should('have.attr', 'value').and('equal', 'newName');
|
||
|
|
cy.get('#advancedTab input[name="duration"]').should('have.attr', 'value').and('equal', '12');
|
||
|
|
|
||
|
|
// Delete
|
||
|
|
cy.get('#layout-viewer .designer-region .widget-preview[data-type="widget_clock-analogue"]')
|
||
|
|
.parents('.designer-region')
|
||
|
|
.rightclick();
|
||
|
|
|
||
|
|
// todo -investigate further why this is not working in ci/cdk mode
|
||
|
|
// cy.get('[data-title="Delete"]').click().then(() => {
|
||
|
|
// cy.wait('@deleteWidget').its('response.statusCode').should('eq', 200);
|
||
|
|
// cy.get('#layout-viewer .designer-region .widget-preview[data-type="widget_clock-analogue"]')
|
||
|
|
// .should('not.exist');
|
||
|
|
// });
|
||
|
|
});
|
||
|
|
});
|