logancyang_obsidian-copilot/tests/utils.test.ts
2024-02-16 15:42:39 -08:00

213 lines
No EOL
7.2 KiB
TypeScript

import * as Obsidian from 'obsidian';
import { TFile } from 'obsidian';
import {
getNotesFromPath,
getNotesFromTags,
isFolderMatch,
processVariableNameForNotePath,
} from '../src/utils';
describe('isFolderMatch', () => {
it('should return file from the folder name 1', async () => {
const match = isFolderMatch('test2/note3.md', 'test2');
expect(match).toEqual(true);
});
it('should return file from the folder name 2', async () => {
const match = isFolderMatch('test/test2/note1.md', 'test2');
expect(match).toEqual(true);
});
it('should return file from the folder name 3', async () => {
const match = isFolderMatch('test/test2/note1.md', 'test');
expect(match).toEqual(true);
});
it('should not return file from the folder name 1', async () => {
const match = isFolderMatch('test/test2/note1.md', 'tes');
expect(match).toEqual(false);
});
it('should return file from file name 1', async () => {
const match = isFolderMatch('test/test2/note1.md', 'note1.md');
expect(match).toEqual(true);
});
});
describe('Vault', () => {
it('should return all markdown files', async () => {
const vault = new Obsidian.Vault();
const files = await vault.getMarkdownFiles();
expect(files).toEqual([
{ path: 'test/test2/note1.md' },
{ path: 'test/note2.md' },
{ path: 'test2/note3.md' },
{ path: 'note4.md' },
]);
});
});
describe('getNotesFromPath', () => {
it('should return all markdown files', async () => {
const vault = new Obsidian.Vault();
const files = await getNotesFromPath(vault, '/');
expect(files).toEqual([
{ path: 'test/test2/note1.md' },
{ path: 'test/note2.md' },
{ path: 'test2/note3.md' },
{ path: 'note4.md' },
]);
});
it('should return filtered markdown files 1', async () => {
const vault = new Obsidian.Vault();
const files = await getNotesFromPath(vault, 'test2');
expect(files).toEqual([
{ path: 'test/test2/note1.md' },
{ path: 'test2/note3.md' },
]);
});
it('should return filtered markdown files 2', async () => {
const vault = new Obsidian.Vault();
const files = await getNotesFromPath(vault, 'test');
expect(files).toEqual([
{ path: 'test/test2/note1.md' },
{ path: 'test/note2.md' },
]);
});
it('should return filtered markdown files 3', async () => {
const vault = new Obsidian.Vault();
const files = await getNotesFromPath(vault, 'note4.md');
expect(files).toEqual([
{ path: 'note4.md' },
]);
});
it('should return filtered markdown files 4', async () => {
const vault = new Obsidian.Vault();
const files = await getNotesFromPath(vault, '/test');
expect(files).toEqual([
{ path: 'test/test2/note1.md' },
{ path: 'test/note2.md' },
]);
});
it('should not return markdown files', async () => {
const vault = new Obsidian.Vault();
const files = await getNotesFromPath(vault, '');
expect(files).toEqual([]);
});
describe('processVariableNameForNotePath', () => {
it('should return the note md filename', () => {
const variableName = processVariableNameForNotePath('[[test]]');
expect(variableName).toEqual('test.md');
});
it('should return the note md filename with extra spaces 1', () => {
const variableName = processVariableNameForNotePath(' [[ test]]');
expect(variableName).toEqual('test.md');
});
it('should return the note md filename with extra spaces 2', () => {
const variableName = processVariableNameForNotePath('[[ test ]] ');
expect(variableName).toEqual('test.md');
});
it('should return the note md filename with extra spaces 2', () => {
const variableName = processVariableNameForNotePath(' [[ test note ]] ');
expect(variableName).toEqual('test note.md');
});
it('should return the note md filename with extra spaces 2', () => {
const variableName = processVariableNameForNotePath(' [[ test_note note ]] ');
expect(variableName).toEqual('test_note note.md');
});
it('should return folder path with leading slash', () => {
const variableName = processVariableNameForNotePath('/testfolder');
expect(variableName).toEqual('/testfolder');
});
it('should return folder path without slash', () => {
const variableName = processVariableNameForNotePath('testfolder');
expect(variableName).toEqual('testfolder');
});
it('should return folder path with trailing slash', () => {
const variableName = processVariableNameForNotePath('testfolder/');
expect(variableName).toEqual('testfolder/');
});
it('should return folder path with leading spaces', () => {
const variableName = processVariableNameForNotePath(' testfolder ');
expect(variableName).toEqual('testfolder');
});
});
});
describe('getNotesFromTags', () => {
it('should return files with specified tags 1', async () => {
const mockVault = new Obsidian.Vault();
const tags = ['tag1'];
const expectedPaths = ['test/test2/note1.md', 'note4.md'];
const result = await getNotesFromTags(mockVault, tags);
const resultPaths = result.map(fileWithTags => fileWithTags.path);
expect(resultPaths).toEqual(expect.arrayContaining(expectedPaths));
expect(resultPaths.length).toEqual(expectedPaths.length);
});
it('should return files with specified tags 2', async () => {
const mockVault = new Obsidian.Vault();
const tags = ['#tag3'];
const expectedPaths = ['test/note2.md'];
const result = await getNotesFromTags(mockVault, tags);
const resultPaths = result.map(fileWithTags => fileWithTags.path);
expect(resultPaths).toEqual(expect.arrayContaining(expectedPaths));
expect(resultPaths.length).toEqual(expectedPaths.length);
});
it('should return an empty array if no files match the specified nonexistent tags', async () => {
const mockVault = new Obsidian.Vault();
const tags = ['nonexistentTag'];
const expected: string[] = [];
const result = await getNotesFromTags(mockVault, tags);
expect(result).toEqual(expected);
});
it('should handle multiple tags, returning files that match any of them', async () => {
const mockVault = new Obsidian.Vault();
const tags = ['tag2', 'tag4']; // Files that include 'tag2' or 'tag4'
const expectedPaths = ['test/test2/note1.md', 'test/note2.md', 'note4.md'];
const result = await getNotesFromTags(mockVault, tags);
const resultPaths = result.map(fileWithTags => fileWithTags.path);
expect(resultPaths).toEqual(expect.arrayContaining(expectedPaths));
expect(resultPaths.length).toEqual(expectedPaths.length);
});
it('should handle both path and tags, returning files under the specified path with the specified tags', async () => {
const mockVault = new Obsidian.Vault();
const tags = ['tag1'];
const noteFiles = [
{ path: 'test/test2/note1.md' },
{ path: 'test/note2.md' },
] as TFile[];
const expectedPaths = ['test/test2/note1.md'];
const result = await getNotesFromTags(mockVault, tags, noteFiles);
const resultPaths = result.map(fileWithTags => fileWithTags.path);
expect(resultPaths).toEqual(expect.arrayContaining(expectedPaths));
expect(resultPaths.length).toEqual(expectedPaths.length);
});
});