summaryrefslogtreecommitdiff
path: root/src/testdir/test_sound.vim
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2019-06-09 13:43:51 +0200
committerBram Moolenaar <Bram@vim.org>2019-06-09 13:43:51 +0200
commit427f5b66ce0abe19daed9291b1693f6e8aae6552 (patch)
treedabb3cc81a9c6b47416b38ae835b79f69df2b61e /src/testdir/test_sound.vim
parent260addf7955f3695d3daef9dcf840952af9fd851 (diff)
downloadvim-git-427f5b66ce0abe19daed9291b1693f6e8aae6552.tar.gz
patch 8.1.1502: cannot play any soundv8.1.1502
Problem: Cannot play any sound. Solution: Use libcanberra if available. Add sound functions.
Diffstat (limited to 'src/testdir/test_sound.vim')
-rw-r--r--src/testdir/test_sound.vim45
1 files changed, 45 insertions, 0 deletions
diff --git a/src/testdir/test_sound.vim b/src/testdir/test_sound.vim
new file mode 100644
index 000000000..54c6a29db
--- /dev/null
+++ b/src/testdir/test_sound.vim
@@ -0,0 +1,45 @@
+" Tests for the sound feature
+
+if !has('sound')
+ throw 'Skipped: sound feature not available'
+endif
+
+func PlayCallback(id, result)
+ let g:id = a:id
+ let g:result = a:result
+endfunc
+
+func Test_play_event()
+ let id = sound_playevent('bell', 'PlayCallback')
+ if id == 0
+ throw 'Skipped: bell event not available'
+ endif
+ " Stop it quickly, avoid annoying the user.
+ sleep 20m
+ call sound_stop(id)
+ sleep 20m
+ call assert_equal(id, g:id)
+ call assert_equal(1, g:result) " sound was aborted
+endfunc
+
+func Test_play_silent()
+ let fname = fnamemodify('silent.wav', '%p')
+
+ " play without callback
+ let id1 = sound_playfile(fname)
+ call assert_true(id1 > 0)
+
+ " play until the end
+ let id2 = sound_playfile(fname, 'PlayCallback')
+ call assert_true(id2 > 0)
+ sleep 500m
+ call assert_equal(id2, g:id)
+ call assert_equal(0, g:result)
+
+ let id2 = sound_playfile(fname, 'PlayCallback')
+ call assert_true(id2 > 0)
+ sleep 20m
+ call sound_stopall()
+ call assert_equal(id2, g:id)
+ call assert_equal(1, g:result)
+endfunc