Spaces:
Sleeping
Sleeping
File size: 3,755 Bytes
b6ecafa | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 | import { afterEach, beforeEach, describe, expect, it, vi } from 'vitest'
import { mkdtempSync, readFileSync, rmSync, writeFileSync } from 'node:fs'
import os from 'node:os'
import path from 'node:path'
describe('removeAgentFromConfig', () => {
const originalEnv = { ...process.env }
let tempDir = ''
beforeEach(() => {
vi.resetModules()
})
afterEach(() => {
process.env = { ...originalEnv }
if (tempDir) rmSync(tempDir, { recursive: true, force: true })
tempDir = ''
})
it('removes matching agent entries by id and display name', async () => {
tempDir = mkdtempSync(path.join(os.tmpdir(), 'mc-agent-sync-'))
const configPath = path.join(tempDir, 'openclaw.json')
writeFileSync(
configPath,
JSON.stringify(
{
agents: {
list: [
{ id: 'jarv', name: 'jarv', identity: { name: 'jarv' } },
{ id: 'neo', identity: { name: 'Neo' } },
{ id: 'keep-me', name: 'keep-me', identity: { name: 'keep-me' } },
],
},
},
null,
2,
) + '\n',
'utf-8',
)
process.env.OPENCLAW_CONFIG_PATH = configPath
process.env.OPENCLAW_STATE_DIR = tempDir
const { removeAgentFromConfig } = await import('@/lib/agent-sync')
const result = await removeAgentFromConfig({ id: 'neo', name: 'Neo' })
expect(result.removed).toBe(true)
const parsed = JSON.parse(readFileSync(configPath, 'utf-8'))
expect(parsed.agents.list).toEqual([
{ id: 'jarv', name: 'jarv', identity: { name: 'jarv' } },
{ id: 'keep-me', name: 'keep-me', identity: { name: 'keep-me' } },
])
})
it('is a no-op when no matching agent entry exists', async () => {
tempDir = mkdtempSync(path.join(os.tmpdir(), 'mc-agent-sync-'))
const configPath = path.join(tempDir, 'openclaw.json')
writeFileSync(
configPath,
JSON.stringify({ agents: { list: [{ id: 'keep-me', name: 'keep-me' }] } }, null, 2) + '\n',
'utf-8',
)
process.env.OPENCLAW_CONFIG_PATH = configPath
process.env.OPENCLAW_STATE_DIR = tempDir
const { removeAgentFromConfig } = await import('@/lib/agent-sync')
const result = await removeAgentFromConfig({ id: 'missing', name: 'missing' })
expect(result.removed).toBe(false)
const parsed = JSON.parse(readFileSync(configPath, 'utf-8'))
expect(parsed.agents.list).toEqual([{ id: 'keep-me', name: 'keep-me' }])
})
it('normalizes nested model.primary payloads when writing config', async () => {
tempDir = mkdtempSync(path.join(os.tmpdir(), 'mc-agent-sync-'))
const configPath = path.join(tempDir, 'openclaw.json')
writeFileSync(
configPath,
JSON.stringify({
agents: {
list: [
{
id: 'neo',
model: {
primary: {
primary: 'anthropic/claude-sonnet-4-20250514',
},
fallbacks: ['openai/codex-mini-latest', 'openai/codex-mini-latest'],
},
},
],
},
}, null, 2) + '\n',
'utf-8',
)
process.env.OPENCLAW_CONFIG_PATH = configPath
process.env.OPENCLAW_STATE_DIR = tempDir
const { writeAgentToConfig } = await import('@/lib/agent-sync')
await writeAgentToConfig({
id: 'neo',
model: {
primary: {
primary: 'anthropic/claude-sonnet-4-20250514',
},
fallbacks: ['openrouter/anthropic/claude-sonnet-4'],
},
})
const parsed = JSON.parse(readFileSync(configPath, 'utf-8'))
expect(parsed.agents.list[0].model).toEqual({
primary: 'anthropic/claude-sonnet-4-20250514',
fallbacks: ['openrouter/anthropic/claude-sonnet-4'],
})
})
})
|