Integration with keycloak, add client
[nonrtric/plt/sme.git] / capifcore / internal / keycloak / mocks / AccessManagement.go
index 9ac2179..59b914a 100644 (file)
@@ -12,23 +12,37 @@ type AccessManagement struct {
        mock.Mock
 }
 
-// GetToken provides a mock function with given fields: clientId, clientPassword, scope, realm
-func (_m *AccessManagement) GetToken(clientId string, clientPassword string, scope string, realm string) (keycloak.Jwttoken, error) {
-       ret := _m.Called(clientId, clientPassword, scope, realm)
+// AddClient provides a mock function with given fields: clientId, realm
+func (_m *AccessManagement) AddClient(clientId string, realm string) error {
+       ret := _m.Called(clientId, realm)
+
+       var r0 error
+       if rf, ok := ret.Get(0).(func(string, string) error); ok {
+               r0 = rf(clientId, realm)
+       } else {
+               r0 = ret.Error(0)
+       }
+
+       return r0
+}
+
+// GetToken provides a mock function with given fields: realm, data
+func (_m *AccessManagement) GetToken(realm string, data map[string][]string) (keycloak.Jwttoken, error) {
+       ret := _m.Called(realm, data)
 
        var r0 keycloak.Jwttoken
        var r1 error
-       if rf, ok := ret.Get(0).(func(string, string, string, string) (keycloak.Jwttoken, error)); ok {
-               return rf(clientId, clientPassword, scope, realm)
+       if rf, ok := ret.Get(0).(func(string, map[string][]string) (keycloak.Jwttoken, error)); ok {
+               return rf(realm, data)
        }
-       if rf, ok := ret.Get(0).(func(string, string, string, string) keycloak.Jwttoken); ok {
-               r0 = rf(clientId, clientPassword, scope, realm)
+       if rf, ok := ret.Get(0).(func(string, map[string][]string) keycloak.Jwttoken); ok {
+               r0 = rf(realm, data)
        } else {
                r0 = ret.Get(0).(keycloak.Jwttoken)
        }
 
-       if rf, ok := ret.Get(1).(func(string, string, string, string) error); ok {
-               r1 = rf(clientId, clientPassword, scope, realm)
+       if rf, ok := ret.Get(1).(func(string, map[string][]string) error); ok {
+               r1 = rf(realm, data)
        } else {
                r1 = ret.Error(1)
        }