deno.land / x / opine@2.3.4 / test / units / req.secure.test.ts

req.secure.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
import { opine } from "../../mod.ts";import { superdeno } from "../deps.ts";import { describe, it } from "../utils.ts";
describe("req", function () { describe(".secure", function () { describe("when X-Forwarded-Proto is missing", function () { it("should return false when http", function (done) { const app = opine();
app.get("/", function (req, res) { res.send(req.secure ? "yes" : "no"); });
superdeno(app) .get("/") .expect("no", done); }); }); });
describe(".secure", function () { describe("when X-Forwarded-Proto is present", function () { it("should return false when http", function (done) { const app = opine();
app.get("/", function (req, res) { res.send(req.secure ? "yes" : "no"); });
superdeno(app) .get("/") .set("X-Forwarded-Proto", "https") .expect("no", done); });
it('should return true when "trust proxy" is enabled', function (done) { const app = opine();
app.enable("trust proxy");
app.get("/", function (req, res) { res.send(req.secure ? "yes" : "no"); });
superdeno(app) .get("/") .set("X-Forwarded-Proto", "https") .expect("yes", done); });
it("should return false when initial proxy is http", function (done) { const app = opine();
app.enable("trust proxy");
app.get("/", function (req, res) { res.send(req.secure ? "yes" : "no"); });
superdeno(app) .get("/") .set("X-Forwarded-Proto", "http, https") .expect("no", done); });
it("should return true when initial proxy is https", function (done) { const app = opine();
app.enable("trust proxy");
app.get("/", function (req, res) { res.send(req.secure ? "yes" : "no"); });
superdeno(app) .get("/") .set("X-Forwarded-Proto", "https, http") .expect("yes", done); });
describe('when "trust proxy" trusting hop count', function () { it("should respect X-Forwarded-Proto", function (done) { const app = opine();
app.set("trust proxy", 1);
app.get("/", function (req, res) { res.send(req.secure ? "yes" : "no"); });
superdeno(app) .get("/") .set("X-Forwarded-Proto", "https") .expect("yes", done); }); }); }); });});
opine

Version Info

Tagged at
2 years ago