mirror of
https://github.com/grafana/grafana.git
synced 2025-09-28 04:54:28 +08:00

* Separate Tracer interface to TracerService and Tracer * Fix lint * Fix:Make it possible to start spans for both opentracing and opentelemetry in ds proxy * Add span methods, use span interface for rest of tracing * Fix logs in tracing * Fix tests that are related to tracing * Fix resourcepermissions test * Fix some tests * Fix more tests * Add TracingService to wire cli runner * Remove GlobalTracer from bus * Renaming test function * Remove GlobalTracer from TSDB * Replace GlobalTracer in api * Adjust tests to the InitializeForTests func * Remove GlobalTracer from services * Remove GlobalTracer * Remove bus.NewTest * Remove Tracer interface * Add InitializeForBus * Simplify tests * Clean up tests * Rename TracerService to Tracer * Update pkg/middleware/request_tracing.go Co-authored-by: Marcus Efraimsson <marcus.efraimsson@gmail.com> * Initialize tracer before passing it to SQLStore initialization in commands * Remove tests for opentracing * Set span attributes correctly, remove unnecessary trace initiliazation form test * Add tracer instance to newSQLStore * Fix changes due to rebase * Add modified tracing middleware test * Fix opentracing implementation tags Co-authored-by: Marcus Efraimsson <marcus.efraimsson@gmail.com>
33 lines
798 B
Go
33 lines
798 B
Go
package utils
|
|
|
|
import (
|
|
"context"
|
|
"testing"
|
|
|
|
"github.com/grafana/grafana/pkg/models"
|
|
"github.com/grafana/grafana/pkg/services/sqlstore"
|
|
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
func TestCheckOrgExists(t *testing.T) {
|
|
t.Run("with default org in database", func(t *testing.T) {
|
|
sqlstore.InitTestDB(t)
|
|
|
|
defaultOrg := models.CreateOrgCommand{Name: "Main Org."}
|
|
|
|
err := sqlstore.CreateOrg(context.Background(), &defaultOrg)
|
|
require.NoError(t, err)
|
|
|
|
t.Run("default org exists", func(t *testing.T) {
|
|
err := CheckOrgExists(context.Background(), defaultOrg.Result.Id)
|
|
require.NoError(t, err)
|
|
})
|
|
|
|
t.Run("other org doesn't exist", func(t *testing.T) {
|
|
err := CheckOrgExists(context.Background(), defaultOrg.Result.Id+1)
|
|
require.Equal(t, err, models.ErrOrgNotFound)
|
|
})
|
|
})
|
|
}
|