2020-12-10 14:52:35 +01:00
|
|
|
// This test assumes no mailer is set up and all users are activated immediately.
|
|
|
|
|
|
|
|
import {UserFactory} from '../../factories/user'
|
|
|
|
|
|
|
|
context('Registration', () => {
|
|
|
|
beforeEach(() => {
|
|
|
|
UserFactory.create(1, {
|
|
|
|
username: 'test',
|
|
|
|
})
|
|
|
|
cy.visit('/', {
|
|
|
|
onBeforeLoad(win) {
|
|
|
|
win.localStorage.removeItem('token')
|
|
|
|
},
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should work without issues', () => {
|
|
|
|
const fixture = {
|
|
|
|
username: 'testuser',
|
|
|
|
password: '123456',
|
|
|
|
email: 'testuser@example.com',
|
|
|
|
}
|
|
|
|
|
|
|
|
cy.visit('/register')
|
|
|
|
cy.get('#username').type(fixture.username)
|
|
|
|
cy.get('#email').type(fixture.email)
|
|
|
|
cy.get('#password1').type(fixture.password)
|
|
|
|
cy.get('#password2').type(fixture.password)
|
2021-01-17 18:57:57 +01:00
|
|
|
cy.get('#register-submit').click()
|
2020-12-10 14:52:35 +01:00
|
|
|
cy.url().should('include', '/')
|
2021-07-07 10:19:37 +02:00
|
|
|
cy.clock(1625656161057) // 13:00
|
2020-12-10 14:52:35 +01:00
|
|
|
cy.get('h2').should('contain', `Hi ${fixture.username}!`)
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should fail', () => {
|
|
|
|
const fixture = {
|
|
|
|
username: 'test',
|
|
|
|
password: '123456',
|
|
|
|
email: 'testuser@example.com',
|
|
|
|
}
|
|
|
|
|
|
|
|
cy.visit('/register')
|
|
|
|
cy.get('#username').type(fixture.username)
|
|
|
|
cy.get('#email').type(fixture.email)
|
|
|
|
cy.get('#password1').type(fixture.password)
|
|
|
|
cy.get('#password2').type(fixture.password)
|
2021-01-17 18:57:57 +01:00
|
|
|
cy.get('#register-submit').click()
|
2020-12-10 14:52:35 +01:00
|
|
|
cy.get('div.notification.is-danger').contains('A user with this username already exists.')
|
|
|
|
})
|
|
|
|
})
|