Source file test_buffer.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
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
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
open Core
open Async
open Vcaml
open Vcaml_test_helpers
let with_event_printing ~f =
with_client (fun client ->
let subscriber = Buffer.Subscriber.create client ~on_parse_error:`Raise in
let%bind events =
Buffer.Subscriber.subscribe subscriber [%here] ~buffer:Current ~send_buffer:true
in
let events = Or_error.ok_exn events in
Async.don't_wait_for
@@ Async.Pipe.iter events ~f:(fun event ->
print_s [%message (event : Buffer.Event.t)];
Deferred.unit);
f client)
;;
let%expect_test "initial event received" =
let%bind () = with_event_printing ~f:(() |> Deferred.Or_error.return |> Fn.const) in
[%expect
{|
(event
(Lines (buffer 1) (changedtick (2)) (firstline 0) (lastline -1)
(linedata ("")) (more false))) |}];
return ()
;;
let%expect_test "events for some edits" =
let%bind () =
with_event_printing ~f:(fun client ->
let open Async.Deferred.Or_error.Let_syntax in
let feedkeys_call =
Nvim.feedkeys (`Escape_k_special_bytes "ohello, world!") ~mode:"nx"
in
let%bind () = feedkeys_call |> run_join [%here] client in
return ())
in
[%expect
{|
(event
(Lines (buffer 1) (changedtick (2)) (firstline 0) (lastline -1)
(linedata ("")) (more false)))
(event
(Lines (buffer 1) (changedtick (3)) (firstline 1) (lastline 1)
(linedata ("")) (more false)))
(event
(Lines (buffer 1) (changedtick (4)) (firstline 1) (lastline 2)
(linedata ("hello, world!")) (more false))) |}];
return ()
;;
let%expect_test "feedkeys, get_lines, events for those edits" =
let%bind () =
with_event_printing ~f:(fun client ->
let open Deferred.Or_error.Let_syntax in
let%bind () =
Nvim.feedkeys (`Escape_k_special_bytes "ihello") ~mode:"nx"
|> run_join [%here] client
in
let%bind () =
Nvim.feedkeys (`Escape_k_special_bytes "oworld") ~mode:"nx"
|> run_join [%here] client
in
let%map lines =
Buffer.get_lines Current ~start:0 ~end_:(-1) ~strict_indexing:true
|> run_join [%here] client
in
print_s [%message (lines : string list)])
in
[%expect
{|
(event
(Lines (buffer 1) (changedtick (2)) (firstline 0) (lastline -1)
(linedata ("")) (more false)))
(event
(Lines (buffer 1) (changedtick (3)) (firstline 0) (lastline 1)
(linedata (hello)) (more false)))
(event
(Lines (buffer 1) (changedtick (4)) (firstline 1) (lastline 1)
(linedata ("")) (more false)))
(event
(Lines (buffer 1) (changedtick (5)) (firstline 1) (lastline 2)
(linedata (world)) (more false)))
(lines (hello world))|}];
return ()
;;
let%expect_test "set_lines, events for those edits" =
let%bind () =
with_event_printing ~f:(fun client ->
let open Deferred.Or_error.Let_syntax in
let command =
let%map.Api_call _set_lines =
Buffer.set_lines
Current
~start:0
~end_:(-1)
~strict_indexing:true
~replacement:[ "this"; "is"; "an"; "edit" ]
and get_lines =
Buffer.get_lines Current ~start:0 ~end_:(-1) ~strict_indexing:true
in
get_lines
in
let%bind lines = run_join [%here] client command in
print_s [%message (lines : string list)];
return ())
in
[%expect
{|
(event
(Lines (buffer 1) (changedtick (2)) (firstline 0) (lastline -1)
(linedata ("")) (more false)))
(event
(Lines (buffer 1) (changedtick (3)) (firstline 0) (lastline 1)
(linedata (this is an edit)) (more false)))
(lines (this is an edit))|}];
return ()
;;
let%expect_test "create, set_name, get_name" =
let%bind () =
with_client (fun client ->
let open Deferred.Or_error.Let_syntax in
let%bind buffer =
Buffer.create ~listed:true ~scratch:false |> run_join [%here] client
in
let%bind () =
Buffer.set_name (Id buffer) ~name:"foobar" |> run_join [%here] client
in
let%bind name = Buffer.get_name (Id buffer) |> run_join [%here] client in
print_s [%message (buffer : Buffer.t) (name : string)];
return ())
in
[%expect {| ((buffer 2) (name ${TMPDIR}/foobar))|}];
return ()
;;
let%expect_test "find_by_name_or_create no name prefixes" =
let%bind () =
with_client (fun client ->
let open Deferred.Or_error.Let_syntax in
let%bind original_buf = Nvim.get_current_buf |> run_join [%here] client in
let original_buf_name = "original_buffer_name" in
let%bind () =
Buffer.set_name (Id original_buf) ~name:original_buf_name
|> run_join [%here] client
in
let%bind new_buf =
Buffer.find_by_name_or_create ~name:"new_buffer_name" |> run_join [%here] client
in
let%bind found_buf =
Buffer.find_by_name_or_create ~name:original_buf_name |> run_join [%here] client
in
print_s
[%message (original_buf : Buffer.t) (new_buf : Buffer.t) (found_buf : Buffer.t)];
return ())
in
[%expect {|
((original_buf 1) (new_buf 2) (found_buf 1))|}];
return ()
;;
let%expect_test "find_by_name_or_create name prefixes" =
let%bind () =
with_client (fun client ->
let open Deferred.Or_error.Let_syntax in
let%bind new_buf =
Buffer.find_by_name_or_create ~name:"test_buffer_name" |> run_join [%here] client
in
let%bind new_buf_prefix_name =
Buffer.find_by_name_or_create ~name:"test_buffer" |> run_join [%here] client
in
print_s [%message (new_buf : Buffer.t) (new_buf_prefix_name : Buffer.t)];
return ())
in
[%expect {| ((new_buf 2) (new_buf_prefix_name 3)) |}];
return ()
;;
let%expect_test "find_by_name_or_create buffers with weird characters" =
let%bind () =
with_client (fun client ->
let open Deferred.Or_error.Let_syntax in
let%bind buf_with_whitespace =
Buffer.find_by_name_or_create ~name:" " |> run_join [%here] client
in
let%bind buf_with_slash =
Buffer.find_by_name_or_create ~name:"\\" |> run_join [%here] client
in
let%bind buf_with_quotes =
Buffer.find_by_name_or_create ~name:"\"\"" |> run_join [%here] client
in
print_s
[%message
(buf_with_whitespace : Buffer.t)
(buf_with_slash : Buffer.t)
(buf_with_quotes : Buffer.t)];
return ())
in
[%expect {|
((buf_with_whitespace 2) (buf_with_slash 3) (buf_with_quotes 4)) |}];
return ()
;;
let%expect_test "get_option and set_option" =
Backtrace.elide := true;
let%bind () =
with_client (fun client ->
let open Deferred.Or_error.Let_syntax in
let print_modifiability () =
Buffer.get_option Current ~name:"modifiable" ~type_:Boolean
|> run_join [%here] client
>>| fun modifiable -> print_s [%message (modifiable : bool)]
in
let%bind () = print_modifiability () in
let%bind.Deferred modify_success =
Buffer.set_lines
Current
~start:0
~end_:(-1)
~strict_indexing:false
~replacement:[ "foo!" ]
|> run_join [%here] client
in
print_s [%message (modify_success : unit Or_error.t)];
let%bind () =
Buffer.set_option
Current
~scope:`Local
~name:"modifiable"
~type_:Boolean
~value:false
|> run_join [%here] client
in
let%bind () = print_modifiability () in
let%bind.Deferred modify_error =
Buffer.set_lines
Current
~start:0
~end_:(-1)
~strict_indexing:false
~replacement:[ "bar!" ]
|> run_join [%here] client
in
print_s [%message (modify_error : unit Or_error.t)];
return ())
in
[%expect
{|
(modifiable true)
(modify_success (Ok ()))
(modifiable false)
(modify_error
(Error
(("Called from" lib/vcaml/test/bindings/test_buffer.ml:LINE:COL)
("Vim returned error" "Buffer is not 'modifiable'" (error_type Exception))))) |}];
return ()
;;
let%expect_test "get_mark" =
let%bind () =
with_client (fun client ->
let open Deferred.Or_error.Let_syntax in
let%bind escaped_keys =
Nvim.replace_termcodes_and_keycodes "ihello<Esc>mma\nworld!<Esc>"
|> run_join [%here] client
in
let%bind () =
Nvim.feedkeys (`Already_escaped escaped_keys) ~mode:"n" |> run_join [%here] client
in
let%bind mark = Buffer.get_mark Current ~sym:'m' |> run_join [%here] client in
print_s [%sexp (mark : Mark.t)];
return ())
in
[%expect {| ((sym m) (pos ((row 1) (col 4)))) |}];
return ()
;;
let%expect_test "Extmark indexing" =
with_client (fun client ->
let open Deferred.Or_error.Let_syntax in
let%bind () =
Nvim.Untested.set_option "syntax" ~type_:String ~value:"on"
|> run_join [%here] client
in
let%bind escaped_keys =
Nvim.replace_termcodes_and_keycodes "ihello\nworld!<Esc>" |> run_join [%here] client
in
let%bind () =
Nvim.feedkeys (`Already_escaped escaped_keys) ~mode:"n" |> run_join [%here] client
in
let%bind namespace = Namespace.Untested.create () |> run_join [%here] client in
let%bind extmark =
Buffer.Untested.create_extmark
Current
~namespace
~start_inclusive:{ row = 0; col = 4 }
~end_exclusive:{ row = 1; col = 1 }
()
|> run_join [%here] client
in
let%bind result =
Buffer.Untested.get_extmark_with_details extmark |> run_join [%here] client
in
print_s [%sexp (result : (Position.t * Msgpack.t String.Map.t) option)];
[%expect
{|
((((row 0) (col 4))
((end_col (Integer 1)) (end_right_gravity (Boolean false))
(end_row (Integer 1)) (right_gravity (Boolean true))))) |}];
let%bind result =
Buffer.Untested.all_extmarks
Current
~namespace
~start_inclusive:{ row = 0; col = 0 }
~end_inclusive:{ row = 0; col = 3 }
()
|> run_join [%here] client
in
print_s [%sexp (result : (_ * Position.t) list)];
[%expect {| () |}];
let%bind result =
Buffer.Untested.all_extmarks
Current
~namespace
~start_inclusive:{ row = 1; col = 1 }
~end_inclusive:{ row = 2; col = 0 }
()
|> run_join [%here] client
in
print_s [%sexp (result : (_ * Position.t) list)];
[%expect {| () |}];
let%bind result =
Buffer.Untested.all_extmarks
Current
~namespace
~start_inclusive:{ row = 0; col = 0 }
~end_inclusive:{ row = 2; col = 0 }
()
|> run_join [%here] client
in
print_s [%sexp (result : (_ * Position.t) list)];
[%expect {| ((_ ((row 0) (col 4)))) |}];
return ())
;;