unit testing #7

Merged
Suguivy merged 67 commits from testing into develop 2023-12-31 11:11:23 +00:00
4 changed files with 27 additions and 12 deletions
Showing only changes of commit 7c68174ca4 - Show all commits

View File

@ -7,13 +7,14 @@ const authTokenSecret = process.env.JWTSECRET || "badsecret";
class AuthControler {
async login(req: Request, res: Response) {
// Read app and secret from request body
console.log(req.body)
const { app, secret } = req.body;
// Filter app from the apps by app and secret
const authenticated = await AuthService.find(app, secret);
if (authenticated) {
console.log("Authenticated app ", authenticated.app);
console.log("Authenticated app", authenticated.app);
// Generate an access token
const accessToken = jwt.sign(
{ app: authenticated.app },

View File

@ -1,3 +1,12 @@
import populateDatabase from "../tests/populateDatabase";
import { startApp } from "./app";
startApp();
await startApp();
try{
await populateDatabase();
}
catch {
}

View File

@ -1,8 +1,10 @@
import AuthModel, { Auth } from "../models/AuthModel";
class AuthService {
async find(app: string, secret: string): Promise<Auth | null> {
async find(app: String, secret: String): Promise<Auth | null> {
console.log(app, secret)
const auth = await AuthModel.findOne({ app: app, secret: secret });
console.log(auth)
return auth;
}
}

View File

@ -1,28 +1,31 @@
import { afterAll, beforeAll, describe, expect, it } from "bun:test";
import request from "supertest";
import request, { Response } from "supertest";
import app, { startApp } from "../src/app";
import memoryServer from "./memoryServer";
import populateDatabase from "./populateDatabase";
beforeAll(async () => {
if (!process.env.DEDICATED_MONGODB_SERVER)
await memoryServer.start();
if (!process.env.DEDICATED_MONGODB_SERVER) await memoryServer.start();
await startApp();
await populateDatabase();
});
afterAll(async () => {
if (!process.env.DEDICATED_MONGODB_SERVER)
await memoryServer.stop();
if (!process.env.DEDICATED_MONGODB_SERVER) await memoryServer.stop();
});
describe("/login", async () => {
const correctRespose = await request(app)
.post("/login")
.send({ app: "tester", secret: "test" });
it("should return 200 for correct login", () => {
let correctRespose: Response;
beforeAll(async () => {
correctRespose = await request(app)
.post("/login")
.send({ app: "tester", secret: "test" });
});
it("should return 200 for correct login", async () => {
expect(correctRespose.status).toBe(200);
});
it("should contain a token", () => {
expect(correctRespose.body).toHaveProperty("token");
});