Files
openstapps/frontend/app/cypress/integration/dashboard.spec.ts
2024-03-27 09:55:30 +01:00

184 lines
6.2 KiB
TypeScript

/*
* Copyright (C) 2023 StApps
* This program is free software: you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the Free
* Software Foundation, version 3.
*
* 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 General Public License for
* more details.
*
* You should have received a copy of the GNU General Public License along with
* this program. If not, see <https://www.gnu.org/licenses/>.
*/
import {DashboardComponent} from '../../src/app/modules/dashboard/dashboard.component';
describe('dashboard', async function () {
beforeEach(function () {
cy.interceptSearch({
extends: 'news/all',
fixture: 'news/all',
alias: 'newsSection',
});
cy.interceptSearch({
extends: {filter: {type: 'value', arguments: {field: 'type', value: 'job posting'}}},
fixture: 'no-results',
});
cy.visit('/overview');
cy.wait('@newsSection');
});
describe('schedule section', function () {
it('should lead to the week overview', function () {
cy.get('.schedule')
.contains('a', /Wochen.*übersicht/)
.click();
cy.url().should('include', '/schedule/week-overview');
});
it('should lead to the calendar', function () {
cy.get('.schedule').contains('a', 'Kein Eintrag gefunden').click();
cy.url().should('include', '/schedule/calendar');
});
it('should display the next unit', function () {
cy.interceptSearch({extends: 'dashboard/next-unit', fixture: 'dashboard/next-unit', alias: 'nextUnit'});
cy.get('.schedule-item-button').should('exist');
cy.get('app-dashboard')
.component<DashboardComponent>()
.its('scheduleProvider')
.its('_partialEvents$')
.runInsideAngular(events => {
events.next([{uid: 'abc'}]);
});
cy.wait('@nextUnit');
cy.get('.schedule-item-button').should('contain', 'UNIcert (Test)');
});
});
describe('mensa section', function () {
it('should have info when nothing is added', function () {
cy.get('stapps-mensa-section').within(() => {
cy.get('swiper').should('not.exist');
cy.get('.nothing-selected > ion-label > a').should('have.text', 'Übersicht der Mensen');
});
});
it('should add a mensa', function () {
cy.interceptMultiSearch({
extends: 'canteen/dishes',
fixture: 'canteen/dishes',
alias: 'dishes',
});
cy.interceptSearch({
extends: 'canteen/all',
fixture: 'canteen/all',
alias: 'canteen',
});
cy.visit('/overview');
cy.get('stapps-mensa-section').find('.nothing-selected > ion-label > a').click();
cy.wait('@canteen');
cy.get('stapps-favorite-button').first().click();
cy.get('ion-back-button').click();
cy.wait('@dishes');
cy.get('stapps-mensa-section').find('simple-swiper > *').should('have.length.greaterThan', 1);
});
});
describe('news section', function () {
// TODO: Cypress has no real way of setting the presence of a pointing device,
// which means the behavior is undefined and depends on the testing device
// it('should have desktop navigation buttons', function () {
// cy.visit('/overview');
//
// cy.get('stapps-news-section').within(function () {
// cy.get('.swiper-button').should('not.have.css', 'display: none');
// });
// });
// it('should not have desktop navigation buttons on mobile', function () {
// cy.visit('/overview');
//
// cy.get('stapps-news-section').within(function () {
// cy.get('.swiper-button').should('have.css', 'display: none');
// });
// });
it('should have working desktop navigation', function () {
cy.get('stapps-news-section').within(function () {
cy.get('simple-swiper > *').eq(0).should('be.visible');
// TODO: see tests above, button will be visible or invisible
// depending on the testing device
cy.get('.swiper-button > ion-button').eq(1).click({scrollBehavior: false, force: true});
cy.get('simple-swiper > *').eq(0).should('not.be.visible');
});
});
it('should have a link to the news page', function () {
cy.get('stapps-news-section')
.contains('ion-item', 'Mehr Nachrichten')
.click({scrollBehavior: false, force: true});
cy.wait('@newsSection');
cy.url().should('include', '/news');
});
});
// TODO: Reenable tests after update of component
// describe('navigation section', function () {
// it('should have editable dashboard sections', function () {
// cy.visit('/overview');
// const section = 'Vorlesungsv.';
// cy.get('stapps-navigation-section').within(() => {
// cy.get('.card').should('contain.text', section);
// cy.get('ion-icon[name=edit_square]').click();
// });
// cy.get('stapps-dashboard-edit-modal').within(() => {
// cy.contains('ion-item', section).find('ion-toggle').click();
// cy.contains('ion-button', 'Bestätigen').click();
// });
// cy.get('stapps-navigation-section').within(() => {
// cy.get('.card').should('not.contain.text', section);
// cy.get('ion-icon[name=edit_square]').click({scrollBehavior: false});
// });
// cy.get('stapps-dashboard-edit-modal').within(() => {
// cy.contains('ion-item', section).find('ion-toggle').click();
// cy.contains('ion-button', 'Bestätigen').click();
// });
// cy.get('stapps-navigation-section')
// .find('.card')
// .should('contain.text', section);
// });
// });
describe('search section', function () {
it('should go to search', function () {
cy.visit('/overview');
cy.get('ion-searchbar').click({scrollBehavior: 'center'});
cy.url().should('include', '/search');
cy.get('ion-searchbar').should('not.have.value');
cy.get('ion-searchbar input.searchbar-input').should('have.focus');
cy.get('stapps-data-list-item').should('have.length', 0);
});
});
});