55 lines
2.1 KiB
TypeScript
55 lines
2.1 KiB
TypeScript
import { describe, it, expect, beforeEach, afterEach } from 'vitest';
|
|
import { mkdtempSync, mkdirSync, readFileSync, writeFileSync, existsSync, rmSync } from 'node:fs';
|
|
import { join } from 'node:path';
|
|
import { tmpdir } from 'node:os';
|
|
import { resetGlobalConfigToTemplate } from '../infra/config/global/resetConfig.js';
|
|
|
|
describe('resetGlobalConfigToTemplate', () => {
|
|
const originalEnv = process.env;
|
|
let testRoot: string;
|
|
let taktDir: string;
|
|
let configPath: string;
|
|
|
|
beforeEach(() => {
|
|
testRoot = mkdtempSync(join(tmpdir(), 'takt-reset-config-'));
|
|
taktDir = join(testRoot, '.takt');
|
|
mkdirSync(taktDir, { recursive: true });
|
|
configPath = join(taktDir, 'config.yaml');
|
|
process.env = { ...originalEnv, TAKT_CONFIG_DIR: taktDir };
|
|
});
|
|
|
|
afterEach(() => {
|
|
process.env = originalEnv;
|
|
rmSync(testRoot, { recursive: true, force: true });
|
|
});
|
|
|
|
it('should backup existing config and replace with language-matched template', () => {
|
|
writeFileSync(configPath, ['language: ja', 'provider: mock'].join('\n'), 'utf-8');
|
|
|
|
const result = resetGlobalConfigToTemplate(new Date('2026-02-19T12:00:00Z'));
|
|
|
|
expect(result.language).toBe('ja');
|
|
expect(result.backupPath).toBeDefined();
|
|
expect(existsSync(result.backupPath!)).toBe(true);
|
|
expect(readFileSync(result.backupPath!, 'utf-8')).toContain('provider: mock');
|
|
|
|
const newConfig = readFileSync(configPath, 'utf-8');
|
|
expect(newConfig).toContain('language: ja');
|
|
expect(newConfig).toContain('branch_name_strategy: ai');
|
|
expect(newConfig).toContain('concurrency: 2');
|
|
});
|
|
|
|
it('should create config from default language template when config does not exist', () => {
|
|
rmSync(configPath, { force: true });
|
|
|
|
const result = resetGlobalConfigToTemplate(new Date('2026-02-19T12:00:00Z'));
|
|
|
|
expect(result.backupPath).toBeUndefined();
|
|
expect(result.language).toBe('en');
|
|
expect(existsSync(configPath)).toBe(true);
|
|
const newConfig = readFileSync(configPath, 'utf-8');
|
|
expect(newConfig).toContain('language: en');
|
|
expect(newConfig).toContain('branch_name_strategy: ai');
|
|
});
|
|
});
|