|
| 1 | +import type { EmojiCategory } from "../../src/types"; |
| 2 | +import { |
| 3 | + createExecutionContext, |
| 4 | + env, |
| 5 | + waitOnExecutionContext, |
| 6 | +} from "cloudflare:test"; |
| 7 | +import { describe, expect, it } from "vitest"; |
| 8 | +import worker from "../../src"; |
| 9 | + |
| 10 | +describe("v1_categories", () => { |
| 11 | + it("should return 404 for non-existent version", async () => { |
| 12 | + const request = new Request("https://mojis.dev/api/v1/categories/999.0"); |
| 13 | + const ctx = createExecutionContext(); |
| 14 | + const response = await worker.fetch(request, env, ctx); |
| 15 | + await waitOnExecutionContext(ctx); |
| 16 | + |
| 17 | + expect(response.status).toBe(404); |
| 18 | + expect(await response.json()).toEqual({ |
| 19 | + message: "version not found", |
| 20 | + status: 404, |
| 21 | + path: "/api/v1/categories/999.0", |
| 22 | + timestamp: expect.any(String), |
| 23 | + }); |
| 24 | + }); |
| 25 | + |
| 26 | + it("should redirect /latest to the actual latest version", async () => { |
| 27 | + const request = new Request("https://mojis.dev/api/v1/categories/latest"); |
| 28 | + const ctx = createExecutionContext(); |
| 29 | + const response = await worker.fetch(request, env, ctx); |
| 30 | + await waitOnExecutionContext(ctx); |
| 31 | + |
| 32 | + expect(response.status).toBe(302); |
| 33 | + expect(response.headers.get("location")).toMatch(/\/api\/v1\/categories\/\d+\.\d+/); |
| 34 | + }); |
| 35 | + |
| 36 | + it("should return all categories for a valid version", async () => { |
| 37 | + const request = new Request("https://mojis.dev/api/v1/categories/15.1"); |
| 38 | + const ctx = createExecutionContext(); |
| 39 | + const response = await worker.fetch(request, env, ctx); |
| 40 | + await waitOnExecutionContext(ctx); |
| 41 | + |
| 42 | + expect(response.status).toBe(200); |
| 43 | + const data = await response.json() as EmojiCategory[]; |
| 44 | + expect(Array.isArray(data)).toBe(true); |
| 45 | + expect(data[0]).toMatchObject({ |
| 46 | + name: expect.any(String), |
| 47 | + slug: expect.any(String), |
| 48 | + subgroups: expect.any(Array), |
| 49 | + }); |
| 50 | + }); |
| 51 | + |
| 52 | + it("should return a specific category", async () => { |
| 53 | + const request = new Request("https://mojis.dev/api/v1/categories/15.1/smileys-emotion"); |
| 54 | + const ctx = createExecutionContext(); |
| 55 | + const response = await worker.fetch(request, env, ctx); |
| 56 | + await waitOnExecutionContext(ctx); |
| 57 | + |
| 58 | + expect(response.status).toBe(200); |
| 59 | + const data = await response.json(); |
| 60 | + expect(data).toMatchObject({ |
| 61 | + name: expect.any(String), |
| 62 | + slug: "smileys-emotion", |
| 63 | + subgroups: expect.any(Array), |
| 64 | + }); |
| 65 | + }); |
| 66 | + |
| 67 | + it("should handle missing version parameter", async () => { |
| 68 | + const request = new Request("https://mojis.dev/api/v1/categories/"); |
| 69 | + const ctx = createExecutionContext(); |
| 70 | + const response = await worker.fetch(request, env, ctx); |
| 71 | + await waitOnExecutionContext(ctx); |
| 72 | + |
| 73 | + expect(response.status).toBe(404); |
| 74 | + expect(await response.json()).toEqual({ |
| 75 | + message: "Not found", |
| 76 | + status: 404, |
| 77 | + path: "/api/v1/categories/", |
| 78 | + timestamp: expect.any(String), |
| 79 | + }); |
| 80 | + }); |
| 81 | +}); |
0 commit comments