2020-05-11 08:16:27 +00:00
|
|
|
package eventsourcing
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/json"
|
2020-07-28 07:42:21 +00:00
|
|
|
|
2020-05-11 08:16:27 +00:00
|
|
|
mock_cache "github.com/caos/zitadel/internal/cache/mock"
|
|
|
|
"github.com/caos/zitadel/internal/eventstore/mock"
|
|
|
|
es_models "github.com/caos/zitadel/internal/eventstore/models"
|
2020-05-28 11:28:36 +00:00
|
|
|
"github.com/caos/zitadel/internal/id"
|
2020-05-11 08:16:27 +00:00
|
|
|
"github.com/caos/zitadel/internal/usergrant/repository/eventsourcing/model"
|
|
|
|
"github.com/golang/mock/gomock"
|
|
|
|
)
|
|
|
|
|
|
|
|
func GetMockedEventstore(ctrl *gomock.Controller, mockEs *mock.MockEventstore) *UserGrantEventStore {
|
|
|
|
return &UserGrantEventStore{
|
|
|
|
Eventstore: mockEs,
|
|
|
|
userGrantCache: GetMockCache(ctrl),
|
|
|
|
idGenerator: GetSonyFlacke(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func GetMockCache(ctrl *gomock.Controller) *UserGrantCache {
|
|
|
|
mockCache := mock_cache.NewMockCache(ctrl)
|
|
|
|
mockCache.EXPECT().Get(gomock.Any(), gomock.Any()).Return(nil).AnyTimes()
|
|
|
|
mockCache.EXPECT().Set(gomock.Any(), gomock.Any()).Return(nil).AnyTimes()
|
|
|
|
return &UserGrantCache{userGrantCache: mockCache}
|
|
|
|
}
|
|
|
|
|
2020-05-28 11:28:36 +00:00
|
|
|
func GetSonyFlacke() id.Generator {
|
|
|
|
return id.SonyFlakeGenerator
|
2020-05-11 08:16:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func GetMockUserGrantByIDOK(ctrl *gomock.Controller) *UserGrantEventStore {
|
|
|
|
user := model.UserGrant{
|
|
|
|
UserID: "UserID",
|
|
|
|
ProjectID: "ProjectID",
|
|
|
|
RoleKeys: []string{"Key"},
|
|
|
|
}
|
|
|
|
data, _ := json.Marshal(user)
|
|
|
|
events := []*es_models.Event{
|
|
|
|
&es_models.Event{AggregateID: "AggregateID", Sequence: 1, Type: model.UserGrantAdded, Data: data},
|
|
|
|
}
|
|
|
|
mockEs := mock.NewMockEventstore(ctrl)
|
|
|
|
mockEs.EXPECT().FilterEvents(gomock.Any(), gomock.Any()).Return(events, nil)
|
|
|
|
return GetMockedEventstore(ctrl, mockEs)
|
|
|
|
}
|
|
|
|
|
|
|
|
func GetMockUserGrantByIDRemoved(ctrl *gomock.Controller) *UserGrantEventStore {
|
|
|
|
user := model.UserGrant{
|
|
|
|
UserID: "UserID",
|
|
|
|
ProjectID: "ProjectID",
|
|
|
|
RoleKeys: []string{"Key"},
|
|
|
|
}
|
|
|
|
data, _ := json.Marshal(user)
|
|
|
|
events := []*es_models.Event{
|
|
|
|
&es_models.Event{AggregateID: "AggregateID", Sequence: 1, Type: model.UserGrantAdded, Data: data},
|
|
|
|
&es_models.Event{AggregateID: "AggregateID", Sequence: 1, Type: model.UserGrantRemoved},
|
|
|
|
}
|
|
|
|
mockEs := mock.NewMockEventstore(ctrl)
|
|
|
|
mockEs.EXPECT().FilterEvents(gomock.Any(), gomock.Any()).Return(events, nil)
|
|
|
|
return GetMockedEventstore(ctrl, mockEs)
|
|
|
|
}
|
|
|
|
|
|
|
|
func GetMockUserGrantByIDNoEvents(ctrl *gomock.Controller) *UserGrantEventStore {
|
|
|
|
events := []*es_models.Event{}
|
|
|
|
mockEs := mock.NewMockEventstore(ctrl)
|
|
|
|
mockEs.EXPECT().FilterEvents(gomock.Any(), gomock.Any()).Return(events, nil)
|
|
|
|
return GetMockedEventstore(ctrl, mockEs)
|
|
|
|
}
|
|
|
|
|
|
|
|
func GetMockManipulateUserGrant(ctrl *gomock.Controller) *UserGrantEventStore {
|
|
|
|
user := model.UserGrant{
|
|
|
|
UserID: "UserID",
|
|
|
|
ProjectID: "ProjectID",
|
|
|
|
RoleKeys: []string{"Key"},
|
|
|
|
}
|
|
|
|
data, _ := json.Marshal(user)
|
|
|
|
events := []*es_models.Event{
|
|
|
|
&es_models.Event{AggregateID: "AggregateID", Sequence: 1, Type: model.UserGrantAdded, Data: data},
|
|
|
|
}
|
|
|
|
mockEs := mock.NewMockEventstore(ctrl)
|
|
|
|
mockEs.EXPECT().FilterEvents(gomock.Any(), gomock.Any()).Return(events, nil)
|
|
|
|
mockEs.EXPECT().AggregateCreator().Return(es_models.NewAggregateCreator("TEST"))
|
|
|
|
mockEs.EXPECT().PushAggregates(gomock.Any(), gomock.Any()).Return(nil)
|
|
|
|
return GetMockedEventstore(ctrl, mockEs)
|
|
|
|
}
|
|
|
|
|
|
|
|
func GetMockManipulateUserGrantInactive(ctrl *gomock.Controller) *UserGrantEventStore {
|
|
|
|
user := model.UserGrant{
|
|
|
|
UserID: "UserID",
|
|
|
|
ProjectID: "ProjectID",
|
|
|
|
RoleKeys: []string{"Key"},
|
|
|
|
}
|
|
|
|
data, _ := json.Marshal(user)
|
|
|
|
events := []*es_models.Event{
|
|
|
|
&es_models.Event{AggregateID: "AggregateID", Sequence: 1, Type: model.UserGrantAdded, Data: data},
|
|
|
|
&es_models.Event{AggregateID: "AggregateID", Sequence: 1, Type: model.UserGrantDeactivated},
|
|
|
|
}
|
|
|
|
mockEs := mock.NewMockEventstore(ctrl)
|
|
|
|
mockEs.EXPECT().FilterEvents(gomock.Any(), gomock.Any()).Return(events, nil)
|
|
|
|
mockEs.EXPECT().AggregateCreator().Return(es_models.NewAggregateCreator("TEST"))
|
|
|
|
mockEs.EXPECT().PushAggregates(gomock.Any(), gomock.Any()).Return(nil)
|
|
|
|
return GetMockedEventstore(ctrl, mockEs)
|
|
|
|
}
|
|
|
|
|
|
|
|
func GetMockManipulateUserGrantNoEvents(ctrl *gomock.Controller) *UserGrantEventStore {
|
|
|
|
events := []*es_models.Event{}
|
|
|
|
mockEs := mock.NewMockEventstore(ctrl)
|
|
|
|
mockEs.EXPECT().FilterEvents(gomock.Any(), gomock.Any()).Return(events, nil)
|
|
|
|
mockEs.EXPECT().AggregateCreator().Return(es_models.NewAggregateCreator("TEST"))
|
|
|
|
mockEs.EXPECT().PushAggregates(gomock.Any(), gomock.Any()).Return(nil)
|
|
|
|
return GetMockedEventstore(ctrl, mockEs)
|
|
|
|
}
|