Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

E2E tests for authentication controller #29

Merged
merged 1 commit into from
Jan 30, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
81 changes: 81 additions & 0 deletions src/controller/session/authUser.spec.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,81 @@
import { afterAll, beforeAll, describe, expect, test } from 'vitest'
import { app } from '../../app'
import request from 'supertest'

describe('User Login E2E', () => {
beforeAll(async () => {
await app.ready()
})

afterAll(async () => {
await app.close()
})

test('should be able to login', async () => {
const email = '[email protected]'
const name = 'John'
const surname = 'Doe'
const password = 'password'

await request(app.server).post('/user').send({
email,
name,
surname,
password,
})

const userData = await request(app.server)
.post('/login')
.send({ email, password })

expect(userData.statusCode).toEqual(200)
expect(userData.body).toEqual({
user: expect.any(Object),
token: expect.any(String),
})
})

test('should not be able to login because the password is incorrect', async () => {
const email = '[email protected]'
const name = 'John'
const surname = 'Doe'
const password = 'password'
const wrongPassword = 'wrongPassword'

await request(app.server).post('/user').send({
email,
name,
surname,
password,
})

const userData = await request(app.server)
.post('/login')
.send({ email, password: wrongPassword })

expect(userData.statusCode).toEqual(401)
expect(userData.body.user).toEqual(expect.objectContaining({}))
})

test('should not be able to login because the email is incorrect', async () => {
const email = '[email protected]'
const wrongEmail = '[email protected]'
const name = 'John'
const surname = 'Doe'
const password = 'password'

await request(app.server).post('/user').send({
email,
name,
surname,
password,
})

const userData = await request(app.server)
.post('/login')
.send({ email: wrongEmail, password })

expect(userData.statusCode).toEqual(401)
expect(userData.body.user).toEqual(expect.objectContaining({}))
})
})
Loading