mirror of
https://github.com/iflytek/skillhub.git
synced 2026-08-28 11:25:00 +00:00
Add 36 test cases covering: - Path traversal and symlink attack prevention in archive extraction - SkillHubClient error handling (401/403/404/network) for all endpoints - Inventory store concurrent writes and stale lock recovery - Config store read/write round-trip - Platform utilities (package-manager, updater, paths) - Output formatting (printResult, humanize) Tests use cross-platform commands (node) instead of shell builtins for CI compatibility across macOS/Linux/Windows.
59 lines
2.4 KiB
TypeScript
59 lines
2.4 KiB
TypeScript
import { mkdtemp, readFile, writeFile } from 'node:fs/promises'
|
|
import { tmpdir } from 'node:os'
|
|
import { join } from 'node:path'
|
|
import { describe, expect, test } from 'bun:test'
|
|
import { zipSync } from 'fflate'
|
|
import { createZip, extractZip, isZipFile } from '../../../src/platform/archive'
|
|
|
|
describe('archive helpers', () => {
|
|
test('creates and extracts zip archives', async () => {
|
|
const source = await mkdtemp(join(tmpdir(), 'skillhub-archive-source-'))
|
|
const target = await mkdtemp(join(tmpdir(), 'skillhub-archive-target-'))
|
|
await writeFile(join(source, 'SKILL.md'), '# Demo')
|
|
|
|
const archive = await createZip(source)
|
|
await extractZip(await archive.arrayBuffer(), target)
|
|
|
|
expect(await readFile(join(target, 'SKILL.md'), 'utf-8')).toBe('# Demo')
|
|
})
|
|
|
|
test('detects zip files by magic bytes', async () => {
|
|
const dir = await mkdtemp(join(tmpdir(), 'skillhub-archive-detect-'))
|
|
const zipPath = join(dir, 'skill.zip')
|
|
await writeFile(zipPath, zipSync({ 'SKILL.md': new TextEncoder().encode('# Demo') }))
|
|
|
|
expect(await isZipFile(zipPath)).toBe(true)
|
|
})
|
|
|
|
test('rejects zip entries that escape target directory', async () => {
|
|
const target = await mkdtemp(join(tmpdir(), 'skillhub-archive-unsafe-'))
|
|
const unsafe = zipSync({ '../escape.txt': new TextEncoder().encode('bad') })
|
|
|
|
await expect(extractZip(unsafe.buffer as ArrayBuffer, target)).rejects.toThrow('unsafe zip entry path')
|
|
})
|
|
|
|
test('rejects zip entries with absolute paths', async () => {
|
|
const target = await mkdtemp(join(tmpdir(), 'skillhub-archive-abs-'))
|
|
const unsafe = zipSync({ '/etc/passwd': new TextEncoder().encode('bad') })
|
|
|
|
await expect(extractZip(unsafe.buffer as ArrayBuffer, target)).rejects.toThrow('unsafe zip entry path')
|
|
})
|
|
|
|
test('rejects zip entries with multi-level ../ traversal', async () => {
|
|
const target = await mkdtemp(join(tmpdir(), 'skillhub-archive-multi-'))
|
|
const unsafe = zipSync({ 'foo/../../escape.txt': new TextEncoder().encode('escaped') })
|
|
|
|
await expect(extractZip(unsafe.buffer as ArrayBuffer, target)).rejects.toThrow('unsafe zip entry path')
|
|
})
|
|
|
|
test('handles empty zip gracefully', async () => {
|
|
const target = await mkdtemp(join(tmpdir(), 'skillhub-archive-empty-'))
|
|
const empty = zipSync({})
|
|
|
|
await extractZip(empty.buffer as ArrayBuffer, target)
|
|
|
|
const { readdir } = await import('node:fs/promises')
|
|
const entries = await readdir(target)
|
|
expect(entries).toEqual([])
|
|
})
|
|
})
|