view src/testdir/test_sound.vim @ 17016:b99b33f8475b v8.1.1508

patch 8.1.1508: sound keeps failing on Travis commit https://github.com/vim/vim/commit/541faf7a73448bbed9e8d129f2001fb34e39b7b1 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Jun 9 15:35:41 2019 +0200 patch 8.1.1508: sound keeps failing on Travis Problem: Sound keeps failing on Travis. Solution: Throw a skipped exception in the test.
author Bram Moolenaar <Bram@vim.org>
date Sun, 09 Jun 2019 15:45:05 +0200
parents 353ed7ef78df
children 905e1b154058
line wrap: on
line source

" 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)
  if id1 == 0
    throw 'Skipped: playing a sound is not working'
  endif

  " 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