Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implement inclusion/exclusion operators on VFS #80

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/quick-timers-matter.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'steiger': minor
---

Implement the inclusion/exclusion operators on VFS
1 change: 1 addition & 0 deletions packages/steiger/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@
"effector": "^23.2.1",
"globby": "^14.0.1",
"immer": "^10.1.1",
"minimatch": "^10.0.1",
"patronum": "^2.2.0",
"prexit": "^2.2.0",
"yargs": "^17.7.2",
Expand Down
235 changes: 235 additions & 0 deletions packages/steiger/src/_lib/prepare-test.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,235 @@
import { join, sep } from 'node:path'
import type { readFileSync, existsSync } from 'node:fs'
import type { FsdRoot } from '@feature-sliced/filesystem'
import type { Folder, File, Diagnostic } from '@steiger/types'
import { vi } from 'vitest'

/** Parse a multi-line indented string with emojis for files and folders into an FSD root.
* @param fsMarkup - a file system tree represented in markup using file and folder emojis
* @param mountTo - virtually make the passed markup a subtree of the mountTo folder
* */
export function parseIntoFsdRoot(fsMarkup: string, mountTo?: string): FsdRoot {
function parseFolder(lines: Array<string>, path: string): Folder {
const children: Array<Folder | File> = []

lines.forEach((line, index) => {
if (line.startsWith('📂 ')) {
let nestedLines = lines.slice(index + 1)
const nextIndex = nestedLines.findIndex((line) => !line.startsWith(' '))
nestedLines = nestedLines.slice(0, nextIndex === -1 ? nestedLines.length : nextIndex)
const folder = parseFolder(
nestedLines.map((line) => line.slice(' '.length)),
join(path, line.slice('📂 '.length)),
)
children.push(folder)
} else if (line.startsWith('📄 ')) {
children.push({ type: 'file', path: join(path, line.slice('📄 '.length)) })
}
})

return { type: 'folder', path, children }
}

const lines = fsMarkup
.split('\n')
.filter(Boolean)
.map((line, _i, lines) => line.slice(lines[0].search(/\S/)))
.filter(Boolean)

return parseFolder(lines, mountTo ?? joinFromRoot())
}

export function compareMessages(a: Diagnostic, b: Diagnostic): number {
return a.message.localeCompare(b.message) || a.location.path.localeCompare(b.location.path)
}

export function joinFromRoot(...segments: Array<string>) {
return join('/', ...segments)
}

export function createFsMocks(mockedFiles: Record<string, string>, original: typeof import('fs')): typeof import('fs') {
const normalizedMockedFiles = Object.fromEntries(
Object.entries(mockedFiles).map(([path, content]) => [path.replace(/\//g, sep), content]),
)

return {
...original,
readFileSync: vi.fn(((path, options) => {
const normalizedPath = typeof path === 'string' ? path.replace(/\//g, sep) : path
if (typeof normalizedPath === 'string' && normalizedPath in normalizedMockedFiles) {
return normalizedMockedFiles[normalizedPath as keyof typeof normalizedMockedFiles]
} else {
return original.readFileSync(normalizedPath, options)
}
}) as typeof readFileSync),
existsSync: vi.fn(((path) => {
const normalizedPath = typeof path === 'string' ? path.replace(/\//g, sep) : path
return Object.keys(normalizedMockedFiles).some(
(key) => key === normalizedPath || key.startsWith(normalizedPath + sep),
)
}) as typeof existsSync),
} as typeof import('fs')
}

if (import.meta.vitest) {
const { test, expect } = import.meta.vitest

test('parseIntoFsdRoot', () => {
const root = parseIntoFsdRoot(`
📂 entities
📂 users
📂 ui
📄 index.ts
📂 posts
📂 ui
📄 index.ts
📂 shared
📂 ui
📄 index.ts
📄 Button.tsx
`)

expect(root).toEqual({
type: 'folder',
path: joinFromRoot(),
children: [
{
type: 'folder',
path: joinFromRoot('entities'),
children: [
{
type: 'folder',
path: joinFromRoot('entities', 'users'),
children: [
{
type: 'folder',
path: joinFromRoot('entities', 'users', 'ui'),
children: [],
},
{
type: 'file',
path: joinFromRoot('entities', 'users', 'index.ts'),
},
],
},
{
type: 'folder',
path: joinFromRoot('entities', 'posts'),
children: [
{
type: 'folder',
path: joinFromRoot('entities', 'posts', 'ui'),
children: [],
},
{
type: 'file',
path: joinFromRoot('entities', 'posts', 'index.ts'),
},
],
},
],
},
{
type: 'folder',
path: joinFromRoot('shared'),
children: [
{
type: 'folder',
path: joinFromRoot('shared', 'ui'),
children: [
{
type: 'file',
path: joinFromRoot('shared', 'ui', 'index.ts'),
},
{
type: 'file',
path: joinFromRoot('shared', 'ui', 'Button.tsx'),
},
],
},
],
},
],
})
})

test('it should return a nested root folder when the optional rootPath argument is passed', () => {
const markup = `
📂 entities
📂 users
📂 ui
📄 index.ts
📂 posts
📂 ui
📄 index.ts
📂 shared
📂 ui
📄 index.ts
📄 Button.tsx
`
const root = parseIntoFsdRoot(markup, joinFromRoot('src'))

expect(root).toEqual({
type: 'folder',
path: joinFromRoot('src'),
children: [
{
type: 'folder',
path: joinFromRoot('src', 'entities'),
children: [
{
type: 'folder',
path: joinFromRoot('src', 'entities', 'users'),
children: [
{
type: 'folder',
path: joinFromRoot('src', 'entities', 'users', 'ui'),
children: [],
},
{
type: 'file',
path: joinFromRoot('src', 'entities', 'users', 'index.ts'),
},
],
},
{
type: 'folder',
path: joinFromRoot('src', 'entities', 'posts'),
children: [
{
type: 'folder',
path: joinFromRoot('src', 'entities', 'posts', 'ui'),
children: [],
},
{
type: 'file',
path: joinFromRoot('src', 'entities', 'posts', 'index.ts'),
},
],
},
],
},
{
type: 'folder',
path: joinFromRoot('src', 'shared'),
children: [
{
type: 'folder',
path: joinFromRoot('src', 'shared', 'ui'),
children: [
{
type: 'file',
path: joinFromRoot('src', 'shared', 'ui', 'index.ts'),
},
{
type: 'file',
path: joinFromRoot('src', 'shared', 'ui', 'Button.tsx'),
},
],
},
],
},
],
})
})
}
Loading