mirror of
https://github.com/Ed1s0nZ/CyberStrikeAI.git
synced 2026-08-15 23:50:32 +02:00
Add files via upload
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
package knowledge
|
||||
|
||||
import "testing"
|
||||
|
||||
func TestIndexerRejectsConcurrentIndexRuns(t *testing.T) {
|
||||
idx := &Indexer{}
|
||||
|
||||
if err := idx.beginIndexRun(); err != nil {
|
||||
t.Fatalf("first index run should start: %v", err)
|
||||
}
|
||||
if err := idx.beginIndexRun(); err == nil {
|
||||
t.Fatal("second index run should be rejected while one is active")
|
||||
}
|
||||
|
||||
idx.FinishIndexRun()
|
||||
if err := idx.beginIndexRun(); err != nil {
|
||||
t.Fatalf("index run should start again after finish: %v", err)
|
||||
}
|
||||
idx.FinishIndexRun()
|
||||
}
|
||||
Reference in New Issue
Block a user