2021-04-30 21:06:33 +03:00
|
|
|
package tests
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"testing"
|
|
|
|
|
"time"
|
|
|
|
|
|
2022-10-19 09:02:15 -04:00
|
|
|
"github.com/grafana/grafana/pkg/infra/db"
|
2021-04-30 21:06:33 +03:00
|
|
|
"github.com/grafana/grafana/pkg/infra/localcache"
|
|
|
|
|
"github.com/grafana/grafana/pkg/services/live/database"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
// SetupTestStorage initializes a storage to used by the integration tests.
|
|
|
|
|
// This is required to properly register and execute migrations.
|
|
|
|
|
func SetupTestStorage(t *testing.T) *database.Storage {
|
2022-10-19 09:02:15 -04:00
|
|
|
sqlStore := db.InitTestDB(t)
|
2021-04-30 21:06:33 +03:00
|
|
|
localCache := localcache.New(time.Hour, time.Hour)
|
|
|
|
|
return database.NewStorage(sqlStore, localCache)
|
|
|
|
|
}
|