mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-15 12:27:59 +00:00
41ae35f2ef
# Which Problems Are Solved Added functionality that user with a userschema can be created and removed. # How the Problems Are Solved Added logic and moved APIs so that everything is API v3 conform. # Additional Changes - move of user and userschema API to resources folder - changed testing and parameters - some renaming # Additional Context closes #7308 --------- Co-authored-by: Elio Bischof <elio@zitadel.com>
73 lines
1.9 KiB
Go
73 lines
1.9 KiB
Go
//go:build integration
|
|
|
|
package user_test
|
|
|
|
import (
|
|
"context"
|
|
"os"
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/muhlemmer/gu"
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/stretchr/testify/require"
|
|
|
|
"github.com/zitadel/zitadel/internal/integration"
|
|
"github.com/zitadel/zitadel/pkg/grpc/feature/v2"
|
|
user "github.com/zitadel/zitadel/pkg/grpc/resources/user/v3alpha"
|
|
)
|
|
|
|
var (
|
|
IAMOwnerCTX, SystemCTX context.Context
|
|
UserCTX context.Context
|
|
Tester *integration.Tester
|
|
Client user.ZITADELUsersClient
|
|
)
|
|
|
|
func TestMain(m *testing.M) {
|
|
os.Exit(func() int {
|
|
ctx, _, cancel := integration.Contexts(time.Hour)
|
|
defer cancel()
|
|
|
|
Tester = integration.NewTester(ctx)
|
|
defer Tester.Done()
|
|
|
|
IAMOwnerCTX = Tester.WithAuthorization(ctx, integration.IAMOwner)
|
|
SystemCTX = Tester.WithAuthorization(ctx, integration.SystemUser)
|
|
UserCTX = Tester.WithAuthorization(ctx, integration.Login)
|
|
Client = Tester.Client.UserV3Alpha
|
|
return m.Run()
|
|
}())
|
|
}
|
|
|
|
func ensureFeatureEnabled(t *testing.T, iamOwnerCTX context.Context) {
|
|
f, err := Tester.Client.FeatureV2.GetInstanceFeatures(iamOwnerCTX, &feature.GetInstanceFeaturesRequest{
|
|
Inheritance: true,
|
|
})
|
|
require.NoError(t, err)
|
|
if f.UserSchema.GetEnabled() {
|
|
return
|
|
}
|
|
_, err = Tester.Client.FeatureV2.SetInstanceFeatures(iamOwnerCTX, &feature.SetInstanceFeaturesRequest{
|
|
UserSchema: gu.Ptr(true),
|
|
})
|
|
require.NoError(t, err)
|
|
retryDuration := time.Minute
|
|
if ctxDeadline, ok := iamOwnerCTX.Deadline(); ok {
|
|
retryDuration = time.Until(ctxDeadline)
|
|
}
|
|
require.EventuallyWithT(t,
|
|
func(ttt *assert.CollectT) {
|
|
f, err := Tester.Client.FeatureV2.GetInstanceFeatures(iamOwnerCTX, &feature.GetInstanceFeaturesRequest{
|
|
Inheritance: true,
|
|
})
|
|
require.NoError(ttt, err)
|
|
if f.UserSchema.GetEnabled() {
|
|
return
|
|
}
|
|
},
|
|
retryDuration,
|
|
100*time.Millisecond,
|
|
"timed out waiting for ensuring instance feature")
|
|
}
|