mirror of
https://github.com/grafana/grafana.git
synced 2025-02-20 11:48:34 -06:00
Chore: Refactor quota service (#57586) * Chore: refactore quota service * Apply suggestions from code review
29 lines
554 B
Go
29 lines
554 B
Go
package quotaimpl
|
|
|
|
import (
|
|
"context"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/require"
|
|
|
|
"github.com/grafana/grafana/pkg/infra/db"
|
|
"github.com/grafana/grafana/pkg/services/quota"
|
|
)
|
|
|
|
func TestIntegrationQuotaDataAccess(t *testing.T) {
|
|
if testing.Short() {
|
|
t.Skip("skipping integration test")
|
|
}
|
|
|
|
ss := db.InitTestDB(t)
|
|
quotaStore := sqlStore{
|
|
db: ss,
|
|
}
|
|
|
|
t.Run("quota deleted", func(t *testing.T) {
|
|
ctx := quota.FromContext(context.Background(), "a.TargetToSrv{})
|
|
err := quotaStore.DeleteByUser(ctx, 1)
|
|
require.NoError(t, err)
|
|
})
|
|
}
|