50 lines
1.4 KiB
TypeScript
50 lines
1.4 KiB
TypeScript
import { createSandbox } from "../environment/node_sandbox";
|
|
import { expect, test } from "@jest/globals";
|
|
import { Manifest } from "../types";
|
|
import express from "express";
|
|
import request from "supertest";
|
|
import { EndpointFeature, EndpointHook } from "./endpoint";
|
|
import { System } from "../system";
|
|
|
|
test("Run a plugbox endpoint server", async () => {
|
|
let system = new System<EndpointHook>("server");
|
|
let plug = await system.load(
|
|
"test",
|
|
{
|
|
functions: {
|
|
testhandler: {
|
|
code: `(() => {
|
|
return {
|
|
default: (req) => {
|
|
console.log("Req", req);
|
|
return {status: 200, body: [1, 2, 3], headers: {"Content-type": "application/json"}};
|
|
}
|
|
};
|
|
})()`,
|
|
},
|
|
},
|
|
hooks: {
|
|
endpoints: [{ method: "GET", path: "/", handler: "testhandler" }],
|
|
},
|
|
} as Manifest<EndpointHook>,
|
|
createSandbox(system)
|
|
);
|
|
|
|
const app = express();
|
|
const port = 3123;
|
|
|
|
system.addFeature(new EndpointFeature(app));
|
|
|
|
let server = app.listen(port, () => {
|
|
console.log(`Listening on port ${port}`);
|
|
});
|
|
let resp = await request(app)
|
|
.get("/_/test/?name=Pete")
|
|
.expect((resp) => {
|
|
expect(resp.status).toBe(200);
|
|
expect(resp.header["content-type"]).toContain("application/json");
|
|
expect(resp.text).toBe(JSON.stringify([1, 2, 3]));
|
|
});
|
|
server.close();
|
|
});
|