forked from cloudfoundry/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fake_repository.go
82 lines (72 loc) · 2.32 KB
/
fake_repository.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
// This file was generated by counterfeiter
package appfilesfakes
import (
"sync"
"code.cloudfoundry.org/cli/cf/api/appfiles"
)
type FakeRepository struct {
ListFilesStub func(appGUID string, instance int, path string) (files string, apiErr error)
listFilesMutex sync.RWMutex
listFilesArgsForCall []struct {
appGUID string
instance int
path string
}
listFilesReturns struct {
result1 string
result2 error
}
invocations map[string][][]interface{}
invocationsMutex sync.RWMutex
}
func (fake *FakeRepository) ListFiles(appGUID string, instance int, path string) (files string, apiErr error) {
fake.listFilesMutex.Lock()
fake.listFilesArgsForCall = append(fake.listFilesArgsForCall, struct {
appGUID string
instance int
path string
}{appGUID, instance, path})
fake.recordInvocation("ListFiles", []interface{}{appGUID, instance, path})
fake.listFilesMutex.Unlock()
if fake.ListFilesStub != nil {
return fake.ListFilesStub(appGUID, instance, path)
} else {
return fake.listFilesReturns.result1, fake.listFilesReturns.result2
}
}
func (fake *FakeRepository) ListFilesCallCount() int {
fake.listFilesMutex.RLock()
defer fake.listFilesMutex.RUnlock()
return len(fake.listFilesArgsForCall)
}
func (fake *FakeRepository) ListFilesArgsForCall(i int) (string, int, string) {
fake.listFilesMutex.RLock()
defer fake.listFilesMutex.RUnlock()
return fake.listFilesArgsForCall[i].appGUID, fake.listFilesArgsForCall[i].instance, fake.listFilesArgsForCall[i].path
}
func (fake *FakeRepository) ListFilesReturns(result1 string, result2 error) {
fake.ListFilesStub = nil
fake.listFilesReturns = struct {
result1 string
result2 error
}{result1, result2}
}
func (fake *FakeRepository) Invocations() map[string][][]interface{} {
fake.invocationsMutex.RLock()
defer fake.invocationsMutex.RUnlock()
fake.listFilesMutex.RLock()
defer fake.listFilesMutex.RUnlock()
return fake.invocations
}
func (fake *FakeRepository) recordInvocation(key string, args []interface{}) {
fake.invocationsMutex.Lock()
defer fake.invocationsMutex.Unlock()
if fake.invocations == nil {
fake.invocations = map[string][][]interface{}{}
}
if fake.invocations[key] == nil {
fake.invocations[key] = [][]interface{}{}
}
fake.invocations[key] = append(fake.invocations[key], args)
}
var _ appfiles.Repository = new(FakeRepository)