-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathcontext_test.ts
145 lines (132 loc) · 3.93 KB
/
context_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
import {
assertEquals,
assertStringIncludes,
} from "./vendor/https/deno.land/std/testing/asserts.ts";
import { Status } from "./vendor/https/deno.land/std/http/http_status.ts";
import { createMockRequest } from "./test_util.ts";
import { Context } from "./context.ts";
import { Header } from "./constants.ts";
const { test } = Deno;
test("context string resp", function (): void {
const options = { app: undefined!, r: createMockRequest() };
const results = [
`{foo: "bar"}`,
`<h1>Title</h1>`,
`foo`,
`foo=bar`,
`undefined`,
`null`,
`0`,
`true`,
``,
];
const c = new Context(options);
for (const r of results) {
c.string(r);
assertEquals(c.response.status, 200);
assertEquals(c.response.body, new TextEncoder().encode(r));
assertStringIncludes(
c.response.headers!.get("Content-Type") ?? "",
"text/plain",
);
}
});
test("context json resp", function (): void {
const options = { app: undefined!, r: createMockRequest() };
const results = [{ foo: "bar" }, `{foo: "bar"}`, [1, 2], {}, [], `[]`];
const c = new Context(options);
for (const r of results) {
c.json(r);
assertEquals(c.response.status, 200);
assertEquals(
c.response.body,
new TextEncoder().encode(typeof r === "object" ? JSON.stringify(r) : r),
);
assertStringIncludes(
c.response.headers!.get("Content-Type") ?? "",
"application/json",
);
}
});
test("context html resp", function (): void {
const options = { app: undefined!, r: createMockRequest() };
const results = [
`{foo: "bar"}`,
`<h1>Title</h1>`,
`foo`,
`foo=bar`,
`undefined`,
`null`,
`0`,
`true`,
``,
];
const c = new Context(options);
for (const r of results) {
c.html(r);
assertEquals(c.response.status, 200);
assertEquals(c.response.body, new TextEncoder().encode(r));
assertStringIncludes(
c.response.headers!.get("Content-Type") ?? "",
"text/html",
);
}
});
test("context file resp", async function (): Promise<void> {
const options = { app: undefined!, r: createMockRequest() };
const c = new Context(options);
await c.file("./mod.ts");
assertEquals(
c.response.headers!.get("Content-Type"),
"application/javascript; charset=UTF-8",
);
});
test("context req with cookies", function RequestWithCookies(): void {
const options = { app: undefined!, r: createMockRequest() };
const c = new Context(options);
c.req.headers.append("Cookie", "PREF=al=en-GB&f1=123; wide=1; SID=123");
assertEquals(c.cookies, {
PREF: "al=en-GB&f1=123",
wide: "1",
SID: "123",
});
c.setCookie({
name: "hello",
value: "world",
});
assertEquals(c.response.headers?.get("Set-Cookie"), "hello=world");
});
test("context redirect", function (): void {
const options = { app: undefined!, r: createMockRequest() };
const c = new Context(options);
c.redirect("https://a.com");
assertEquals(c.response.headers?.get(Header.Location), "https://a.com");
assertEquals(c.response.status, Status.Found);
c.redirect("https://b.com", Status.UseProxy);
assertEquals(c.response.headers?.get(Header.Location), "https://b.com");
assertEquals(c.response.status, Status.UseProxy);
});
test("context custom", function (): void {
class CustomContext extends Context {
constructor(c: Context) {
super(c);
}
hello(): string {
return "hello";
}
}
const options = { app: undefined!, r: createMockRequest() };
const c: Context = new CustomContext(new Context(options));
const cc = c.customContext;
assertEquals(cc.hello(), "hello");
});
test("context get set", function (): void {
const c = new Context({ app: undefined!, r: createMockRequest() });
c.set("Hello", "World");
assertEquals(c.get("hello"), undefined);
assertEquals(c.get("Hello"), "World");
const key = Symbol("Hello");
c.set(key, "World");
assertEquals(c.get(Symbol("Hello")), undefined);
assertEquals(c.get(key), "World");
});