| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782 |
- import { test, expect, describe, mock, afterEach } from "bun:test"
- import { Config } from "../../src/config/config"
- import { Instance } from "../../src/project/instance"
- import { Auth } from "../../src/auth"
- import { tmpdir } from "../fixture/fixture"
- import path from "path"
- import fs from "fs/promises"
- import { pathToFileURL } from "url"
- import { Global } from "../../src/global"
- // Get managed config directory from environment (set in preload.ts)
- const managedConfigDir = process.env.OPENCODE_TEST_MANAGED_CONFIG_DIR!
- afterEach(async () => {
- await fs.rm(managedConfigDir, { force: true, recursive: true }).catch(() => {})
- })
- async function writeManagedSettings(settings: object, filename = "opencode.json") {
- await fs.mkdir(managedConfigDir, { recursive: true })
- await Bun.write(path.join(managedConfigDir, filename), JSON.stringify(settings))
- }
- async function writeConfig(dir: string, config: object, name = "opencode.json") {
- await Bun.write(path.join(dir, name), JSON.stringify(config))
- }
- 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 writeConfig(dir, {
- $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 writeConfig(
- dir,
- {
- $schema: "https://opencode.ai/config.json",
- model: "base",
- username: "base",
- },
- "opencode.jsonc",
- )
- await writeConfig(dir, {
- $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 writeConfig(dir, {
- $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("preserves env variables when adding $schema to config", async () => {
- const originalEnv = process.env["PRESERVE_VAR"]
- process.env["PRESERVE_VAR"] = "secret_value"
- try {
- await using tmp = await tmpdir({
- init: async (dir) => {
- // Config without $schema - should trigger auto-add
- await Bun.write(
- path.join(dir, "opencode.json"),
- JSON.stringify({
- theme: "{env:PRESERVE_VAR}",
- }),
- )
- },
- })
- await Instance.provide({
- directory: tmp.path,
- fn: async () => {
- const config = await Config.get()
- expect(config.theme).toBe("secret_value")
- // Read the file to verify the env variable was preserved
- const content = await Bun.file(path.join(tmp.path, "opencode.json")).text()
- expect(content).toContain("{env:PRESERVE_VAR}")
- expect(content).not.toContain("secret_value")
- expect(content).toContain("$schema")
- },
- })
- } finally {
- if (originalEnv !== undefined) {
- process.env["PRESERVE_VAR"] = originalEnv
- } else {
- delete process.env["PRESERVE_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 writeConfig(dir, {
- $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 writeConfig(dir, {
- $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 writeConfig(dir, {
- $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("treats agent variant as model-scoped setting (not provider option)", async () => {
- await using tmp = await tmpdir({
- init: async (dir) => {
- await writeConfig(dir, {
- $schema: "https://opencode.ai/config.json",
- agent: {
- test_agent: {
- model: "openai/gpt-5.2",
- variant: "xhigh",
- max_tokens: 123,
- },
- },
- })
- },
- })
- await Instance.provide({
- directory: tmp.path,
- fn: async () => {
- const config = await Config.get()
- const agent = config.agent?.["test_agent"]
- expect(agent?.variant).toBe("xhigh")
- expect(agent?.options).toMatchObject({
- max_tokens: 123,
- })
- expect(agent?.options).not.toHaveProperty("variant")
- },
- })
- })
- test("handles command configuration", async () => {
- await using tmp = await tmpdir({
- init: async (dir) => {
- await writeConfig(dir, {
- $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("loads agents from .opencode/agents (plural)", async () => {
- await using tmp = await tmpdir({
- init: async (dir) => {
- const opencodeDir = path.join(dir, ".opencode")
- await fs.mkdir(opencodeDir, { recursive: true })
- const agentsDir = path.join(opencodeDir, "agents")
- await fs.mkdir(path.join(agentsDir, "nested"), { recursive: true })
- await Bun.write(
- path.join(agentsDir, "helper.md"),
- `---
- model: test/model
- mode: subagent
- ---
- Helper agent prompt`,
- )
- await Bun.write(
- path.join(agentsDir, "nested", "child.md"),
- `---
- model: test/model
- mode: subagent
- ---
- Nested agent 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 agent prompt",
- })
- expect(config.agent?.["nested/child"]).toMatchObject({
- name: "nested/child",
- model: "test/model",
- mode: "subagent",
- prompt: "Nested agent prompt",
- })
- },
- })
- })
- test("loads commands from .opencode/command (singular)", async () => {
- await using tmp = await tmpdir({
- init: async (dir) => {
- const opencodeDir = path.join(dir, ".opencode")
- await fs.mkdir(opencodeDir, { recursive: true })
- const commandDir = path.join(opencodeDir, "command")
- await fs.mkdir(path.join(commandDir, "nested"), { recursive: true })
- await Bun.write(
- path.join(commandDir, "hello.md"),
- `---
- description: Test command
- ---
- Hello from singular command`,
- )
- await Bun.write(
- path.join(commandDir, "nested", "child.md"),
- `---
- description: Nested command
- ---
- Nested command template`,
- )
- },
- })
- await Instance.provide({
- directory: tmp.path,
- fn: async () => {
- const config = await Config.get()
- expect(config.command?.["hello"]).toEqual({
- description: "Test command",
- template: "Hello from singular command",
- })
- expect(config.command?.["nested/child"]).toEqual({
- description: "Nested command",
- template: "Nested command template",
- })
- },
- })
- })
- test("loads commands from .opencode/commands (plural)", async () => {
- await using tmp = await tmpdir({
- init: async (dir) => {
- const opencodeDir = path.join(dir, ".opencode")
- await fs.mkdir(opencodeDir, { recursive: true })
- const commandsDir = path.join(opencodeDir, "commands")
- await fs.mkdir(path.join(commandsDir, "nested"), { recursive: true })
- await Bun.write(
- path.join(commandsDir, "hello.md"),
- `---
- description: Test command
- ---
- Hello from plural commands`,
- )
- await Bun.write(
- path.join(commandsDir, "nested", "child.md"),
- `---
- description: Nested command
- ---
- Nested command template`,
- )
- },
- })
- await Instance.provide({
- directory: tmp.path,
- fn: async () => {
- const config = await Config.get()
- expect(config.command?.["hello"]).toEqual({
- description: "Test command",
- template: "Hello from plural commands",
- })
- expect(config.command?.["nested/child"]).toEqual({
- description: "Nested command",
- template: "Nested command template",
- })
- },
- })
- })
- 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("does not try to install dependencies in read-only OPENCODE_CONFIG_DIR", async () => {
- if (process.platform === "win32") return
- await using tmp = await tmpdir<string>({
- init: async (dir) => {
- const ro = path.join(dir, "readonly")
- await fs.mkdir(ro, { recursive: true })
- await fs.chmod(ro, 0o555)
- return ro
- },
- dispose: async (dir) => {
- const ro = path.join(dir, "readonly")
- await fs.chmod(ro, 0o755).catch(() => {})
- return ro
- },
- })
- const prev = process.env.OPENCODE_CONFIG_DIR
- process.env.OPENCODE_CONFIG_DIR = tmp.extra
- try {
- await Instance.provide({
- directory: tmp.path,
- fn: async () => {
- await Config.get()
- },
- })
- } finally {
- if (prev === undefined) delete process.env.OPENCODE_CONFIG_DIR
- else process.env.OPENCODE_CONFIG_DIR = prev
- }
- })
- test("installs dependencies in writable OPENCODE_CONFIG_DIR", async () => {
- await using tmp = await tmpdir<string>({
- init: async (dir) => {
- const cfg = path.join(dir, "configdir")
- await fs.mkdir(cfg, { recursive: true })
- return cfg
- },
- })
- const prev = process.env.OPENCODE_CONFIG_DIR
- process.env.OPENCODE_CONFIG_DIR = tmp.extra
- try {
- await Instance.provide({
- directory: tmp.path,
- fn: async () => {
- await Config.get()
- },
- })
- expect(await Bun.file(path.join(tmp.extra, "package.json")).exists()).toBe(true)
- expect(await Bun.file(path.join(tmp.extra, ".gitignore")).exists()).toBe(true)
- } finally {
- if (prev === undefined) delete process.env.OPENCODE_CONFIG_DIR
- else process.env.OPENCODE_CONFIG_DIR = prev
- }
- })
- 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("merges instructions arrays from global and local configs", async () => {
- await using tmp = await tmpdir({
- init: async (dir) => {
- const projectDir = path.join(dir, "project")
- const opencodeDir = path.join(projectDir, ".opencode")
- await fs.mkdir(opencodeDir, { recursive: true })
- await Bun.write(
- path.join(dir, "opencode.json"),
- JSON.stringify({
- $schema: "https://opencode.ai/config.json",
- instructions: ["global-instructions.md", "shared-rules.md"],
- }),
- )
- await Bun.write(
- path.join(opencodeDir, "opencode.json"),
- JSON.stringify({
- $schema: "https://opencode.ai/config.json",
- instructions: ["local-instructions.md"],
- }),
- )
- },
- })
- await Instance.provide({
- directory: path.join(tmp.path, "project"),
- fn: async () => {
- const config = await Config.get()
- const instructions = config.instructions ?? []
- expect(instructions).toContain("global-instructions.md")
- expect(instructions).toContain("shared-rules.md")
- expect(instructions).toContain("local-instructions.md")
- expect(instructions.length).toBe(3)
- },
- })
- })
- test("deduplicates duplicate instructions from global and local configs", async () => {
- await using tmp = await tmpdir({
- init: async (dir) => {
- const projectDir = path.join(dir, "project")
- const opencodeDir = path.join(projectDir, ".opencode")
- await fs.mkdir(opencodeDir, { recursive: true })
- await Bun.write(
- path.join(dir, "opencode.json"),
- JSON.stringify({
- $schema: "https://opencode.ai/config.json",
- instructions: ["duplicate.md", "global-only.md"],
- }),
- )
- await Bun.write(
- path.join(opencodeDir, "opencode.json"),
- JSON.stringify({
- $schema: "https://opencode.ai/config.json",
- instructions: ["duplicate.md", "local-only.md"],
- }),
- )
- },
- })
- await Instance.provide({
- directory: path.join(tmp.path, "project"),
- fn: async () => {
- const config = await Config.get()
- const instructions = config.instructions ?? []
- expect(instructions).toContain("global-only.md")
- expect(instructions).toContain("local-only.md")
- expect(instructions).toContain("duplicate.md")
- const duplicates = instructions.filter((i) => i === "duplicate.md")
- expect(duplicates.length).toBe(1)
- expect(instructions.length).toBe(3)
- },
- })
- })
- 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",
- })
- },
- })
- })
- // Managed settings tests
- // Note: preload.ts sets OPENCODE_TEST_MANAGED_CONFIG which Global.Path.managedConfig uses
- test("managed settings override user settings", async () => {
- await using tmp = await tmpdir({
- init: async (dir) => {
- await writeConfig(dir, {
- $schema: "https://opencode.ai/config.json",
- model: "user/model",
- share: "auto",
- username: "testuser",
- })
- },
- })
- await writeManagedSettings({
- $schema: "https://opencode.ai/config.json",
- model: "managed/model",
- share: "disabled",
- })
- await Instance.provide({
- directory: tmp.path,
- fn: async () => {
- const config = await Config.get()
- expect(config.model).toBe("managed/model")
- expect(config.share).toBe("disabled")
- expect(config.username).toBe("testuser")
- },
- })
- })
- test("managed settings override project settings", async () => {
- await using tmp = await tmpdir({
- init: async (dir) => {
- await writeConfig(dir, {
- $schema: "https://opencode.ai/config.json",
- autoupdate: true,
- disabled_providers: [],
- theme: "dark",
- })
- },
- })
- await writeManagedSettings({
- $schema: "https://opencode.ai/config.json",
- autoupdate: false,
- disabled_providers: ["openai"],
- })
- await Instance.provide({
- directory: tmp.path,
- fn: async () => {
- const config = await Config.get()
- expect(config.autoupdate).toBe(false)
- expect(config.disabled_providers).toEqual(["openai"])
- expect(config.theme).toBe("dark")
- },
- })
- })
- test("missing managed settings file is not an error", async () => {
- await using tmp = await tmpdir({
- init: async (dir) => {
- await writeConfig(dir, {
- $schema: "https://opencode.ai/config.json",
- model: "user/model",
- })
- },
- })
- await Instance.provide({
- directory: tmp.path,
- fn: async () => {
- const config = await Config.get()
- expect(config.model).toBe("user/model")
- },
- })
- })
- 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",
- })
- },
- })
- })
- test("permission config preserves key order", 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",
- permission: {
- "*": "deny",
- edit: "ask",
- write: "ask",
- external_directory: "ask",
- read: "allow",
- todowrite: "allow",
- todoread: "allow",
- "thoughts_*": "allow",
- "reasoning_model_*": "allow",
- "tools_*": "allow",
- "pr_comments_*": "allow",
- },
- }),
- )
- },
- })
- await Instance.provide({
- directory: tmp.path,
- fn: async () => {
- const config = await Config.get()
- expect(Object.keys(config.permission!)).toEqual([
- "*",
- "edit",
- "write",
- "external_directory",
- "read",
- "todowrite",
- "todoread",
- "thoughts_*",
- "reasoning_model_*",
- "tools_*",
- "pr_comments_*",
- ])
- },
- })
- })
- // MCP config merging tests
- test("project config can override MCP server enabled status", async () => {
- await using tmp = await tmpdir({
- init: async (dir) => {
- // Simulates a base config (like from remote .well-known) with disabled MCP
- await Bun.write(
- path.join(dir, "opencode.jsonc"),
- JSON.stringify({
- $schema: "https://opencode.ai/config.json",
- mcp: {
- jira: {
- type: "remote",
- url: "https://jira.example.com/mcp",
- enabled: false,
- },
- wiki: {
- type: "remote",
- url: "https://wiki.example.com/mcp",
- enabled: false,
- },
- },
- }),
- )
- // Project config enables just jira
- await Bun.write(
- path.join(dir, "opencode.json"),
- JSON.stringify({
- $schema: "https://opencode.ai/config.json",
- mcp: {
- jira: {
- type: "remote",
- url: "https://jira.example.com/mcp",
- enabled: true,
- },
- },
- }),
- )
- },
- })
- await Instance.provide({
- directory: tmp.path,
- fn: async () => {
- const config = await Config.get()
- // jira should be enabled (overridden by project config)
- expect(config.mcp?.jira).toEqual({
- type: "remote",
- url: "https://jira.example.com/mcp",
- enabled: true,
- })
- // wiki should still be disabled (not overridden)
- expect(config.mcp?.wiki).toEqual({
- type: "remote",
- url: "https://wiki.example.com/mcp",
- enabled: false,
- })
- },
- })
- })
- test("MCP config deep merges preserving base config properties", async () => {
- await using tmp = await tmpdir({
- init: async (dir) => {
- // Base config with full MCP definition
- await Bun.write(
- path.join(dir, "opencode.jsonc"),
- JSON.stringify({
- $schema: "https://opencode.ai/config.json",
- mcp: {
- myserver: {
- type: "remote",
- url: "https://myserver.example.com/mcp",
- enabled: false,
- headers: {
- "X-Custom-Header": "value",
- },
- },
- },
- }),
- )
- // Override just enables it, should preserve other properties
- await Bun.write(
- path.join(dir, "opencode.json"),
- JSON.stringify({
- $schema: "https://opencode.ai/config.json",
- mcp: {
- myserver: {
- type: "remote",
- url: "https://myserver.example.com/mcp",
- enabled: true,
- },
- },
- }),
- )
- },
- })
- await Instance.provide({
- directory: tmp.path,
- fn: async () => {
- const config = await Config.get()
- expect(config.mcp?.myserver).toEqual({
- type: "remote",
- url: "https://myserver.example.com/mcp",
- enabled: true,
- headers: {
- "X-Custom-Header": "value",
- },
- })
- },
- })
- })
- test("local .opencode config can override MCP from project config", async () => {
- await using tmp = await tmpdir({
- init: async (dir) => {
- // Project config with disabled MCP
- await Bun.write(
- path.join(dir, "opencode.json"),
- JSON.stringify({
- $schema: "https://opencode.ai/config.json",
- mcp: {
- docs: {
- type: "remote",
- url: "https://docs.example.com/mcp",
- enabled: false,
- },
- },
- }),
- )
- // Local .opencode directory config enables it
- const opencodeDir = path.join(dir, ".opencode")
- await fs.mkdir(opencodeDir, { recursive: true })
- await Bun.write(
- path.join(opencodeDir, "opencode.json"),
- JSON.stringify({
- $schema: "https://opencode.ai/config.json",
- mcp: {
- docs: {
- type: "remote",
- url: "https://docs.example.com/mcp",
- enabled: true,
- },
- },
- }),
- )
- },
- })
- await Instance.provide({
- directory: tmp.path,
- fn: async () => {
- const config = await Config.get()
- expect(config.mcp?.docs?.enabled).toBe(true)
- },
- })
- })
- test("project config overrides remote well-known config", async () => {
- const originalFetch = globalThis.fetch
- let fetchedUrl: string | undefined
- const mockFetch = mock((url: string | URL | Request) => {
- const urlStr = url.toString()
- if (urlStr.includes(".well-known/opencode")) {
- fetchedUrl = urlStr
- return Promise.resolve(
- new Response(
- JSON.stringify({
- config: {
- mcp: {
- jira: {
- type: "remote",
- url: "https://jira.example.com/mcp",
- enabled: false,
- },
- },
- },
- }),
- { status: 200 },
- ),
- )
- }
- return originalFetch(url)
- })
- globalThis.fetch = mockFetch as unknown as typeof fetch
- const originalAuthAll = Auth.all
- Auth.all = mock(() =>
- Promise.resolve({
- "https://example.com": {
- type: "wellknown" as const,
- key: "TEST_TOKEN",
- token: "test-token",
- },
- }),
- )
- try {
- await using tmp = await tmpdir({
- git: true,
- init: async (dir) => {
- // Project config enables jira (overriding remote default)
- await Bun.write(
- path.join(dir, "opencode.json"),
- JSON.stringify({
- $schema: "https://opencode.ai/config.json",
- mcp: {
- jira: {
- type: "remote",
- url: "https://jira.example.com/mcp",
- enabled: true,
- },
- },
- }),
- )
- },
- })
- await Instance.provide({
- directory: tmp.path,
- fn: async () => {
- const config = await Config.get()
- // Verify fetch was called for wellknown config
- expect(fetchedUrl).toBe("https://example.com/.well-known/opencode")
- // Project config (enabled: true) should override remote (enabled: false)
- expect(config.mcp?.jira?.enabled).toBe(true)
- },
- })
- } finally {
- globalThis.fetch = originalFetch
- Auth.all = originalAuthAll
- }
- })
- describe("getPluginName", () => {
- test("extracts name from file:// URL", () => {
- expect(Config.getPluginName("file:///path/to/plugin/foo.js")).toBe("foo")
- expect(Config.getPluginName("file:///path/to/plugin/bar.ts")).toBe("bar")
- expect(Config.getPluginName("file:///some/path/my-plugin.js")).toBe("my-plugin")
- })
- test("extracts name from npm package with version", () => {
- expect(Config.getPluginName("[email protected]")).toBe("oh-my-opencode")
- expect(Config.getPluginName("[email protected]")).toBe("some-plugin")
- expect(Config.getPluginName("plugin@latest")).toBe("plugin")
- })
- test("extracts name from scoped npm package", () => {
- expect(Config.getPluginName("@scope/[email protected]")).toBe("@scope/pkg")
- expect(Config.getPluginName("@opencode/[email protected]")).toBe("@opencode/plugin")
- })
- test("returns full string for package without version", () => {
- expect(Config.getPluginName("some-plugin")).toBe("some-plugin")
- expect(Config.getPluginName("@scope/pkg")).toBe("@scope/pkg")
- })
- })
- describe("deduplicatePlugins", () => {
- test("removes duplicates keeping higher priority (later entries)", () => {
- const plugins = ["[email protected]", "[email protected]", "[email protected]", "[email protected]"]
- const result = Config.deduplicatePlugins(plugins)
- expect(result).toContain("[email protected]")
- expect(result).toContain("[email protected]")
- expect(result).toContain("[email protected]")
- expect(result).not.toContain("[email protected]")
- expect(result.length).toBe(3)
- })
- test("prefers local file over npm package with same name", () => {
- const plugins = ["[email protected]", "file:///project/.opencode/plugin/oh-my-opencode.js"]
- const result = Config.deduplicatePlugins(plugins)
- expect(result.length).toBe(1)
- expect(result[0]).toBe("file:///project/.opencode/plugin/oh-my-opencode.js")
- })
- test("preserves order of remaining plugins", () => {
- const plugins = ["[email protected]", "[email protected]", "[email protected]"]
- const result = Config.deduplicatePlugins(plugins)
- expect(result).toEqual(["[email protected]", "[email protected]", "[email protected]"])
- })
- test("local plugin directory overrides global opencode.json plugin", async () => {
- await using tmp = await tmpdir({
- init: async (dir) => {
- const projectDir = path.join(dir, "project")
- const opencodeDir = path.join(projectDir, ".opencode")
- const pluginDir = path.join(opencodeDir, "plugin")
- await fs.mkdir(pluginDir, { recursive: true })
- await Bun.write(
- path.join(dir, "opencode.json"),
- JSON.stringify({
- $schema: "https://opencode.ai/config.json",
- plugin: ["[email protected]"],
- }),
- )
- await Bun.write(path.join(pluginDir, "my-plugin.js"), "export default {}")
- },
- })
- await Instance.provide({
- directory: path.join(tmp.path, "project"),
- fn: async () => {
- const config = await Config.get()
- const plugins = config.plugin ?? []
- const myPlugins = plugins.filter((p) => Config.getPluginName(p) === "my-plugin")
- expect(myPlugins.length).toBe(1)
- expect(myPlugins[0].startsWith("file://")).toBe(true)
- },
- })
- })
- })
- describe("OPENCODE_DISABLE_PROJECT_CONFIG", () => {
- test("skips project config files when flag is set", async () => {
- const originalEnv = process.env["OPENCODE_DISABLE_PROJECT_CONFIG"]
- process.env["OPENCODE_DISABLE_PROJECT_CONFIG"] = "true"
- try {
- await using tmp = await tmpdir({
- init: async (dir) => {
- // Create a project config that would normally be loaded
- await Bun.write(
- path.join(dir, "opencode.json"),
- JSON.stringify({
- $schema: "https://opencode.ai/config.json",
- model: "project/model",
- username: "project-user",
- }),
- )
- },
- })
- await Instance.provide({
- directory: tmp.path,
- fn: async () => {
- const config = await Config.get()
- // Project config should NOT be loaded - model should be default, not "project/model"
- expect(config.model).not.toBe("project/model")
- expect(config.username).not.toBe("project-user")
- },
- })
- } finally {
- if (originalEnv === undefined) {
- delete process.env["OPENCODE_DISABLE_PROJECT_CONFIG"]
- } else {
- process.env["OPENCODE_DISABLE_PROJECT_CONFIG"] = originalEnv
- }
- }
- })
- test("skips project .opencode/ directories when flag is set", async () => {
- const originalEnv = process.env["OPENCODE_DISABLE_PROJECT_CONFIG"]
- process.env["OPENCODE_DISABLE_PROJECT_CONFIG"] = "true"
- try {
- await using tmp = await tmpdir({
- init: async (dir) => {
- // Create a .opencode directory with a command
- const opencodeDir = path.join(dir, ".opencode", "command")
- await fs.mkdir(opencodeDir, { recursive: true })
- await Bun.write(path.join(opencodeDir, "test-cmd.md"), "# Test Command\nThis is a test command.")
- },
- })
- await Instance.provide({
- directory: tmp.path,
- fn: async () => {
- const directories = await Config.directories()
- // Project .opencode should NOT be in directories list
- const hasProjectOpencode = directories.some((d) => d.startsWith(tmp.path))
- expect(hasProjectOpencode).toBe(false)
- },
- })
- } finally {
- if (originalEnv === undefined) {
- delete process.env["OPENCODE_DISABLE_PROJECT_CONFIG"]
- } else {
- process.env["OPENCODE_DISABLE_PROJECT_CONFIG"] = originalEnv
- }
- }
- })
- test("still loads global config when flag is set", async () => {
- const originalEnv = process.env["OPENCODE_DISABLE_PROJECT_CONFIG"]
- process.env["OPENCODE_DISABLE_PROJECT_CONFIG"] = "true"
- try {
- await using tmp = await tmpdir()
- await Instance.provide({
- directory: tmp.path,
- fn: async () => {
- // Should still get default config (from global or defaults)
- const config = await Config.get()
- expect(config).toBeDefined()
- expect(config.username).toBeDefined()
- },
- })
- } finally {
- if (originalEnv === undefined) {
- delete process.env["OPENCODE_DISABLE_PROJECT_CONFIG"]
- } else {
- process.env["OPENCODE_DISABLE_PROJECT_CONFIG"] = originalEnv
- }
- }
- })
- test("skips relative instructions with warning when flag is set but no config dir", async () => {
- const originalDisable = process.env["OPENCODE_DISABLE_PROJECT_CONFIG"]
- const originalConfigDir = process.env["OPENCODE_CONFIG_DIR"]
- try {
- // Ensure no config dir is set
- delete process.env["OPENCODE_CONFIG_DIR"]
- process.env["OPENCODE_DISABLE_PROJECT_CONFIG"] = "true"
- await using tmp = await tmpdir({
- init: async (dir) => {
- // Create a config with relative instruction path
- await Bun.write(
- path.join(dir, "opencode.json"),
- JSON.stringify({
- $schema: "https://opencode.ai/config.json",
- instructions: ["./CUSTOM.md"],
- }),
- )
- // Create the instruction file (should be skipped)
- await Bun.write(path.join(dir, "CUSTOM.md"), "# Custom Instructions")
- },
- })
- await Instance.provide({
- directory: tmp.path,
- fn: async () => {
- // The relative instruction should be skipped without error
- // We're mainly verifying this doesn't throw and the config loads
- const config = await Config.get()
- expect(config).toBeDefined()
- // The instruction should have been skipped (warning logged)
- // We can't easily test the warning was logged, but we verify
- // the relative path didn't cause an error
- },
- })
- } finally {
- if (originalDisable === undefined) {
- delete process.env["OPENCODE_DISABLE_PROJECT_CONFIG"]
- } else {
- process.env["OPENCODE_DISABLE_PROJECT_CONFIG"] = originalDisable
- }
- if (originalConfigDir === undefined) {
- delete process.env["OPENCODE_CONFIG_DIR"]
- } else {
- process.env["OPENCODE_CONFIG_DIR"] = originalConfigDir
- }
- }
- })
- test("OPENCODE_CONFIG_DIR still works when flag is set", async () => {
- const originalDisable = process.env["OPENCODE_DISABLE_PROJECT_CONFIG"]
- const originalConfigDir = process.env["OPENCODE_CONFIG_DIR"]
- try {
- await using configDirTmp = await tmpdir({
- init: async (dir) => {
- // Create config in the custom config dir
- await Bun.write(
- path.join(dir, "opencode.json"),
- JSON.stringify({
- $schema: "https://opencode.ai/config.json",
- model: "configdir/model",
- }),
- )
- },
- })
- await using projectTmp = await tmpdir({
- init: async (dir) => {
- // Create config in project (should be ignored)
- await Bun.write(
- path.join(dir, "opencode.json"),
- JSON.stringify({
- $schema: "https://opencode.ai/config.json",
- model: "project/model",
- }),
- )
- },
- })
- process.env["OPENCODE_DISABLE_PROJECT_CONFIG"] = "true"
- process.env["OPENCODE_CONFIG_DIR"] = configDirTmp.path
- await Instance.provide({
- directory: projectTmp.path,
- fn: async () => {
- const config = await Config.get()
- // Should load from OPENCODE_CONFIG_DIR, not project
- expect(config.model).toBe("configdir/model")
- },
- })
- } finally {
- if (originalDisable === undefined) {
- delete process.env["OPENCODE_DISABLE_PROJECT_CONFIG"]
- } else {
- process.env["OPENCODE_DISABLE_PROJECT_CONFIG"] = originalDisable
- }
- if (originalConfigDir === undefined) {
- delete process.env["OPENCODE_CONFIG_DIR"]
- } else {
- process.env["OPENCODE_CONFIG_DIR"] = originalConfigDir
- }
- }
- })
- })
|