deno.land / x / alosaur@v1.1.1 / e2e / hooks.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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
import { assert, assertEquals } from "../src/deps_test.ts";import { killServer, startServer } from "./test.utils.ts";const { test } = Deno;
/** * Test cases */test({ name: "[http] hooks server should response 200, 404", async fn(t): Promise<void> { const process = await startServer("./examples/hooks/app.ts"); const baseUrl = "http://localhost:8000";
try { await t.step("/", async () => { const response = await fetch(baseUrl); assertEquals(response.status, 200); assertEquals(await response.text(), "main page"); });
await t.step("/error", async () => { const response = await fetch(baseUrl + "/error"); assertEquals(response.status, 403); assertEquals((await response.json()).error.token, false); });
await t.step("/error?token=123", async () => { const response = await fetch(baseUrl + "/error?token=123"); assertEquals(response.status, 400);
const json = await response.json(); assertEquals(json.name, "BadRequestError"); assertEquals(json.description, undefined); });
await t.step("/error-hook", async () => { const response = await fetch(baseUrl + "/error-hook"); assertEquals(response.status, 400);
const json = await response.json(); assertEquals(json.name, "BadRequestError"); assertEquals(json.description, "This description from catch hook"); }); } finally { killServer(process); } },});
/** * Test cases */test({ name: "[http] hooks should run order and setted immediately", async fn(t): Promise<void> { const process = await startServer("./examples/hooks/app.ts"); const baseUrl = "http://localhost:8000";
try { await t.step("/many-hook-1", async () => { const response = await fetch(baseUrl + "/many-hook-1"); assertEquals(response.status, 403); assertEquals((await response.json()).error.token, false); });
await t.step("/many-hook-1?token=123", async () => { const response = await fetch(baseUrl + "/many-hook-1?token=123"); assertEquals(response.status, 200); assertEquals(await response.text(), "many hook 1 page"); });
await t.step("/many-hook-2", async () => { const response = await fetch(baseUrl + "/many-hook-2"); assertEquals(response.status, 403); assertEquals((await response.json()).error.token, false); });
await t.step("/many-hook-2?token=123", async () => { const response = await fetch(baseUrl + "/many-hook-2?token=123"); assertEquals(response.status, 200); assertEquals(await response.text(), "many hook 2 page"); }); } finally { killServer(process); } },});
/** * Test cases */test({ name: "[http] token hooks for admin area", async fn(t): Promise<void> { const process = await startServer("./examples/hooks/app.ts"); const baseUrl = "http://localhost:8000/admin/";
try { await t.step("/", async () => { const response = await fetch(baseUrl); assertEquals(response.status, 403); assertEquals((await response.json()).error.token, false); });
await t.step("/?token=123", async () => { const response = await fetch(baseUrl + "?token=123"); assertEquals(response.status, 200); assertEquals(await response.text(), "admin home page"); });
await t.step("/about/", async () => { const response = await fetch(baseUrl + "about/"); assertEquals(response.status, 403); assertEquals((await response.json()).error.token, false); });
await t.step("/about/?token=123", async () => { const response = await fetch(baseUrl + "about/?token=123"); assertEquals(response.status, 200); assertEquals(await response.text(), "admin about page"); }); } finally { killServer(process); } },});
/** * Test cases */test({ name: "[http] async hooks should response after 500ms", async fn(t): Promise<void> { const process = await startServer("./examples/hooks/app.ts"); const baseUrl = "http://localhost:8000/";
try { await t.step("/await", async () => { const date = new Date(); const response = await fetch(baseUrl + "await"); assertEquals(response.status, 200); assertEquals(await response.text(), "await page");
// It assert((new Date().getTime() - date.getTime()) > 500); }); } finally { killServer(process); } },});
/** * Test cases * https://github.com/alosaur/alosaur/issues/65 */test({ name: "[http] post hooks should read request.body() and write result body more 2 times", async fn(t): Promise<void> { const process = await startServer("./examples/hooks/app.ts"); const baseUrl = "http://localhost:8000/post-hook";
try { await t.step("/post-hook/await", async () => { const user = { name: "John", surname: "Smith", };
const response = await fetch(baseUrl, { method: "POST", headers: { "Content-Type": "application/json;charset=utf-8", }, body: JSON.stringify(user), });
const result = await response.json();
assertEquals(response.status, 200); assertEquals(result.fromPreHook, true); }); } finally { killServer(process); } },});
/** * Test cases * https://github.com/alosaur/alosaur/issues/65 */test({ name: "[http] life cycle post hooks should run 4 times", async fn(t): Promise<void> { const process = await startServer("./examples/hooks/app.ts"); const baseUrl = "http://localhost:8000/life-cycle/";
try { await t.step("/life-cycle/await", async () => { const response = await fetch(baseUrl); const result = await response.json();
assertEquals(response.status, 200); assertEquals(result.immediately, true); assertEquals(result.count, 4); assertEquals(result.fromActionPreHook, true); assertEquals(result.fromControllerPreHook, true); assertEquals(result.fromAreaPreHook, true); }); } finally { killServer(process); } },});
alosaur

Version Info

Tagged at
2 months ago