-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathaction.advancetime_test.go
175 lines (151 loc) · 4.25 KB
/
action.advancetime_test.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
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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
package testkit_test
import (
"fmt"
"time"
"github.com/dogmatiq/configkit"
"github.com/dogmatiq/dogma"
. "github.com/dogmatiq/enginekit/enginetest/stubs"
. "github.com/dogmatiq/testkit"
"github.com/dogmatiq/testkit/engine"
"github.com/dogmatiq/testkit/fact"
"github.com/dogmatiq/testkit/internal/testingmock"
g "github.com/onsi/ginkgo/v2"
gm "github.com/onsi/gomega"
. "github.com/onsi/gomega/gstruct"
)
var _ = g.Describe("func AdvanceTime()", func() {
var (
app *ApplicationStub
t *testingmock.T
startTime time.Time
buf *fact.Buffer
test *Test
)
g.BeforeEach(func() {
app = &ApplicationStub{
ConfigureFunc: func(c dogma.ApplicationConfigurer) {
c.Identity("<app>", "140ca29b-7a05-4f26-968b-6285255e6d8a")
},
}
t = &testingmock.T{}
startTime = time.Now()
buf = &fact.Buffer{}
test = Begin(
t,
app,
StartTimeAt(startTime),
WithUnsafeOperationOptions(
engine.WithObserver(buf),
),
)
})
g.It("retains the virtual time between calls", func() {
test.Prepare(
AdvanceTime(ByDuration(1*time.Second)),
AdvanceTime(ByDuration(1*time.Second)),
)
gm.Expect(buf.Facts()).To(gm.ContainElement(
fact.TickCycleBegun{
EngineTime: startTime.Add(2 * time.Second),
EnabledHandlerTypes: map[configkit.HandlerType]bool{
configkit.AggregateHandlerType: true,
configkit.IntegrationHandlerType: false,
configkit.ProcessHandlerType: true,
configkit.ProjectionHandlerType: false,
},
EnabledHandlers: map[string]bool{},
},
))
})
g.It("fails the test if time is reversed", func() {
t.FailSilently = true
target := startTime.Add(-1 * time.Second)
test.Prepare(
AdvanceTime(
ToTime(target),
),
)
gm.Expect(t.Failed()).To(gm.BeTrue())
gm.Expect(t.Logs).To(gm.ContainElement(
fmt.Sprintf(
"adjusting the clock to %s would reverse time",
target.Format(time.RFC3339),
),
))
})
g.It("panics if the adjustment is nil", func() {
gm.Expect(func() {
AdvanceTime(nil)
}).To(gm.PanicWith("AdvanceTime(<nil>): adjustment must not be nil"))
})
g.It("captures the location that the action was created", func() {
act := advanceTime(ByDuration(10 * time.Second))
gm.Expect(act.Location()).To(MatchAllFields(
Fields{
"Func": gm.Equal("github.com/dogmatiq/testkit_test.advanceTime"),
"File": gm.HaveSuffix("/action.linenumber_test.go"),
"Line": gm.Equal(50),
},
))
})
g.When("passed a ToTime() adjustment", func() {
targetTime := time.Date(2100, 1, 2, 3, 4, 5, 6, time.UTC)
g.It("advances the clock to the provided time", func() {
test.Prepare(
AdvanceTime(ToTime(targetTime)),
)
gm.Expect(buf.Facts()).To(gm.ContainElement(
fact.TickCycleBegun{
EngineTime: targetTime,
EnabledHandlerTypes: map[configkit.HandlerType]bool{
configkit.AggregateHandlerType: true,
configkit.IntegrationHandlerType: false,
configkit.ProcessHandlerType: true,
configkit.ProjectionHandlerType: false,
},
EnabledHandlers: map[string]bool{},
},
))
})
g.It("produces the expected caption", func() {
test.Prepare(
AdvanceTime(ToTime(targetTime)),
)
gm.Expect(t.Logs).To(gm.ContainElement(
"--- advancing time to 2100-01-02T03:04:05Z ---",
))
})
})
g.When("passed a ByDuration() adjustment", func() {
g.It("advances the clock then performs a tick", func() {
test.Prepare(
AdvanceTime(ByDuration(3 * time.Second)),
)
gm.Expect(buf.Facts()).To(gm.ContainElement(
fact.TickCycleBegun{
EngineTime: startTime.Add(3 * time.Second),
EnabledHandlerTypes: map[configkit.HandlerType]bool{
configkit.AggregateHandlerType: true,
configkit.IntegrationHandlerType: false,
configkit.ProcessHandlerType: true,
configkit.ProjectionHandlerType: false,
},
EnabledHandlers: map[string]bool{},
},
))
})
g.It("produces the expected caption", func() {
test.Prepare(
AdvanceTime(ByDuration(3 * time.Second)),
)
gm.Expect(t.Logs).To(gm.ContainElement(
"--- advancing time by 3s ---",
))
})
g.It("panics if the duration is negative", func() {
gm.Expect(func() {
ByDuration(-1 * time.Second)
}).To(gm.PanicWith("ByDuration(-1s): duration must not be negative"))
})
})
})