The open and composable observability and data visualization platform. Visualize metrics, logs, and traces from multiple sources like Prometheus, Loki, Elasticsearch, InfluxDB, Postgres and many more.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
grafana/pkg/services/ngalert/state/persister_async_test.go

77 lines
1.7 KiB

package state
import (
"context"
"testing"
"time"
"github.com/benbjohnson/clock"
"github.com/stretchr/testify/require"
"github.com/grafana/grafana/pkg/infra/log"
"github.com/grafana/grafana/pkg/services/ngalert/eval"
)
func TestAsyncStatePersister_Async(t *testing.T) {
t.Run("It should save on tick", func(t *testing.T) {
mockClock := clock.NewMock()
store := &FakeInstanceStore{}
logger := log.New("async.test")
persister := NewAsyncStatePersister(logger, mockClock.Ticker(1*time.Second), ManagerCfg{
InstanceStore: store,
})
ctx, cancel := context.WithCancel(context.Background())
defer func() {
cancel()
}()
cache := newCache()
go persister.Async(ctx, cache)
cache.set(&State{
OrgID: 1,
State: eval.Alerting,
AlertRuleUID: "1",
})
// Let one tick pass
mockClock.Add(1 * time.Second)
// Check if the state was saved
require.Eventually(t, func() bool {
return len(store.RecordedOps()) == 1
}, time.Second*5, time.Second)
})
t.Run("It should save on context done", func(t *testing.T) {
mockClock := clock.NewMock()
store := &FakeInstanceStore{}
logger := log.New("async.test")
persister := NewAsyncStatePersister(logger, mockClock.Ticker(1*time.Second), ManagerCfg{
InstanceStore: store,
})
ctx, cancel := context.WithCancel(context.Background())
cache := newCache()
go persister.Async(ctx, cache)
cache.set(&State{
OrgID: 1,
State: eval.Alerting,
AlertRuleUID: "1",
})
// Now we cancel the context
cancel()
// Check if the context cancellation was handled correctly
require.Eventually(t, func() bool {
return len(store.RecordedOps()) == 1
}, time.Second*5, time.Second)
})
}