Skip to content

Commit 82a6238

Browse files
arihant2mathyouknowone
authored andcommitted
add wave at 3.13.2
Signed-off-by: Ashwin Naren <arihant2math@gmail.com>
1 parent fbaeecc commit 82a6238

File tree

2 files changed

+890
-0
lines changed

2 files changed

+890
-0
lines changed

Lib/test/test_wave.py

+227
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,227 @@
1+
import unittest
2+
from test import audiotests
3+
from test import support
4+
import io
5+
import struct
6+
import sys
7+
import wave
8+
9+
10+
class WaveTest(audiotests.AudioWriteTests,
11+
audiotests.AudioTestsWithSourceFile):
12+
module = wave
13+
14+
15+
class WavePCM8Test(WaveTest, unittest.TestCase):
16+
sndfilename = 'pluck-pcm8.wav'
17+
sndfilenframes = 3307
18+
nchannels = 2
19+
sampwidth = 1
20+
framerate = 11025
21+
nframes = 48
22+
comptype = 'NONE'
23+
compname = 'not compressed'
24+
frames = bytes.fromhex("""\
25+
827F CB80 B184 0088 4B86 C883 3F81 837E 387A 3473 A96B 9A66 \
26+
6D64 4662 8E60 6F60 D762 7B68 936F 5877 177B 757C 887B 5F7B \
27+
917A BE7B 3C7C E67F 4F84 C389 418E D192 6E97 0296 FF94 0092 \
28+
C98E D28D 6F8F 4E8F 648C E38A 888A AB8B D18E 0B91 368E C48A \
29+
""")
30+
31+
32+
class WavePCM16Test(WaveTest, unittest.TestCase):
33+
sndfilename = 'pluck-pcm16.wav'
34+
sndfilenframes = 3307
35+
nchannels = 2
36+
sampwidth = 2
37+
framerate = 11025
38+
nframes = 48
39+
comptype = 'NONE'
40+
compname = 'not compressed'
41+
frames = bytes.fromhex("""\
42+
022EFFEA 4B5C00F9 311404EF 80DC0843 CBDF06B2 48AA03F3 BFE701B2 036BFE7C \
43+
B857FA3E B4B2F34F 2999EBCA 1A5FE6D7 EDFCE491 C626E279 0E05E0B8 EF27E02D \
44+
5754E275 FB31E843 1373EF89 D827F72C 978BFB7A F5F7FC11 0866FB9C DF30FB42 \
45+
117FFA36 3EE4FB5D BC75FCB6 66D5FF5F CF16040E 43220978 C1BC0EC8 511F12A4 \
46+
EEDF1755 82061666 7FFF1446 80001296 499C0EB2 52BA0DB9 EFB70F5C CE400FBC \
47+
E4B50CEB 63440A5A 08CA0A1F 2BBA0B0B 51460E47 8BCB113C B6F50EEA 44150A59 \
48+
""")
49+
if sys.byteorder != 'big':
50+
frames = wave._byteswap(frames, 2)
51+
52+
53+
class WavePCM24Test(WaveTest, unittest.TestCase):
54+
sndfilename = 'pluck-pcm24.wav'
55+
sndfilenframes = 3307
56+
nchannels = 2
57+
sampwidth = 3
58+
framerate = 11025
59+
nframes = 48
60+
comptype = 'NONE'
61+
compname = 'not compressed'
62+
frames = bytes.fromhex("""\
63+
022D65FFEB9D 4B5A0F00FA54 3113C304EE2B 80DCD6084303 \
64+
CBDEC006B261 48A99803F2F8 BFE82401B07D 036BFBFE7B5D \
65+
B85756FA3EC9 B4B055F3502B 299830EBCB62 1A5CA7E6D99A \
66+
EDFA3EE491BD C625EBE27884 0E05A9E0B6CF EF2929E02922 \
67+
5758D8E27067 FB3557E83E16 1377BFEF8402 D82C5BF7272A \
68+
978F16FB7745 F5F865FC1013 086635FB9C4E DF30FCFB40EE \
69+
117FE0FA3438 3EE6B8FB5AC3 BC77A3FCB2F4 66D6DAFF5F32 \
70+
CF13B9041275 431D69097A8C C1BB600EC74E 5120B912A2BA \
71+
EEDF641754C0 8207001664B7 7FFFFF14453F 8000001294E6 \
72+
499C1B0EB3B2 52B73E0DBCA0 EFB2B20F5FD8 CE3CDB0FBE12 \
73+
E4B49C0CEA2D 6344A80A5A7C 08C8FE0A1FFE 2BB9860B0A0E \
74+
51486F0E44E1 8BCC64113B05 B6F4EC0EEB36 4413170A5B48 \
75+
""")
76+
if sys.byteorder != 'big':
77+
frames = wave._byteswap(frames, 3)
78+
79+
80+
class WavePCM24ExtTest(WaveTest, unittest.TestCase):
81+
sndfilename = 'pluck-pcm24-ext.wav'
82+
sndfilenframes = 3307
83+
nchannels = 2
84+
sampwidth = 3
85+
framerate = 11025
86+
nframes = 48
87+
comptype = 'NONE'
88+
compname = 'not compressed'
89+
frames = bytes.fromhex("""\
90+
022D65FFEB9D 4B5A0F00FA54 3113C304EE2B 80DCD6084303 \
91+
CBDEC006B261 48A99803F2F8 BFE82401B07D 036BFBFE7B5D \
92+
B85756FA3EC9 B4B055F3502B 299830EBCB62 1A5CA7E6D99A \
93+
EDFA3EE491BD C625EBE27884 0E05A9E0B6CF EF2929E02922 \
94+
5758D8E27067 FB3557E83E16 1377BFEF8402 D82C5BF7272A \
95+
978F16FB7745 F5F865FC1013 086635FB9C4E DF30FCFB40EE \
96+
117FE0FA3438 3EE6B8FB5AC3 BC77A3FCB2F4 66D6DAFF5F32 \
97+
CF13B9041275 431D69097A8C C1BB600EC74E 5120B912A2BA \
98+
EEDF641754C0 8207001664B7 7FFFFF14453F 8000001294E6 \
99+
499C1B0EB3B2 52B73E0DBCA0 EFB2B20F5FD8 CE3CDB0FBE12 \
100+
E4B49C0CEA2D 6344A80A5A7C 08C8FE0A1FFE 2BB9860B0A0E \
101+
51486F0E44E1 8BCC64113B05 B6F4EC0EEB36 4413170A5B48 \
102+
""")
103+
if sys.byteorder != 'big':
104+
frames = wave._byteswap(frames, 3)
105+
106+
107+
class WavePCM32Test(WaveTest, unittest.TestCase):
108+
sndfilename = 'pluck-pcm32.wav'
109+
sndfilenframes = 3307
110+
nchannels = 2
111+
sampwidth = 4
112+
framerate = 11025
113+
nframes = 48
114+
comptype = 'NONE'
115+
compname = 'not compressed'
116+
frames = bytes.fromhex("""\
117+
022D65BCFFEB9D92 4B5A0F8000FA549C 3113C34004EE2BC0 80DCD680084303E0 \
118+
CBDEC0C006B26140 48A9980003F2F8FC BFE8248001B07D92 036BFB60FE7B5D34 \
119+
B8575600FA3EC920 B4B05500F3502BC0 29983000EBCB6240 1A5CA7A0E6D99A60 \
120+
EDFA3E80E491BD40 C625EB80E27884A0 0E05A9A0E0B6CFE0 EF292940E0292280 \
121+
5758D800E2706700 FB3557D8E83E1640 1377BF00EF840280 D82C5B80F7272A80 \
122+
978F1600FB774560 F5F86510FC101364 086635A0FB9C4E20 DF30FC40FB40EE28 \
123+
117FE0A0FA3438B0 3EE6B840FB5AC3F0 BC77A380FCB2F454 66D6DA80FF5F32B4 \
124+
CF13B980041275B0 431D6980097A8C00 C1BB60000EC74E00 5120B98012A2BAA0 \
125+
EEDF64C01754C060 820700001664B780 7FFFFFFF14453F40 800000001294E6E0 \
126+
499C1B000EB3B270 52B73E000DBCA020 EFB2B2E00F5FD880 CE3CDB400FBE1270 \
127+
E4B49CC00CEA2D90 6344A8800A5A7CA0 08C8FE800A1FFEE0 2BB986C00B0A0E00 \
128+
51486F800E44E190 8BCC6480113B0580 B6F4EC000EEB3630 441317800A5B48A0 \
129+
""")
130+
if sys.byteorder != 'big':
131+
frames = wave._byteswap(frames, 4)
132+
133+
134+
class MiscTestCase(unittest.TestCase):
135+
def test__all__(self):
136+
not_exported = {'WAVE_FORMAT_PCM', 'WAVE_FORMAT_EXTENSIBLE', 'KSDATAFORMAT_SUBTYPE_PCM'}
137+
support.check__all__(self, wave, not_exported=not_exported)
138+
139+
def test_read_deprecations(self):
140+
filename = support.findfile('pluck-pcm8.wav', subdir='audiodata')
141+
with wave.open(filename) as reader:
142+
with self.assertWarns(DeprecationWarning):
143+
with self.assertRaises(wave.Error):
144+
reader.getmark('mark')
145+
with self.assertWarns(DeprecationWarning):
146+
self.assertIsNone(reader.getmarkers())
147+
148+
def test_write_deprecations(self):
149+
with io.BytesIO(b'') as tmpfile:
150+
with wave.open(tmpfile, 'wb') as writer:
151+
writer.setnchannels(1)
152+
writer.setsampwidth(1)
153+
writer.setframerate(1)
154+
writer.setcomptype('NONE', 'not compressed')
155+
156+
with self.assertWarns(DeprecationWarning):
157+
with self.assertRaises(wave.Error):
158+
writer.setmark(0, 0, 'mark')
159+
with self.assertWarns(DeprecationWarning):
160+
with self.assertRaises(wave.Error):
161+
writer.getmark('mark')
162+
with self.assertWarns(DeprecationWarning):
163+
self.assertIsNone(writer.getmarkers())
164+
165+
166+
class WaveLowLevelTest(unittest.TestCase):
167+
168+
def test_read_no_chunks(self):
169+
b = b'SPAM'
170+
with self.assertRaises(EOFError):
171+
wave.open(io.BytesIO(b))
172+
173+
def test_read_no_riff_chunk(self):
174+
b = b'SPAM' + struct.pack('<L', 0)
175+
with self.assertRaisesRegex(wave.Error,
176+
'file does not start with RIFF id'):
177+
wave.open(io.BytesIO(b))
178+
179+
def test_read_not_wave(self):
180+
b = b'RIFF' + struct.pack('<L', 4) + b'SPAM'
181+
with self.assertRaisesRegex(wave.Error,
182+
'not a WAVE file'):
183+
wave.open(io.BytesIO(b))
184+
185+
def test_read_no_fmt_no_data_chunk(self):
186+
b = b'RIFF' + struct.pack('<L', 4) + b'WAVE'
187+
with self.assertRaisesRegex(wave.Error,
188+
'fmt chunk and/or data chunk missing'):
189+
wave.open(io.BytesIO(b))
190+
191+
def test_read_no_data_chunk(self):
192+
b = b'RIFF' + struct.pack('<L', 28) + b'WAVE'
193+
b += b'fmt ' + struct.pack('<LHHLLHH', 16, 1, 1, 11025, 11025, 1, 8)
194+
with self.assertRaisesRegex(wave.Error,
195+
'fmt chunk and/or data chunk missing'):
196+
wave.open(io.BytesIO(b))
197+
198+
def test_read_no_fmt_chunk(self):
199+
b = b'RIFF' + struct.pack('<L', 12) + b'WAVE'
200+
b += b'data' + struct.pack('<L', 0)
201+
with self.assertRaisesRegex(wave.Error, 'data chunk before fmt chunk'):
202+
wave.open(io.BytesIO(b))
203+
204+
def test_read_wrong_form(self):
205+
b = b'RIFF' + struct.pack('<L', 36) + b'WAVE'
206+
b += b'fmt ' + struct.pack('<LHHLLHH', 16, 2, 1, 11025, 11025, 1, 1)
207+
b += b'data' + struct.pack('<L', 0)
208+
with self.assertRaisesRegex(wave.Error, 'unknown format: 2'):
209+
wave.open(io.BytesIO(b))
210+
211+
def test_read_wrong_number_of_channels(self):
212+
b = b'RIFF' + struct.pack('<L', 36) + b'WAVE'
213+
b += b'fmt ' + struct.pack('<LHHLLHH', 16, 1, 0, 11025, 11025, 1, 8)
214+
b += b'data' + struct.pack('<L', 0)
215+
with self.assertRaisesRegex(wave.Error, 'bad # of channels'):
216+
wave.open(io.BytesIO(b))
217+
218+
def test_read_wrong_sample_width(self):
219+
b = b'RIFF' + struct.pack('<L', 36) + b'WAVE'
220+
b += b'fmt ' + struct.pack('<LHHLLHH', 16, 1, 1, 11025, 11025, 1, 0)
221+
b += b'data' + struct.pack('<L', 0)
222+
with self.assertRaisesRegex(wave.Error, 'bad sample width'):
223+
wave.open(io.BytesIO(b))
224+
225+
226+
if __name__ == '__main__':
227+
unittest.main()

0 commit comments

Comments
 (0)