-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
E2E tests for authentication controller
- Loading branch information
Showing
1 changed file
with
81 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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({})) | ||
}) | ||
}) |