- Fixed imports in examples/tests/ to use correct Brainy import - Fixed imports in tests/benchmarks/ to use correct paths - Updated bin/brainy-interactive.js to use Brainy instead of BrainyData - Corrected documentation references throughout codebase - Removed duplicate imports in benchmark files - All files now consistently use 'Brainy' class from dist/index.js
89 lines
No EOL
2.3 KiB
JavaScript
89 lines
No EOL
2.3 KiB
JavaScript
/**
|
|
* Test script to verify storage augmentation system works
|
|
*/
|
|
|
|
import { Brainy } from '../../dist/index.js'
|
|
import {
|
|
MemoryStorageAugmentation,
|
|
FileSystemStorageAugmentation
|
|
} from './dist/augmentations/storageAugmentations.js'
|
|
|
|
console.log('🧪 Testing Storage Augmentation System')
|
|
console.log('=' .repeat(50))
|
|
|
|
async function test1_ZeroConfig() {
|
|
console.log('\n1. Zero-Config Test')
|
|
const brain = new Brainy()
|
|
await brain.init()
|
|
|
|
await brain.add('test', { content: 'Zero-config test' })
|
|
const results = await brain.search('test', { limit: 1 })
|
|
|
|
console.log('✅ Zero-config works:', results.length > 0)
|
|
await brain.destroy()
|
|
}
|
|
|
|
async function test2_ConfigBased() {
|
|
console.log('\n2. Config-Based Storage Test')
|
|
const brain = new Brainy({
|
|
storage: {
|
|
forceMemoryStorage: true
|
|
}
|
|
})
|
|
await brain.init()
|
|
|
|
await brain.add('config test', { content: 'Config-based test' })
|
|
const results = await brain.search('config', { limit: 1 })
|
|
|
|
console.log('✅ Config-based works:', results.length > 0)
|
|
await brain.destroy()
|
|
}
|
|
|
|
async function test3_AugmentationOverride() {
|
|
console.log('\n3. Augmentation Override Test')
|
|
const brain = new Brainy()
|
|
|
|
// Register storage augmentation BEFORE init
|
|
brain.augmentations.register(new MemoryStorageAugmentation('test-memory'))
|
|
|
|
await brain.init()
|
|
|
|
await brain.add('augmentation test', { content: 'Augmentation override test' })
|
|
const results = await brain.search('augmentation', { limit: 1 })
|
|
|
|
console.log('✅ Augmentation override works:', results.length > 0)
|
|
await brain.destroy()
|
|
}
|
|
|
|
async function test4_BackwardCompatibility() {
|
|
console.log('\n4. Backward Compatibility Test')
|
|
|
|
// Old style with rootDirectory config
|
|
const brain = new Brainy({
|
|
storage: {
|
|
rootDirectory: './test-data',
|
|
forceFileSystemStorage: true
|
|
}
|
|
})
|
|
|
|
await brain.init()
|
|
console.log('✅ Backward compatible config works')
|
|
await brain.destroy()
|
|
}
|
|
|
|
async function runAllTests() {
|
|
try {
|
|
await test1_ZeroConfig()
|
|
await test2_ConfigBased()
|
|
await test3_AugmentationOverride()
|
|
await test4_BackwardCompatibility()
|
|
|
|
console.log('\n' + '='.repeat(50))
|
|
console.log('✅ ALL STORAGE AUGMENTATION TESTS PASSED!')
|
|
} catch (error) {
|
|
console.error('❌ Test failed:', error)
|
|
process.exit(1)
|
|
}
|
|
}
|
|
|
|
runAllTests() |