c4a6d16e94
* fix: always use business PSU type for bank connections EF (sole trader) users connecting to Nordea got personal accounts because psu_type was set to 'personal' based on entity_type. Since gnubok is accounting software, all bank connections should use 'business' PSU type regardless of entity type. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> * feat: document inbox extension with AI classification Add invoice-inbox extension for email-based document processing with AI-powered classification, supplier matching, and inbox management. Includes MCP tools for document upload/listing, migration, and supporting changes across document service, API keys, and banking. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> * fix: disable invoice-inbox extension, use dynamic import in MCP server Keep invoice-inbox out of extensions.config.json until ready for production. MCP server now dynamically imports classifyDocument to avoid breaking when the extension is disabled. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> * fix: correct file size error message in invoice-inbox upload Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> --------- Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
113 lines
3.3 KiB
TypeScript
113 lines
3.3 KiB
TypeScript
import { resolve, join } from 'path'
|
|
import { readdirSync, readFileSync } from 'fs'
|
|
|
|
/**
|
|
* Build EXTENSION_DEFINITIONS from manifest.json files so the test
|
|
* is independent of extensions.config.json.
|
|
*/
|
|
function buildDefinitionsFromManifests(): Record<string, unknown[]> {
|
|
const extensionsDir = resolve(__dirname, '../../../extensions')
|
|
const result: Record<string, unknown[]> = {}
|
|
|
|
function walk(dir: string) {
|
|
for (const entry of readdirSync(dir, { withFileTypes: true })) {
|
|
const fullPath = join(dir, entry.name)
|
|
if (entry.isDirectory()) {
|
|
walk(fullPath)
|
|
} else if (entry.name === 'manifest.json') {
|
|
const manifest = JSON.parse(readFileSync(fullPath, 'utf-8'))
|
|
const sector: string = manifest.sector
|
|
if (!result[sector]) result[sector] = []
|
|
result[sector].push({
|
|
slug: manifest.id,
|
|
sector: manifest.sector,
|
|
...manifest.definition,
|
|
})
|
|
}
|
|
}
|
|
}
|
|
|
|
walk(extensionsDir)
|
|
return result
|
|
}
|
|
|
|
vi.mock('@/lib/extensions/_generated/sector-definitions', () => ({
|
|
EXTENSION_DEFINITIONS: buildDefinitionsFromManifests(),
|
|
}))
|
|
|
|
import {
|
|
SECTORS,
|
|
getSector,
|
|
getExtensionDefinition,
|
|
getAllExtensions,
|
|
getExtensionsBySector,
|
|
} from '../sectors'
|
|
|
|
describe('sectors registry', () => {
|
|
it('should have 1 sector', () => {
|
|
expect(SECTORS.length).toBe(1)
|
|
})
|
|
|
|
it('should have 9 total extensions', () => {
|
|
expect(getAllExtensions().length).toBe(9)
|
|
})
|
|
|
|
it('should have unique slugs within each sector', () => {
|
|
for (const sector of SECTORS) {
|
|
const slugs = sector.extensions.map(e => e.slug)
|
|
const uniqueSlugs = new Set(slugs)
|
|
expect(uniqueSlugs.size).toBe(slugs.length)
|
|
}
|
|
})
|
|
|
|
it('should have at least one extension per sector', () => {
|
|
for (const sector of SECTORS) {
|
|
expect(sector.extensions.length).toBeGreaterThan(0)
|
|
}
|
|
})
|
|
|
|
it('getSector returns correct sector', () => {
|
|
const sector = getSector('general')
|
|
expect(sector).toBeDefined()
|
|
expect(sector!.slug).toBe('general')
|
|
expect(sector!.name).toBe('Generella verktyg')
|
|
})
|
|
|
|
it('getSector returns undefined for unknown slug', () => {
|
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
const sector = getSector('invalid' as any)
|
|
expect(sector).toBeUndefined()
|
|
})
|
|
|
|
it('getExtensionDefinition returns correct extension', () => {
|
|
const ext = getExtensionDefinition('general', 'mcp-server')
|
|
expect(ext).toBeDefined()
|
|
expect(ext!.slug).toBe('mcp-server')
|
|
expect(ext!.name).toBe('MCP-server (API)')
|
|
expect(ext!.sector).toBe('general')
|
|
})
|
|
|
|
it('getExtensionDefinition returns undefined for unknown extension', () => {
|
|
const ext = getExtensionDefinition('general', 'nonexistent')
|
|
expect(ext).toBeUndefined()
|
|
})
|
|
|
|
it('getExtensionsBySector returns extensions for a sector', () => {
|
|
const extensions = getExtensionsBySector('general')
|
|
expect(extensions.length).toBe(9)
|
|
})
|
|
|
|
it('all extensions have required fields', () => {
|
|
for (const ext of getAllExtensions()) {
|
|
expect(ext.slug).toBeTruthy()
|
|
expect(ext.name).toBeTruthy()
|
|
expect(ext.sector).toBeTruthy()
|
|
expect(ext.category).toBeTruthy()
|
|
expect(ext.description).toBeTruthy()
|
|
expect(ext.longDescription).toBeTruthy()
|
|
expect(ext.icon).toBeTruthy()
|
|
expect(ext.dataPattern).toBeTruthy()
|
|
}
|
|
})
|
|
})
|