mirror of
https://github.com/AgentSeal/codeburn.git
synced 2026-04-28 15:09:43 +00:00
- Move modelDisplayEntries sort to module scope so it runs once instead of on every modelDisplayName call. - Add bash-utils tests for the env var prefix and true/false skip behaviors that came in with the Pi commit. Verified Pi token semantics against real session data: input + cacheRead + cacheWrite + output equals totalTokens exactly, confirming Anthropic-style accounting (cached tokens disjoint from input). No double-counting.
82 lines
2.8 KiB
TypeScript
82 lines
2.8 KiB
TypeScript
import { describe, it, expect } from 'vitest'
|
|
import { extractBashCommands } from '../src/bash-utils.js'
|
|
import { BASH_TOOLS } from '../src/classifier.js'
|
|
|
|
describe('extractBashCommands', () => {
|
|
it('extracts single command', () => {
|
|
expect(extractBashCommands('git status')).toEqual(['git'])
|
|
})
|
|
|
|
it('extracts chained commands with &&', () => {
|
|
expect(extractBashCommands('git add . && git commit -m "x"')).toEqual(['git', 'git'])
|
|
})
|
|
|
|
it('extracts chained commands with ;', () => {
|
|
expect(extractBashCommands('ls; pwd')).toEqual(['ls', 'pwd'])
|
|
})
|
|
|
|
it('extracts piped commands', () => {
|
|
expect(extractBashCommands('cat file | grep pattern')).toEqual(['cat', 'grep'])
|
|
})
|
|
|
|
it('filters out cd', () => {
|
|
expect(extractBashCommands('cd /path && git status')).toEqual(['git'])
|
|
})
|
|
|
|
it('returns empty for cd only', () => {
|
|
expect(extractBashCommands('cd /path')).toEqual([])
|
|
})
|
|
|
|
it('returns empty for empty string', () => {
|
|
expect(extractBashCommands('')).toEqual([])
|
|
})
|
|
|
|
it('returns empty for whitespace only', () => {
|
|
expect(extractBashCommands(' ')).toEqual([])
|
|
})
|
|
|
|
it('extracts basename from full path binary', () => {
|
|
expect(extractBashCommands('/usr/bin/git status')).toEqual(['git'])
|
|
})
|
|
|
|
it('handles mixed separators', () => {
|
|
expect(extractBashCommands('cd /x && npm install; npm run build | tee log')).toEqual(['npm', 'npm', 'tee'])
|
|
})
|
|
|
|
it('handles extra whitespace', () => {
|
|
expect(extractBashCommands(' git status ')).toEqual(['git'])
|
|
})
|
|
|
|
it('handles command with quotes containing separators', () => {
|
|
expect(extractBashCommands('echo "hello && world"')).toEqual(['echo'])
|
|
})
|
|
|
|
it('handles quoted separators followed by real separator', () => {
|
|
expect(extractBashCommands('echo "hello && world" && git status')).toEqual(['echo', 'git'])
|
|
})
|
|
|
|
it('handles single-quoted separators', () => {
|
|
expect(extractBashCommands("echo 'hello && world'")).toEqual(['echo'])
|
|
})
|
|
|
|
it('skips leading env var assignments', () => {
|
|
expect(extractBashCommands('NODE_ENV=prod npm test')).toEqual(['npm'])
|
|
expect(extractBashCommands('FOO=bar BAZ=qux ls -la')).toEqual(['ls'])
|
|
})
|
|
|
|
it('skips standalone true/false', () => {
|
|
expect(extractBashCommands('true && git status')).toEqual(['git'])
|
|
expect(extractBashCommands('false || echo done')).toEqual(['echo'])
|
|
expect(extractBashCommands('true')).toEqual([])
|
|
})
|
|
|
|
it('handles env vars combined with chained commands', () => {
|
|
expect(extractBashCommands('NODE_ENV=test npm test && git push')).toEqual(['npm', 'git'])
|
|
})
|
|
})
|
|
|
|
describe('BASH_TOOLS', () => {
|
|
it('recognizes Bash', () => { expect(BASH_TOOLS.has('Bash')).toBe(true) })
|
|
it('recognizes BashTool', () => { expect(BASH_TOOLS.has('BashTool')).toBe(true) })
|
|
it('rejects unknown tools', () => { expect(BASH_TOOLS.has('Read')).toBe(false) })
|
|
})
|