/
Alex_Ural
/
opencode
Обзор
Документация
Войти
/
Alex_Ural
/
opencode
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
dev
packages/llm/test/lib/effect.ts
50 строк
2 KB
Kit Langton
Add native LLM core foundation (#24712)
08 май 2026, 23:56
Не верифицирован
08 май 2026, 23:56
5bb7b23
Код
Авторство
О чём код?
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" type Body<A, E, R> = Effect.Effect<A, E, R> | (() => Effect.Effect<A, E, R>) 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) return { effect, live } } const testEnv = Layer.mergeAll(TestConsole.layer, TestClock.layer()) 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))