-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathqueue_model_test.go
More file actions
280 lines (228 loc) · 6.3 KB
/
queue_model_test.go
File metadata and controls
280 lines (228 loc) · 6.3 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
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
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
package queue
import (
"bytes"
"errors"
"fmt"
"io"
"io/ioutil"
"os"
"testing"
"github.com/leanovate/gopter"
"github.com/leanovate/gopter/commands"
"github.com/leanovate/gopter/gen"
"github.com/stretchr/testify/assert"
)
const testNamespace = "test"
func TestQueueModel(t *testing.T) {
assert := assert.New(t)
test := &commands.ProtoCommands{
NewSystemUnderTestFunc: func(initialState commands.State) commands.SystemUnderTest {
f, err := ioutil.TempFile("", "queue-*")
assert.Nil(err)
return &queueController{
f: f,
queue: NewQueue(f),
}
},
InitialStateGen: gen.Const(makeQueueModel()),
InitialPreConditionFunc: func(_ commands.State) bool {
return true
},
GenCommandFunc: func(st commands.State) gopter.Gen {
return gen.Weighted([]gen.WeightedGen{
{45, genEnqueueCommand},
{45, genDequeueCommand(st)},
{10, genCrashCommand},
})
},
}
properties := gopter.NewProperties(gopter.DefaultTestParameters())
properties.Property("model", commands.Prop(test))
properties.TestingRun(t)
}
func genEnqueueCommand(params *gopter.GenParameters) *gopter.GenResult {
return gopter.NewGenResult(
enqueueCommand{
x: []byte(gen.Identifier()(params).Result.(string)),
},
gopter.NoShrinker,
)
}
var genDequeueCommand = func(st commands.State) gopter.Gen {
return func(params *gopter.GenParameters) *gopter.GenResult {
return gopter.NewGenResult(
dequeueCommand{},
gopter.NoShrinker,
)
}
}
func genCrashCommand(params *gopter.GenParameters) *gopter.GenResult {
return gopter.NewGenResult(
crashCommand{},
gopter.NoShrinker,
)
}
type enqueueCommand struct {
x []byte
}
func (cmd enqueueCommand) Run(sut commands.SystemUnderTest) commands.Result {
q := sut.(*queueController).queue
err := q.Enqueue(cmd.x)
if err != nil {
return commands.Result(err)
}
return nil
}
func (cmd enqueueCommand) NextState(state commands.State) commands.State {
st := state.(queueModel).clone()
st.Enqueue(cmd.x)
return st
}
func (cmd enqueueCommand) PreCondition(_ commands.State) bool {
return true
}
func (cmd enqueueCommand) PostCondition(st commands.State, result commands.Result) *gopter.PropResult {
if e, ok := result.(error); ok {
return &gopter.PropResult{Error: e}
}
return gopter.NewPropResult(true, "")
}
func (cmd enqueueCommand) String() string {
return fmt.Sprintf("enqueue(%s)", string(cmd.x))
}
type dequeueCommand struct{}
func (cmd dequeueCommand) Run(sut commands.SystemUnderTest) commands.Result {
q := sut.(*queueController).queue
front, err := q.Dequeue()
if err != nil {
return commands.Result(err)
}
return front
}
func (cmd dequeueCommand) NextState(state commands.State) commands.State {
st := state.(queueModel).clone()
st.Dequeue()
return st
}
func (cmd dequeueCommand) PostCondition(st commands.State, result commands.Result) *gopter.PropResult {
if e, ok := result.(error); ok {
return &gopter.PropResult{Error: e}
}
got := result.([]byte)
want := st.(queueModel).lastDequeued
if !bytes.Equal(got, want) {
return gopter.NewPropResult(false, fmt.Sprintf("%s != %s", got, want))
}
return gopter.NewPropResult(true, "")
}
func (cmd dequeueCommand) PreCondition(st commands.State) bool {
return st.(queueModel).size() > 0
}
func (cmd dequeueCommand) String() string {
return "dequeue()"
}
type crashCommand struct{}
func (cmd crashCommand) Run(sut commands.SystemUnderTest) commands.Result {
qc := sut.(*queueController)
qc.crash()
return nil
}
func (cmd crashCommand) NextState(state commands.State) commands.State {
return state
}
func (cmd crashCommand) PostCondition(_ commands.State, result commands.Result) *gopter.PropResult {
if e, ok := result.(error); ok {
return &gopter.PropResult{Error: e}
}
return gopter.NewPropResult(true, "")
}
func (cmd crashCommand) PreCondition(st commands.State) bool {
return true
}
func (cmd crashCommand) String() string {
return "crash()"
}
var (
_ commands.Command = enqueueCommand{}
_ commands.Command = dequeueCommand{}
_ commands.Command = crashCommand{}
)
// queueController preserves the underlying reference to resources consumed by a
// Queue to enable commands that represent restarts, filesystem failures, etc.
type queueController struct {
f *os.File // file backing the queue
queue *Queue // queue under test
}
func (qc *queueController) crash() {
qc.queue = NewQueue(qc.f)
}
// queueModel is an in-memory model of a FIFO queue
type queueModel struct {
ls []string
lastDequeued []byte
}
func makeQueueModel() queueModel {
return queueModel{ls: make([]string, 0)}
}
func (mod *queueModel) Enqueue(x []byte) error {
mod.ls = append(mod.ls, string(x))
return nil
}
func (mod *queueModel) Dequeue() ([]byte, error) {
if len(mod.ls) <= 0 {
return nil, errors.New("cannot dequeue from empty queue")
}
front := mod.ls[0]
mod.lastDequeued = make([]byte, len(front))
copy(mod.lastDequeued, front)
mod.ls = mod.ls[1:]
return []byte(front), nil
}
func (mod queueModel) size() int {
return len(mod.ls)
}
func (mod queueModel) clone() queueModel {
cp := make([]string, len(mod.ls))
copy(cp, mod.ls)
return queueModel{ls: cp, lastDequeued: mod.lastDequeued}
}
// flakyReadWriteSeeker is a io.ReadWriteSeeker middleware that
// can be used to fail the invocation of Read, Write, or Seek
// methods and otherwise delegates to an underlying
type flakyReadWriteSeeker struct {
inner io.ReadWriteSeeker
readShouldFail bool
writeShouldFail bool
seekShouldFail bool
}
func newFlakyReadWriteSeeker(rws io.ReadWriteSeeker) *flakyReadWriteSeeker {
return &flakyReadWriteSeeker{inner: rws}
}
func (rws *flakyReadWriteSeeker) Read(b []byte) (int, error) {
if rws.readShouldFail {
return 0, errors.New("Oh no!")
}
return rws.inner.Read(b)
}
func (rws *flakyReadWriteSeeker) Write(b []byte) (int, error) {
if rws.writeShouldFail {
return 0, errors.New("Oh no!")
}
return rws.inner.Write(b)
}
func (rws *flakyReadWriteSeeker) Seek(offset int64, whence int) (int64, error) {
if rws.seekShouldFail {
return 0, errors.New("Oh no!")
}
return rws.inner.Seek(offset, whence)
}
func (rws *flakyReadWriteSeeker) failNextRead() {
rws.readShouldFail = true
}
func (rws *flakyReadWriteSeeker) failNextWrite() {
rws.writeShouldFail = true
}
func (rws *flakyReadWriteSeeker) failNextSeek() {
rws.seekShouldFail = true
}
var _ io.ReadWriteSeeker = new(flakyReadWriteSeeker)