2020-10-30 14:18:59 +07:00
|
|
|
import { logger } from "@coder/logger"
|
2020-11-07 02:46:49 +07:00
|
|
|
import * as express from "express"
|
|
|
|
import * as fs from "fs"
|
2020-10-30 14:26:30 +07:00
|
|
|
import * as path from "path"
|
2021-03-10 06:32:31 +07:00
|
|
|
import { HttpCode } from "../../src/common/http"
|
|
|
|
import { AuthType } from "../../src/node/cli"
|
|
|
|
import { codeServer, PluginAPI } from "../../src/node/plugin"
|
|
|
|
import * as apps from "../../src/node/routes/apps"
|
|
|
|
import * as httpserver from "../utils/httpserver"
|
2020-11-06 22:09:35 +07:00
|
|
|
const fsp = fs.promises
|
2020-10-30 14:18:59 +07:00
|
|
|
|
2021-02-10 04:23:08 +07:00
|
|
|
// Jest overrides `require` so our usual override doesn't work.
|
2021-02-11 02:13:23 +07:00
|
|
|
jest.mock("code-server", () => codeServer, { virtual: true })
|
2021-02-10 04:23:08 +07:00
|
|
|
|
2020-10-30 14:18:59 +07:00
|
|
|
/**
|
|
|
|
* Use $LOG_LEVEL=debug to see debug logs.
|
|
|
|
*/
|
|
|
|
describe("plugin", () => {
|
2020-11-06 21:51:46 +07:00
|
|
|
let papi: PluginAPI
|
2021-01-14 21:53:34 +07:00
|
|
|
let s: httpserver.HttpServer
|
2020-11-06 21:51:46 +07:00
|
|
|
|
2021-01-21 06:37:49 +07:00
|
|
|
beforeAll(async () => {
|
2021-01-20 05:44:42 +07:00
|
|
|
// Only include the test plugin to avoid contaminating results with other
|
|
|
|
// plugins that might be on the filesystem.
|
|
|
|
papi = new PluginAPI(logger, `${path.resolve(__dirname, "test-plugin")}:meow`, "")
|
|
|
|
await papi.loadPlugins(false)
|
2020-10-30 14:18:59 +07:00
|
|
|
|
2021-01-14 21:37:41 +07:00
|
|
|
const app = express.default()
|
2021-01-21 03:11:08 +07:00
|
|
|
const wsApp = express.default()
|
2021-02-13 05:04:48 +07:00
|
|
|
|
|
|
|
const common: express.RequestHandler = (req, _, next) => {
|
|
|
|
// Routes might use these arguments.
|
|
|
|
req.args = {
|
|
|
|
_: [],
|
|
|
|
auth: AuthType.None,
|
|
|
|
host: "localhost",
|
|
|
|
port: 8080,
|
|
|
|
"proxy-domain": [],
|
|
|
|
config: "~/.config/code-server/config.yaml",
|
|
|
|
verbose: false,
|
|
|
|
usingEnvPassword: false,
|
|
|
|
usingEnvHashedPassword: false,
|
|
|
|
"extensions-dir": "",
|
|
|
|
"user-data-dir": "",
|
|
|
|
}
|
|
|
|
next()
|
|
|
|
}
|
|
|
|
|
|
|
|
app.use(common)
|
|
|
|
wsApp.use(common)
|
|
|
|
|
2021-01-21 03:11:08 +07:00
|
|
|
papi.mount(app, wsApp)
|
2020-11-06 21:51:46 +07:00
|
|
|
app.use("/api/applications", apps.router(papi))
|
|
|
|
|
2021-01-14 21:53:34 +07:00
|
|
|
s = new httpserver.HttpServer()
|
2021-01-14 21:37:41 +07:00
|
|
|
await s.listen(app)
|
2021-01-21 03:11:08 +07:00
|
|
|
s.listenUpgrade(wsApp)
|
2021-01-14 21:37:41 +07:00
|
|
|
})
|
|
|
|
|
2021-01-21 06:37:49 +07:00
|
|
|
afterAll(async () => {
|
2021-01-14 21:37:41 +07:00
|
|
|
await s.close()
|
2020-11-06 21:51:46 +07:00
|
|
|
})
|
|
|
|
|
|
|
|
it("/api/applications", async () => {
|
2021-01-14 21:37:41 +07:00
|
|
|
const resp = await s.fetch("/api/applications")
|
2021-01-21 06:37:49 +07:00
|
|
|
expect(resp.status).toBe(200)
|
2021-01-14 21:37:41 +07:00
|
|
|
const body = await resp.json()
|
|
|
|
logger.debug(`${JSON.stringify(body)}`)
|
2021-01-21 06:37:49 +07:00
|
|
|
expect(body).toStrictEqual([
|
2020-11-06 21:51:46 +07:00
|
|
|
{
|
|
|
|
name: "Test App",
|
|
|
|
version: "4.0.0",
|
|
|
|
|
|
|
|
description: "This app does XYZ.",
|
|
|
|
iconPath: "/test-plugin/test-app/icon.svg",
|
|
|
|
homepageURL: "https://example.com",
|
|
|
|
path: "/test-plugin/test-app",
|
2020-10-30 14:18:59 +07:00
|
|
|
|
2020-11-06 21:51:46 +07:00
|
|
|
plugin: {
|
|
|
|
name: "test-plugin",
|
|
|
|
version: "1.0.0",
|
|
|
|
modulePath: path.join(__dirname, "test-plugin"),
|
2020-11-04 09:11:14 +07:00
|
|
|
|
2020-11-06 21:51:46 +07:00
|
|
|
displayName: "Test Plugin",
|
|
|
|
description: "Plugin used in code-server tests.",
|
|
|
|
routerPath: "/test-plugin",
|
2020-11-04 09:45:25 +07:00
|
|
|
homepageURL: "https://example.com",
|
2020-10-30 14:18:59 +07:00
|
|
|
},
|
2020-11-06 21:51:46 +07:00
|
|
|
},
|
|
|
|
])
|
|
|
|
})
|
|
|
|
|
|
|
|
it("/test-plugin/test-app", async () => {
|
2020-11-06 22:09:35 +07:00
|
|
|
const indexHTML = await fsp.readFile(path.join(__dirname, "test-plugin/public/index.html"), {
|
|
|
|
encoding: "utf8",
|
|
|
|
})
|
2021-01-14 21:37:41 +07:00
|
|
|
const resp = await s.fetch("/test-plugin/test-app")
|
2021-01-21 06:37:49 +07:00
|
|
|
expect(resp.status).toBe(200)
|
2021-01-14 21:37:41 +07:00
|
|
|
const body = await resp.text()
|
2021-01-21 06:37:49 +07:00
|
|
|
expect(body).toBe(indexHTML)
|
2020-10-30 14:18:59 +07:00
|
|
|
})
|
2021-01-21 03:11:08 +07:00
|
|
|
|
|
|
|
it("/test-plugin/test-app (websocket)", async () => {
|
|
|
|
const ws = s.ws("/test-plugin/test-app")
|
|
|
|
const message = await new Promise((resolve) => {
|
|
|
|
ws.once("message", (message) => resolve(message))
|
|
|
|
})
|
|
|
|
ws.terminate()
|
|
|
|
expect(message).toBe("hello")
|
|
|
|
})
|
2021-01-30 06:42:50 +07:00
|
|
|
|
|
|
|
it("/test-plugin/error", async () => {
|
|
|
|
const resp = await s.fetch("/test-plugin/error")
|
|
|
|
expect(resp.status).toBe(HttpCode.LargePayload)
|
|
|
|
})
|
2020-10-30 14:18:59 +07:00
|
|
|
})
|