added intercept for error 500
parent
95be0423df
commit
00912cbec5
@ -0,0 +1,7 @@
|
||||
{
|
||||
"errors": {
|
||||
"Error 500 -": [
|
||||
"Internal server error"
|
||||
]
|
||||
}
|
||||
}
|
@ -1,24 +1,56 @@
|
||||
import login from '../selectors/login.sel'
|
||||
import header from '../selectors/header.sel'
|
||||
|
||||
describe('Login', () => {
|
||||
beforeEach(() => {
|
||||
// visit ('/login') -> will visit baseUrl + /login
|
||||
// baseUrl is set in config - cypress.json file
|
||||
cy.visit('/login')
|
||||
})
|
||||
// context is the same as describe
|
||||
context('unsuccessful', () => {
|
||||
beforeEach(() => {
|
||||
// visit ('/login') -> will visit baseUrl + /login
|
||||
// baseUrl is set in config - cypress.json file
|
||||
cy.visit('/login')
|
||||
})
|
||||
|
||||
it('can see error message when username/password incorrect', () => {
|
||||
cy.get(login.emailField).type('random@test.com')
|
||||
cy.get(login.passwordField).type('random_pass')
|
||||
cy.get(login.signInButton).should('have.text', 'Sign in').click()
|
||||
cy.get(login.errorMessages).should('be.visible')
|
||||
.and('contain', 'email or password is invalid')
|
||||
})
|
||||
|
||||
it('can see error message when username/password incorrect', () => {
|
||||
cy.get(login.emailField).type('random@test.com')
|
||||
cy.get(login.passwordField).type('random_pass')
|
||||
cy.get(login.signInButton).should('have.text', 'Sign in').click()
|
||||
cy.get(login.errorMessages).should('be.visible')
|
||||
.and('contain', 'email or password is invalid')
|
||||
it('can see error message when username and password fields are empty', () => {
|
||||
cy.get(login.signInButton).click()
|
||||
cy.get(login.errorMessages).should('be.visible')
|
||||
.and('contain', 'email or password is invalid')
|
||||
})
|
||||
|
||||
it('can see error message when API responds with 500', () => {
|
||||
cy.intercept('POST', 'https://conduit.productionready.io/api/users/login', {
|
||||
method: 'POST',
|
||||
statusCode: 500,
|
||||
fixture: 'login_error'
|
||||
})
|
||||
cy.get(login.emailField).type('random2@test.com')
|
||||
cy.get(login.passwordField).type('random_pass{enter}')
|
||||
cy.get(login.errorMessages).should('be.visible')
|
||||
.and('contain', 'Error 500 - Internal server error')
|
||||
})
|
||||
})
|
||||
|
||||
it('can press enter to log in', () => {
|
||||
cy.get(login.emailField).type('random2@test.com')
|
||||
cy.get(login.passwordField).type('random_pass{enter}')
|
||||
cy.get(login.errorMessages).should('be.visible')
|
||||
.and('contain', 'email or password is invalid')
|
||||
context('successful', () => {
|
||||
beforeEach(() => {
|
||||
// we need a new user
|
||||
cy.register().then((email) => {
|
||||
cy.wrap(email).as('email')
|
||||
})
|
||||
cy.visit('/login')
|
||||
})
|
||||
|
||||
it('can log in', function () {
|
||||
cy.get(login.emailField).type(this.email)
|
||||
cy.get(login.passwordField).type('Testtest1')
|
||||
cy.get(login.signInButton).click()
|
||||
cy.get(header.settingsLink).should('be.visible')
|
||||
})
|
||||
})
|
||||
})
|
||||
|
Loading…
Reference in New Issue