import { describe, expect, it, mock } from "bun:test"; import Image from "../src/types/Image"; import ImageService from "../src/services/ImageService"; import GelbooruApiResponse from "../src/types/GelbooruServiceResponse"; import { BotApiResponse } from "../src/types/BotApiResponse"; describe("endpoint gets a non repeated image", () => { it("should return an image that is not in the response of the /images endpoint of the bot API", async () => { const REPEATED_URL = "image.com/1"; const UNIQUE_URL = "image.com/2"; mock.module("../src/services/GelbooruApiService", () => { let alreadyCalled = false; return { default: { get: (): GelbooruApiResponse => { if (alreadyCalled) { return { posts: [{ url: UNIQUE_URL, tags: [] }] }; } else { alreadyCalled = true; return { posts: [{ url: REPEATED_URL, tags: [] }] }; } } } } }); mock.module("../src/services/BotApiService", () => ({ default: { getAll: (): BotApiResponse => ({ images: [ { _id: "0", url: REPEATED_URL, status: "consumed", tags: ["pokemon", "computer"], "__v": 0 } ] }) } })); const image: Image = await ImageService.get(); expect(image.url).not.toBe(REPEATED_URL); }) })