| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789 |
- import { test, expect } from "bun:test"
- import { Config } from "../../src/config/config"
- import { Instance } from "../../src/project/instance"
- import { tmpdir } from "../fixture/fixture"
- import path from "path"
- import fs from "fs/promises"
- import { pathToFileURL } from "url"
- test("loads config with defaults when no files exist", async () => {
- await using tmp = await tmpdir()
- await Instance.provide({
- directory: tmp.path,
- fn: async () => {
- const config = await Config.get()
- expect(config.username).toBeDefined()
- },
- })
- })
- test("loads JSON config file", async () => {
- await using tmp = await tmpdir({
- init: async (dir) => {
- await Bun.write(
- path.join(dir, "opencode.json"),
- JSON.stringify({
- $schema: "https://opencode.ai/config.json",
- model: "test/model",
- username: "testuser",
- }),
- )
- },
- })
- await Instance.provide({
- directory: tmp.path,
- fn: async () => {
- const config = await Config.get()
- expect(config.model).toBe("test/model")
- expect(config.username).toBe("testuser")
- },
- })
- })
- test("loads JSONC config file", async () => {
- await using tmp = await tmpdir({
- init: async (dir) => {
- await Bun.write(
- path.join(dir, "opencode.jsonc"),
- `{
- // This is a comment
- "$schema": "https://opencode.ai/config.json",
- "model": "test/model",
- "username": "testuser"
- }`,
- )
- },
- })
- await Instance.provide({
- directory: tmp.path,
- fn: async () => {
- const config = await Config.get()
- expect(config.model).toBe("test/model")
- expect(config.username).toBe("testuser")
- },
- })
- })
- test("merges multiple config files with correct precedence", async () => {
- await using tmp = await tmpdir({
- init: async (dir) => {
- await Bun.write(
- path.join(dir, "opencode.jsonc"),
- JSON.stringify({
- $schema: "https://opencode.ai/config.json",
- model: "base",
- username: "base",
- }),
- )
- await Bun.write(
- path.join(dir, "opencode.json"),
- JSON.stringify({
- $schema: "https://opencode.ai/config.json",
- model: "override",
- }),
- )
- },
- })
- await Instance.provide({
- directory: tmp.path,
- fn: async () => {
- const config = await Config.get()
- expect(config.model).toBe("override")
- expect(config.username).toBe("base")
- },
- })
- })
- test("handles environment variable substitution", async () => {
- const originalEnv = process.env["TEST_VAR"]
- process.env["TEST_VAR"] = "test_theme"
- try {
- await using tmp = await tmpdir({
- init: async (dir) => {
- await Bun.write(
- path.join(dir, "opencode.json"),
- JSON.stringify({
- $schema: "https://opencode.ai/config.json",
- theme: "{env:TEST_VAR}",
- }),
- )
- },
- })
- await Instance.provide({
- directory: tmp.path,
- fn: async () => {
- const config = await Config.get()
- expect(config.theme).toBe("test_theme")
- },
- })
- } finally {
- if (originalEnv !== undefined) {
- process.env["TEST_VAR"] = originalEnv
- } else {
- delete process.env["TEST_VAR"]
- }
- }
- })
- test("handles file inclusion substitution", async () => {
- await using tmp = await tmpdir({
- init: async (dir) => {
- await Bun.write(path.join(dir, "included.txt"), "test_theme")
- await Bun.write(
- path.join(dir, "opencode.json"),
- JSON.stringify({
- $schema: "https://opencode.ai/config.json",
- theme: "{file:included.txt}",
- }),
- )
- },
- })
- await Instance.provide({
- directory: tmp.path,
- fn: async () => {
- const config = await Config.get()
- expect(config.theme).toBe("test_theme")
- },
- })
- })
- test("validates config schema and throws on invalid fields", async () => {
- await using tmp = await tmpdir({
- init: async (dir) => {
- await Bun.write(
- path.join(dir, "opencode.json"),
- JSON.stringify({
- $schema: "https://opencode.ai/config.json",
- invalid_field: "should cause error",
- }),
- )
- },
- })
- await Instance.provide({
- directory: tmp.path,
- fn: async () => {
- // Strict schema should throw an error for invalid fields
- await expect(Config.get()).rejects.toThrow()
- },
- })
- })
- test("throws error for invalid JSON", async () => {
- await using tmp = await tmpdir({
- init: async (dir) => {
- await Bun.write(path.join(dir, "opencode.json"), "{ invalid json }")
- },
- })
- await Instance.provide({
- directory: tmp.path,
- fn: async () => {
- await expect(Config.get()).rejects.toThrow()
- },
- })
- })
- test("handles agent configuration", async () => {
- await using tmp = await tmpdir({
- init: async (dir) => {
- await Bun.write(
- path.join(dir, "opencode.json"),
- JSON.stringify({
- $schema: "https://opencode.ai/config.json",
- agent: {
- test_agent: {
- model: "test/model",
- temperature: 0.7,
- description: "test agent",
- },
- },
- }),
- )
- },
- })
- await Instance.provide({
- directory: tmp.path,
- fn: async () => {
- const config = await Config.get()
- expect(config.agent?.["test_agent"]).toEqual(
- expect.objectContaining({
- model: "test/model",
- temperature: 0.7,
- description: "test agent",
- }),
- )
- },
- })
- })
- test("handles command configuration", async () => {
- await using tmp = await tmpdir({
- init: async (dir) => {
- await Bun.write(
- path.join(dir, "opencode.json"),
- JSON.stringify({
- $schema: "https://opencode.ai/config.json",
- command: {
- test_command: {
- template: "test template",
- description: "test command",
- agent: "test_agent",
- },
- },
- }),
- )
- },
- })
- await Instance.provide({
- directory: tmp.path,
- fn: async () => {
- const config = await Config.get()
- expect(config.command?.["test_command"]).toEqual({
- template: "test template",
- description: "test command",
- agent: "test_agent",
- })
- },
- })
- })
- test("migrates autoshare to share field", async () => {
- await using tmp = await tmpdir({
- init: async (dir) => {
- await Bun.write(
- path.join(dir, "opencode.json"),
- JSON.stringify({
- $schema: "https://opencode.ai/config.json",
- autoshare: true,
- }),
- )
- },
- })
- await Instance.provide({
- directory: tmp.path,
- fn: async () => {
- const config = await Config.get()
- expect(config.share).toBe("auto")
- expect(config.autoshare).toBe(true)
- },
- })
- })
- test("migrates mode field to agent field", async () => {
- await using tmp = await tmpdir({
- init: async (dir) => {
- await Bun.write(
- path.join(dir, "opencode.json"),
- JSON.stringify({
- $schema: "https://opencode.ai/config.json",
- mode: {
- test_mode: {
- model: "test/model",
- temperature: 0.5,
- },
- },
- }),
- )
- },
- })
- await Instance.provide({
- directory: tmp.path,
- fn: async () => {
- const config = await Config.get()
- expect(config.agent?.["test_mode"]).toEqual({
- model: "test/model",
- temperature: 0.5,
- mode: "primary",
- options: {},
- permission: {},
- })
- },
- })
- })
- test("loads config from .opencode directory", async () => {
- await using tmp = await tmpdir({
- init: async (dir) => {
- const opencodeDir = path.join(dir, ".opencode")
- await fs.mkdir(opencodeDir, { recursive: true })
- const agentDir = path.join(opencodeDir, "agent")
- await fs.mkdir(agentDir, { recursive: true })
- await Bun.write(
- path.join(agentDir, "test.md"),
- `---
- model: test/model
- ---
- Test agent prompt`,
- )
- },
- })
- await Instance.provide({
- directory: tmp.path,
- fn: async () => {
- const config = await Config.get()
- expect(config.agent?.["test"]).toEqual(
- expect.objectContaining({
- name: "test",
- model: "test/model",
- prompt: "Test agent prompt",
- }),
- )
- },
- })
- })
- test("updates config and writes to file", async () => {
- await using tmp = await tmpdir()
- await Instance.provide({
- directory: tmp.path,
- fn: async () => {
- const newConfig = { model: "updated/model" }
- await Config.update(newConfig as any)
- const writtenConfig = JSON.parse(await Bun.file(path.join(tmp.path, "config.json")).text())
- expect(writtenConfig.model).toBe("updated/model")
- },
- })
- })
- test("gets config directories", async () => {
- await using tmp = await tmpdir()
- await Instance.provide({
- directory: tmp.path,
- fn: async () => {
- const dirs = await Config.directories()
- expect(dirs.length).toBeGreaterThanOrEqual(1)
- },
- })
- })
- test("resolves scoped npm plugins in config", async () => {
- await using tmp = await tmpdir({
- init: async (dir) => {
- const pluginDir = path.join(dir, "node_modules", "@scope", "plugin")
- await fs.mkdir(pluginDir, { recursive: true })
- await Bun.write(
- path.join(dir, "package.json"),
- JSON.stringify({ name: "config-fixture", version: "1.0.0", type: "module" }, null, 2),
- )
- await Bun.write(
- path.join(pluginDir, "package.json"),
- JSON.stringify(
- {
- name: "@scope/plugin",
- version: "1.0.0",
- type: "module",
- main: "./index.js",
- },
- null,
- 2,
- ),
- )
- await Bun.write(path.join(pluginDir, "index.js"), "export default {}\n")
- await Bun.write(
- path.join(dir, "opencode.json"),
- JSON.stringify({ $schema: "https://opencode.ai/config.json", plugin: ["@scope/plugin"] }, null, 2),
- )
- },
- })
- await Instance.provide({
- directory: tmp.path,
- fn: async () => {
- const config = await Config.get()
- const pluginEntries = config.plugin ?? []
- const baseUrl = pathToFileURL(path.join(tmp.path, "opencode.json")).href
- const expected = import.meta.resolve("@scope/plugin", baseUrl)
- expect(pluginEntries.includes(expected)).toBe(true)
- const scopedEntry = pluginEntries.find((entry) => entry === expected)
- expect(scopedEntry).toBeDefined()
- expect(scopedEntry?.includes("/node_modules/@scope/plugin/")).toBe(true)
- },
- })
- })
- test("merges plugin arrays from global and local configs", async () => {
- await using tmp = await tmpdir({
- init: async (dir) => {
- // Create a nested project structure with local .opencode config
- const projectDir = path.join(dir, "project")
- const opencodeDir = path.join(projectDir, ".opencode")
- await fs.mkdir(opencodeDir, { recursive: true })
- // Global config with plugins
- await Bun.write(
- path.join(dir, "opencode.json"),
- JSON.stringify({
- $schema: "https://opencode.ai/config.json",
- plugin: ["global-plugin-1", "global-plugin-2"],
- }),
- )
- // Local .opencode config with different plugins
- await Bun.write(
- path.join(opencodeDir, "opencode.json"),
- JSON.stringify({
- $schema: "https://opencode.ai/config.json",
- plugin: ["local-plugin-1"],
- }),
- )
- },
- })
- await Instance.provide({
- directory: path.join(tmp.path, "project"),
- fn: async () => {
- const config = await Config.get()
- const plugins = config.plugin ?? []
- // Should contain both global and local plugins
- expect(plugins.some((p) => p.includes("global-plugin-1"))).toBe(true)
- expect(plugins.some((p) => p.includes("global-plugin-2"))).toBe(true)
- expect(plugins.some((p) => p.includes("local-plugin-1"))).toBe(true)
- // Should have all 3 plugins (not replaced, but merged)
- const pluginNames = plugins.filter((p) => p.includes("global-plugin") || p.includes("local-plugin"))
- expect(pluginNames.length).toBeGreaterThanOrEqual(3)
- },
- })
- })
- test("does not error when only custom agent is a subagent", async () => {
- await using tmp = await tmpdir({
- init: async (dir) => {
- const opencodeDir = path.join(dir, ".opencode")
- await fs.mkdir(opencodeDir, { recursive: true })
- const agentDir = path.join(opencodeDir, "agent")
- await fs.mkdir(agentDir, { recursive: true })
- await Bun.write(
- path.join(agentDir, "helper.md"),
- `---
- model: test/model
- mode: subagent
- ---
- Helper subagent prompt`,
- )
- },
- })
- await Instance.provide({
- directory: tmp.path,
- fn: async () => {
- const config = await Config.get()
- expect(config.agent?.["helper"]).toMatchObject({
- name: "helper",
- model: "test/model",
- mode: "subagent",
- prompt: "Helper subagent prompt",
- })
- },
- })
- })
- test("deduplicates duplicate plugins from global and local configs", async () => {
- await using tmp = await tmpdir({
- init: async (dir) => {
- // Create a nested project structure with local .opencode config
- const projectDir = path.join(dir, "project")
- const opencodeDir = path.join(projectDir, ".opencode")
- await fs.mkdir(opencodeDir, { recursive: true })
- // Global config with plugins
- await Bun.write(
- path.join(dir, "opencode.json"),
- JSON.stringify({
- $schema: "https://opencode.ai/config.json",
- plugin: ["duplicate-plugin", "global-plugin-1"],
- }),
- )
- // Local .opencode config with some overlapping plugins
- await Bun.write(
- path.join(opencodeDir, "opencode.json"),
- JSON.stringify({
- $schema: "https://opencode.ai/config.json",
- plugin: ["duplicate-plugin", "local-plugin-1"],
- }),
- )
- },
- })
- await Instance.provide({
- directory: path.join(tmp.path, "project"),
- fn: async () => {
- const config = await Config.get()
- const plugins = config.plugin ?? []
- // Should contain all unique plugins
- expect(plugins.some((p) => p.includes("global-plugin-1"))).toBe(true)
- expect(plugins.some((p) => p.includes("local-plugin-1"))).toBe(true)
- expect(plugins.some((p) => p.includes("duplicate-plugin"))).toBe(true)
- // Should deduplicate the duplicate plugin
- const duplicatePlugins = plugins.filter((p) => p.includes("duplicate-plugin"))
- expect(duplicatePlugins.length).toBe(1)
- // Should have exactly 3 unique plugins
- const pluginNames = plugins.filter(
- (p) => p.includes("global-plugin") || p.includes("local-plugin") || p.includes("duplicate-plugin"),
- )
- expect(pluginNames.length).toBe(3)
- },
- })
- })
- // Legacy tools migration tests
- test("migrates legacy tools config to permissions - allow", async () => {
- await using tmp = await tmpdir({
- init: async (dir) => {
- await Bun.write(
- path.join(dir, "opencode.json"),
- JSON.stringify({
- $schema: "https://opencode.ai/config.json",
- agent: {
- test: {
- tools: {
- bash: true,
- read: true,
- },
- },
- },
- }),
- )
- },
- })
- await Instance.provide({
- directory: tmp.path,
- fn: async () => {
- const config = await Config.get()
- expect(config.agent?.["test"]?.permission).toEqual({
- bash: "allow",
- read: "allow",
- })
- },
- })
- })
- test("migrates legacy tools config to permissions - deny", async () => {
- await using tmp = await tmpdir({
- init: async (dir) => {
- await Bun.write(
- path.join(dir, "opencode.json"),
- JSON.stringify({
- $schema: "https://opencode.ai/config.json",
- agent: {
- test: {
- tools: {
- bash: false,
- webfetch: false,
- },
- },
- },
- }),
- )
- },
- })
- await Instance.provide({
- directory: tmp.path,
- fn: async () => {
- const config = await Config.get()
- expect(config.agent?.["test"]?.permission).toEqual({
- bash: "deny",
- webfetch: "deny",
- })
- },
- })
- })
- test("migrates legacy write tool to edit permission", async () => {
- await using tmp = await tmpdir({
- init: async (dir) => {
- await Bun.write(
- path.join(dir, "opencode.json"),
- JSON.stringify({
- $schema: "https://opencode.ai/config.json",
- agent: {
- test: {
- tools: {
- write: true,
- },
- },
- },
- }),
- )
- },
- })
- await Instance.provide({
- directory: tmp.path,
- fn: async () => {
- const config = await Config.get()
- expect(config.agent?.["test"]?.permission).toEqual({
- edit: "allow",
- })
- },
- })
- })
- test("migrates legacy edit tool to edit permission", async () => {
- await using tmp = await tmpdir({
- init: async (dir) => {
- await Bun.write(
- path.join(dir, "opencode.json"),
- JSON.stringify({
- $schema: "https://opencode.ai/config.json",
- agent: {
- test: {
- tools: {
- edit: false,
- },
- },
- },
- }),
- )
- },
- })
- await Instance.provide({
- directory: tmp.path,
- fn: async () => {
- const config = await Config.get()
- expect(config.agent?.["test"]?.permission).toEqual({
- edit: "deny",
- })
- },
- })
- })
- test("migrates legacy patch tool to edit permission", async () => {
- await using tmp = await tmpdir({
- init: async (dir) => {
- await Bun.write(
- path.join(dir, "opencode.json"),
- JSON.stringify({
- $schema: "https://opencode.ai/config.json",
- agent: {
- test: {
- tools: {
- patch: true,
- },
- },
- },
- }),
- )
- },
- })
- await Instance.provide({
- directory: tmp.path,
- fn: async () => {
- const config = await Config.get()
- expect(config.agent?.["test"]?.permission).toEqual({
- edit: "allow",
- })
- },
- })
- })
- test("migrates legacy multiedit tool to edit permission", async () => {
- await using tmp = await tmpdir({
- init: async (dir) => {
- await Bun.write(
- path.join(dir, "opencode.json"),
- JSON.stringify({
- $schema: "https://opencode.ai/config.json",
- agent: {
- test: {
- tools: {
- multiedit: false,
- },
- },
- },
- }),
- )
- },
- })
- await Instance.provide({
- directory: tmp.path,
- fn: async () => {
- const config = await Config.get()
- expect(config.agent?.["test"]?.permission).toEqual({
- edit: "deny",
- })
- },
- })
- })
- test("migrates mixed legacy tools config", async () => {
- await using tmp = await tmpdir({
- init: async (dir) => {
- await Bun.write(
- path.join(dir, "opencode.json"),
- JSON.stringify({
- $schema: "https://opencode.ai/config.json",
- agent: {
- test: {
- tools: {
- bash: true,
- write: true,
- read: false,
- webfetch: true,
- },
- },
- },
- }),
- )
- },
- })
- await Instance.provide({
- directory: tmp.path,
- fn: async () => {
- const config = await Config.get()
- expect(config.agent?.["test"]?.permission).toEqual({
- bash: "allow",
- edit: "allow",
- read: "deny",
- webfetch: "allow",
- })
- },
- })
- })
- test("merges legacy tools with existing permission config", async () => {
- await using tmp = await tmpdir({
- init: async (dir) => {
- await Bun.write(
- path.join(dir, "opencode.json"),
- JSON.stringify({
- $schema: "https://opencode.ai/config.json",
- agent: {
- test: {
- permission: {
- glob: "allow",
- },
- tools: {
- bash: true,
- },
- },
- },
- }),
- )
- },
- })
- await Instance.provide({
- directory: tmp.path,
- fn: async () => {
- const config = await Config.get()
- expect(config.agent?.["test"]?.permission).toEqual({
- glob: "allow",
- bash: "allow",
- })
- },
- })
- })
|