aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/testdir/test_timers.vim
blob: abf4e43ec331016bed1912b1eefaca8d74b31b40 (plain) (blame)
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
" Test for timers

if !has('timers')
  finish
endif

func MyHandler(timer)
  let s:val += 1
endfunc

func Test_oneshot()
  let s:val = 0
  let timer = timer_start(50, 'MyHandler')
  sleep 200m
  call assert_equal(1, s:val)
endfunc

func Test_repeat_three()
  let s:val = 0
  let timer = timer_start(50, 'MyHandler', {'repeat': 3})
  sleep 500m
  call assert_equal(3, s:val)
endfunc

func Test_repeat_many()
  let s:val = 0
  let timer = timer_start(50, 'MyHandler', {'repeat': -1})
  sleep 200m
  call timer_stop(timer)
  call assert_true(s:val > 1)
  call assert_true(s:val < 5)
endfunc

" func Test_with_partial_callback()
"   let s:val = 0
"   let s:meow = {}
"   function s:meow.bite(...)
"     let s:val += 1
"   endfunction

"   call timer_start(50, s:meow.bite)
"   sleep 200m
"   call assert_equal(1, s:val)
" endfunc
" vim: ts=2 sw=0 et