2020-10-30 07:18:59 +00:00
|
|
|
import { logger } from "@coder/logger"
|
2020-11-06 19:46:49 +00:00
|
|
|
import * as express from "express"
|
|
|
|
import * as fs from "fs"
|
2020-10-30 07:26:30 +00:00
|
|
|
import * as path from "path"
|
2020-11-06 19:46:49 +00:00
|
|
|
import { PluginAPI } from "../src/node/plugin"
|
2020-11-06 14:51:46 +00:00
|
|
|
import * as apps from "../src/node/routes/apps"
|
2021-01-14 14:53:34 +00:00
|
|
|
import * as httpserver from "./httpserver"
|
2020-11-06 15:09:35 +00:00
|
|
|
const fsp = fs.promises
|
2020-10-30 07:18:59 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Use $LOG_LEVEL=debug to see debug logs.
|
|
|
|
*/
|
|
|
|
describe("plugin", () => {
|
2020-11-06 14:51:46 +00:00
|
|
|
let papi: PluginAPI
|
2021-01-14 14:53:34 +00:00
|
|
|
let s: httpserver.HttpServer
|
2020-11-06 14:51:46 +00:00
|
|
|
|
2021-01-20 23:37:49 +00:00
|
|
|
beforeAll(async () => {
|
2021-01-14 14:37:41 +00:00
|
|
|
papi = new PluginAPI(logger, `${path.resolve(__dirname, "test-plugin")}:meow`)
|
2020-10-30 07:18:59 +00:00
|
|
|
await papi.loadPlugins()
|
|
|
|
|
2021-01-14 14:37:41 +00:00
|
|
|
const app = express.default()
|
2020-11-06 14:51:46 +00:00
|
|
|
papi.mount(app)
|
|
|
|
app.use("/api/applications", apps.router(papi))
|
|
|
|
|
2021-01-14 14:53:34 +00:00
|
|
|
s = new httpserver.HttpServer()
|
2021-01-14 14:37:41 +00:00
|
|
|
await s.listen(app)
|
|
|
|
})
|
|
|
|
|
2021-01-20 23:37:49 +00:00
|
|
|
afterAll(async () => {
|
2021-01-14 14:37:41 +00:00
|
|
|
await s.close()
|
2020-11-06 14:51:46 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
it("/api/applications", async () => {
|
2021-01-14 14:37:41 +00:00
|
|
|
const resp = await s.fetch("/api/applications")
|
2021-01-20 23:37:49 +00:00
|
|
|
expect(resp.status).toBe(200)
|
2021-01-14 14:37:41 +00:00
|
|
|
const body = await resp.json()
|
|
|
|
logger.debug(`${JSON.stringify(body)}`)
|
2021-01-20 23:37:49 +00:00
|
|
|
expect(body).toStrictEqual([
|
2020-11-06 14:51:46 +00: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 07:18:59 +00:00
|
|
|
|
2020-11-06 14:51:46 +00:00
|
|
|
plugin: {
|
|
|
|
name: "test-plugin",
|
|
|
|
version: "1.0.0",
|
|
|
|
modulePath: path.join(__dirname, "test-plugin"),
|
2020-11-04 02:11:14 +00:00
|
|
|
|
2020-11-06 14:51:46 +00:00
|
|
|
displayName: "Test Plugin",
|
|
|
|
description: "Plugin used in code-server tests.",
|
|
|
|
routerPath: "/test-plugin",
|
2020-11-04 02:45:25 +00:00
|
|
|
homepageURL: "https://example.com",
|
2020-10-30 07:18:59 +00:00
|
|
|
},
|
2020-11-06 14:51:46 +00:00
|
|
|
},
|
|
|
|
])
|
|
|
|
})
|
|
|
|
|
|
|
|
it("/test-plugin/test-app", async () => {
|
2020-11-06 15:09:35 +00:00
|
|
|
const indexHTML = await fsp.readFile(path.join(__dirname, "test-plugin/public/index.html"), {
|
|
|
|
encoding: "utf8",
|
|
|
|
})
|
2021-01-14 14:37:41 +00:00
|
|
|
const resp = await s.fetch("/test-plugin/test-app")
|
2021-01-20 23:37:49 +00:00
|
|
|
expect(resp.status).toBe(200)
|
2021-01-14 14:37:41 +00:00
|
|
|
const body = await resp.text()
|
2021-01-20 23:37:49 +00:00
|
|
|
expect(body).toBe(indexHTML)
|
2020-10-30 07:18:59 +00:00
|
|
|
})
|
|
|
|
})
|