mirror of
https://github.com/QwenLM/qwen-code.git
synced 2025-12-21 09:17:53 +00:00
69 lines
2.2 KiB
TypeScript
69 lines
2.2 KiB
TypeScript
/**
|
|
* @license
|
|
* Copyright 2025 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
import { vi, describe, it, expect, beforeEach, afterEach } from 'vitest';
|
|
import { QwenIgnoreParser } from './qwenIgnoreParser.js';
|
|
import * as fs from 'node:fs/promises';
|
|
import * as path from 'node:path';
|
|
import * as os from 'node:os';
|
|
|
|
describe('QwenIgnoreParser', () => {
|
|
let projectRoot: string;
|
|
|
|
async function createTestFile(filePath: string, content = '') {
|
|
const fullPath = path.join(projectRoot, filePath);
|
|
await fs.mkdir(path.dirname(fullPath), { recursive: true });
|
|
await fs.writeFile(fullPath, content);
|
|
}
|
|
|
|
beforeEach(async () => {
|
|
projectRoot = await fs.mkdtemp(path.join(os.tmpdir(), 'qwenignore-test-'));
|
|
});
|
|
|
|
afterEach(async () => {
|
|
await fs.rm(projectRoot, { recursive: true, force: true });
|
|
vi.restoreAllMocks();
|
|
});
|
|
|
|
describe('when .qwenignore exists', () => {
|
|
beforeEach(async () => {
|
|
await createTestFile(
|
|
'.qwenignore',
|
|
'ignored.txt\n# A comment\n/ignored_dir/\n',
|
|
);
|
|
await createTestFile('ignored.txt', 'ignored');
|
|
await createTestFile('not_ignored.txt', 'not ignored');
|
|
await createTestFile(
|
|
path.join('ignored_dir', 'file.txt'),
|
|
'in ignored dir',
|
|
);
|
|
await createTestFile(
|
|
path.join('subdir', 'not_ignored.txt'),
|
|
'not ignored',
|
|
);
|
|
});
|
|
|
|
it('should ignore files specified in .qwenignore', () => {
|
|
const parser = new QwenIgnoreParser(projectRoot);
|
|
expect(parser.getPatterns()).toEqual(['ignored.txt', '/ignored_dir/']);
|
|
expect(parser.isIgnored('ignored.txt')).toBe(true);
|
|
expect(parser.isIgnored('not_ignored.txt')).toBe(false);
|
|
expect(parser.isIgnored(path.join('ignored_dir', 'file.txt'))).toBe(true);
|
|
expect(parser.isIgnored(path.join('subdir', 'not_ignored.txt'))).toBe(
|
|
false,
|
|
);
|
|
});
|
|
});
|
|
|
|
describe('when .qwenignore does not exist', () => {
|
|
it('should not load any patterns and not ignore any files', () => {
|
|
const parser = new QwenIgnoreParser(projectRoot);
|
|
expect(parser.getPatterns()).toEqual([]);
|
|
expect(parser.isIgnored('any_file.txt')).toBe(false);
|
|
});
|
|
});
|
|
});
|