Skip to content

Commit ae3af3b

Browse files
committed
feat(v1/categories): add EmojiCategory type and tests for category endpoints
1 parent 711c022 commit ae3af3b

File tree

2 files changed

+83
-1
lines changed

2 files changed

+83
-1
lines changed

src/types.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import type { z } from "zod";
2-
import type { ApiErrorSchema, EMOJI_LOCK_SCHEMA, EmojiVersionSchema } from "./schemas";
2+
import type { ApiErrorSchema, EMOJI_LOCK_SCHEMA, EmojiCategorySchema, EmojiVersionSchema } from "./schemas";
33

44
export interface HonoContext {
55
Bindings: {
@@ -13,3 +13,4 @@ export type HonoBindings = HonoContext["Bindings"];
1313
export type ApiError = z.infer<typeof ApiErrorSchema>;
1414
export type EmojiLock = z.infer<typeof EMOJI_LOCK_SCHEMA>;
1515
export type EmojiVersion = z.infer<typeof EmojiVersionSchema>;
16+
export type EmojiCategory = z.infer<typeof EmojiCategorySchema>;

test/routes/v1_categories.test.ts

+81
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,81 @@
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

Comments
 (0)