deno.land / x / abc@v1.3.3 / group_test.ts

نووسراو ببینە
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
import type { HandlerFunc, MiddlewareFunc } from "./types.ts";
import { assertEquals } from "./vendor/https/deno.land/std/testing/asserts.ts";import { Status } from "./vendor/https/deno.land/std/http/http_status.ts";import { createApplication } from "./test_util.ts";const { test } = Deno;
const addr = `http://localhost:8081`;
test("group middleware", async function (): Promise<void> { const app = createApplication(); const g = app.group("group"); const h: HandlerFunc = function (): void { return; }; const m1: MiddlewareFunc = (next) => (c) => next(c); const m2: MiddlewareFunc = (next) => (c) => next(c); const m3: MiddlewareFunc = (next) => (c) => next(c); const m4: MiddlewareFunc = () => (c) => { c.response.status = 404; }; const m5: MiddlewareFunc = () => (c) => { c.response.status = 405; };
g.use(m1, m2, m3); g.get("/404", h, m4); g.get("/405", h, m5); let res = await fetch(`${addr}/group/404`); assertEquals(res.status, Status.NotFound); assertEquals(await res.text(), ""); res = await fetch(`${addr}/group/405`); assertEquals(res.status, Status.MethodNotAllowed); assertEquals(await res.text(), "");
const u = app.group("user");
const check: MiddlewareFunc = (next) => { return function (c) { const { id } = c.params as { id: string }; if (id === "zhmushan") { c.set("role", "admin"); } else { c.set("role", "user"); } return next(c); }; };
u.get("/", (_) => "/"); u.get("/:id", (c) => { const role = c.get("role") as string; return role; });
u.use(check);
res = await fetch(`${addr}/user/zhmushan`); assertEquals(res.status, Status.OK); assertEquals(await res.text(), "admin"); res = await fetch(`${addr}/user/MuShan`); assertEquals(res.status, Status.OK); assertEquals(await res.text(), "user"); await app.close();});
abc

Version Info

Tagged at
2 years ago