mirror of
https://github.com/garrytan/gstack.git
synced 2026-05-02 11:45:20 +02:00
bb46ca6b21
* feat: add bin/gstack-config CLI for reading/writing ~/.gstack/config.yaml Simple get/set/list interface for persistent gstack configuration. Used by update-check and upgrade skill for auto_upgrade and update_check settings. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * feat: smart update check with 12h cache, snooze backoff, config disable - Reduce cache TTL from 24h to 12h for faster update detection - Add exponential snooze backoff: 24h → 48h → 1 week (resets on new version) - Add update_check: false config option to disable checks entirely - Clear snooze file on just-upgraded - 14 new tests covering snooze levels, expiry, corruption, and config paths Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * feat: upgrade skill with auto-upgrade, 4-option prompt, vendored sync - Auto-upgrade mode via config or GSTACK_AUTO_UPGRADE=1 env var - 4-option AskUserQuestion: upgrade once, always, not now, never - Step 4.5: sync local vendored copy after upgrading primary install - Snooze write with escalating backoff on "Not now" - Update preamble text in gen-skill-docs for new upgrade flow - Regenerate all SKILL.md files Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * docs: simplify upgrade instructions, move auto-upgrade to completed README now points to /gstack-upgrade instead of long paste commands. Auto-upgrade TODO moved to Completed section (v0.3.8). Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * chore: bump version and changelog (v0.3.9) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> --------- Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
126 lines
4.7 KiB
TypeScript
126 lines
4.7 KiB
TypeScript
/**
|
|
* Tests for bin/gstack-config bash script.
|
|
*
|
|
* Uses Bun.spawnSync to invoke the script with temp dirs and
|
|
* GSTACK_STATE_DIR env override for full isolation.
|
|
*/
|
|
|
|
import { describe, test, expect, beforeEach, afterEach } from 'bun:test';
|
|
import { mkdtempSync, writeFileSync, rmSync, readFileSync, existsSync } from 'fs';
|
|
import { join } from 'path';
|
|
import { tmpdir } from 'os';
|
|
|
|
const SCRIPT = join(import.meta.dir, '..', '..', 'bin', 'gstack-config');
|
|
|
|
let stateDir: string;
|
|
|
|
function run(args: string[] = [], extraEnv: Record<string, string> = {}) {
|
|
const result = Bun.spawnSync(['bash', SCRIPT, ...args], {
|
|
env: {
|
|
...process.env,
|
|
GSTACK_STATE_DIR: stateDir,
|
|
...extraEnv,
|
|
},
|
|
stdout: 'pipe',
|
|
stderr: 'pipe',
|
|
});
|
|
return {
|
|
exitCode: result.exitCode,
|
|
stdout: result.stdout.toString().trim(),
|
|
stderr: result.stderr.toString().trim(),
|
|
};
|
|
}
|
|
|
|
beforeEach(() => {
|
|
stateDir = mkdtempSync(join(tmpdir(), 'gstack-config-test-'));
|
|
});
|
|
|
|
afterEach(() => {
|
|
rmSync(stateDir, { recursive: true, force: true });
|
|
});
|
|
|
|
describe('gstack-config', () => {
|
|
// ─── get ──────────────────────────────────────────────────
|
|
test('get on missing file returns empty, exit 0', () => {
|
|
const { exitCode, stdout } = run(['get', 'auto_upgrade']);
|
|
expect(exitCode).toBe(0);
|
|
expect(stdout).toBe('');
|
|
});
|
|
|
|
test('get existing key returns value', () => {
|
|
writeFileSync(join(stateDir, 'config.yaml'), 'auto_upgrade: true\n');
|
|
const { exitCode, stdout } = run(['get', 'auto_upgrade']);
|
|
expect(exitCode).toBe(0);
|
|
expect(stdout).toBe('true');
|
|
});
|
|
|
|
test('get missing key returns empty', () => {
|
|
writeFileSync(join(stateDir, 'config.yaml'), 'auto_upgrade: true\n');
|
|
const { exitCode, stdout } = run(['get', 'nonexistent']);
|
|
expect(exitCode).toBe(0);
|
|
expect(stdout).toBe('');
|
|
});
|
|
|
|
test('get returns last value when key appears multiple times', () => {
|
|
writeFileSync(join(stateDir, 'config.yaml'), 'foo: bar\nfoo: baz\n');
|
|
const { exitCode, stdout } = run(['get', 'foo']);
|
|
expect(exitCode).toBe(0);
|
|
expect(stdout).toBe('baz');
|
|
});
|
|
|
|
// ─── set ──────────────────────────────────────────────────
|
|
test('set creates file and writes key on missing file', () => {
|
|
const { exitCode } = run(['set', 'auto_upgrade', 'true']);
|
|
expect(exitCode).toBe(0);
|
|
const content = readFileSync(join(stateDir, 'config.yaml'), 'utf-8');
|
|
expect(content).toContain('auto_upgrade: true');
|
|
});
|
|
|
|
test('set appends new key to existing file', () => {
|
|
writeFileSync(join(stateDir, 'config.yaml'), 'foo: bar\n');
|
|
const { exitCode } = run(['set', 'auto_upgrade', 'true']);
|
|
expect(exitCode).toBe(0);
|
|
const content = readFileSync(join(stateDir, 'config.yaml'), 'utf-8');
|
|
expect(content).toContain('foo: bar');
|
|
expect(content).toContain('auto_upgrade: true');
|
|
});
|
|
|
|
test('set replaces existing key in-place', () => {
|
|
writeFileSync(join(stateDir, 'config.yaml'), 'auto_upgrade: false\n');
|
|
const { exitCode } = run(['set', 'auto_upgrade', 'true']);
|
|
expect(exitCode).toBe(0);
|
|
const content = readFileSync(join(stateDir, 'config.yaml'), 'utf-8');
|
|
expect(content).toContain('auto_upgrade: true');
|
|
expect(content).not.toContain('auto_upgrade: false');
|
|
});
|
|
|
|
test('set creates state dir if missing', () => {
|
|
const nestedDir = join(stateDir, 'nested', 'dir');
|
|
const { exitCode } = run(['set', 'foo', 'bar'], { GSTACK_STATE_DIR: nestedDir });
|
|
expect(exitCode).toBe(0);
|
|
expect(existsSync(join(nestedDir, 'config.yaml'))).toBe(true);
|
|
});
|
|
|
|
// ─── list ─────────────────────────────────────────────────
|
|
test('list shows all keys', () => {
|
|
writeFileSync(join(stateDir, 'config.yaml'), 'auto_upgrade: true\nupdate_check: false\n');
|
|
const { exitCode, stdout } = run(['list']);
|
|
expect(exitCode).toBe(0);
|
|
expect(stdout).toContain('auto_upgrade: true');
|
|
expect(stdout).toContain('update_check: false');
|
|
});
|
|
|
|
test('list on missing file returns empty, exit 0', () => {
|
|
const { exitCode, stdout } = run(['list']);
|
|
expect(exitCode).toBe(0);
|
|
expect(stdout).toBe('');
|
|
});
|
|
|
|
// ─── usage ────────────────────────────────────────────────
|
|
test('no args shows usage and exits 1', () => {
|
|
const { exitCode, stdout } = run([]);
|
|
expect(exitCode).toBe(1);
|
|
expect(stdout).toContain('Usage');
|
|
});
|
|
});
|