bot-api/tests/app.test.ts

59 lines
1.8 KiB
TypeScript
Raw Normal View History

2023-12-27 15:52:15 +00:00
import { describe, expect, it, mock } from "bun:test";
2023-12-25 11:15:19 +00:00
import request from "supertest";
import { app } from "../src";
2023-12-27 15:52:15 +00:00
describe("GET / shows what it should",async () => {
const res = await request(app).get("/");
it("should be", async () => {
expect(res.body).toHaveProperty("message", "Blazing fast 🚀");
});
})
describe("GET /images works properly", async () => {
const res = await request(app).get("/images");
2023-12-25 11:15:19 +00:00
it("should be an array", async () => {
2023-12-27 15:52:15 +00:00
expect(Array.isArray(res.body.message)).toBeTrue();
});
it("should return a 200", async () => {
2023-12-25 11:15:19 +00:00
expect(res.statusCode).toBe(200);
});
});
describe("POST /images works properly", () => {
it("should return 201 for new image", async () => {
2023-12-25 11:15:19 +00:00
const res = await request(app).post("/images").send({
url: "https://test.url.com/1",
status: "available",
tags: ["2girls", "touhou"]
});
expect(res.status).toSatisfy(status => [201].includes(status));
});
it("should return 409 for a repeated images", async () => {
await request(app).post("/images").send({
url: "https://test.url.com/2",
2023-12-25 11:15:19 +00:00
status: "available",
tags: ["2girls", "touhou"]
});
const res = await request(app).post("/images").send({
url: "https://test.url.com/2",
status: "available",
tags: ["2girls", "touhou"]
});
expect(res.status).toSatisfy(status => [409].includes(status));
});
it("should return 400 for malformed requests", async () => {
const res = await request(app).post("/images").send({
url: "https://test.url.com/3",
status: "wrong",
tags: ["2girls", "touhou"]
});
expect(res.status).toSatisfy(status => [400].includes(status));
2023-12-25 11:15:19 +00:00
});
});