mirror of
https://github.com/grafana/grafana.git
synced 2024-11-26 02:40:26 -06:00
522a98c126
* make cfg private in sqlstore * fix db init in tests * fix case * fix folder test init * fix imports * make another Cfg private * remove another Cfg * remove unused variable * use store cfg, it has side-effects * fix mutated cfg in tests
41 lines
1.1 KiB
Go
41 lines
1.1 KiB
Go
package sqlstore
|
|
|
|
import (
|
|
"context"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
// testing a regression which shows up when the main org is created, but not the
|
|
// admin user: getOrCreateOrg was unable to find the existing org.
|
|
// https://github.com/grafana/grafana/issues/71781
|
|
func TestIntegrationGetOrCreateOrg(t *testing.T) {
|
|
if testing.Short() {
|
|
t.Skip("Skipping integration test in short mode")
|
|
}
|
|
ss, _ := InitTestDB(t)
|
|
|
|
err := ss.WithNewDbSession(context.Background(), func(sess *DBSession) error {
|
|
// Create the org only:
|
|
ss.cfg.AutoAssignOrg = true
|
|
ss.cfg.DisableInitAdminCreation = true
|
|
ss.cfg.AutoAssignOrgId = 1
|
|
createdOrgID, err := ss.getOrCreateOrg(sess, mainOrgName)
|
|
require.NoError(t, err)
|
|
require.Equal(t, int64(1), createdOrgID)
|
|
return nil
|
|
})
|
|
require.NoError(t, err)
|
|
|
|
err = ss.WithNewDbSession(context.Background(), func(sess *DBSession) error {
|
|
// Run it a second time and verify that it finds the org that was
|
|
// created above.
|
|
gotOrgId, err := ss.getOrCreateOrg(sess, mainOrgName)
|
|
require.NoError(t, err)
|
|
require.Equal(t, int64(1), gotOrgId)
|
|
return nil
|
|
})
|
|
require.NoError(t, err)
|
|
}
|