-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoption_with_gc_test.go
More file actions
128 lines (120 loc) · 3.24 KB
/
option_with_gc_test.go
File metadata and controls
128 lines (120 loc) · 3.24 KB
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
package cache
import (
"testing"
"time"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/mock"
"github.com/stretchr/testify/require"
"github.com/thewizardplusplus/go-cache/gc"
"github.com/thewizardplusplus/go-cache/models"
hashmap "github.com/thewizardplusplus/go-hashmap"
)
func Test_newConfigWithGC(test *testing.T) {
type args struct {
options []OptionWithGC
}
for _, data := range []struct {
name string
args args
wantStorage hashmap.Storage
wantClockTime time.Time
wantGCType gc.GC
wantGCPeriod time.Duration
}{
{
name: "with the default config",
args: args{
options: nil,
},
wantStorage: hashmap.NewConcurrentHashMap(),
wantClockTime: time.Now(),
wantGCType: gc.PartialGC{},
wantGCPeriod: 100 * time.Millisecond,
},
{
name: "with the set storage",
args: args{
options: []OptionWithGC{WithGCAndStorage(new(MockStorage))},
},
wantStorage: new(MockStorage),
wantClockTime: time.Now(),
wantGCType: gc.PartialGC{},
wantGCPeriod: 100 * time.Millisecond,
},
{
name: "with the set clock",
args: args{
options: []OptionWithGC{WithGCAndClock(clock)},
},
wantStorage: hashmap.NewConcurrentHashMap(),
wantClockTime: clock(),
wantGCType: gc.PartialGC{},
wantGCPeriod: 100 * time.Millisecond,
},
{
name: "with the set GC factory",
args: args{
options: []OptionWithGC{
WithGCAndGCFactory(
func(storage hashmap.Storage, clock models.Clock) gc.GC {
return new(MockGC)
},
),
},
},
wantStorage: hashmap.NewConcurrentHashMap(),
wantClockTime: time.Now(),
wantGCType: new(MockGC),
wantGCPeriod: 100 * time.Millisecond,
},
{
name: "with the set GC period",
args: args{
options: []OptionWithGC{WithGCAndGCPeriod(23 * time.Second)},
},
wantStorage: hashmap.NewConcurrentHashMap(),
wantClockTime: time.Now(),
wantGCType: gc.PartialGC{},
wantGCPeriod: 23 * time.Second,
},
{
name: "with the set config",
args: args{
options: []OptionWithGC{
WithGCAndStorage(new(MockStorage)),
WithGCAndClock(clock),
WithGCAndGCFactory(
func(storage hashmap.Storage, clock models.Clock) gc.GC {
return new(MockGC)
},
),
WithGCAndGCPeriod(23 * time.Second),
},
},
wantStorage: new(MockStorage),
wantClockTime: clock(),
wantGCType: new(MockGC),
wantGCPeriod: 23 * time.Second,
},
} {
test.Run(data.name, func(test *testing.T) {
got := newConfigWithGC(data.args.options)
_, ok := got.storage.(interface {
AssertExpectations(assert.TestingT) bool // nolint: staticcheck
})
if ok {
mock.AssertExpectationsForObjects(test, got.storage)
}
assert.Equal(test, data.wantStorage, got.storage)
assert.Equal(test, data.wantGCPeriod, got.gcPeriod)
// don't use the reflect.Value.Pointer() method for checks below;
// see details:
// * https://golang.org/pkg/reflect/#Value.Pointer
// * https://stackoverflow.com/a/9644797
require.NotNil(test, got.clock)
assert.WithinDuration(test, data.wantClockTime, got.clock(), time.Hour)
require.NotNil(test, got.gcFactory)
assert.IsType(test, data.wantGCType, got.gcFactory(got.storage, got.clock))
})
}
}