mirror of
https://github.com/abhigyanpatwari/GitNexus.git
synced 2026-08-28 05:25:25 +00:00
* feat(spring): model conditions and auto-configuration * fix(spring): align auto-configuration declarations * perf(spring): streamline auto-configuration indexing * test(spring): move timing benchmark out of vitest --------- Co-authored-by: Shining <xuenning@qiyi.com> Co-authored-by: Gergő Magyar <gergomagyar@icloud.com>
37 lines
1.9 KiB
TypeScript
37 lines
1.9 KiB
TypeScript
import { describe, expect, it } from 'vitest';
|
|
import { CLASS_SCHEMA } from '../../src/core/lbug/schema.js';
|
|
import { getCopyQuery } from '../../src/core/lbug/lbug-adapter.js';
|
|
import { PARSE_CACHE_VERSION } from '../../src/storage/parse-cache.js';
|
|
import { INCREMENTAL_SCHEMA_VERSION } from '../../src/storage/repo-manager.js';
|
|
import { isSpringBeanCandidateSourceFile } from '../../src/core/ingestion/frameworks/spring/bean-catalog.js';
|
|
import {
|
|
SPRING_BEAN_INVENTORY_FEATURE,
|
|
SPRING_CONDITIONALS_FEATURE,
|
|
} from '../../src/core/ingestion/frameworks/spring/analysis-features.js';
|
|
import { CLASS_FRAMEWORK_ANNOTATIONS_FEATURE } from '../../src/core/analysis-features.js';
|
|
|
|
describe('Spring Bean Class persistence schema', () => {
|
|
it('keeps the Class DDL and bulk COPY column order aligned', () => {
|
|
expect(CLASS_SCHEMA).toContain('frameworkAnnotations STRING[]');
|
|
|
|
expect(getCopyQuery('Class', '/tmp/class.csv')).toContain(
|
|
'(id, name, filePath, startLine, endLine, isExported, content, description, frameworkAnnotations)',
|
|
);
|
|
});
|
|
|
|
it('meets the cache-version baselines required by the merged implementation', () => {
|
|
const parseSchemaVersion = Number.parseInt(PARSE_CACHE_VERSION, 10);
|
|
expect(parseSchemaVersion).toBeGreaterThanOrEqual(22);
|
|
expect(INCREMENTAL_SCHEMA_VERSION).toBeGreaterThanOrEqual(8);
|
|
expect(CLASS_FRAMEWORK_ANNOTATIONS_FEATURE.version).toBe(1);
|
|
expect(SPRING_BEAN_INVENTORY_FEATURE.version).toBe(1);
|
|
expect(SPRING_CONDITIONALS_FEATURE.version).toBe(1);
|
|
});
|
|
|
|
it('limits incremental drift queries to Java and Kotlin Bean source files', () => {
|
|
expect(isSpringBeanCandidateSourceFile('src/App.java')).toBe(true);
|
|
expect(isSpringBeanCandidateSourceFile('src/App.kt')).toBe(true);
|
|
expect(isSpringBeanCandidateSourceFile('build.gradle.kts')).toBe(true);
|
|
expect(isSpringBeanCandidateSourceFile('src/app.ts')).toBe(false);
|
|
});
|
|
});
|