mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 11:04:25 +00:00
c2cb84cd24
* backup new protoc plugin * backup * session * backup * initial implementation * change to specific events * implement tests * cleanup * refactor: use new protoc plugin for api v2 * change package * simplify code * cleanup * cleanup * fix merge * start queries * fix tests * improve returned values * add token to projection * tests * test db map * update query * permission checks * fix tests and linting * rework token creation * i18n * refactor token check and fix tests * session to PB test * request to query tests * cleanup proto * test user check * add comment * simplify database map type * Update docs/docs/guides/integrate/access-zitadel-system-api.md Co-authored-by: Tim Möhlmann <tim+github@zitadel.com> * fix test * cleanup * docs --------- Co-authored-by: Tim Möhlmann <tim+github@zitadel.com>
34 lines
740 B
Go
34 lines
740 B
Go
package mock
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/golang/mock/gomock"
|
|
)
|
|
|
|
func NewIDGenerator(t *testing.T) *MockGenerator {
|
|
m := NewMockGenerator(gomock.NewController(t))
|
|
m.EXPECT().Next().Return("1", nil)
|
|
return m
|
|
}
|
|
|
|
func NewIDGeneratorExpectIDs(t *testing.T, ids ...string) *MockGenerator {
|
|
m := NewMockGenerator(gomock.NewController(t))
|
|
for _, id := range ids {
|
|
m.EXPECT().Next().Return(id, nil)
|
|
}
|
|
return m
|
|
}
|
|
|
|
func ExpectID(t *testing.T, id string) *MockGenerator {
|
|
m := NewMockGenerator(gomock.NewController(t))
|
|
m.EXPECT().Next().Return(id, nil)
|
|
return m
|
|
}
|
|
|
|
func NewIDGeneratorExpectError(t *testing.T, err error) *MockGenerator {
|
|
m := NewMockGenerator(gomock.NewController(t))
|
|
m.EXPECT().Next().Return("", err)
|
|
return m
|
|
}
|