mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-14 11:58:02 +00:00
9422766e17
Remove some integration test flakiness. --------- Co-authored-by: Livio Spring <livio.a@gmail.com>
43 lines
862 B
Go
43 lines
862 B
Go
//go:build integration
|
|
|
|
package admin_test
|
|
|
|
import (
|
|
"context"
|
|
"os"
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
"github.com/zitadel/zitadel/internal/integration"
|
|
admin_pb "github.com/zitadel/zitadel/pkg/grpc/admin"
|
|
)
|
|
|
|
var (
|
|
CTX, AdminCTX context.Context
|
|
Instance *integration.Instance
|
|
Client admin_pb.AdminServiceClient
|
|
)
|
|
|
|
func TestMain(m *testing.M) {
|
|
os.Exit(func() int {
|
|
ctx, cancel := context.WithTimeout(context.Background(), 15*time.Minute)
|
|
defer cancel()
|
|
|
|
Instance = integration.NewInstance(ctx)
|
|
CTX = ctx
|
|
AdminCTX = Instance.WithAuthorization(ctx, integration.UserTypeIAMOwner)
|
|
Client = Instance.Client.Admin
|
|
return m.Run()
|
|
}())
|
|
}
|
|
|
|
var _ assert.TestingT = (*noopAssertionT)(nil)
|
|
|
|
type noopAssertionT struct{}
|
|
|
|
func (*noopAssertionT) FailNow() {}
|
|
|
|
func (*noopAssertionT) Errorf(string, ...interface{}) {}
|