-
-
Notifications
You must be signed in to change notification settings - Fork 160
Expand file tree
/
Copy pathdriver_spec.rb
More file actions
220 lines (195 loc) · 5.44 KB
/
driver_spec.rb
File metadata and controls
220 lines (195 loc) · 5.44 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
# frozen_string_literal: true
RSpec.describe Mutant::Parallel::Driver, mutant_expression: 'Mutant::Parallel::Driver*' do
let(:active_jobs) { [] }
let(:sink_status) { instance_double(Object) }
let(:thread_a) { instance_double(Thread, alive?: true) }
let(:thread_b) { instance_double(Thread, alive?: true) }
let(:threads) { [thread_a, thread_b] }
let(:timeout) { instance_double(Float) }
let(:var_active_jobs) { instance_double(Mutant::Variable::IVar, :active_jobs) }
let(:var_final) { instance_double(Mutant::Variable::IVar, :final) }
let(:var_running) { instance_double(Mutant::Variable::MVar, :running) }
let(:var_sink) { instance_double(Mutant::Variable::IVar, :sink) }
let(:var_source) { instance_double(Mutant::Variable::IVar, :source) }
let(:workers) { [worker_a, worker_b] }
let(:worker_a) { instance_double(Mutant::Parallel::Worker, :a) }
let(:worker_b) { instance_double(Mutant::Parallel::Worker, :b) }
let(:sink) do
instance_double(
Mutant::Parallel::Sink,
status: sink_status
)
end
subject do
described_class.new(
threads:,
var_active_jobs:,
var_final:,
var_running:,
var_sink:,
var_source:,
workers:
)
end
describe '#stop' do
def apply
subject.stop
end
let(:raw_expectations) do
[
{
receiver: thread_a,
selector: :kill
},
{
receiver: thread_b,
selector: :kill
}
]
end
it 'returns self' do
verify_events do
expect(apply).to eql(subject)
end
end
end
describe '#wait_timeout' do
def apply
subject.wait_timeout(timeout)
end
shared_examples 'returns expected status' do
it 'returns expected status' do
verify_events do
expect(apply).to eql(expected_status)
end
end
it 'returns frozen copy of active jobs' do
verify_events do
returned_active_jobs = apply.active_jobs
expect(returned_active_jobs).to_not be(active_jobs)
expect(returned_active_jobs.frozen?).to be(true)
end
end
end
shared_examples 'when done' do
context 'when done' do
before do
allow(thread_a).to receive_messages(alive?: false)
allow(thread_b).to receive_messages(alive?: false)
end
let(:raw_expectations) do
[
*super(),
{
receiver: worker_a,
selector: :signal
},
{
receiver: worker_b,
selector: :signal
},
{
receiver: worker_a,
selector: :join
},
{
receiver: worker_b,
selector: :join
},
{
receiver: thread_a,
selector: :join
},
{
receiver: thread_b,
selector: :join
}
]
end
let(:expected_status) do
Mutant::Parallel::Status.new(
active_jobs:,
done: true,
payload: sink_status
)
end
include_examples 'returns expected status'
end
end
context 'when stopped' do
def apply
subject.stop
super
end
let(:raw_expectations) do
[
{
receiver: thread_a,
selector: :kill
},
{
receiver: thread_b,
selector: :kill
},
{
receiver: var_active_jobs,
selector: :with,
reaction: { yields: [active_jobs] }
},
{
receiver: var_sink,
selector: :with,
reaction: { yields: [sink] }
}
]
end
include_examples 'when done'
end
context 'when not stopped' do
let(:raw_expectations) do
[
{
receiver: var_final,
selector: :take_timeout,
arguments: [timeout],
reaction: { return: Mutant::Variable.const_get(:Result)::Timeout.new }
},
{
receiver: var_active_jobs,
selector: :with,
reaction: { yields: [active_jobs] }
},
{
receiver: var_sink,
selector: :with,
reaction: { yields: [sink] }
}
]
end
context 'when not done' do
let(:expected_status) do
Mutant::Parallel::Status.new(
active_jobs:,
done: false,
payload: sink_status
)
end
include_examples 'returns expected status'
end
context 'when partially done' do
before do
allow(thread_a).to receive_messages(alive?: false)
end
let(:expected_status) do
Mutant::Parallel::Status.new(
active_jobs:,
done: false,
payload: sink_status
)
end
include_examples 'returns expected status'
end
include_examples 'when done'
end
end
end