|
|
@@ -0,0 +1,63 @@
|
|
|
+import { NodeHttpServer } from "@effect/platform-node"
|
|
|
+import { describe, expect } from "bun:test"
|
|
|
+import { Context, Effect, Layer, Option } from "effect"
|
|
|
+import { HttpBody, HttpClient, HttpClientRequest, HttpRouter } from "effect/unstable/http"
|
|
|
+import { HttpApiBuilder } from "effect/unstable/httpapi"
|
|
|
+import { Auth } from "../../src/auth"
|
|
|
+import { Config } from "../../src/config/config"
|
|
|
+import { Installation } from "../../src/installation"
|
|
|
+import { ServerAuth } from "../../src/server/auth"
|
|
|
+import { RootHttpApi } from "../../src/server/routes/instance/httpapi/api"
|
|
|
+import { GlobalPaths } from "../../src/server/routes/instance/httpapi/groups/global"
|
|
|
+import { controlHandlers } from "../../src/server/routes/instance/httpapi/handlers/control"
|
|
|
+import { globalHandlers } from "../../src/server/routes/instance/httpapi/handlers/global"
|
|
|
+import { authorizationLayer } from "../../src/server/routes/instance/httpapi/middleware/authorization"
|
|
|
+import { schemaErrorLayer } from "../../src/server/routes/instance/httpapi/middleware/schema-error"
|
|
|
+import { testEffect } from "../lib/effect"
|
|
|
+
|
|
|
+const apiLayer = HttpRouter.serve(
|
|
|
+ HttpApiBuilder.layer(RootHttpApi).pipe(
|
|
|
+ Layer.provide([controlHandlers, globalHandlers]),
|
|
|
+ Layer.provide([authorizationLayer, schemaErrorLayer]),
|
|
|
+ ),
|
|
|
+ { disableListenLog: true, disableLogger: true },
|
|
|
+).pipe(
|
|
|
+ Layer.provideMerge(NodeHttpServer.layerTest),
|
|
|
+ Layer.provide(Layer.mock(Auth.Service)({})),
|
|
|
+ Layer.provide(Layer.mock(Config.Service)({})),
|
|
|
+ Layer.provide(
|
|
|
+ Layer.mock(Installation.Service)({
|
|
|
+ method: () => Effect.succeed("npm"),
|
|
|
+ latest: () => Effect.succeed("9.9.9"),
|
|
|
+ upgrade: () => Effect.void,
|
|
|
+ }),
|
|
|
+ ),
|
|
|
+ Layer.provide(ServerAuth.Config.layer({ password: Option.none(), username: "opencode" })),
|
|
|
+ // Raw HttpApi routes expose an opaque handler context at the web boundary.
|
|
|
+ // oxlint-disable-next-line typescript-eslint/no-unsafe-type-assertion
|
|
|
+ Layer.provide(Layer.succeedContext(Context.empty() as Context.Context<unknown>)),
|
|
|
+)
|
|
|
+const it = testEffect(apiLayer)
|
|
|
+
|
|
|
+describe("global HttpApi", () => {
|
|
|
+ it.live("upgrades to latest when the request body is omitted", () =>
|
|
|
+ Effect.gen(function* () {
|
|
|
+ const response = yield* HttpClient.post(GlobalPaths.upgrade)
|
|
|
+
|
|
|
+ expect(response.status).toBe(200)
|
|
|
+ expect(yield* response.json).toEqual({ success: true, version: "9.9.9" })
|
|
|
+ }),
|
|
|
+ )
|
|
|
+
|
|
|
+ it.live("rejects malformed upgrade payloads", () =>
|
|
|
+ Effect.gen(function* () {
|
|
|
+ const response = yield* HttpClientRequest.post(GlobalPaths.upgrade).pipe(
|
|
|
+ HttpClientRequest.setBody(HttpBody.text("{", "application/json")),
|
|
|
+ HttpClient.execute,
|
|
|
+ )
|
|
|
+
|
|
|
+ expect(response.status).toBe(400)
|
|
|
+ expect(yield* response.json).toEqual({ success: false, error: "Invalid request body" })
|
|
|
+ }),
|
|
|
+ )
|
|
|
+})
|