forked from gitlabhq/gitlab-runner
-
Notifications
You must be signed in to change notification settings - Fork 1
/
mock_Machine.go
62 lines (45 loc) · 1.06 KB
/
mock_Machine.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
package docker_helpers
import "github.com/stretchr/testify/mock"
type MockMachine struct {
mock.Mock
}
func (m *MockMachine) Create(driver string, name string, opts ...string) error {
ret := m.Called(driver, name, opts)
r0 := ret.Error(0)
return r0
}
func (m *MockMachine) Provision(name string) error {
ret := m.Called(name)
r0 := ret.Error(0)
return r0
}
func (m *MockMachine) Remove(name string) error {
ret := m.Called(name)
r0 := ret.Error(0)
return r0
}
func (m *MockMachine) List(nodeFilter string) ([]string, error) {
ret := m.Called(nodeFilter)
var r0 []string
if ret.Get(0) != nil {
r0 = ret.Get(0).([]string)
}
r1 := ret.Error(1)
return r0, r1
}
func (m *MockMachine) Exist(name string) bool {
ret := m.Called(name)
r0 := ret.Get(0).(bool)
return r0
}
func (m *MockMachine) CanConnect(name string) bool {
ret := m.Called(name)
r0 := ret.Get(0).(bool)
return r0
}
func (m *MockMachine) Credentials(name string) (DockerCredentials, error) {
ret := m.Called(name)
r0 := ret.Get(0).(DockerCredentials)
r1 := ret.Error(1)
return r0, r1
}