Files
orca/src/shared/agent-skill-sharing-gate.test.ts

27 lines
1.0 KiB
TypeScript

import { describe, expect, it } from 'vitest'
import { getDefaultSettings } from './constants'
import {
AGENT_SKILL_SHARING_DISABLED_CODE,
assertAgentSkillSharingAllowed,
isAgentSkillSharingEnabled
} from './agent-skill-sharing-gate'
describe('agent skill sharing gate', () => {
it('defaults off', () => {
expect(isAgentSkillSharingEnabled(getDefaultSettings('/tmp'))).toBe(false)
})
it('only grants an exact true boolean', () => {
expect(isAgentSkillSharingEnabled({ agentSkillSharingEnabled: true })).toBe(true)
expect(isAgentSkillSharingEnabled({ agentSkillSharingEnabled: false })).toBe(false)
expect(isAgentSkillSharingEnabled({ agentSkillSharingEnabled: 'yes' as never })).toBe(false)
expect(isAgentSkillSharingEnabled({ agentSkillSharingEnabled: 1 as never })).toBe(false)
})
it('throws a structured recovery error when disabled', () => {
expect(() => assertAgentSkillSharingAllowed(() => false)).toThrow(
expect.objectContaining({ code: AGENT_SKILL_SHARING_DISABLED_CODE })
)
})
})