mirror of
https://github.com/zitadel/zitadel.git
synced 2025-12-06 11:52:33 +00:00
# Which Problems Are Solved
Integration test failed sometimes with `organization already
exists`-errors.
# How the Problems Are Solved
Use a consistent function to generate name used for organization
creation.
# Additional Changes
Correct a eventual consistent test for username around organization
domain changes with eventual consistent loop.
# Additional Context
None
---------
Co-authored-by: Livio Spring <livio.a@gmail.com>
(cherry picked from commit 5721b63bcb)
47 lines
1.2 KiB
Go
47 lines
1.2 KiB
Go
//go:build integration
|
|
|
|
package integration_test
|
|
|
|
import (
|
|
"context"
|
|
"os"
|
|
"regexp"
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/brianvoe/gofakeit/v6"
|
|
|
|
"github.com/zitadel/zitadel/internal/integration"
|
|
"github.com/zitadel/zitadel/pkg/grpc/org/v2"
|
|
)
|
|
|
|
var (
|
|
Instance *integration.Instance
|
|
SecondaryOrganization *org.AddOrganizationResponse
|
|
CTX context.Context
|
|
|
|
// remove comments in the json, as the default golang json unmarshaler cannot handle them
|
|
// some test files (e.g. bulk, patch) are much easier to maintain with comments
|
|
removeCommentsRegex = regexp.MustCompile("(?s)//.*?\n|/\\*.*?\\*/")
|
|
)
|
|
|
|
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 = Instance.WithAuthorizationToken(ctx, integration.UserTypeOrgOwner)
|
|
|
|
iamOwnerCtx := Instance.WithAuthorizationToken(CTX, integration.UserTypeIAMOwner)
|
|
SecondaryOrganization = Instance.CreateOrganization(iamOwnerCtx, integration.OrganizationName(), gofakeit.Email())
|
|
|
|
return m.Run()
|
|
}())
|
|
}
|
|
|
|
func removeComments(json []byte) []byte {
|
|
return removeCommentsRegex.ReplaceAll(json, nil)
|
|
}
|