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
|
(* This file is part of Lwt, released under the MIT license. See LICENSE.md for
details, or visit https://github.com/ocsigen/lwt/blob/master/LICENSE.md. *)
open Test
open Lwt.Infix
(* Note: due to the time delays in the tests of this suite, it could really
benefit from an option to run tests in parallel. *)
let suite = suite "Lwt_timeout" [
test "basic" begin fun () ->
let p, r = Lwt.wait () in
let start_time = Unix.gettimeofday () in
let timeout =
Lwt_timeout.create 1 (fun () ->
let delta = Unix.gettimeofday () -. start_time in
Lwt.wakeup_later r delta)
in
Lwt_timeout.start timeout;
p >|= fun delta ->
instrument (delta >= 2. && delta < 3.)
"Lwt_timeout: basic: %f %f" start_time delta
(* The above is a bug of the current implementation: it always gives too
long a timeout. *)
end;
test "not started" begin fun () ->
let p, r = Lwt.wait () in
Lwt_timeout.create 1 (fun () ->
Lwt.wakeup_later r false)
|> ignore;
Lwt.async (fun () ->
Lwt_unix.sleep 3. >|= fun () ->
Lwt.wakeup_later r true);
p
end;
test "double start" begin fun () ->
let completions = ref 0 in
let timeout =
Lwt_timeout.create 1 (fun () ->
completions := !completions + 1)
in
Lwt_timeout.start timeout;
Lwt_timeout.start timeout;
Lwt_unix.sleep 3. >|= fun () ->
instrument (!completions = 1) "Lwt_timeout: double start: %i" !completions
end;
test "restart" begin fun () ->
let p, r = Lwt.wait () in
let completions = ref 0 in
(* A dummy timeout, just to set up the reference. *)
let timeout = ref (Lwt_timeout.create 1 ignore) in
timeout :=
Lwt_timeout.create 1 (fun () ->
completions := !completions + 1;
if !completions < 2 then
Lwt_timeout.start !timeout
else
Lwt.wakeup_later r true);
Lwt_timeout.start !timeout;
p
end;
test "stop" begin fun () ->
let p, r = Lwt.wait () in
let timeout =
Lwt_timeout.create 1 (fun () ->
Lwt.wakeup_later r false)
in
Lwt_timeout.start timeout;
Lwt_timeout.stop timeout;
Lwt.async (fun () ->
Lwt_unix.sleep 3. >|= fun () ->
Lwt.wakeup_later r true);
p
end;
test "stop when not stopped" begin fun () ->
Lwt_timeout.create 1 ignore
|> Lwt_timeout.stop;
Lwt.return_true
end;
test "invalid delay" begin fun () ->
try
ignore (Lwt_timeout.create 0 ignore);
Lwt.return_false
with Invalid_argument _ ->
Lwt.return_true
end;
test "change" begin fun () ->
let p, r = Lwt.wait () in
let start_time = Unix.gettimeofday () in
let timeout =
Lwt_timeout.create 5 (fun () ->
let delta = Unix.gettimeofday () -. start_time in
Lwt.wakeup_later r delta)
in
Lwt_timeout.change timeout 1;
Lwt_timeout.start timeout;
p >|= fun delta ->
instrument (delta >= 1.9 && delta < 3.1)
"Lwt_timeout: change: %f %f" start_time delta
end;
test "change does not start" begin fun () ->
let p, r = Lwt.wait () in
let timeout =
Lwt_timeout.create 1 (fun () ->
Lwt.wakeup_later r false)
in
Lwt_timeout.change timeout 1;
Lwt.async (fun () ->
Lwt_unix.sleep 3. >|= fun () ->
Lwt.wakeup_later r true);
p
end;
test "change after start" begin fun () ->
let p, r = Lwt.wait () in
let start_time = Unix.gettimeofday () in
let timeout =
Lwt_timeout.create 5 (fun () ->
let delta = Unix.gettimeofday () -. start_time in
Lwt.wakeup_later r delta)
in
Lwt_timeout.start timeout;
Lwt_timeout.change timeout 1;
p >|= fun delta ->
instrument (delta >= 1.9 && delta < 3.1)
"Lwt_timeout: change after start: %f %f" start_time delta
end;
test "change: invalid delay" begin fun () ->
let timeout = (Lwt_timeout.create 1 ignore) in
try
Lwt_timeout.change timeout 0;
Lwt.return_false
with Invalid_argument _ ->
Lwt.return_true
end;
test ~sequential:true "exception in action" begin fun () ->
let p, r = Lwt.wait () in
Test.with_async_exception_hook
(fun exn ->
match exn with
| Exit -> Lwt.wakeup_later r true
| _ -> raise exn)
(fun () ->
Lwt_timeout.create 1 (fun () -> raise Exit)
|> Lwt_timeout.start;
p)
end;
test "set_exn_handler" begin fun () ->
let p, r = Lwt.wait () in
Lwt_timeout.set_exn_handler (fun exn ->
match exn with
| Exit -> Lwt.wakeup_later r true
| _ -> raise exn);
Lwt_timeout.create 1 (fun () -> raise Exit)
|> Lwt_timeout.start;
p >|= fun result ->
Lwt_timeout.set_exn_handler (fun exn ->
!Lwt.async_exception_hook exn);
result
end;
test "two" begin fun () ->
let p1, r1 = Lwt.wait () in
let p2, r2 = Lwt.wait () in
let start_time = Unix.gettimeofday () in
Lwt_timeout.create 1 (fun () ->
let delta = Unix.gettimeofday () -. start_time in
Lwt.wakeup r1 delta)
|> Lwt_timeout.start;
Lwt_timeout.create 2 (fun () ->
let delta = Unix.gettimeofday () -. start_time in
Lwt.wakeup r2 delta)
|> Lwt_timeout.start;
p1 >>= fun delta1 ->
p2 >|= fun delta2 ->
instrument (delta1 >= 1.9 && delta1 < 3. && delta2 >= 2.9 && delta2 < 4.)
"Lwt_timeout: two: %f %f %f" start_time delta1 delta2
end;
test "simultaneous" begin fun () ->
let p1, r1 = Lwt.wait () in
let p2, r2 = Lwt.wait () in
let start_time = Unix.gettimeofday () in
Lwt_timeout.create 1 (fun () ->
let delta = Unix.gettimeofday () -. start_time in
Lwt.wakeup r1 delta)
|> Lwt_timeout.start;
Lwt_timeout.create 1 (fun () ->
let delta = Unix.gettimeofday () -. start_time in
Lwt.wakeup r2 delta)
|> Lwt_timeout.start;
p1 >>= fun delta1 ->
p2 >|= fun delta2 ->
instrument (delta1 >= 1. && delta1 < 2.6 && delta2 >= 1. && delta2 < 2.6)
"Lwt_timeout: simultaneous: %f %f %f" start_time delta1 delta2
end;
test "two, first stopped" begin fun () ->
let p1, r1 = Lwt.wait () in
let p2, r2 = Lwt.wait () in
let start_time = Unix.gettimeofday () in
let timeout1 =
Lwt_timeout.create 1 (fun () ->
Lwt.wakeup r1 false)
in
Lwt_timeout.start timeout1;
Lwt_timeout.create 2 (fun () ->
let delta = Unix.gettimeofday () -. start_time in
Lwt.wakeup r2 delta)
|> Lwt_timeout.start;
Lwt_timeout.stop timeout1;
Lwt.async (fun () ->
Lwt_unix.sleep 3. >|= fun () ->
Lwt.wakeup r1 true);
p1 >>= fun timeout1_not_fired ->
p2 >|= fun delta2 ->
instrument (timeout1_not_fired && delta2 >= 1.5 && delta2 < 3.5)
"Lwt_timeout: two, first stopped: %b %f %f"
timeout1_not_fired start_time delta2
end;
]
|