1
0
mirror of https://github.com/redis/go-redis.git synced 2025-12-03 18:31:14 +03:00

improve tests

This commit is contained in:
Nedyalko Dyakov
2025-10-25 00:40:07 +03:00
parent 03b00035da
commit 84e856e382
2 changed files with 24 additions and 10 deletions

View File

@@ -400,8 +400,13 @@ func TestConnStateMachine_FIFOOrdering(t *testing.T) {
var executionOrder []int
var orderMu sync.Mutex
var wg sync.WaitGroup
var startBarrier sync.WaitGroup
startBarrier.Add(numGoroutines)
// Use channels to ensure deterministic queueing order
// Each goroutine waits for the previous one to queue before it queues
queuedChannels := make([]chan struct{}, numGoroutines)
for i := 0; i < numGoroutines; i++ {
queuedChannels[i] = make(chan struct{})
}
// Launch goroutines that will all wait
for i := 0; i < numGoroutines; i++ {
@@ -409,15 +414,19 @@ func TestConnStateMachine_FIFOOrdering(t *testing.T) {
go func(id int) {
defer wg.Done()
// Wait for all goroutines to be ready
startBarrier.Done()
startBarrier.Wait()
// Wait for previous goroutine to queue (except for goroutine 0)
if id > 0 {
<-queuedChannels[id-1]
}
// Small stagger to ensure queue order
time.Sleep(time.Duration(id) * time.Millisecond)
// Small delay to ensure the previous goroutine's AwaitAndTransition has been called
time.Sleep(5 * time.Millisecond)
ctx := context.Background()
// Signal that we're about to queue
close(queuedChannels[id])
// This should queue in FIFO order
_, err := sm.AwaitAndTransition(ctx, []ConnState{StateIdle}, StateInitializing)
if err != nil {
@@ -437,7 +446,8 @@ func TestConnStateMachine_FIFOOrdering(t *testing.T) {
}(i)
}
// Wait a bit for all goroutines to queue up
// Wait for all goroutines to queue up
<-queuedChannels[numGoroutines-1]
time.Sleep(50 * time.Millisecond)
// Transition to READY to start processing the queue