-
Notifications
You must be signed in to change notification settings - Fork 115
/
fake_factory.go
86 lines (69 loc) · 1.86 KB
/
fake_factory.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
package fakes
import (
"errors"
"fmt"
boshaction "github.com/cloudfoundry/bosh-agent/agent/action"
)
type FakeFactory struct {
registeredActions map[string]*TestAction
registeredActionErrs map[string]error
}
func NewFakeFactory() *FakeFactory {
return &FakeFactory{
registeredActions: make(map[string]*TestAction),
registeredActionErrs: make(map[string]error),
}
}
func (f *FakeFactory) Create(method string) (boshaction.Action, error) {
if err := f.registeredActionErrs[method]; err != nil {
return nil, err
}
if action := f.registeredActions[method]; action != nil {
return action, nil
}
return nil, errors.New("Action not found")
}
func (f *FakeFactory) RegisterAction(method string, action *TestAction) {
if a := f.registeredActions[method]; a != nil {
panic(fmt.Sprintf("Action is already registered: %v", a))
}
f.registeredActions[method] = action
}
func (f *FakeFactory) RegisterActionErr(method string, err error) {
if e := f.registeredActionErrs[method]; e != nil {
panic(fmt.Sprintf("Action err is already registered: %v", e))
}
f.registeredActionErrs[method] = err
}
type TestAction struct {
Asynchronous bool
Persistent bool
Loggable bool
ResumeValue interface{}
ResumeErr error
Resumed bool
Canceled bool
CancelErr error
ProtocolVersion boshaction.ProtocolVersion
}
func (a *TestAction) IsAsynchronous(protocolVersion boshaction.ProtocolVersion) bool {
a.ProtocolVersion = protocolVersion
return a.Asynchronous
}
func (a *TestAction) IsPersistent() bool {
return a.Persistent
}
func (a *TestAction) IsLoggable() bool {
return a.Loggable
}
func (a *TestAction) Run(payload []byte) (interface{}, error) {
return nil, nil
}
func (a *TestAction) Resume() (interface{}, error) {
a.Resumed = true
return a.ResumeValue, a.ResumeErr
}
func (a *TestAction) Cancel() error {
a.Canceled = true
return a.CancelErr
}