| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899 |
- import { test, type TestOptions } from "bun:test"
- import { Cause, Effect, Exit, Layer } from "effect"
- import type * as Scope from "effect/Scope"
- import * as TestClock from "effect/testing/TestClock"
- import * as TestConsole from "effect/testing/TestConsole"
- import type { Config } from "@/config/config"
- import { TestInstance, withTmpdirInstance } from "../fixture/fixture"
- type Body<A, E, R> = Effect.Effect<A, E, R> | (() => Effect.Effect<A, E, R>)
- type InstanceOptions = { git?: boolean; config?: Partial<Config.Info> }
- function isInstanceOptions(options: InstanceOptions | number | TestOptions | undefined): options is InstanceOptions {
- return !!options && typeof options === "object" && ("git" in options || "config" in options)
- }
- function instanceArgs(
- options?: InstanceOptions | number | TestOptions,
- testOptions?: number | TestOptions,
- ): { instanceOptions: InstanceOptions | undefined; testOptions: number | TestOptions | undefined } {
- if (typeof options === "number") return { instanceOptions: undefined, testOptions: options }
- if (isInstanceOptions(options)) return { instanceOptions: options, testOptions }
- return { instanceOptions: undefined, testOptions: options }
- }
- const body = <A, E, R>(value: Body<A, E, R>) => Effect.suspend(() => (typeof value === "function" ? value() : value))
- const run = <A, E, R, E2>(value: Body<A, E, R | Scope.Scope>, layer: Layer.Layer<R, E2>) =>
- Effect.gen(function* () {
- const exit = yield* body(value).pipe(Effect.scoped, Effect.provide(layer), Effect.exit)
- if (Exit.isFailure(exit)) {
- for (const err of Cause.prettyErrors(exit.cause)) {
- yield* Effect.logError(err)
- }
- }
- return yield* exit
- }).pipe(Effect.runPromise)
- const make = <R, E>(testLayer: Layer.Layer<R, E>, liveLayer: Layer.Layer<R, E>) => {
- const effect = <A, E2>(name: string, value: Body<A, E2, R | Scope.Scope>, opts?: number | TestOptions) =>
- test(name, () => run(value, testLayer), opts)
- effect.only = <A, E2>(name: string, value: Body<A, E2, R | Scope.Scope>, opts?: number | TestOptions) =>
- test.only(name, () => run(value, testLayer), opts)
- effect.skip = <A, E2>(name: string, value: Body<A, E2, R | Scope.Scope>, opts?: number | TestOptions) =>
- test.skip(name, () => run(value, testLayer), opts)
- const live = <A, E2>(name: string, value: Body<A, E2, R | Scope.Scope>, opts?: number | TestOptions) =>
- test(name, () => run(value, liveLayer), opts)
- live.only = <A, E2>(name: string, value: Body<A, E2, R | Scope.Scope>, opts?: number | TestOptions) =>
- test.only(name, () => run(value, liveLayer), opts)
- live.skip = <A, E2>(name: string, value: Body<A, E2, R | Scope.Scope>, opts?: number | TestOptions) =>
- test.skip(name, () => run(value, liveLayer), opts)
- const instance = <A, E2>(
- name: string,
- value: Body<A, E2, R | TestInstance | Scope.Scope>,
- options?: InstanceOptions | number | TestOptions,
- opts?: number | TestOptions,
- ) => {
- const args = instanceArgs(options, opts)
- return test(name, () => run(body(value).pipe(withTmpdirInstance(args.instanceOptions)), liveLayer), args.testOptions)
- }
- instance.only = <A, E2>(
- name: string,
- value: Body<A, E2, R | TestInstance | Scope.Scope>,
- options?: InstanceOptions | number | TestOptions,
- opts?: number | TestOptions,
- ) => {
- const args = instanceArgs(options, opts)
- return test.only(name, () => run(body(value).pipe(withTmpdirInstance(args.instanceOptions)), liveLayer), args.testOptions)
- }
- instance.skip = <A, E2>(
- name: string,
- value: Body<A, E2, R | TestInstance | Scope.Scope>,
- options?: InstanceOptions | number | TestOptions,
- opts?: number | TestOptions,
- ) => {
- const args = instanceArgs(options, opts)
- return test.skip(name, () => run(body(value).pipe(withTmpdirInstance(args.instanceOptions)), liveLayer), args.testOptions)
- }
- return { effect, live, instance }
- }
- // Test environment with TestClock and TestConsole
- const testEnv = Layer.mergeAll(TestConsole.layer, TestClock.layer())
- // Live environment - uses real clock, but keeps TestConsole for output capture
- const liveEnv = TestConsole.layer
- export const it = make(testEnv, liveEnv)
- export const testEffect = <R, E>(layer: Layer.Layer<R, E>) =>
- make(Layer.provideMerge(layer, testEnv), Layer.provideMerge(layer, liveEnv))
|