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
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
open Base
let () =
Printexc.register_printer @@ function
| Unix.Unix_error (error, _, _) -> Some (Unix.error_message error)
| _ -> None
let start_time = Unix.gettimeofday ()
module Scheduler : Test.SCHEDULER = struct
module S = Scheduler
type request = Run_test of {test_title : string}
type response = Test_result of Test.test_result
let internal_worker_error x =
Printf.ksprintf
(fun s ->
Log.error "internal error in worker: %s" s ;
exit 1)
x
let internal_scheduler_error x =
Printf.ksprintf
(fun s ->
Log.error "internal error in scheduler: %s" s ;
exit 1)
x
let encode_used_seed (seed : Test.used_seed) : S.Message.value =
match seed with Used_fixed -> Unit | Used_random seed -> Int seed
let decode_used_seed (value : S.Message.value) : Test.used_seed =
match value with
| Unit -> Used_fixed
| Int seed -> Used_random seed
| _ -> raise (S.Message.Failed_to_decode (value, "used_seed"))
let test_result_type : Test.test_result S.Message.typ =
let encode ({test_result; seed} : Test.test_result) : S.Message.value =
Block
[|
(match test_result with
| Successful -> Int 0
| Failed error_message -> String error_message
| Aborted -> Int 1);
encode_used_seed seed;
|]
in
let decode (value : S.Message.value) : Test.test_result =
let fail () = raise (S.Message.Failed_to_decode (value, "test_result")) in
match value with
| Block [|test_result; seed|] ->
{
test_result =
(match test_result with
| Int 0 -> Successful
| String error_message -> Failed error_message
| Int 1 -> Aborted
| _ -> fail ());
seed = decode_used_seed seed;
}
| _ -> fail ()
in
S.Message.typ ~encode ~decode
let run_test ?(temp_start = Temp.start) (test_title : string) :
Test.test_result =
match Test.get_test_by_title test_title with
| None ->
internal_worker_error
"scheduler requested to run test %S, but worker doesn't know about \
this test"
test_title
| Some test ->
let clean_up () =
Lwt.catch Process.clean_up @@ fun exn ->
Log.warn "Failed to clean up processes: %s" (Printexc.to_string exn) ;
unit
in
Lwt_main.run
@@ Test.run_one
~sleep:Lwt_unix.sleep
~clean_up
~temp_start
~temp_stop:Temp.stop
~temp_clean_up:Temp.clean_up
test
let msg_seed = S.Message.(register int) "Seed"
let add_task_for_request (Run_test {test_title})
(on_response : response -> unit) =
let term_timeout =
let global_timeout =
match Cli.Options.global_timeout with
| None -> None
| Some global_timeout ->
Some (max 0. (start_time +. global_timeout -. Unix.gettimeofday ()))
in
match (global_timeout, Cli.Options.test_timeout) with
| None, None -> None
| (Some _ as x), None | None, (Some _ as x) -> x
| Some a, Some b -> Some (min a b)
in
let kill_timeout =
match term_timeout with
| None -> None
| Some _ -> Some Cli.Options.cleanup_timeout
in
let warn_after_timeout_timer : S.Timer.t option ref = ref None in
let on_start _ctx =
let rec warn_after_timeout delay =
warn_after_timeout_timer :=
Some
( S.Timer.on_delay delay @@ fun () ->
Log.warn "Test is still running: %S" test_title ;
warn_after_timeout delay )
in
if Cli.Options.warn_after_timeout > 0. then
warn_after_timeout Cli.Options.warn_after_timeout
in
let random_seed = ref None in
let on_message _ctx message =
S.Message.match_with message msg_seed ~default:(fun () -> ())
@@ fun seed -> random_seed := Some seed
in
let on_finish result =
Option.iter S.Timer.cancel !warn_after_timeout_timer ;
let test_result : Test.test_result =
match result with
| Ok test_result -> test_result
| Error error_message ->
Log.error "%s" error_message ;
let seed : Test.used_seed =
match !random_seed with
| None -> Used_fixed
| Some seed -> Used_random seed
in
{test_result = Failed error_message; seed}
in
on_response (Test_result test_result)
in
let on_term_timeout () =
Log.error
"Sending SIGTERM to test which is taking too long: %S"
test_title
in
let on_kill_timeout () =
Log.error
"Sending SIGKILL to test which is taking too long to stop: %S"
test_title
in
S.add_task
?term_timeout
?kill_timeout
~on_term_timeout
~on_kill_timeout
~on_start
~on_message
~on_finish
test_result_type
@@ fun ctx ->
let temp_start () =
(match Test.current_test_seed_specification () with
| Fixed _ -> ()
| Random ->
S.Message.send_to_scheduler ctx msg_seed (Test.current_test_seed ())) ;
Temp.start ()
in
let test_result = run_test ~temp_start test_title in
Log.clear_error_context_queue () ;
test_result
let next_worker_id = ref 0
let current_worker_id = ref None
let run_multi_process
~(on_worker_available : unit -> (request * (response -> unit)) option)
~worker_count =
let old_sigint_behavior =
Sys.(signal sigint)
(Signal_handle
(fun _ ->
Sys.(set_signal sigint) Signal_default ;
S.stop ()))
in
let old_sigterm_behavior =
Sys.(signal sigterm) (Signal_handle (fun _ -> S.stop ()))
in
let on_empty_queue () =
match on_worker_available () with
| None -> ()
| Some (request, on_response) -> add_task_for_request request on_response
in
let on_worker_kill_timeout () =
Log.debug
"Send SIGKILL to worker which is still running despite not running any \
test"
in
let on_unexpected_worker_exit status =
Log.warn
"Worker %s while not running a test"
(S.show_process_status status)
in
let fork () =
let worker_id = !next_worker_id in
incr next_worker_id ;
let pid = Lwt_unix.fork () in
if pid = 0 then (
Sys.(set_signal sigint) old_sigint_behavior ;
Sys.(set_signal sigterm) old_sigterm_behavior ;
Temp.set_pid (Unix.getpid ()) ;
current_worker_id := Some !next_worker_id ;
Log.set_current_worker_id worker_id ;
Log.clear_error_context_queue () ;
Option.iter
(fun filename ->
let worker_filename =
Filename.(
concat
(dirname filename)
(remove_extension (basename filename)
^ "-" ^ string_of_int worker_id ^ extension filename))
in
Log.set_file worker_filename)
Cli.Logs.file) ;
pid
in
S.run
~worker_idle_timeout:Cli.Options.cleanup_timeout
~worker_kill_timeout:Cli.Options.cleanup_timeout
~on_worker_kill_timeout
~on_empty_queue
~on_unexpected_worker_exit
~fork
worker_count
let rec run_single_process ~on_worker_available =
Temp.set_pid (Unix.getpid ()) ;
match on_worker_available () with
| None -> ()
| Some (Run_test {test_title}, on_response) ->
let test_result = run_test test_title in
on_response (Test_result test_result) ;
run_single_process ~on_worker_available
let run ~on_worker_available ~worker_count continue =
(if worker_count = 1 then run_single_process ~on_worker_available
else
try run_multi_process ~on_worker_available ~worker_count
with exn -> internal_scheduler_error "%s" (Printexc.to_string exn)) ;
continue ()
let get_current_worker_id () = !current_worker_id
end
let run () = Test.run_with_scheduler (module Scheduler)