-
Notifications
You must be signed in to change notification settings - Fork 0
/
fake_groups.go
55 lines (43 loc) · 1.49 KB
/
fake_groups.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
package testclient
import (
kapi "k8s.io/kubernetes/pkg/api"
ktestclient "k8s.io/kubernetes/pkg/client/unversioned/testclient"
userapi "github.com/openshift/origin/pkg/user/api"
)
// FakeGroups implements GroupsInterface. Meant to be embedded into a struct to get a default
// implementation. This makes faking out just the methods you want to test easier.
type FakeGroups struct {
Fake *Fake
}
func (c *FakeGroups) Get(name string) (*userapi.Group, error) {
obj, err := c.Fake.Invokes(ktestclient.NewRootGetAction("groups", name), &userapi.Group{})
if obj == nil {
return nil, err
}
return obj.(*userapi.Group), err
}
func (c *FakeGroups) List(opts kapi.ListOptions) (*userapi.GroupList, error) {
obj, err := c.Fake.Invokes(ktestclient.NewRootListAction("groups", opts), &userapi.GroupList{})
if obj == nil {
return nil, err
}
return obj.(*userapi.GroupList), err
}
func (c *FakeGroups) Create(inObj *userapi.Group) (*userapi.Group, error) {
obj, err := c.Fake.Invokes(ktestclient.NewRootCreateAction("groups", inObj), inObj)
if obj == nil {
return nil, err
}
return obj.(*userapi.Group), err
}
func (c *FakeGroups) Update(inObj *userapi.Group) (*userapi.Group, error) {
obj, err := c.Fake.Invokes(ktestclient.NewRootUpdateAction("groups", inObj), inObj)
if obj == nil {
return nil, err
}
return obj.(*userapi.Group), err
}
func (c *FakeGroups) Delete(name string) error {
_, err := c.Fake.Invokes(ktestclient.NewRootDeleteAction("groups", name), &userapi.Group{})
return err
}