You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
71 lines
2.0 KiB
71 lines
2.0 KiB
const testUser = {
|
|
displayName: 'Test User',
|
|
emailAddress: 'test@seeerr.dev',
|
|
password: 'test1234',
|
|
};
|
|
|
|
describe('User List', () => {
|
|
beforeEach(() => {
|
|
cy.login(Cypress.env('ADMIN_EMAIL'), Cypress.env('ADMIN_PASSWORD'));
|
|
});
|
|
|
|
it('opens the user list from the home page', () => {
|
|
cy.visit('/');
|
|
|
|
cy.get('[data-testid=sidebar-toggle]').click();
|
|
cy.get('[data-testid=sidebar-menu-users-mobile]').click();
|
|
|
|
cy.get('[data-testid=page-header]').should('contain', 'User List');
|
|
});
|
|
|
|
it('can find the admin user and friend user in the user list', () => {
|
|
cy.visit('/users');
|
|
|
|
cy.get('[data-testid=user-list-row]').contains(Cypress.env('ADMIN_EMAIL'));
|
|
cy.get('[data-testid=user-list-row]').contains(Cypress.env('USER_EMAIL'));
|
|
});
|
|
|
|
it('can create a local user', () => {
|
|
cy.visit('/users');
|
|
|
|
cy.contains('Create Local User').click();
|
|
|
|
cy.get('[data-testid=modal-title]').should('contain', 'Create Local User');
|
|
|
|
cy.get('#displayName').type(testUser.displayName);
|
|
cy.get('#email').type(testUser.emailAddress);
|
|
cy.get('#password').type(testUser.password);
|
|
|
|
cy.intercept('/api/v1/user?take=10&skip=0&sort=displayname').as('user');
|
|
|
|
cy.get('[data-testid=modal-ok-button]').click();
|
|
|
|
cy.wait('@user');
|
|
// Wait a little longer for the user list to fully re-render
|
|
cy.wait(1000);
|
|
|
|
cy.get('[data-testid=user-list-row]').contains(testUser.emailAddress);
|
|
});
|
|
|
|
it('can delete the created local test user', () => {
|
|
cy.visit('/users');
|
|
|
|
cy.contains('[data-testid=user-list-row]', testUser.emailAddress)
|
|
.contains('Delete')
|
|
.click();
|
|
|
|
cy.get('[data-testid=modal-title]').should('contain', 'Delete User');
|
|
|
|
cy.intercept('/api/v1/user?take=10&skip=0&sort=displayname').as('user');
|
|
|
|
cy.get('[data-testid=modal-ok-button]').should('contain', 'Delete').click();
|
|
|
|
cy.wait('@user');
|
|
cy.wait(1000);
|
|
|
|
cy.get('[data-testid=user-list-row]')
|
|
.contains(testUser.emailAddress)
|
|
.should('not.exist');
|
|
});
|
|
});
|