forked from vmware-archive/atc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fake_pipeline_syncer.go
58 lines (50 loc) · 1.49 KB
/
fake_pipeline_syncer.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
// Code generated by counterfeiter. DO NOT EDIT.
package pipelinesfakes
import (
"sync"
"github.com/concourse/atc/pipelines"
)
type FakePipelineSyncer struct {
SyncStub func()
syncMutex sync.RWMutex
syncArgsForCall []struct{}
invocations map[string][][]interface{}
invocationsMutex sync.RWMutex
}
func (fake *FakePipelineSyncer) Sync() {
fake.syncMutex.Lock()
fake.syncArgsForCall = append(fake.syncArgsForCall, struct{}{})
fake.recordInvocation("Sync", []interface{}{})
fake.syncMutex.Unlock()
if fake.SyncStub != nil {
fake.SyncStub()
}
}
func (fake *FakePipelineSyncer) SyncCallCount() int {
fake.syncMutex.RLock()
defer fake.syncMutex.RUnlock()
return len(fake.syncArgsForCall)
}
func (fake *FakePipelineSyncer) Invocations() map[string][][]interface{} {
fake.invocationsMutex.RLock()
defer fake.invocationsMutex.RUnlock()
fake.syncMutex.RLock()
defer fake.syncMutex.RUnlock()
copiedInvocations := map[string][][]interface{}{}
for key, value := range fake.invocations {
copiedInvocations[key] = value
}
return copiedInvocations
}
func (fake *FakePipelineSyncer) 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 _ pipelines.PipelineSyncer = new(FakePipelineSyncer)