chore: rename docs links (#3668)

This commit is contained in:
Florian Forster
2022-05-20 16:32:06 +02:00
committed by GitHub
parent 220c8e4922
commit 0ba165363e
41 changed files with 136 additions and 136 deletions

View File

@@ -2808,7 +2808,7 @@ func TestAddHumanCommand(t *testing.T) {
Username: "username",
PreferredLanguage: language.English,
Email: Email{
Address: "support@zitadel.ch",
Address: "support@zitadel.com",
},
},
},
@@ -2824,7 +2824,7 @@ func TestAddHumanCommand(t *testing.T) {
Username: "username",
PreferredLanguage: language.English,
FirstName: "hurst",
Email: Email{Address: "support@zitadel.ch"},
Email: Email{Address: "support@zitadel.com"},
},
},
want: Want{
@@ -2836,7 +2836,7 @@ func TestAddHumanCommand(t *testing.T) {
args: args{
a: agg,
human: &AddHuman{
Email: Email{Address: "support@zitadel.ch"},
Email: Email{Address: "support@zitadel.com"},
PreferredLanguage: language.English,
FirstName: "gigi",
LastName: "giraffe",
@@ -2880,7 +2880,7 @@ func TestAddHumanCommand(t *testing.T) {
args: args{
a: agg,
human: &AddHuman{
Email: Email{Address: "support@zitadel.ch", Verified: true},
Email: Email{Address: "support@zitadel.com", Verified: true},
PreferredLanguage: language.English,
FirstName: "gigi",
LastName: "giraffe",
@@ -2930,7 +2930,7 @@ func TestAddHumanCommand(t *testing.T) {
"gigi giraffe",
language.English,
0,
"support@zitadel.ch",
"support@zitadel.com",
true,
)
event.AddPasswordData(&crypto.CryptoValue{

View File

@@ -1630,7 +1630,7 @@ func TestExistsUser(t *testing.T) {
"displayName",
language.German,
domain.GenderFemale,
"support@zitadel.ch",
"support@zitadel.com",
true,
),
}, nil
@@ -1656,7 +1656,7 @@ func TestExistsUser(t *testing.T) {
"displayName",
language.German,
domain.GenderFemale,
"support@zitadel.ch",
"support@zitadel.com",
true,
),
}, nil

View File

@@ -36,7 +36,7 @@ func TestUserProjection_reduces(t *testing.T) {
"displayName": "display-name",
"preferredLanguage": "ch-DE",
"gender": 1,
"email": "email@zitadel.ch",
"email": "email@zitadel.com",
"phone": "+41 00 000 00 00"
}`),
), user.HumanAddedEventMapper),
@@ -73,7 +73,7 @@ func TestUserProjection_reduces(t *testing.T) {
&sql.NullString{String: "display-name", Valid: true},
&sql.NullString{String: "ch-DE", Valid: true},
&sql.NullInt16{Int16: int16(domain.GenderFemale), Valid: true},
"email@zitadel.ch",
"email@zitadel.com",
&sql.NullString{String: "+41 00 000 00 00", Valid: true},
},
},
@@ -95,7 +95,7 @@ func TestUserProjection_reduces(t *testing.T) {
"displayName": "display-name",
"preferredLanguage": "ch-DE",
"gender": 1,
"email": "email@zitadel.ch",
"email": "email@zitadel.com",
"phone": "+41 00 000 00 00"
}`),
), user.HumanAddedEventMapper),
@@ -132,7 +132,7 @@ func TestUserProjection_reduces(t *testing.T) {
&sql.NullString{String: "display-name", Valid: true},
&sql.NullString{String: "ch-DE", Valid: true},
&sql.NullInt16{Int16: int16(domain.GenderFemale), Valid: true},
"email@zitadel.ch",
"email@zitadel.com",
&sql.NullString{String: "+41 00 000 00 00", Valid: true},
},
},
@@ -150,7 +150,7 @@ func TestUserProjection_reduces(t *testing.T) {
"username": "user-name",
"firstName": "first-name",
"lastName": "last-name",
"email": "email@zitadel.ch"
"email": "email@zitadel.com"
}`),
), user.HumanAddedEventMapper),
},
@@ -186,7 +186,7 @@ func TestUserProjection_reduces(t *testing.T) {
&sql.NullString{},
&sql.NullString{String: "und", Valid: false},
&sql.NullInt16{},
"email@zitadel.ch",
"email@zitadel.com",
&sql.NullString{},
},
},
@@ -208,7 +208,7 @@ func TestUserProjection_reduces(t *testing.T) {
"displayName": "display-name",
"preferredLanguage": "ch-DE",
"gender": 1,
"email": "email@zitadel.ch",
"email": "email@zitadel.com",
"phone": "+41 00 000 00 00"
}`),
), user.HumanRegisteredEventMapper),
@@ -245,7 +245,7 @@ func TestUserProjection_reduces(t *testing.T) {
&sql.NullString{String: "display-name", Valid: true},
&sql.NullString{String: "ch-DE", Valid: true},
&sql.NullInt16{Int16: int16(domain.GenderFemale), Valid: true},
"email@zitadel.ch",
"email@zitadel.com",
&sql.NullString{String: "+41 00 000 00 00", Valid: true},
},
},
@@ -267,7 +267,7 @@ func TestUserProjection_reduces(t *testing.T) {
"displayName": "display-name",
"preferredLanguage": "ch-DE",
"gender": 1,
"email": "email@zitadel.ch",
"email": "email@zitadel.com",
"phone": "+41 00 000 00 00"
}`),
), user.HumanRegisteredEventMapper),
@@ -304,7 +304,7 @@ func TestUserProjection_reduces(t *testing.T) {
&sql.NullString{String: "display-name", Valid: true},
&sql.NullString{String: "ch-DE", Valid: true},
&sql.NullInt16{Int16: int16(domain.GenderFemale), Valid: true},
"email@zitadel.ch",
"email@zitadel.com",
&sql.NullString{String: "+41 00 000 00 00", Valid: true},
},
},
@@ -322,7 +322,7 @@ func TestUserProjection_reduces(t *testing.T) {
"username": "user-name",
"firstName": "first-name",
"lastName": "last-name",
"email": "email@zitadel.ch"
"email": "email@zitadel.com"
}`),
), user.HumanRegisteredEventMapper),
},
@@ -358,7 +358,7 @@ func TestUserProjection_reduces(t *testing.T) {
&sql.NullString{},
&sql.NullString{String: "und", Valid: false},
&sql.NullInt16{},
"email@zitadel.ch",
"email@zitadel.com",
&sql.NullString{},
},
},
@@ -984,7 +984,7 @@ func TestUserProjection_reduces(t *testing.T) {
repository.EventType(user.HumanEmailChangedType),
user.AggregateType,
[]byte(`{
"email": "email@zitadel.ch"
"email": "email@zitadel.com"
}`),
), user.HumanEmailChangedEventMapper),
},
@@ -1007,7 +1007,7 @@ func TestUserProjection_reduces(t *testing.T) {
{
expectedStmt: "UPDATE projections.users_humans SET (email, is_email_verified) = ($1, $2) WHERE (user_id = $3)",
expectedArgs: []interface{}{
"email@zitadel.ch",
"email@zitadel.com",
false,
"agg-id",
},
@@ -1023,7 +1023,7 @@ func TestUserProjection_reduces(t *testing.T) {
repository.EventType(user.UserV1EmailChangedType),
user.AggregateType,
[]byte(`{
"email": "email@zitadel.ch"
"email": "email@zitadel.com"
}`),
), user.HumanEmailChangedEventMapper),
},
@@ -1046,7 +1046,7 @@ func TestUserProjection_reduces(t *testing.T) {
{
expectedStmt: "UPDATE projections.users_humans SET (email, is_email_verified) = ($1, $2) WHERE (user_id = $3)",
expectedArgs: []interface{}{
"email@zitadel.ch",
"email@zitadel.com",
false,
"agg-id",
},