mirror of
https://github.com/grafana/grafana.git
synced 2025-02-20 11:48:34 -06:00
* chore: add alias for InitTestDB and Session Adds an alias for the sqlstore InitTestDB and Session, and updates tests using these to reduce dependencies on the sqlstore.Store. * next pass of removing sqlstore imports * last little bit * remove mockstore where possible
19 lines
529 B
Go
19 lines
529 B
Go
package tests
|
|
|
|
import (
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/grafana/grafana/pkg/infra/db"
|
|
"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 {
|
|
sqlStore := db.InitTestDB(t)
|
|
localCache := localcache.New(time.Hour, time.Hour)
|
|
return database.NewStorage(sqlStore, localCache)
|
|
}
|