2022-10-12 09:47:13 +00:00
|
|
|
import { createSandbox } from "../environments/deno_sandbox.ts";
|
2022-10-10 12:50:21 +00:00
|
|
|
import { Manifest } from "../types.ts";
|
|
|
|
import { EndpointHook, EndpointHookT } from "./endpoint.ts";
|
|
|
|
import { System } from "../system.ts";
|
|
|
|
|
|
|
|
import { Application } from "../../server/deps.ts";
|
|
|
|
import { assertEquals } from "../../test_deps.ts";
|
|
|
|
|
2023-05-23 18:53:53 +00:00
|
|
|
// Deno.test("Run a plugos endpoint server", async () => {
|
|
|
|
// const system = new System<EndpointHookT>("server");
|
|
|
|
// await system.load(
|
|
|
|
// {
|
|
|
|
// name: "test",
|
|
|
|
// functions: {
|
|
|
|
// testhandler: {
|
|
|
|
// http: {
|
|
|
|
// path: "/",
|
|
|
|
// },
|
|
|
|
// code: `(() => {
|
|
|
|
// return {
|
|
|
|
// default: (req) => {
|
|
|
|
// console.log("Req", req);
|
|
|
|
// return {status: 200, body: [1, 2, 3], headers: {"Content-type": "application/json"}};
|
|
|
|
// }
|
|
|
|
// };
|
|
|
|
// })()`,
|
|
|
|
// },
|
|
|
|
// },
|
|
|
|
// } as Manifest<EndpointHookT>,
|
|
|
|
// createSandbox,
|
|
|
|
// );
|
2022-10-10 12:50:21 +00:00
|
|
|
|
2023-05-23 18:53:53 +00:00
|
|
|
// const app = new Application();
|
|
|
|
// const port = 3123;
|
2022-10-10 12:50:21 +00:00
|
|
|
|
2023-05-23 18:53:53 +00:00
|
|
|
// system.addHook(new EndpointHook(app, "/_"));
|
2022-10-10 12:50:21 +00:00
|
|
|
|
2023-05-23 18:53:53 +00:00
|
|
|
// const controller = new AbortController();
|
|
|
|
// app.listen({ port: port, signal: controller.signal });
|
2022-10-10 12:50:21 +00:00
|
|
|
|
2023-05-23 18:53:53 +00:00
|
|
|
// const res = await fetch(`http://localhost:${port}/_/test/?name=Pete`);
|
|
|
|
// assertEquals(res.status, 200);
|
|
|
|
// assertEquals(res.headers.get("Content-type"), "application/json");
|
|
|
|
// assertEquals(await res.json(), [1, 2, 3]);
|
|
|
|
// console.log("Aborting");
|
|
|
|
// controller.abort();
|
|
|
|
// await system.unloadAll();
|
|
|
|
// });
|