summaryrefslogtreecommitdiff
path: root/src/testdir/test_timers.vim
blob: 0969377c87b97524bde24e1cdb0cf218cad0bef2 (plain)
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
" Test for timers

if !has('timers')
  finish
endif

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

func MyHandlerWithLists(lists, timer)
  let x = string(a:lists)
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

func Test_retain_partial()
  call timer_start(100, function('MyHandlerWithLists', [['a']]))
  call test_garbagecollect_now()
  sleep 200m
endfunc
" vim: ts=2 sw=0 et