2002-07-23 16:04:11 -03:00
|
|
|
from test.test_support import verbose, findfile, TestFailed, TestSkipped
|
1997-01-07 17:05:29 -04:00
|
|
|
import sunaudiodev
|
|
|
|
import os
|
|
|
|
|
2001-04-14 00:10:12 -03:00
|
|
|
try:
|
|
|
|
audiodev = os.environ["AUDIODEV"]
|
|
|
|
except KeyError:
|
|
|
|
audiodev = "/dev/audio"
|
|
|
|
|
|
|
|
if not os.path.exists(audiodev):
|
|
|
|
raise TestSkipped("no audio device found!")
|
|
|
|
|
1997-01-07 17:05:29 -04:00
|
|
|
def play_sound_file(path):
|
|
|
|
fp = open(path, 'r')
|
|
|
|
data = fp.read()
|
|
|
|
fp.close()
|
1997-01-13 16:53:46 -04:00
|
|
|
try:
|
1998-03-26 15:42:58 -04:00
|
|
|
a = sunaudiodev.open('w')
|
1997-01-13 16:53:46 -04:00
|
|
|
except sunaudiodev.error, msg:
|
1998-03-26 15:42:58 -04:00
|
|
|
raise TestFailed, msg
|
1997-01-13 16:53:46 -04:00
|
|
|
else:
|
1998-03-26 15:42:58 -04:00
|
|
|
a.write(data)
|
|
|
|
a.close()
|
1997-01-07 17:05:29 -04:00
|
|
|
|
|
|
|
def test():
|
1997-01-13 16:34:44 -04:00
|
|
|
play_sound_file(findfile('audiotest.au'))
|
1997-01-07 17:05:29 -04:00
|
|
|
|
|
|
|
test()
|