Source file test_one_at_a_time.ml
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
open! Core
open! Import
open Proc
open Bonsai.For_open
module One_at_a_time = Bonsai_extra.One_at_a_time
let create_handle component =
Handle.create
(module struct
type t = (int -> int One_at_a_time.Response.t Effect.t) * One_at_a_time.Status.t
type incoming = int
let view (_, status) = Sexp.to_string ([%sexp_of: One_at_a_time.Status.t] status)
let incoming (f, _) i =
let%bind.Effect result = f i in
Effect.print_s [%message (result : int One_at_a_time.Response.t)]
;;
end)
component
;;
let%expect_test {| One_at_a_time.effect only runs one instance of an effect at a time |} =
let qrt = Effect.For_testing.Query_response_tracker.create () in
let respond i =
Effect.For_testing.Query_response_tracker.maybe_respond qrt ~f:(fun _ -> Respond i)
in
let component =
One_at_a_time.effect (Value.return (Effect.For_testing.of_query_response_tracker qrt))
in
let handle = create_handle component in
Handle.show handle;
[%expect {| Idle |}];
Handle.do_actions handle [ 0 ];
Handle.show handle;
[%expect {| Busy |}];
Handle.do_actions handle [ 0 ];
Handle.show handle;
[%expect {|
(result Busy)
Busy |}];
respond 0;
Handle.show handle;
[%expect {|
(result (Result 0))
Idle |}];
Handle.do_actions handle [ 0 ];
Handle.show handle;
[%expect {| Busy |}];
respond 1;
Handle.do_actions handle [ 0 ];
Handle.show handle;
[%expect {|
(result (Result 1))
Busy |}];
respond 2;
Handle.do_actions handle [ 0; 0 ];
Handle.show handle;
[%expect {|
(result (Result 2))
(result Busy)
Busy |}];
respond 3;
respond 4;
Handle.show handle;
[%expect {|
(result (Result 3))
Idle |}]
;;
let%expect_test {| Double [One_at_a_time.effect] application should be consistent between the two invocations. |}
=
let qrt = Effect.For_testing.Query_response_tracker.create () in
let respond i =
Effect.For_testing.Query_response_tracker.maybe_respond qrt ~f:(fun () -> Respond i)
in
let component =
let open Bonsai.Let_syntax in
let%sub effect, status1 =
One_at_a_time.effect
(Value.return (Effect.For_testing.of_query_response_tracker qrt))
in
let%sub effect, status2 = One_at_a_time.effect effect in
let%arr status1 = status1
and status2 = status2
and effect = effect in
effect, status1, status2
in
let handle =
Handle.create
(module struct
type t =
(unit -> int One_at_a_time.Response.t One_at_a_time.Response.t Ui_effect.t)
* One_at_a_time.Status.t
* One_at_a_time.Status.t
type incoming = unit
let view (_, status1, status2) =
Sexp.to_string_hum
[%message
(status1 : One_at_a_time.Status.t) (status2 : One_at_a_time.Status.t)]
;;
let incoming (effect, _, _) () =
let%bind.Effect result = effect () in
Effect.print_s
[%message (result : int One_at_a_time.Response.t One_at_a_time.Response.t)]
;;
end)
component
in
Handle.show handle;
[%expect {| ((status1 Idle) (status2 Idle)) |}];
Handle.do_actions handle [ () ];
Handle.show handle;
[%expect {|
((status1 Busy) (status2 Busy)) |}];
Handle.do_actions handle [ () ];
Handle.show handle;
[%expect {|
(result Busy)
((status1 Busy) (status2 Busy)) |}];
respond 0;
Handle.show handle;
[%expect {|
(result (Result (Result 0)))
((status1 Idle) (status2 Idle)) |}];
Handle.do_actions handle [ () ];
Handle.show handle;
[%expect {|
((status1 Busy) (status2 Busy)) |}];
respond 1;
Handle.do_actions handle [ () ];
Handle.show handle;
[%expect
{|
(result Busy)
(result (Result (Result 1)))
((status1 Idle) (status2 Idle)) |}];
Handle.do_actions handle [ (); () ];
respond 2;
Handle.show handle;
[%expect {|
(result Busy)
((status1 Busy) (status2 Busy)) |}];
respond 3;
respond 4;
Handle.show handle;
[%expect {|
(result (Result (Result 3)))
((status1 Idle) (status2 Idle)) |}]
;;
let%expect_test {| One_at_a_time.effect releases lock after effect throws exception |} =
let qrt = Effect.For_testing.Query_response_tracker.create () in
let complete () =
Effect.For_testing.Query_response_tracker.maybe_respond qrt ~f:(fun _ -> Respond ())
in
let delay_effect = Effect.For_testing.of_query_response_tracker qrt in
let fail_effect x =
if x = 0
then failwith "error while computing effect"
else (
let%bind.Effect () = delay_effect () in
Effect.of_sync_fun
(fun x -> if x = 1 then failwith "error while running effect" else x)
x)
in
let component = One_at_a_time.effect (Value.return fail_effect) in
let handle = create_handle component in
Handle.show handle;
[%expect {| Idle |}];
Handle.do_actions handle [ 0 ];
Expect_test_helpers_core.require_does_raise [%here] (fun () -> Handle.show handle);
[%expect {| (Failure "error while computing effect") |}];
Handle.show handle;
[%expect {| Idle |}];
Handle.do_actions handle [ 1 ];
Handle.show handle;
[%expect {| Busy |}];
Expect_test_helpers_core.require_does_raise [%here] (fun () -> complete ());
[%expect {|
(Failure "error while running effect") |}];
Handle.show handle;
[%expect {| Busy |}]
;;