ffcd34d4c1
- Change mock.module target from "../../shared" to "../../shared/claude-config-dir"
- Narrows mock scope to prevent barrel export contamination
🤖 GENERATED WITH ASSISTANCE OF OhMyOpenCode
419 lines
11 KiB
TypeScript
419 lines
11 KiB
TypeScript
/// <reference types="bun-types" />
|
|
|
|
import { describe, it, expect, beforeEach, afterEach, mock } from "bun:test"
|
|
import { mkdirSync, writeFileSync, rmSync } from "fs"
|
|
import { join } from "path"
|
|
import { tmpdir } from "os"
|
|
|
|
const TEST_DIR = join(tmpdir(), "mcp-loader-test-" + Date.now())
|
|
const TEST_HOME = join(TEST_DIR, "home")
|
|
|
|
describe("getSystemMcpServerNames", () => {
|
|
beforeEach(() => {
|
|
mkdirSync(TEST_DIR, { recursive: true })
|
|
mkdirSync(TEST_HOME, { recursive: true })
|
|
mock.module("os", () => ({
|
|
homedir: () => TEST_HOME,
|
|
tmpdir,
|
|
}))
|
|
mock.module("../../shared/claude-config-dir", () => ({
|
|
getClaudeConfigDir: () => join(TEST_HOME, ".claude"),
|
|
}))
|
|
})
|
|
|
|
afterEach(() => {
|
|
mock.restore()
|
|
rmSync(TEST_DIR, { recursive: true, force: true })
|
|
})
|
|
|
|
it("returns empty set when no .mcp.json files exist", async () => {
|
|
// given
|
|
const originalCwd = process.cwd()
|
|
process.chdir(TEST_DIR)
|
|
|
|
try {
|
|
// when
|
|
const { getSystemMcpServerNames } = await import("./loader")
|
|
const names = getSystemMcpServerNames()
|
|
|
|
// then
|
|
expect(names).toBeInstanceOf(Set)
|
|
expect(names.size).toBe(0)
|
|
} finally {
|
|
process.chdir(originalCwd)
|
|
}
|
|
})
|
|
|
|
it("returns server names from project .mcp.json", async () => {
|
|
// given
|
|
const mcpConfig = {
|
|
mcpServers: {
|
|
playwright: {
|
|
command: "npx",
|
|
args: ["@playwright/mcp@latest"],
|
|
},
|
|
sqlite: {
|
|
command: "uvx",
|
|
args: ["mcp-server-sqlite"],
|
|
},
|
|
},
|
|
}
|
|
writeFileSync(join(TEST_DIR, ".mcp.json"), JSON.stringify(mcpConfig))
|
|
|
|
const originalCwd = process.cwd()
|
|
process.chdir(TEST_DIR)
|
|
|
|
try {
|
|
// when
|
|
const { getSystemMcpServerNames } = await import("./loader")
|
|
const names = getSystemMcpServerNames()
|
|
|
|
// then
|
|
expect(names.has("playwright")).toBe(true)
|
|
expect(names.has("sqlite")).toBe(true)
|
|
expect(names.size).toBe(2)
|
|
} finally {
|
|
process.chdir(originalCwd)
|
|
}
|
|
})
|
|
|
|
it("returns server names from .claude/.mcp.json", async () => {
|
|
// given
|
|
mkdirSync(join(TEST_DIR, ".claude"), { recursive: true })
|
|
const mcpConfig = {
|
|
mcpServers: {
|
|
memory: {
|
|
command: "npx",
|
|
args: ["-y", "@anthropic-ai/mcp-server-memory"],
|
|
},
|
|
},
|
|
}
|
|
writeFileSync(join(TEST_DIR, ".claude", ".mcp.json"), JSON.stringify(mcpConfig))
|
|
|
|
const originalCwd = process.cwd()
|
|
process.chdir(TEST_DIR)
|
|
|
|
try {
|
|
// when
|
|
const { getSystemMcpServerNames } = await import("./loader")
|
|
const names = getSystemMcpServerNames()
|
|
|
|
// then
|
|
expect(names.has("memory")).toBe(true)
|
|
} finally {
|
|
process.chdir(originalCwd)
|
|
}
|
|
})
|
|
|
|
it("excludes disabled MCP servers", async () => {
|
|
// given
|
|
const mcpConfig = {
|
|
mcpServers: {
|
|
playwright: {
|
|
command: "npx",
|
|
args: ["@playwright/mcp@latest"],
|
|
disabled: true,
|
|
},
|
|
active: {
|
|
command: "npx",
|
|
args: ["some-mcp"],
|
|
},
|
|
},
|
|
}
|
|
writeFileSync(join(TEST_DIR, ".mcp.json"), JSON.stringify(mcpConfig))
|
|
|
|
const originalCwd = process.cwd()
|
|
process.chdir(TEST_DIR)
|
|
|
|
try {
|
|
// when
|
|
const { getSystemMcpServerNames } = await import("./loader")
|
|
const names = getSystemMcpServerNames()
|
|
|
|
// then
|
|
expect(names.has("playwright")).toBe(false)
|
|
expect(names.has("active")).toBe(true)
|
|
} finally {
|
|
process.chdir(originalCwd)
|
|
}
|
|
})
|
|
|
|
it("removes a server name when a higher-precedence config disables it", async () => {
|
|
// given
|
|
writeFileSync(join(TEST_HOME, ".claude.json"), JSON.stringify({
|
|
mcpServers: {
|
|
playwright: {
|
|
command: "npx",
|
|
args: ["@playwright/mcp@latest"],
|
|
},
|
|
},
|
|
}))
|
|
writeFileSync(join(TEST_DIR, ".mcp.json"), JSON.stringify({
|
|
mcpServers: {
|
|
playwright: {
|
|
command: "npx",
|
|
args: ["@playwright/mcp@latest"],
|
|
disabled: true,
|
|
},
|
|
},
|
|
}))
|
|
|
|
const originalCwd = process.cwd()
|
|
process.chdir(TEST_DIR)
|
|
|
|
try {
|
|
// when
|
|
const { getSystemMcpServerNames } = await import("./loader")
|
|
const names = getSystemMcpServerNames()
|
|
|
|
// then
|
|
expect(names.has("playwright")).toBe(false)
|
|
} finally {
|
|
process.chdir(originalCwd)
|
|
}
|
|
})
|
|
|
|
it("merges server names from multiple .mcp.json files", async () => {
|
|
// given
|
|
mkdirSync(join(TEST_DIR, ".claude"), { recursive: true })
|
|
|
|
const projectMcp = {
|
|
mcpServers: {
|
|
playwright: { command: "npx", args: ["@playwright/mcp@latest"] },
|
|
},
|
|
}
|
|
const localMcp = {
|
|
mcpServers: {
|
|
memory: { command: "npx", args: ["-y", "@anthropic-ai/mcp-server-memory"] },
|
|
},
|
|
}
|
|
|
|
writeFileSync(join(TEST_DIR, ".mcp.json"), JSON.stringify(projectMcp))
|
|
writeFileSync(join(TEST_DIR, ".claude", ".mcp.json"), JSON.stringify(localMcp))
|
|
|
|
const originalCwd = process.cwd()
|
|
process.chdir(TEST_DIR)
|
|
|
|
try {
|
|
// when
|
|
const { getSystemMcpServerNames } = await import("./loader")
|
|
const names = getSystemMcpServerNames()
|
|
|
|
// then
|
|
expect(names.has("playwright")).toBe(true)
|
|
expect(names.has("memory")).toBe(true)
|
|
} finally {
|
|
process.chdir(originalCwd)
|
|
}
|
|
})
|
|
|
|
it("reads user-level MCP config from ~/.claude.json", async () => {
|
|
// given
|
|
const userConfigPath = join(TEST_HOME, ".claude.json")
|
|
const userMcpConfig = {
|
|
mcpServers: {
|
|
"user-server": {
|
|
command: "npx",
|
|
args: ["user-mcp-server"],
|
|
},
|
|
},
|
|
}
|
|
writeFileSync(userConfigPath, JSON.stringify(userMcpConfig))
|
|
|
|
const originalCwd = process.cwd()
|
|
process.chdir(TEST_DIR)
|
|
|
|
try {
|
|
// when
|
|
const { getSystemMcpServerNames } = await import("./loader")
|
|
const names = getSystemMcpServerNames()
|
|
|
|
// then
|
|
expect(names.has("user-server")).toBe(true)
|
|
} finally {
|
|
process.chdir(originalCwd)
|
|
}
|
|
})
|
|
|
|
it("reads both ~/.claude.json and ~/.claude/.mcp.json for user scope", async () => {
|
|
// given
|
|
const claudeDir = join(TEST_HOME, ".claude")
|
|
mkdirSync(claudeDir, { recursive: true })
|
|
|
|
writeFileSync(join(TEST_HOME, ".claude.json"), JSON.stringify({
|
|
mcpServers: {
|
|
"server-from-claude-json": { command: "npx", args: ["server-a"] },
|
|
},
|
|
}))
|
|
|
|
writeFileSync(join(claudeDir, ".mcp.json"), JSON.stringify({
|
|
mcpServers: {
|
|
"server-from-mcp-json": { command: "npx", args: ["server-b"] },
|
|
},
|
|
}))
|
|
|
|
const originalCwd = process.cwd()
|
|
process.chdir(TEST_DIR)
|
|
|
|
try {
|
|
// when
|
|
const { getSystemMcpServerNames } = await import("./loader")
|
|
const names = getSystemMcpServerNames()
|
|
|
|
// then
|
|
expect(names.has("server-from-claude-json")).toBe(true)
|
|
expect(names.has("server-from-mcp-json")).toBe(true)
|
|
} finally {
|
|
process.chdir(originalCwd)
|
|
}
|
|
})
|
|
|
|
it("ignores local-scope user MCP entries for other projects", async () => {
|
|
//#given
|
|
const otherProjectDir = join(TEST_DIR, "project-a")
|
|
const currentProjectDir = join(TEST_DIR, "project-b")
|
|
mkdirSync(otherProjectDir, { recursive: true })
|
|
mkdirSync(currentProjectDir, { recursive: true })
|
|
|
|
writeFileSync(join(TEST_HOME, ".claude.json"), JSON.stringify({
|
|
mcpServers: {
|
|
playwright: {
|
|
command: "npx",
|
|
args: ["@playwright/mcp@latest"],
|
|
scope: "local",
|
|
projectPath: otherProjectDir,
|
|
},
|
|
sqlite: {
|
|
command: "uvx",
|
|
args: ["mcp-server-sqlite"],
|
|
scope: "local",
|
|
projectPath: currentProjectDir,
|
|
},
|
|
memory: {
|
|
command: "npx",
|
|
args: ["memory-mcp"],
|
|
},
|
|
},
|
|
}))
|
|
|
|
const originalCwd = process.cwd()
|
|
process.chdir(currentProjectDir)
|
|
|
|
try {
|
|
//#when
|
|
const { getSystemMcpServerNames } = await import("./loader")
|
|
const names = getSystemMcpServerNames()
|
|
|
|
//#then
|
|
expect(names.has("playwright")).toBe(false)
|
|
expect(names.has("sqlite")).toBe(true)
|
|
expect(names.has("memory")).toBe(true)
|
|
} finally {
|
|
process.chdir(originalCwd)
|
|
}
|
|
})
|
|
})
|
|
|
|
describe("loadMcpConfigs", () => {
|
|
beforeEach(() => {
|
|
mkdirSync(TEST_DIR, { recursive: true })
|
|
mkdirSync(TEST_HOME, { recursive: true })
|
|
mock.module("os", () => ({
|
|
homedir: () => TEST_HOME,
|
|
tmpdir,
|
|
}))
|
|
mock.module("../../shared/claude-config-dir", () => ({
|
|
getClaudeConfigDir: () => join(TEST_HOME, ".claude"),
|
|
}))
|
|
mock.module("../../shared/logger", () => ({
|
|
log: () => {},
|
|
}))
|
|
})
|
|
|
|
afterEach(() => {
|
|
mock.restore()
|
|
rmSync(TEST_DIR, { recursive: true, force: true })
|
|
})
|
|
|
|
it("should skip MCPs in disabledMcps list", async () => {
|
|
//#given
|
|
const mcpConfig = {
|
|
mcpServers: {
|
|
playwright: { command: "npx", args: ["@playwright/mcp@latest"] },
|
|
sqlite: { command: "uvx", args: ["mcp-server-sqlite"] },
|
|
active: { command: "npx", args: ["some-mcp"] },
|
|
},
|
|
}
|
|
writeFileSync(join(TEST_DIR, ".mcp.json"), JSON.stringify(mcpConfig))
|
|
|
|
const originalCwd = process.cwd()
|
|
process.chdir(TEST_DIR)
|
|
|
|
try {
|
|
//#when
|
|
const { loadMcpConfigs } = await import("./loader")
|
|
const result = await loadMcpConfigs(["playwright", "sqlite"])
|
|
|
|
//#then
|
|
expect(result.servers).not.toHaveProperty("playwright")
|
|
expect(result.servers).not.toHaveProperty("sqlite")
|
|
expect(result.servers).toHaveProperty("active")
|
|
expect(result.loadedServers.find((s) => s.name === "playwright")).toBeUndefined()
|
|
expect(result.loadedServers.find((s) => s.name === "sqlite")).toBeUndefined()
|
|
expect(result.loadedServers.find((s) => s.name === "active")).toBeDefined()
|
|
} finally {
|
|
process.chdir(originalCwd)
|
|
}
|
|
})
|
|
|
|
it("should load all MCPs when disabledMcps is empty", async () => {
|
|
//#given
|
|
const mcpConfig = {
|
|
mcpServers: {
|
|
playwright: { command: "npx", args: ["@playwright/mcp@latest"] },
|
|
active: { command: "npx", args: ["some-mcp"] },
|
|
},
|
|
}
|
|
writeFileSync(join(TEST_DIR, ".mcp.json"), JSON.stringify(mcpConfig))
|
|
|
|
const originalCwd = process.cwd()
|
|
process.chdir(TEST_DIR)
|
|
|
|
try {
|
|
//#when
|
|
const { loadMcpConfigs } = await import("./loader")
|
|
const result = await loadMcpConfigs([])
|
|
|
|
//#then
|
|
expect(result.servers).toHaveProperty("playwright")
|
|
expect(result.servers).toHaveProperty("active")
|
|
} finally {
|
|
process.chdir(originalCwd)
|
|
}
|
|
})
|
|
|
|
it("should load all MCPs when disabledMcps is not provided", async () => {
|
|
//#given
|
|
const mcpConfig = {
|
|
mcpServers: {
|
|
playwright: { command: "npx", args: ["@playwright/mcp@latest"] },
|
|
},
|
|
}
|
|
writeFileSync(join(TEST_DIR, ".mcp.json"), JSON.stringify(mcpConfig))
|
|
|
|
const originalCwd = process.cwd()
|
|
process.chdir(TEST_DIR)
|
|
|
|
try {
|
|
//#when
|
|
const { loadMcpConfigs } = await import("./loader")
|
|
const result = await loadMcpConfigs()
|
|
|
|
//#then
|
|
expect(result.servers).toHaveProperty("playwright")
|
|
} finally {
|
|
process.chdir(originalCwd)
|
|
}
|
|
})
|
|
})
|