mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 19:14:23 +00:00
dd33538c0a
* feat: return 404 or 409 if org reg disallowed * fix: system limit permissions * feat: add iam limits api * feat: disallow public org registrations on default instance * add integration test * test: integration * fix test * docs: describe public org registrations * avoid updating docs deps * fix system limits integration test * silence integration tests * fix linting * ignore strange linter complaints * review * improve reset properties naming * redefine the api * use restrictions aggregate * test query * simplify and test projection * test commands * fix unit tests * move integration test * support restrictions on default instance * also test GetRestrictions * self review * lint * abstract away resource owner * fix tests * configure supported languages * fix allowed languages * fix tests * default lang must not be restricted * preferred language must be allowed * change preferred languages * check languages everywhere * lint * test command side * lint * add integration test * add integration test * restrict supported ui locales * lint * lint * cleanup * lint * allow undefined preferred language * fix integration tests * update main * fix env var * ignore linter * ignore linter * improve integration test config * reduce cognitive complexity * compile * check for duplicates * remove useless restriction checks * review * revert restriction renaming * fix language restrictions * lint * generate * allow custom texts for supported langs for now * fix tests * cleanup * cleanup * cleanup * lint * unsupported preferred lang is allowed * fix integration test * finish reverting to old property name * finish reverting to old property name * load languages * refactor(i18n): centralize translators and fs * lint * amplify no validations on preferred languages * fix integration test * lint * fix resetting allowed languages * test unchanged restrictions
103 lines
2.9 KiB
Go
103 lines
2.9 KiB
Go
//go:build integration
|
|
|
|
package management_test
|
|
|
|
import (
|
|
"context"
|
|
"os"
|
|
"strconv"
|
|
"strings"
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/stretchr/testify/require"
|
|
"golang.org/x/text/language"
|
|
"google.golang.org/grpc/codes"
|
|
"google.golang.org/grpc/status"
|
|
|
|
"github.com/zitadel/zitadel/internal/integration"
|
|
"github.com/zitadel/zitadel/pkg/grpc/management"
|
|
"github.com/zitadel/zitadel/pkg/grpc/user"
|
|
)
|
|
|
|
var (
|
|
CTX context.Context
|
|
Tester *integration.Tester
|
|
Client management.ManagementServiceClient
|
|
)
|
|
|
|
func TestMain(m *testing.M) {
|
|
os.Exit(func() int {
|
|
ctx, errCtx, cancel := integration.Contexts(3 * time.Minute)
|
|
defer cancel()
|
|
|
|
Tester = integration.NewTester(ctx)
|
|
defer Tester.Done()
|
|
|
|
CTX, _ = Tester.WithAuthorization(ctx, integration.OrgOwner), errCtx
|
|
Client = Tester.Client.Mgmt
|
|
return m.Run()
|
|
}())
|
|
}
|
|
|
|
// TestImport_and_Get reproduces https://github.com/zitadel/zitadel/issues/5808
|
|
// which led to consistency issues due the call timestamp not being
|
|
// updated after a bulk Trigger.
|
|
// This test Imports a user and directly tries to Get it, 100 times in a loop.
|
|
// When the bug still existed, some (between 1 to 7 out of 100)
|
|
// Get calls would return a Not Found error.
|
|
func TestImport_and_Get(t *testing.T) {
|
|
const N = 100
|
|
|
|
for i := 0; i < N; i++ {
|
|
firstName := strconv.Itoa(i)
|
|
t.Run(firstName, func(t *testing.T) {
|
|
// create unique names.
|
|
lastName := strconv.FormatInt(time.Now().Unix(), 10)
|
|
userName := strings.Join([]string{firstName, lastName}, "_")
|
|
email := strings.Join([]string{userName, "example.com"}, "@")
|
|
|
|
res, err := Client.ImportHumanUser(CTX, &management.ImportHumanUserRequest{
|
|
UserName: userName,
|
|
Profile: &management.ImportHumanUserRequest_Profile{
|
|
FirstName: firstName,
|
|
LastName: lastName,
|
|
PreferredLanguage: language.Japanese.String(),
|
|
Gender: user.Gender_GENDER_DIVERSE,
|
|
},
|
|
Email: &management.ImportHumanUserRequest_Email{
|
|
Email: email,
|
|
IsEmailVerified: true,
|
|
},
|
|
})
|
|
require.NoError(t, err)
|
|
|
|
_, err = Client.GetUserByID(CTX, &management.GetUserByIDRequest{Id: res.GetUserId()})
|
|
|
|
s, ok := status.FromError(err)
|
|
if ok && s != nil && s.Code() == codes.NotFound {
|
|
t.Errorf("iteration %d: user with id %q not found", i, res.GetUserId())
|
|
}
|
|
require.NoError(t, err) // catch and fail on any other error
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestImport_UnparsablePreferredLanguage(t *testing.T) {
|
|
random := integration.RandString(5)
|
|
_, err := Client.ImportHumanUser(CTX, &management.ImportHumanUserRequest{
|
|
UserName: random,
|
|
Profile: &management.ImportHumanUserRequest_Profile{
|
|
FirstName: random,
|
|
LastName: random,
|
|
PreferredLanguage: "not valid",
|
|
Gender: user.Gender_GENDER_DIVERSE,
|
|
},
|
|
Email: &management.ImportHumanUserRequest_Email{
|
|
Email: random + "@example.com",
|
|
IsEmailVerified: true,
|
|
},
|
|
})
|
|
require.NoError(t, err)
|
|
}
|