mirror of
https://github.com/QwenLM/qwen-code.git
synced 2025-12-20 16:57:46 +00:00
60 lines
1.8 KiB
TypeScript
60 lines
1.8 KiB
TypeScript
/**
|
|
* @license
|
|
* Copyright 2025 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
import { describe, it, expect, vi, beforeEach } from 'vitest';
|
|
import { computeWindowTitle } from './windowTitle.js';
|
|
|
|
describe('computeWindowTitle', () => {
|
|
let originalEnv: NodeJS.ProcessEnv;
|
|
|
|
beforeEach(() => {
|
|
originalEnv = process.env;
|
|
vi.stubEnv('CLI_TITLE', undefined);
|
|
});
|
|
|
|
afterEach(() => {
|
|
process.env = originalEnv;
|
|
});
|
|
|
|
it('should use default Qwen title when CLI_TITLE is not set', () => {
|
|
const result = computeWindowTitle('my-project');
|
|
expect(result).toBe('Qwen - my-project');
|
|
});
|
|
|
|
it('should use CLI_TITLE environment variable when set', () => {
|
|
vi.stubEnv('CLI_TITLE', 'Custom Title');
|
|
const result = computeWindowTitle('my-project');
|
|
expect(result).toBe('Custom Title');
|
|
});
|
|
|
|
it('should remove control characters from title', () => {
|
|
vi.stubEnv('CLI_TITLE', 'Title\x1b[31m with \x07 control chars');
|
|
const result = computeWindowTitle('my-project');
|
|
// The \x1b[31m (ANSI escape sequence) and \x07 (bell character) should be removed
|
|
expect(result).toBe('Title[31m with control chars');
|
|
});
|
|
|
|
it('should handle folder names with control characters', () => {
|
|
const result = computeWindowTitle('project\x07name');
|
|
expect(result).toBe('Qwen - projectname');
|
|
});
|
|
|
|
it('should handle empty folder name', () => {
|
|
const result = computeWindowTitle('');
|
|
expect(result).toBe('Qwen - ');
|
|
});
|
|
|
|
it('should handle folder names with spaces', () => {
|
|
const result = computeWindowTitle('my project');
|
|
expect(result).toBe('Qwen - my project');
|
|
});
|
|
|
|
it('should handle folder names with special characters', () => {
|
|
const result = computeWindowTitle('project-name_v1.0');
|
|
expect(result).toBe('Qwen - project-name_v1.0');
|
|
});
|
|
});
|