Make ldap functions package local and remove a superfluous comment.

This commit is contained in:
Daniel Swärd
2023-02-10 15:12:19 +01:00
parent 82e312ac2f
commit 2338515444
7 changed files with 12 additions and 77 deletions
@@ -7,8 +7,6 @@ import (
godata "github.com/CiscoM31/godata"
ldap "github.com/go-ldap/ldap/v3"
libregraph "github.com/owncloud/libre-graph-api-go"
mock "github.com/stretchr/testify/mock"
@@ -109,29 +107,6 @@ func (_m *Backend) DeleteUser(ctx context.Context, nameOrID string) error {
return r0
}
// ExpandLDAPAttributeEntries provides a mock function with given fields: ctx, e, attribute
func (_m *Backend) ExpandLDAPAttributeEntries(ctx context.Context, e *ldap.Entry, attribute string) ([]*ldap.Entry, error) {
ret := _m.Called(ctx, e, attribute)
var r0 []*ldap.Entry
if rf, ok := ret.Get(0).(func(context.Context, *ldap.Entry, string) []*ldap.Entry); ok {
r0 = rf(ctx, e, attribute)
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).([]*ldap.Entry)
}
}
var r1 error
if rf, ok := ret.Get(1).(func(context.Context, *ldap.Entry, string) error); ok {
r1 = rf(ctx, e, attribute)
} else {
r1 = ret.Error(1)
}
return r0, r1
}
// GetGroup provides a mock function with given fields: ctx, nameOrID, queryParam
func (_m *Backend) GetGroup(ctx context.Context, nameOrID string, queryParam url.Values) (*libregraph.Group, error) {
ret := _m.Called(ctx, nameOrID, queryParam)
@@ -247,29 +222,6 @@ func (_m *Backend) GetUsers(ctx context.Context, oreq *godata.GoDataRequest) ([]
return r0, r1
}
// RemoveEntryByDNAndAttributeFromEntry provides a mock function with given fields: entry, dn, attribute
func (_m *Backend) RemoveEntryByDNAndAttributeFromEntry(entry *ldap.Entry, dn string, attribute string) (*ldap.ModifyRequest, error) {
ret := _m.Called(entry, dn, attribute)
var r0 *ldap.ModifyRequest
if rf, ok := ret.Get(0).(func(*ldap.Entry, string, string) *ldap.ModifyRequest); ok {
r0 = rf(entry, dn, attribute)
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).(*ldap.ModifyRequest)
}
}
var r1 error
if rf, ok := ret.Get(1).(func(*ldap.Entry, string, string) error); ok {
r1 = rf(entry, dn, attribute)
} else {
r1 = ret.Error(1)
}
return r0, r1
}
// RemoveMemberFromGroup provides a mock function with given fields: ctx, groupID, memberID
func (_m *Backend) RemoveMemberFromGroup(ctx context.Context, groupID string, memberID string) error {
ret := _m.Called(ctx, groupID, memberID)