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

req.protocol.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
import { opine } from "../../mod.ts";import { superdeno } from "../deps.ts";import { describe, it } from "../utils.ts";
describe("req", function () { describe(".protocol", function () { it("should return the protocol string", function (done) { const app = opine();
app.use(function (req, res) { res.end(req.protocol); });
superdeno(app) .get("/") .expect("http", done); });
describe('when "trust proxy" is enabled', function () { it("should respect X-Forwarded-Proto", function (done) { const app = opine();
app.enable("trust proxy");
app.use(function (req, res) { res.end(req.protocol); });
superdeno(app) .get("/") .set("X-Forwarded-Proto", "https") .expect("https", done); });
it( "should default to the conn addr if X-Forwarded-Proto not present", function ( done, ) { const app = opine();
app.enable("trust proxy");
app.use(function (req, res) { req.proto = "https"; res.end(req.protocol); });
superdeno(app) .get("/") .expect("https", done); }, );
it("should ignore X-Forwarded-Proto if conn addr not trusted", function ( done, ) { const app = opine();
app.set("trust proxy", "10.0.0.1");
app.use(function (req, res) { res.end(req.protocol); });
superdeno(app) .get("/") .set("X-Forwarded-Proto", "https") .expect("http", done); });
it("should default to http", function (done) { const app = opine();
app.enable("trust proxy");
app.use(function (req, res) { res.end(req.protocol); });
superdeno(app) .get("/") .expect("http", done); });
describe("when trusting hop count", function () { it("should respect X-Forwarded-Proto", function (done) { const app = opine();
app.set("trust proxy", 1);
app.use(function (req, res) { res.end(req.protocol); });
superdeno(app) .get("/") .set("X-Forwarded-Proto", "https") .expect("https", done); }); }); });
describe('when "trust proxy" is disabled', function () { it("should ignore X-Forwarded-Proto", function (done) { const app = opine();
app.use(function (req, res) { res.end(req.protocol); });
superdeno(app) .get("/") .set("X-Forwarded-Proto", "https") .expect("http", done); }); }); });});
opine

Version Info

Tagged at
2 years ago