Files
orca/src/shared/project-groups.test.ts
T

132 lines
3.6 KiB
TypeScript

import { describe, expect, it } from 'vitest'
import {
clearMissingProjectGroupMemberships,
createProjectGroup,
getNextProjectGroupOrder,
getProjectGroupSubtreeIds,
normalizeProjectGroupName,
normalizeProjectGroups
} from './project-groups'
import type { Repo } from './types'
function repo(overrides: Partial<Repo>): Repo {
return {
id: overrides.id ?? 'repo-1',
path: overrides.path ?? '/repo',
displayName: overrides.displayName ?? 'repo',
badgeColor: '#999',
addedAt: 1,
kind: 'git',
...overrides
}
}
describe('project-groups', () => {
it('creates a durable project group with normalized defaults', () => {
const group = createProjectGroup({
name: ' Platform ',
parentPath: '/srv/platform',
createdFrom: 'folder-scan',
tabOrder: 3,
now: 100
})
expect(group).toMatchObject({
name: 'Platform',
parentPath: '/srv/platform',
parentGroupId: null,
createdFrom: 'folder-scan',
tabOrder: 3,
isCollapsed: false,
color: null,
createdAt: 100,
updatedAt: 100
})
})
it('trims empty group names to a fallback', () => {
expect(normalizeProjectGroupName(' ', 'Existing')).toBe('Existing')
})
it('normalizes persisted groups and drops malformed entries', () => {
const groups = normalizeProjectGroups([
{ id: 'b', name: 'B', tabOrder: 2 },
{
id: 'a',
name: 'A',
tabOrder: 1,
parentGroupId: 'missing',
createdFrom: 'folder-scan',
isCollapsed: true
},
{ id: 'a', name: 'duplicate' },
{ name: 'missing id' }
])
expect(groups.map((group) => group.id)).toEqual(['a', 'b'])
expect(groups[0]).toMatchObject({
createdFrom: 'folder-scan',
isCollapsed: true,
parentGroupId: null
})
})
it('clears repo memberships whose group no longer exists', () => {
const groups = [createProjectGroup({ name: 'Known', createdFrom: 'manual', tabOrder: 0 })]
const repos = clearMissingProjectGroupMemberships(
[
repo({ id: 'known', projectGroupId: groups[0].id }),
repo({ id: 'missing', projectGroupId: 'x' })
],
groups
)
expect(repos.find((entry) => entry.id === 'known')?.projectGroupId).toBe(groups[0].id)
expect(repos.find((entry) => entry.id === 'missing')?.projectGroupId).toBeNull()
})
it('computes the next order inside a group independently from ungrouped repos', () => {
expect(
getNextProjectGroupOrder(
[
repo({ id: 'a', projectGroupId: 'g', projectGroupOrder: 2 }),
repo({ id: 'b', projectGroupId: null, projectGroupOrder: 9 })
],
'g'
)
).toBe(3)
})
it('collects descendant group ids for subtree deletion', () => {
expect(
[
...getProjectGroupSubtreeIds(
[
{ id: 'root', parentGroupId: null },
{ id: 'child', parentGroupId: 'root' },
{ id: 'grandchild', parentGroupId: 'child' },
{ id: 'sibling', parentGroupId: null }
],
'root'
)
].sort()
).toEqual(['child', 'grandchild', 'root'])
})
it('collects wide descendant groups without overflowing argument limits', () => {
const groups = [
{ id: 'root', parentGroupId: null },
...Array.from({ length: 130_000 }, (_, index) => ({
id: `child-${index}`,
parentGroupId: 'root'
}))
]
const subtreeIds = getProjectGroupSubtreeIds(groups, 'root')
expect(subtreeIds.size).toBe(130_001)
expect(subtreeIds.has('root')).toBe(true)
expect(subtreeIds.has('child-129999')).toBe(true)
})
})