1
0
mirror of https://github.com/xuthus83/pigallery2.git synced 2024-11-03 21:04:03 +08:00
pigallery2/test/cypress/e2e/faces.cy.ts

35 lines
1.1 KiB
TypeScript
Raw Normal View History

describe('Faces', () => {
beforeEach(() => {
cy.visit('/');
cy.get('.card-body');
cy.get('.col-sm-12').contains('Login');
/* ==== Generated with Cypress Studio ==== */
cy.get('#username').type('admin');
cy.get('#password').clear();
cy.get('#password').type('admin');
cy.intercept({
method: 'Get',
url: '/pgapi/gallery/content/',
}).as('getContent');
cy.intercept({
method: 'Get',
url: '/pgapi/person',
}).as('getPerson');
cy.get('.col-sm-12 > .btn').click();
// make sure that the dir is parsed before navigating to faces
cy.wait('@getContent');
cy.get('nav .nav-item .nav-link').contains('Faces').click({force: true});
});
it('Show faces', () => {
cy.wait('@getPerson', {timeout: 10000});
// contains a folder
2023-09-07 03:38:00 +08:00
cy.get('app-face a > .info', {timeout: 10000}).contains('Alvin the Squirrel').should('exist');
});
it('Faces should have photos', () => {
cy.wait('@getPerson', {timeout: 10000});
// should have a photo
cy.get('app-face .photo-container .photo', {timeout: 10000}).should('exist');
});
});