deno.land / x / opine@2.3.4 / test / units / res.append.test.ts

res.append.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
import { opine } from "../../mod.ts";import { expect, superdeno } from "../deps.ts";import { describe, it } from "../utils.ts";
describe("res", function () { describe(".append(field, val)", function () { it("should append multiple headers", function (done) { const app = opine();
app.use(function (req, res, next) { res.append("Link", "<http://localhost/>"); next(); });
app.use(function (req, res) { res.append("Link", "<http://localhost:80/>"); res.end(); });
superdeno(app) .get("/") .expect("Link", "<http://localhost/>, <http://localhost:80/>", done); });
it("should accept array of values", function (done) { const app = opine();
app.use(function (req, res, next) { res.append( "Link", [ 'https://www.google.com; rel="dns-prefetch"', 'https://www.youtube.com; rel="preconnect"', ], );
res.append("cache-control", ["public", "max-age=604800", "immutable"]); res.end(); });
superdeno(app) .get("/") .expect( "Link", 'https://www.google.com; rel="dns-prefetch", https://www.youtube.com; rel="preconnect"', ) .expect("Cache-Control", "public, max-age=604800, immutable") .expect(200, done); });
it("should ignore empty arrays", function (done) { const app = opine();
app.use(function (req, res, next) { res.set("cache-control", "no-store").append("cache-control", []).end(); });
superdeno(app) .get("/") .expect("Cache-Control", "no-store") .expect(200, done); });
it("should get reset by res.set(field, val)", function (done) { const app = opine();
app.use(function (req, res, next) { res.append("Link", "<http://localhost/>"); res.append("Link", "<http://localhost:80/>"); next(); });
app.use(function (req, res) { res.set("Link", "<http://127.0.0.1/>"); res.end(); });
superdeno(app) .get("/") .expect("Link", "<http://127.0.0.1/>", done); });
it("should work with res.set(field, val) first", function (done) { const app = opine();
app.use(function (req, res, next) { res.set("Link", "<http://localhost/>"); next(); });
app.use(function (req, res) { res.append("Link", "<http://localhost:80/>"); res.end(); });
superdeno(app) .get("/") .expect("Link", "<http://localhost/>, <http://localhost:80/>", done); });
it("should work with cookies", function (done) { const app = opine();
app.use(function (req, res, next) { res.cookie({ name: "foo", value: "bar" }); next(); });
app.use(function (req, res) { res.append("set-cookie", "bar=baz"); res.append("set-cookie", ["bar=bang", "curl=wget; Path=/"]); res.append("set-cookie", ["bar=bang", "express=js; Path=/"]);
// Holds the values of all the `set-cookie` headers sent. const cookieVals = [];
for (const [key, val] of res.headers!) { if (key.toLowerCase() === "set-cookie") { cookieVals.push(val); } }
res.json({ cookies: cookieVals.sort() }); });
superdeno(app) .get("/") .expect(200, { cookies: [ "bar=bang", "bar=bang", "bar=baz", "curl=wget; Path=/", "express=js; Path=/", "foo=bar; Path=/", ], }, done); }); });});
opine

Version Info

Tagged at
2 years ago