mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 02:54:20 +00:00
04b4cd80b8
* feat: eventstore repository * fix: remove gorm * version * feat: pkg * feat: add some files for project * feat: eventstore without eventstore-lib * rename files * gnueg * fix: key json * fix: add object * fix: change imports * fix: internal models * fix: some imports * fix: global model * feat: add global view functions * fix: add some functions on repo * feat(eventstore): sdk * fix(eventstore): search query * fix(eventstore): rename app to eventstore * delete empty test * remove unused func * merge master * fix(eventstore): tests * fix(models): delete unused struct * fix: some funcitons * feat(eventstore): implemented push events * fix: move project eventstore to project package * fix: change project eventstore funcs * feat(eventstore): overwrite context data * fix: change project eventstore * fix: add project repo to mgmt server * feat(types): SQL-config * fix: commented code * feat(eventstore): options to overwrite editor * feat: auth interceptor and cockroach migrations * fix: migrations * fix: fix filter * fix: not found on getbyid * fix: use global sql config * fix: add sequence * fix: add some tests * fix(eventstore): nullable sequence * fix: add some tests * merge * fix: add some tests * fix(migrations): correct statements for sequence * fix: add some tests * fix: add some tests * fix: changes from mr * fix: changes from mr * fix: add some tests * Update internal/eventstore/models/field.go Co-Authored-By: livio-a <livio.a@gmail.com> * fix(eventstore): code quality * fix: add types to aggregate/Event-types * fix: try tests * fix(eventstore): rename modifier* to editor* * fix(eventstore): delete editor_org * fix(migrations): remove editor_org field, rename modifier_* to editor_* * fix: query tests * fix: use prepare funcs * fix: go mod * fix: generate files * fix(eventstore): tests * fix(eventstore): rename modifier to editor * fix(migrations): add cluster migration, fix(migrations): fix typo of host in clean clsuter * fix(eventstore): move health * fix(eventstore): AggregateTypeFilter aggregateType as param * code quality * fix: go tests * feat: add member funcs * feat: add member model * feat: add member events * feat: add member repo model * fix: better error func testing * fix: project member funcs * fix: add tests * fix: add tests * feat: implement member requests * fix: merge master * fix: merge master * fix: read existing in project repo * fix: fix tests * feat: add internal cache * feat: add cache mock * fix: return values of cache mock * feat: add project role * fix: add cache config * fix: add role to eventstore * fix: use eventstore sdk * fix: use eventstore sdk * fix: add project role grpc requests * fix: fix getby id * fix: changes for mr * fix: change value to interface * feat: add app event creations * fix: searchmethods * Update internal/project/model/project_member.go Co-Authored-By: Silvan <silvan.reusser@gmail.com> * fix: use get project func * fix: append events * fix: check if value is string on equal ignore case * fix: add changes test * fix: add go mod * fix: add some tests * fix: return err not nil * fix: return err not nil * fix: add aggregate funcs and tests * fix: add oidc aggregate funcs and tests * fix: add oidc * fix: add some tests * fix: tests * fix: oidc validation * fix: generate client secret * fix: generate client id * fix: test change app * fix: deactivate/reactivate application * fix: change oidc config * fix: change oidc config secret * fix: implement grpc app funcs * fix: add application requests * fix: converter * fix: converter * fix: converter and generate clientid * fix: tests * fix: some fixes * feat: mr changes * fix: remove state converted * fix: add default oidc config * fix: use crypto pw generator * fix: rename responsetype * create GeneratorConfig and refactor some crypto.Generator code (#70) * Update internal/project/model/project_role.go Co-Authored-By: Silvan <silvan.reusser@gmail.com> * fix: change objectroot id * fix: caos err id Co-authored-by: adlerhurst <silvan.reusser@gmail.com> Co-authored-by: livio-a <livio.a@gmail.com>
115 lines
3.0 KiB
Go
115 lines
3.0 KiB
Go
package proto
|
|
|
|
import (
|
|
"testing"
|
|
|
|
pb_struct "github.com/golang/protobuf/ptypes/struct"
|
|
)
|
|
|
|
func Test_ToPBStruct(t *testing.T) {
|
|
type obj struct {
|
|
AggregateID string
|
|
Seq uint64
|
|
}
|
|
type args struct {
|
|
obj obj
|
|
}
|
|
tests := []struct {
|
|
name string
|
|
args args
|
|
wantErr bool
|
|
length int
|
|
result obj
|
|
}{
|
|
{
|
|
name: "to pb stuct",
|
|
args: args{
|
|
obj: obj{AggregateID: "AggregateID", Seq: 12345},
|
|
},
|
|
wantErr: false,
|
|
length: 2,
|
|
result: obj{AggregateID: "AggregateID", Seq: 12345},
|
|
},
|
|
{
|
|
name: "empty struct",
|
|
args: args{
|
|
obj: obj{},
|
|
},
|
|
wantErr: false,
|
|
length: 2,
|
|
result: obj{AggregateID: "", Seq: 0},
|
|
},
|
|
}
|
|
for _, tt := range tests {
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
fields, err := ToPBStruct(tt.args.obj)
|
|
if tt.wantErr && err == nil {
|
|
t.Errorf("got wrong result, should get err: actual: %v ", err)
|
|
}
|
|
if !tt.wantErr && len(fields.Fields) != tt.length {
|
|
t.Errorf("got wrong result length, expecting: %v, actual: %v ", tt.length, len(fields.Fields))
|
|
}
|
|
if !tt.wantErr && tt.result.AggregateID != fields.Fields["AggregateID"].GetStringValue() {
|
|
t.Errorf("got wrong result, AggregateID should be same: expecting: %v, actual: %v ", tt.result.AggregateID, fields.Fields["AggregateID"].GetStringValue())
|
|
}
|
|
if !tt.wantErr && int(tt.result.Seq) != int(fields.Fields["Seq"].GetNumberValue()) {
|
|
t.Errorf("got wrong result, Seq should be same: expecting: %v, actual: %v ", tt.result.Seq, fields.Fields["Seq"].GetStringValue())
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|
|
func Test_FromPBStruct(t *testing.T) {
|
|
type obj struct {
|
|
AggregateID string
|
|
Seq uint64
|
|
}
|
|
type args struct {
|
|
obj *obj
|
|
fields *pb_struct.Struct
|
|
}
|
|
tests := []struct {
|
|
name string
|
|
args args
|
|
wantErr bool
|
|
result obj
|
|
}{
|
|
{
|
|
name: "from pb stuct",
|
|
args: args{
|
|
obj: &obj{},
|
|
fields: &pb_struct.Struct{Fields: map[string]*pb_struct.Value{
|
|
"AggregateID": &pb_struct.Value{Kind: &pb_struct.Value_StringValue{StringValue: "AggregateID"}},
|
|
"Seq": &pb_struct.Value{Kind: &pb_struct.Value_NumberValue{NumberValue: 12345}},
|
|
},
|
|
},
|
|
},
|
|
wantErr: false,
|
|
result: obj{AggregateID: "AggregateID", Seq: 12345},
|
|
},
|
|
{
|
|
name: "no fields",
|
|
args: args{
|
|
obj: &obj{},
|
|
fields: &pb_struct.Struct{Fields: map[string]*pb_struct.Value{}},
|
|
},
|
|
wantErr: false,
|
|
result: obj{AggregateID: "", Seq: 0},
|
|
},
|
|
}
|
|
for _, tt := range tests {
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
err := FromPBStruct(tt.args.obj, tt.args.fields)
|
|
if tt.wantErr && err == nil {
|
|
t.Errorf("got wrong result, should get err: actual: %v ", err)
|
|
}
|
|
if !tt.wantErr && tt.result.AggregateID != tt.args.obj.AggregateID {
|
|
t.Errorf("got wrong result, AggregateID should be same: expecting: %v, actual: %v ", tt.result.AggregateID, tt.args.obj.AggregateID)
|
|
}
|
|
if !tt.wantErr && int(tt.result.Seq) != int(tt.args.obj.Seq) {
|
|
t.Errorf("got wrong result, Seq should be same: expecting: %v, actual: %v ", tt.result.Seq, tt.args.obj.Seq)
|
|
}
|
|
})
|
|
}
|
|
}
|