fixed the test issue, before all and things
This commit is contained in:
parent
1b45481d27
commit
7c68174ca4
|
@ -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 },
|
||||
|
|
11
src/index.ts
11
src/index.ts
|
@ -1,3 +1,12 @@
|
|||
import populateDatabase from "../tests/populateDatabase";
|
||||
import { startApp } from "./app";
|
||||
|
||||
startApp();
|
||||
await startApp();
|
||||
|
||||
|
||||
try{
|
||||
await populateDatabase();
|
||||
}
|
||||
catch {
|
||||
|
||||
}
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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");
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue