mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 19:14:23 +00:00
2bd255106a
* fix: org tests * fix: org tests * fix: user grant test * fix: user grant test * fix: project and project role test * fix: project grant test * fix: project grant test * fix: project member, grant member, app changed tests * fix: application tests * fix: application tests * fix: add oidc app test * fix: add oidc app test * fix: add api keys test * fix: iam policies * fix: iam and org member tests * fix: clock skew validation * revert crypto changes * fix: tests * fix project grant member commands Co-authored-by: Livio Amstutz <livio.a@gmail.com>
28 lines
571 B
Go
28 lines
571 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
|
|
}
|