2021-01-20 22:19:39 +00:00
|
|
|
import bodyParser from "body-parser"
|
2021-01-14 15:55:19 +00:00
|
|
|
import * as express from "express"
|
2021-07-26 21:24:08 +00:00
|
|
|
import * as http from "http"
|
2021-09-08 19:05:49 +00:00
|
|
|
import * as nodeFetch from "node-fetch"
|
2021-07-26 21:24:08 +00:00
|
|
|
import { HttpCode } from "../../../src/common/http"
|
|
|
|
import { proxy } from "../../../src/node/proxy"
|
2021-09-08 19:05:49 +00:00
|
|
|
import { getAvailablePort } from "../../utils/helpers"
|
2021-07-27 23:52:57 +00:00
|
|
|
import * as httpserver from "../../utils/httpserver"
|
|
|
|
import * as integration from "../../utils/integration"
|
2021-01-14 15:54:34 +00:00
|
|
|
|
|
|
|
describe("proxy", () => {
|
2021-01-14 15:55:19 +00:00
|
|
|
const nhooyrDevServer = new httpserver.HttpServer()
|
2021-01-20 22:19:39 +00:00
|
|
|
let codeServer: httpserver.HttpServer | undefined
|
2021-01-14 15:54:34 +00:00
|
|
|
let proxyPath: string
|
2021-02-04 22:29:44 +00:00
|
|
|
let absProxyPath: string
|
2021-01-20 22:19:39 +00:00
|
|
|
let e: express.Express
|
2021-01-14 15:54:34 +00:00
|
|
|
|
2021-01-20 23:37:49 +00:00
|
|
|
beforeAll(async () => {
|
2021-01-20 22:19:39 +00:00
|
|
|
await nhooyrDevServer.listen((req, res) => {
|
|
|
|
e(req, res)
|
2021-01-14 15:54:34 +00:00
|
|
|
})
|
|
|
|
proxyPath = `/proxy/${nhooyrDevServer.port()}/wsup`
|
2021-02-04 22:29:44 +00:00
|
|
|
absProxyPath = proxyPath.replace("/proxy/", "/absproxy/")
|
2021-01-14 15:54:34 +00:00
|
|
|
})
|
|
|
|
|
2021-01-20 23:37:49 +00:00
|
|
|
afterAll(async () => {
|
2021-01-14 15:54:34 +00:00
|
|
|
await nhooyrDevServer.close()
|
|
|
|
})
|
|
|
|
|
2021-01-20 22:19:39 +00:00
|
|
|
beforeEach(() => {
|
|
|
|
e = express.default()
|
|
|
|
})
|
|
|
|
|
2021-01-14 15:54:34 +00:00
|
|
|
afterEach(async () => {
|
|
|
|
if (codeServer) {
|
|
|
|
await codeServer.close()
|
|
|
|
codeServer = undefined
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
it("should rewrite the base path", async () => {
|
2021-01-20 22:19:39 +00:00
|
|
|
e.get("/wsup", (req, res) => {
|
|
|
|
res.json("asher is the best")
|
|
|
|
})
|
2021-05-05 17:20:38 +00:00
|
|
|
codeServer = await integration.setup(["--auth=none"], "")
|
2021-01-14 15:54:34 +00:00
|
|
|
const resp = await codeServer.fetch(proxyPath)
|
2021-01-20 23:37:49 +00:00
|
|
|
expect(resp.status).toBe(200)
|
|
|
|
const json = await resp.json()
|
|
|
|
expect(json).toBe("asher is the best")
|
2021-01-14 15:54:34 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
it("should not rewrite the base path", async () => {
|
2021-02-04 22:29:44 +00:00
|
|
|
e.get(absProxyPath, (req, res) => {
|
2021-01-20 22:19:39 +00:00
|
|
|
res.json("joe is the best")
|
|
|
|
})
|
2021-05-05 17:20:38 +00:00
|
|
|
codeServer = await integration.setup(["--auth=none"], "")
|
2021-02-04 22:29:44 +00:00
|
|
|
const resp = await codeServer.fetch(absProxyPath)
|
2021-01-20 23:37:49 +00:00
|
|
|
expect(resp.status).toBe(200)
|
|
|
|
const json = await resp.json()
|
|
|
|
expect(json).toBe("joe is the best")
|
2021-01-14 15:54:34 +00:00
|
|
|
})
|
2021-01-20 22:19:39 +00:00
|
|
|
|
|
|
|
it("should rewrite redirects", async () => {
|
|
|
|
e.post("/wsup", (req, res) => {
|
|
|
|
res.redirect(307, "/finale")
|
|
|
|
})
|
|
|
|
e.post("/finale", (req, res) => {
|
|
|
|
res.json("redirect success")
|
|
|
|
})
|
2021-05-05 17:20:38 +00:00
|
|
|
codeServer = await integration.setup(["--auth=none"], "")
|
2021-01-20 22:19:39 +00:00
|
|
|
const resp = await codeServer.fetch(proxyPath, {
|
|
|
|
method: "POST",
|
|
|
|
})
|
|
|
|
expect(resp.status).toBe(200)
|
|
|
|
expect(await resp.json()).toBe("redirect success")
|
|
|
|
})
|
|
|
|
|
|
|
|
it("should not rewrite redirects", async () => {
|
2021-02-04 22:29:44 +00:00
|
|
|
const finalePath = absProxyPath.replace("/wsup", "/finale")
|
|
|
|
e.post(absProxyPath, (req, res) => {
|
2021-01-20 22:19:39 +00:00
|
|
|
res.redirect(307, finalePath)
|
|
|
|
})
|
|
|
|
e.post(finalePath, (req, res) => {
|
|
|
|
res.json("redirect success")
|
|
|
|
})
|
2021-05-05 17:20:38 +00:00
|
|
|
codeServer = await integration.setup(["--auth=none"], "")
|
2021-02-04 22:29:44 +00:00
|
|
|
const resp = await codeServer.fetch(absProxyPath, {
|
2021-01-20 22:19:39 +00:00
|
|
|
method: "POST",
|
|
|
|
})
|
|
|
|
expect(resp.status).toBe(200)
|
|
|
|
expect(await resp.json()).toBe("redirect success")
|
|
|
|
})
|
|
|
|
|
|
|
|
it("should allow post bodies", async () => {
|
|
|
|
e.use(bodyParser.json({ strict: false }))
|
|
|
|
e.post("/wsup", (req, res) => {
|
|
|
|
res.json(req.body)
|
|
|
|
})
|
2021-05-05 17:20:38 +00:00
|
|
|
codeServer = await integration.setup(["--auth=none"], "")
|
2021-01-20 22:19:39 +00:00
|
|
|
const resp = await codeServer.fetch(proxyPath, {
|
|
|
|
method: "post",
|
|
|
|
body: JSON.stringify("coder is the best"),
|
|
|
|
headers: {
|
|
|
|
"Content-Type": "application/json",
|
|
|
|
},
|
|
|
|
})
|
|
|
|
expect(resp.status).toBe(200)
|
|
|
|
expect(await resp.json()).toBe("coder is the best")
|
|
|
|
})
|
2021-07-26 21:24:08 +00:00
|
|
|
|
|
|
|
it("should handle bad requests", async () => {
|
|
|
|
e.use(bodyParser.json({ strict: false }))
|
|
|
|
e.post("/wsup", (req, res) => {
|
|
|
|
res.json(req.body)
|
|
|
|
})
|
|
|
|
codeServer = await integration.setup(["--auth=none"], "")
|
|
|
|
const resp = await codeServer.fetch(proxyPath, {
|
|
|
|
method: "post",
|
|
|
|
body: "coder is the best",
|
|
|
|
headers: {
|
|
|
|
"Content-Type": "application/json",
|
|
|
|
},
|
|
|
|
})
|
|
|
|
expect(resp.status).toBe(400)
|
|
|
|
expect(resp.statusText).toMatch("Bad Request")
|
|
|
|
})
|
|
|
|
|
|
|
|
it("should handle invalid routes", async () => {
|
|
|
|
e.post("/wsup", (req, res) => {
|
|
|
|
res.json(req.body)
|
|
|
|
})
|
|
|
|
codeServer = await integration.setup(["--auth=none"], "")
|
|
|
|
const resp = await codeServer.fetch(`${proxyPath}/hello`)
|
|
|
|
expect(resp.status).toBe(404)
|
|
|
|
expect(resp.statusText).toMatch("Not Found")
|
|
|
|
})
|
|
|
|
|
|
|
|
it("should handle errors", async () => {
|
|
|
|
e.use(bodyParser.json({ strict: false }))
|
|
|
|
e.post("/wsup", (req, res) => {
|
|
|
|
throw new Error("BROKEN")
|
|
|
|
})
|
|
|
|
codeServer = await integration.setup(["--auth=none"], "")
|
|
|
|
const resp = await codeServer.fetch(proxyPath, {
|
|
|
|
method: "post",
|
|
|
|
body: JSON.stringify("coder is the best"),
|
|
|
|
headers: {
|
|
|
|
"Content-Type": "application/json",
|
|
|
|
},
|
|
|
|
})
|
|
|
|
expect(resp.status).toBe(500)
|
|
|
|
expect(resp.statusText).toMatch("Internal Server Error")
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
// NOTE@jsjoeio
|
|
|
|
// Both this test suite and the one above it are very similar
|
|
|
|
// The main difference is this one uses http and node-fetch
|
|
|
|
// and specifically tests the proxy in isolation vs. using
|
|
|
|
// the httpserver abstraction we've built.
|
|
|
|
//
|
|
|
|
// Leaving this as a separate test suite for now because
|
|
|
|
// we may consider refactoring the httpserver abstraction
|
|
|
|
// in the future.
|
|
|
|
//
|
|
|
|
// If you're writing a test specifically for code in
|
|
|
|
// src/node/proxy.ts, you should probably add it to
|
|
|
|
// this test suite.
|
|
|
|
describe("proxy (standalone)", () => {
|
2021-07-27 21:22:25 +00:00
|
|
|
let URL = ""
|
|
|
|
let PROXY_URL = ""
|
2021-07-26 21:24:08 +00:00
|
|
|
let testServer: http.Server
|
|
|
|
let proxyTarget: http.Server
|
|
|
|
|
|
|
|
beforeEach(async () => {
|
2021-07-27 21:22:25 +00:00
|
|
|
const PORT = await getAvailablePort()
|
|
|
|
const PROXY_PORT = await getAvailablePort()
|
|
|
|
URL = `http://localhost:${PORT}`
|
|
|
|
PROXY_URL = `http://localhost:${PROXY_PORT}`
|
2021-07-26 21:24:08 +00:00
|
|
|
// Define server and a proxy server
|
|
|
|
testServer = http.createServer((req, res) => {
|
|
|
|
proxy.web(req, res, {
|
|
|
|
target: PROXY_URL,
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
proxyTarget = http.createServer((req, res) => {
|
|
|
|
res.writeHead(200, { "Content-Type": "text/plain" })
|
|
|
|
res.end()
|
|
|
|
})
|
|
|
|
|
|
|
|
// Start both servers
|
|
|
|
await proxyTarget.listen(PROXY_PORT)
|
|
|
|
await testServer.listen(PORT)
|
|
|
|
})
|
|
|
|
|
|
|
|
afterEach(async () => {
|
|
|
|
await testServer.close()
|
|
|
|
await proxyTarget.close()
|
|
|
|
})
|
|
|
|
|
|
|
|
it("should return a 500 when proxy target errors ", async () => {
|
|
|
|
// Close the proxy target so that proxy errors
|
|
|
|
await proxyTarget.close()
|
|
|
|
const errorResp = await nodeFetch.default(`${URL}/error`)
|
|
|
|
expect(errorResp.status).toBe(HttpCode.ServerError)
|
|
|
|
expect(errorResp.statusText).toBe("Internal Server Error")
|
|
|
|
})
|
|
|
|
|
|
|
|
it("should proxy correctly", async () => {
|
|
|
|
const resp = await nodeFetch.default(`${URL}/route`)
|
|
|
|
expect(resp.status).toBe(200)
|
|
|
|
expect(resp.statusText).toBe("OK")
|
|
|
|
})
|
2021-01-14 15:54:34 +00:00
|
|
|
})
|