From: Guido van Rossum Date: Mon, 9 Oct 2000 20:05:59 +0000 (+0000) Subject: Simple test suite for wave.py by Jean-Claude Rimbault (with some X-Git-Tag: v2.0c1~12 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a00afc1ead7d0c09d9407ccf06b4bedf8eade0a5;p=thirdparty%2FPython%2Fcpython.git Simple test suite for wave.py by Jean-Claude Rimbault (with some changes to avoid using assert). --- diff --git a/Lib/test/test_wave.py b/Lib/test/test_wave.py new file mode 100644 index 000000000000..a7a5e24d4afb --- /dev/null +++ b/Lib/test/test_wave.py @@ -0,0 +1,34 @@ +from test_support import TestFailed +import os, tempfile +import wave + +def check(t, msg=None): + if not t: + raise TestFailed, msg + +nchannels = 2 +sampwidth = 2 +framerate = 8000 +nframes = 100 + +testfile = tempfile.mktemp() + +f = wave.open(testfile, 'w') +f.setnchannels(nchannels) +f.setsampwidth(sampwidth) +f.setframerate(framerate) +f.setnframes(nframes) +output = '\0' * nframes * nchannels * sampwidth +f.writeframes(output) +f.close() + +f = wave.open(testfile, 'r') +check(nchannels == f.getnchannels(), "nchannels") +check(sampwidth == f.getsampwidth(), "sampwidth") +check(framerate == f.getframerate(), "framerate") +check(nframes == f.getnframes(), "nframes") +input = f.readframes(nframes) +check(input == output, "data") +f.close() + +os.remove(testfile)