summary refs log tree commit diff
path: root/tests/routes/auth/login.test.js
blob: d4b524449a096a22c5601ac61fb9e3bee7d9fac1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
const supertest = require("supertest");
const request = supertest("http://localhost:3001");

describe("/api/auth/login", () => {
	describe("POST", () => {
		test("without body", async () => {
			const response = await request.post("/api/auth/login").send({});
			expect(response.statusCode).toBe(400);
		});
		test("with body", async () => {
			const user = {
				login: "fortnitefortnite@gmail.com",
				password: "verysecurepassword"
			};

			await request.post("/api/auth/register").send({
				fingerprint: "805826570869932034.wR8vi8lGlFBJerErO9LG5NViJFw",
				email: user.login,
				username: user.login.split("@")[0],
				password: user.password,
				invite: null,
				consent: true,
				date_of_birth: "2000-04-04",
				gift_code_sku_id: null,
				captcha_key: null
			});

			const response = await request.post("/api/auth/login").send(user);

			expect(response.statusCode).toBe(200);
		});
	});
});