forked from jupyterhub/configurable-http-proxy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproxy_spec.js
465 lines (428 loc) · 13.4 KB
/
proxy_spec.js
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
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
// jshint jasmine: true
"use strict";
var http = require("http");
var path = require("path");
var util = require("../lib/testutil");
var request = require("request-promise-native");
var WebSocket = require("ws");
var ConfigurableProxy = require("../lib/configproxy").ConfigurableProxy;
jasmine.DEFAULT_TIMEOUT_INTERVAL = 10000;
describe("Proxy Tests", function () {
var port = 8902;
var testPort = port + 10;
var proxy;
var proxyUrl = "http://127.0.0.1:" + port;
var hostTest = "test.localhost.jovyan.org";
var hostUrl = "http://" + hostTest + ":" + port;
var r = request.defaults({
method: "GET",
url: proxyUrl,
followRedirect: false,
});
beforeEach(function (callback) {
util.setupProxy(port).then(function (newProxy) {
proxy = newProxy;
callback();
});
});
afterEach(function (callback) {
util.teardownServers(callback);
});
it("basic HTTP request", function (done) {
r(proxyUrl).then((body) => {
body = JSON.parse(body);
expect(body).toEqual(
jasmine.objectContaining({
path: "/",
})
);
// check last_activity was updated
return proxy._routes.get("/").then((route) => {
expect(route.last_activity).toBeGreaterThan(proxy._setup_timestamp);
done();
});
});
});
it("basic WebSocket request", function (done) {
var ws = new WebSocket("ws://127.0.0.1:" + port);
ws.on("error", function () {
// jasmine fail is only in master
expect("error").toEqual("ok");
done();
});
var nmsgs = 0;
ws.on("message", function (msg) {
msg = msg.toString();
if (nmsgs === 0) {
expect(msg).toEqual("connected");
} else {
msg = JSON.parse(msg);
expect(msg).toEqual(
jasmine.objectContaining({
path: "/",
message: "hi",
})
);
// check last_activity was updated
return proxy._routes.get("/").then((route) => {
expect(route.last_activity).toBeGreaterThan(proxy._setup_timestamp);
ws.close();
done();
});
}
nmsgs++;
});
ws.on("open", function () {
ws.send("hi");
});
});
it("keep-alive proxy request", function (done) {
var agent = new http.Agent({ keepAlive: true });
r(proxyUrl, { agent: agent, resolveWithFullResponse: true }).then((res) => {
agent.destroy();
var body = JSON.parse(res.body);
expect(body).toEqual(
jasmine.objectContaining({
path: "/",
})
);
expect(res.headers["connection"]).toEqual("keep-alive");
done();
});
});
it("proxyRequest event can modify headers", function (done) {
var called = {};
proxy.on("proxyRequest", function (req, res) {
req.headers.testing = "Test Passed";
called.proxyRequest = true;
});
r(proxyUrl)
.then(function (body) {
body = JSON.parse(body);
expect(called.proxyRequest).toBe(true);
expect(body).toEqual(
jasmine.objectContaining({
path: "/",
})
);
expect(body.headers).toEqual(
jasmine.objectContaining({
testing: "Test Passed",
})
);
})
.then(done);
});
it("target path is prepended by default", function (done) {
util
.addTarget(proxy, "/bar", testPort, false, "/foo")
.then(() => r(proxyUrl + "/bar/rest/of/it"))
.then((body) => {
body = JSON.parse(body);
expect(body).toEqual(
jasmine.objectContaining({
path: "/bar",
url: "/foo/bar/rest/of/it",
})
);
done();
});
});
it("/prefix?query is proxied correctly", function (done) {
util
.addTarget(proxy, "/bar", testPort, null, "/foo")
.then(() => r(proxyUrl + "/bar?query=foo"))
.then((body) => {
body = JSON.parse(body);
expect(body).toEqual(
jasmine.objectContaining({
target: "http://127.0.0.1:" + testPort + "/foo",
path: "/bar",
url: "/foo/bar?query=foo",
})
);
done();
});
});
it("handle URI encoding", function (done) {
util
.addTarget(proxy, "/b@r/b r", testPort, false, "/foo")
.then(() => r(proxyUrl + "/b%40r/b%20r/rest/of/it"))
.then((body) => {
body = JSON.parse(body);
expect(body).toEqual(
jasmine.objectContaining({
path: "/b@r/b r",
url: "/foo/b%40r/b%20r/rest/of/it",
})
);
done();
});
});
it("handle @ in URI same as %40", function (done) {
util
.addTarget(proxy, "/b@r/b r", testPort, false, "/foo")
.then(() => r(proxyUrl + "/b@r/b%20r/rest/of/it"))
.then((body) => {
body = JSON.parse(body);
expect(body).toEqual(
jasmine.objectContaining({
path: "/b@r/b r",
url: "/foo/b@r/b%20r/rest/of/it",
})
);
done();
});
});
it("prependPath: false prevents target path from being prepended", function (done) {
proxy.proxy.options.prependPath = false;
util
.addTarget(proxy, "/bar", testPort, false, "/foo")
.then(() => r(proxyUrl + "/bar/rest/of/it"))
.then((body) => {
body = JSON.parse(body);
expect(body).toEqual(
jasmine.objectContaining({
path: "/bar",
url: "/bar/rest/of/it",
})
);
done();
});
});
it("includePrefix: false strips routing prefix from request", function (done) {
proxy.includePrefix = false;
util
.addTarget(proxy, "/bar", testPort, false, "/foo")
.then(() => r(proxyUrl + "/bar/rest/of/it"))
.then((body) => {
body = JSON.parse(body);
expect(body).toEqual(
jasmine.objectContaining({
path: "/bar",
url: "/foo/rest/of/it",
})
);
done();
});
});
it("options.defaultTarget", function (done) {
var options = {
defaultTarget: "http://127.0.0.1:9001",
};
var cp = new ConfigurableProxy(options);
cp._routes.get("/").then(function (route) {
expect(route.target).toEqual("http://127.0.0.1:9001");
done();
});
});
it("options.storageBackend", function (done) {
const options = {
storageBackend: "mybackend",
};
expect(() => {
const cp = new ConfigurableProxy(options);
}).toThrowMatching(function (e) {
return e.message.includes("Cannot find module 'mybackend'");
});
done();
});
it("options.storageBackend with an user-defined backend", function (done) {
const store = path.resolve(__dirname, "dummy-store.js");
const options = {
storageBackend: store,
};
const cp = new ConfigurableProxy(options);
expect(cp._routes.constructor.name).toEqual("PlugableDummyStore");
done();
});
it("includePrefix: false + prependPath: false", function (done) {
proxy.includePrefix = false;
proxy.proxy.options.prependPath = false;
util
.addTarget(proxy, "/bar", testPort, false, "/foo")
.then(() => r(proxyUrl + "/bar/rest/of/it"))
.then((body) => {
body = JSON.parse(body);
expect(body).toEqual(
jasmine.objectContaining({
path: "/bar",
url: "/rest/of/it",
})
);
done();
});
});
it("hostRouting: routes by host", function (done) {
proxy.hostRouting = true;
util
.addTarget(proxy, "/" + hostTest, testPort, false, null)
.then(() => r(hostUrl + "/some/path"))
.then((body) => {
body = JSON.parse(body);
expect(body).toEqual(
jasmine.objectContaining({
target: "http://127.0.0.1:" + testPort,
url: "/some/path",
})
);
})
.then(done);
});
it("last_activity not updated on errors", function (done) {
let now = new Date();
// mock timestamp in the past
let firstActivity = new Date(now.getTime() - 60000);
function expectNoActivity() {
return proxy._routes.get("/missing", (route) => {
expect(route.last_activity).toEqual(proxy._setup_timestamp);
});
}
proxy
.removeRoute("/")
// add a route to nowhere
.then(() => proxy.addRoute("/missing", { target: "https://127.0.0.1:54321" }))
.then(() => {
// set last_activity into the past
proxy._routes.update("/missing", { last_activity: firstActivity });
})
// fail a web request
.then(() => r(hostUrl + "/missing/prefix"))
.then((body) => done.fail("Expected 503"))
.catch((err) => {
expect(err.statusCode).toEqual(503);
})
// check that activity was not updated
.then(expectNoActivity)
// fail a websocket request
.then(() => {
var ws = new WebSocket("ws://127.0.0.1:" + port + "/missing/ws");
ws.on("error", () => {
// expect this, since there is no websocket handler
// check last_activity was not updated
expectNoActivity().then((route) => {
ws.close();
done();
});
});
ws.on("open", () => {
done.fail("Expected websocket error");
});
});
});
it("custom error target", function (done) {
var proxyPort = 55550;
util
.setupProxy(proxyPort, { errorTarget: "http://127.0.0.1:55565" }, [])
.then(() => r("http://127.0.0.1:" + proxyPort + "/foo/bar"))
.then((body) => done.fail("Expected 404"))
.catch((err) => {
expect(err.statusCode).toEqual(404);
expect(err.response.headers["content-type"]).toEqual("text/plain");
expect(err.response.body).toEqual("/foo/bar");
})
.then(done);
});
it("custom error path", function (done) {
proxy.errorPath = path.join(__dirname, "error");
proxy
.removeRoute("/")
.then(() => proxy.addRoute("/missing", { target: "https://127.0.0.1:54321" }))
.then(() => r(hostUrl + "/nope"))
.then((body) => done.fail("Expected 404"))
.catch((err) => {
expect(err.statusCode).toEqual(404);
expect(err.response.headers["content-type"]).toEqual("text/html");
expect(err.response.body).toMatch(/404'D/);
})
.then(() => r(hostUrl + "/missing/prefix"))
.then((body) => done.fail("Expected 503"))
.catch((err) => {
expect(err.statusCode).toEqual(503);
expect(err.response.headers["content-type"]).toEqual("text/html");
expect(err.response.body).toMatch(/UNKNOWN/);
})
.then(done);
});
it("default error html", function (done) {
proxy.removeRoute("/");
proxy
.addRoute("/missing", { target: "https://127.0.0.1:54321" })
.then(() => r(hostUrl + "/nope"))
.then((body) => done.fail("Expected 404"))
.catch((err) => {
expect(err.statusCode).toEqual(404);
expect(err.response.headers["content-type"]).toEqual("text/html");
expect(err.response.body).toMatch(/404:/);
})
.then(() => r(hostUrl + "/missing/prefix"))
.then((body) => done.fail("Expected 503"))
.catch((err) => {
expect(err.statusCode).toEqual(503);
expect(err.response.headers["content-type"]).toEqual("text/html");
expect(err.response.body).toMatch(/503:/);
})
.then(done);
});
it("backend error", function (done) {
var proxyPort = 55550;
util
.setupProxy(proxyPort, { errorTarget: "http://127.0.0.1:55565" }, [])
.then(() => r("http://127.0.0.1:" + proxyPort + "/%"))
.then((body) => done.fail("Expected 500"))
.catch((err) => {
expect(err.statusCode).toEqual(500);
expect(err.response.headers["content-type"]).toEqual("text/plain");
expect(err.response.body).toEqual("/%");
})
.then(done);
});
it("Redirect location untouched without rewrite options", function (done) {
var redirectTo = "http://foo.com:12345/whatever";
util
.addTargetRedirecting(proxy, "/external/urlpath/", testPort, "/internal/urlpath/", redirectTo)
.then(() => r(proxyUrl + "/external/urlpath/rest/of/it"))
.then((body) => done.fail("Expected 301"))
.catch((err) => {
expect(err.statusCode).toEqual(301);
expect(err.response.headers.location).toEqual(redirectTo);
})
.then(done);
});
it("Redirect location with rewriting", function (done) {
var proxyPort = 55556;
var options = {
protocolRewrite: "https",
autoRewrite: true,
};
// where the backend server redirects us.
// Note that http-proxy requires (logically) the redirection to be to the same (internal) host.
var redirectTo = "https://127.0.0.1:" + testPort + "/whatever";
var expectedRedirect = "https://127.0.0.1:" + proxyPort + "/whatever";
util
.setupProxy(proxyPort, options, [])
.then((proxy) =>
util.addTargetRedirecting(
proxy,
"/external/urlpath/",
testPort,
"/internal/urlpath/",
redirectTo
)
)
.then(() => r("http://127.0.0.1:" + proxyPort + "/external/urlpath/"))
.then((body) => done.fail("Expected 301"))
.catch((err) => {
expect(err.statusCode).toEqual(301);
expect(err.response.headers.location).toEqual(expectedRedirect);
})
.then(done);
});
it("health check request", function (done) {
r(proxyUrl + "/_chp_healthz").then((body) => {
body = JSON.parse(body);
expect(body).toEqual({ status: "OK" });
done();
});
});
});