File size: 16,851 Bytes
7885a28 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 |
import os
import sys
from io import BytesIO
import threading
import numpy as np
from numpy.testing import (assert_equal, assert_, assert_array_equal,
break_cycles, suppress_warnings, IS_PYPY)
import pytest
from pytest import raises, warns
from scipy.io import wavfile
def datafile(fn):
return os.path.join(os.path.dirname(__file__), 'data', fn)
def test_read_1():
# 32-bit PCM (which uses extensible format)
for mmap in [False, True]:
filename = 'test-44100Hz-le-1ch-4bytes.wav'
rate, data = wavfile.read(datafile(filename), mmap=mmap)
assert_equal(rate, 44100)
assert_(np.issubdtype(data.dtype, np.int32))
assert_equal(data.shape, (4410,))
del data
def test_read_2():
# 8-bit unsigned PCM
for mmap in [False, True]:
filename = 'test-8000Hz-le-2ch-1byteu.wav'
rate, data = wavfile.read(datafile(filename), mmap=mmap)
assert_equal(rate, 8000)
assert_(np.issubdtype(data.dtype, np.uint8))
assert_equal(data.shape, (800, 2))
del data
def test_read_3():
# Little-endian float
for mmap in [False, True]:
filename = 'test-44100Hz-2ch-32bit-float-le.wav'
rate, data = wavfile.read(datafile(filename), mmap=mmap)
assert_equal(rate, 44100)
assert_(np.issubdtype(data.dtype, np.float32))
assert_equal(data.shape, (441, 2))
del data
def test_read_4():
# Contains unsupported 'PEAK' chunk
for mmap in [False, True]:
with suppress_warnings() as sup:
sup.filter(wavfile.WavFileWarning,
"Chunk .non-data. not understood, skipping it")
filename = 'test-48000Hz-2ch-64bit-float-le-wavex.wav'
rate, data = wavfile.read(datafile(filename), mmap=mmap)
assert_equal(rate, 48000)
assert_(np.issubdtype(data.dtype, np.float64))
assert_equal(data.shape, (480, 2))
del data
def test_read_5():
# Big-endian float
for mmap in [False, True]:
filename = 'test-44100Hz-2ch-32bit-float-be.wav'
rate, data = wavfile.read(datafile(filename), mmap=mmap)
assert_equal(rate, 44100)
assert_(np.issubdtype(data.dtype, np.float32))
assert_(data.dtype.byteorder == '>' or (sys.byteorder == 'big' and
data.dtype.byteorder == '='))
assert_equal(data.shape, (441, 2))
del data
def test_5_bit_odd_size_no_pad():
# 5-bit, 1 B container, 5 channels, 9 samples, 45 B data chunk
# Generated by LTspice, which incorrectly omits pad byte, but should be
# readable anyway
for mmap in [False, True]:
filename = 'test-8000Hz-le-5ch-9S-5bit.wav'
rate, data = wavfile.read(datafile(filename), mmap=mmap)
assert_equal(rate, 8000)
assert_(np.issubdtype(data.dtype, np.uint8))
assert_equal(data.shape, (9, 5))
# 8-5 = 3 LSBits should be 0
assert_equal(data & 0b00000111, 0)
# Unsigned
assert_equal(data.max(), 0b11111000) # Highest possible
assert_equal(data[0, 0], 128) # Midpoint is 128 for <= 8-bit
assert_equal(data.min(), 0) # Lowest possible
del data
def test_12_bit_even_size():
# 12-bit, 2 B container, 4 channels, 9 samples, 72 B data chunk
# Generated by LTspice from 1 Vpk sine waves
for mmap in [False, True]:
filename = 'test-8000Hz-le-4ch-9S-12bit.wav'
rate, data = wavfile.read(datafile(filename), mmap=mmap)
assert_equal(rate, 8000)
assert_(np.issubdtype(data.dtype, np.int16))
assert_equal(data.shape, (9, 4))
# 16-12 = 4 LSBits should be 0
assert_equal(data & 0b00000000_00001111, 0)
# Signed
assert_equal(data.max(), 0b01111111_11110000) # Highest possible
assert_equal(data[0, 0], 0) # Midpoint is 0 for >= 9-bit
assert_equal(data.min(), -0b10000000_00000000) # Lowest possible
del data
def test_24_bit_odd_size_with_pad():
# 24-bit, 3 B container, 3 channels, 5 samples, 45 B data chunk
# Should not raise any warnings about the data chunk pad byte
filename = 'test-8000Hz-le-3ch-5S-24bit.wav'
rate, data = wavfile.read(datafile(filename), mmap=False)
assert_equal(rate, 8000)
assert_(np.issubdtype(data.dtype, np.int32))
assert_equal(data.shape, (5, 3))
# All LSBytes should be 0
assert_equal(data & 0xff, 0)
# Hand-made max/min samples under different conventions:
# 2**(N-1) 2**(N-1)-1 LSB
assert_equal(data, [[-0x8000_0000, -0x7fff_ff00, -0x200],
[-0x4000_0000, -0x3fff_ff00, -0x100],
[+0x0000_0000, +0x0000_0000, +0x000],
[+0x4000_0000, +0x3fff_ff00, +0x100],
[+0x7fff_ff00, +0x7fff_ff00, +0x200]])
# ^ clipped
def test_20_bit_extra_data():
# 20-bit, 3 B container, 1 channel, 10 samples, 30 B data chunk
# with extra data filling container beyond the bit depth
filename = 'test-1234Hz-le-1ch-10S-20bit-extra.wav'
rate, data = wavfile.read(datafile(filename), mmap=False)
assert_equal(rate, 1234)
assert_(np.issubdtype(data.dtype, np.int32))
assert_equal(data.shape, (10,))
# All LSBytes should still be 0, because 3 B container in 4 B dtype
assert_equal(data & 0xff, 0)
# But it should load the data beyond 20 bits
assert_((data & 0xf00).any())
# Full-scale positive/negative samples, then being halved each time
assert_equal(data, [+0x7ffff000, # +full-scale 20-bit
-0x7ffff000, # -full-scale 20-bit
+0x7ffff000 >> 1, # +1/2
-0x7ffff000 >> 1, # -1/2
+0x7ffff000 >> 2, # +1/4
-0x7ffff000 >> 2, # -1/4
+0x7ffff000 >> 3, # +1/8
-0x7ffff000 >> 3, # -1/8
+0x7ffff000 >> 4, # +1/16
-0x7ffff000 >> 4, # -1/16
])
def test_36_bit_odd_size():
# 36-bit, 5 B container, 3 channels, 5 samples, 75 B data chunk + pad
filename = 'test-8000Hz-le-3ch-5S-36bit.wav'
rate, data = wavfile.read(datafile(filename), mmap=False)
assert_equal(rate, 8000)
assert_(np.issubdtype(data.dtype, np.int64))
assert_equal(data.shape, (5, 3))
# 28 LSBits should be 0
assert_equal(data & 0xfffffff, 0)
# Hand-made max/min samples under different conventions:
# Fixed-point 2**(N-1) Full-scale 2**(N-1)-1 LSB
correct = [[-0x8000_0000_0000_0000, -0x7fff_ffff_f000_0000, -0x2000_0000],
[-0x4000_0000_0000_0000, -0x3fff_ffff_f000_0000, -0x1000_0000],
[+0x0000_0000_0000_0000, +0x0000_0000_0000_0000, +0x0000_0000],
[+0x4000_0000_0000_0000, +0x3fff_ffff_f000_0000, +0x1000_0000],
[+0x7fff_ffff_f000_0000, +0x7fff_ffff_f000_0000, +0x2000_0000]]
# ^ clipped
assert_equal(data, correct)
def test_45_bit_even_size():
# 45-bit, 6 B container, 3 channels, 5 samples, 90 B data chunk
filename = 'test-8000Hz-le-3ch-5S-45bit.wav'
rate, data = wavfile.read(datafile(filename), mmap=False)
assert_equal(rate, 8000)
assert_(np.issubdtype(data.dtype, np.int64))
assert_equal(data.shape, (5, 3))
# 19 LSBits should be 0
assert_equal(data & 0x7ffff, 0)
# Hand-made max/min samples under different conventions:
# Fixed-point 2**(N-1) Full-scale 2**(N-1)-1 LSB
correct = [[-0x8000_0000_0000_0000, -0x7fff_ffff_fff8_0000, -0x10_0000],
[-0x4000_0000_0000_0000, -0x3fff_ffff_fff8_0000, -0x08_0000],
[+0x0000_0000_0000_0000, +0x0000_0000_0000_0000, +0x00_0000],
[+0x4000_0000_0000_0000, +0x3fff_ffff_fff8_0000, +0x08_0000],
[+0x7fff_ffff_fff8_0000, +0x7fff_ffff_fff8_0000, +0x10_0000]]
# ^ clipped
assert_equal(data, correct)
def test_53_bit_odd_size():
# 53-bit, 7 B container, 3 channels, 5 samples, 105 B data chunk + pad
filename = 'test-8000Hz-le-3ch-5S-53bit.wav'
rate, data = wavfile.read(datafile(filename), mmap=False)
assert_equal(rate, 8000)
assert_(np.issubdtype(data.dtype, np.int64))
assert_equal(data.shape, (5, 3))
# 11 LSBits should be 0
assert_equal(data & 0x7ff, 0)
# Hand-made max/min samples under different conventions:
# Fixed-point 2**(N-1) Full-scale 2**(N-1)-1 LSB
correct = [[-0x8000_0000_0000_0000, -0x7fff_ffff_ffff_f800, -0x1000],
[-0x4000_0000_0000_0000, -0x3fff_ffff_ffff_f800, -0x0800],
[+0x0000_0000_0000_0000, +0x0000_0000_0000_0000, +0x0000],
[+0x4000_0000_0000_0000, +0x3fff_ffff_ffff_f800, +0x0800],
[+0x7fff_ffff_ffff_f800, +0x7fff_ffff_ffff_f800, +0x1000]]
# ^ clipped
assert_equal(data, correct)
def test_64_bit_even_size():
# 64-bit, 8 B container, 3 channels, 5 samples, 120 B data chunk
for mmap in [False, True]:
filename = 'test-8000Hz-le-3ch-5S-64bit.wav'
rate, data = wavfile.read(datafile(filename), mmap=mmap)
assert_equal(rate, 8000)
assert_(np.issubdtype(data.dtype, np.int64))
assert_equal(data.shape, (5, 3))
# Hand-made max/min samples under different conventions:
# Fixed-point 2**(N-1) Full-scale 2**(N-1)-1 LSB
correct = [[-0x8000_0000_0000_0000, -0x7fff_ffff_ffff_ffff, -0x2],
[-0x4000_0000_0000_0000, -0x3fff_ffff_ffff_ffff, -0x1],
[+0x0000_0000_0000_0000, +0x0000_0000_0000_0000, +0x0],
[+0x4000_0000_0000_0000, +0x3fff_ffff_ffff_ffff, +0x1],
[+0x7fff_ffff_ffff_ffff, +0x7fff_ffff_ffff_ffff, +0x2]]
# ^ clipped
assert_equal(data, correct)
del data
def test_unsupported_mmap():
# Test containers that cannot be mapped to numpy types
for filename in {'test-8000Hz-le-3ch-5S-24bit.wav',
'test-8000Hz-le-3ch-5S-36bit.wav',
'test-8000Hz-le-3ch-5S-45bit.wav',
'test-8000Hz-le-3ch-5S-53bit.wav',
'test-1234Hz-le-1ch-10S-20bit-extra.wav'}:
with raises(ValueError, match="mmap.*not compatible"):
rate, data = wavfile.read(datafile(filename), mmap=True)
def test_rifx():
# Compare equivalent RIFX and RIFF files
for rifx, riff in {('test-44100Hz-be-1ch-4bytes.wav',
'test-44100Hz-le-1ch-4bytes.wav'),
('test-8000Hz-be-3ch-5S-24bit.wav',
'test-8000Hz-le-3ch-5S-24bit.wav')}:
rate1, data1 = wavfile.read(datafile(rifx), mmap=False)
rate2, data2 = wavfile.read(datafile(riff), mmap=False)
assert_equal(rate1, rate2)
assert_equal(data1, data2)
def test_rf64():
# Compare equivalent RF64 and RIFF files
for rf64, riff in {('test-44100Hz-le-1ch-4bytes-rf64.wav',
'test-44100Hz-le-1ch-4bytes.wav'),
('test-8000Hz-le-3ch-5S-24bit-rf64.wav',
'test-8000Hz-le-3ch-5S-24bit.wav')}:
rate1, data1 = wavfile.read(datafile(rf64), mmap=False)
rate2, data2 = wavfile.read(datafile(riff), mmap=False)
assert_array_equal(rate1, rate2)
assert_array_equal(data1, data2)
@pytest.mark.xslow
def test_write_roundtrip_rf64(tmpdir):
dtype = np.dtype("<i8")
tmpfile = str(tmpdir.join('temp.wav'))
rate = 44100
data = np.random.randint(0, 127, (2**29,)).astype(dtype)
wavfile.write(tmpfile, rate, data)
rate2, data2 = wavfile.read(tmpfile, mmap=True)
assert_equal(rate, rate2)
msg = f"{data2.dtype} byteorder not in ('<', '=', '|')"
assert data2.dtype.byteorder in ('<', '=', '|'), msg
assert_array_equal(data, data2)
# also test writing (gh-12176)
data2[0] = 0
def test_read_unknown_filetype_fail():
# Not an RIFF
for mmap in [False, True]:
filename = 'example_1.nc'
with open(datafile(filename), 'rb') as fp:
with raises(ValueError, match="CDF.*'RIFF', 'RIFX', and 'RF64' supported"):
wavfile.read(fp, mmap=mmap)
def test_read_unknown_riff_form_type():
# RIFF, but not WAVE form
for mmap in [False, True]:
filename = 'Transparent Busy.ani'
with open(datafile(filename), 'rb') as fp:
with raises(ValueError, match='Not a WAV file.*ACON'):
wavfile.read(fp, mmap=mmap)
def test_read_unknown_wave_format():
# RIFF and WAVE, but not supported format
for mmap in [False, True]:
filename = 'test-8000Hz-le-1ch-1byte-ulaw.wav'
with open(datafile(filename), 'rb') as fp:
with raises(ValueError, match='Unknown wave file format.*MULAW.*'
'Supported formats'):
wavfile.read(fp, mmap=mmap)
@pytest.mark.thread_unsafe
def test_read_early_eof_with_data():
# File ends inside 'data' chunk, but we keep incomplete data
for mmap in [False, True]:
filename = 'test-44100Hz-le-1ch-4bytes-early-eof.wav'
with open(datafile(filename), 'rb') as fp:
with warns(wavfile.WavFileWarning, match='Reached EOF'):
rate, data = wavfile.read(fp, mmap=mmap)
assert data.size > 0
assert rate == 44100
# also test writing (gh-12176)
data[0] = 0
def test_read_early_eof():
# File ends after 'fact' chunk at boundary, no data read
for mmap in [False, True]:
filename = 'test-44100Hz-le-1ch-4bytes-early-eof-no-data.wav'
with open(datafile(filename), 'rb') as fp:
with raises(ValueError, match="Unexpected end of file."):
wavfile.read(fp, mmap=mmap)
def test_read_incomplete_chunk():
# File ends inside 'fmt ' chunk ID, no data read
for mmap in [False, True]:
filename = 'test-44100Hz-le-1ch-4bytes-incomplete-chunk.wav'
with open(datafile(filename), 'rb') as fp:
with raises(ValueError, match="Incomplete chunk ID.*b'f'"):
wavfile.read(fp, mmap=mmap)
def test_read_inconsistent_header():
# File header's size fields contradict each other
for mmap in [False, True]:
filename = 'test-8000Hz-le-3ch-5S-24bit-inconsistent.wav'
with open(datafile(filename), 'rb') as fp:
with raises(ValueError, match="header is invalid"):
wavfile.read(fp, mmap=mmap)
# signed 8-bit integer PCM is not allowed
# unsigned > 8-bit integer PCM is not allowed
# 8- or 16-bit float PCM is not expected
# g and q are platform-dependent, so not included
@pytest.mark.parametrize("dt_str", ["<i2", "<i4", "<i8", "<f4", "<f8",
">i2", ">i4", ">i8", ">f4", ">f8", '|u1'])
@pytest.mark.parametrize("channels", [1, 2, 5])
@pytest.mark.parametrize("rate", [8000, 32000])
@pytest.mark.parametrize("mmap", [False, True])
@pytest.mark.parametrize("realfile", [False, True])
def test_write_roundtrip(realfile, mmap, rate, channels, dt_str, tmpdir):
dtype = np.dtype(dt_str)
if realfile:
tmpfile = str(tmpdir.join(str(threading.get_native_id()), 'temp.wav'))
os.makedirs(os.path.dirname(tmpfile), exist_ok=True)
else:
tmpfile = BytesIO()
data = np.random.rand(100, channels)
if channels == 1:
data = data[:, 0]
if dtype.kind == 'f':
# The range of the float type should be in [-1, 1]
data = data.astype(dtype)
else:
data = (data*128).astype(dtype)
wavfile.write(tmpfile, rate, data)
rate2, data2 = wavfile.read(tmpfile, mmap=mmap)
assert_equal(rate, rate2)
assert_(data2.dtype.byteorder in ('<', '=', '|'), msg=data2.dtype)
assert_array_equal(data, data2)
# also test writing (gh-12176)
if realfile:
data2[0] = 0
else:
with pytest.raises(ValueError, match='read-only'):
data2[0] = 0
if realfile and mmap and IS_PYPY and sys.platform == 'win32':
# windows cannot remove a dead file held by a mmap but not collected
# in PyPy; since the filename gets reused in this test, clean this up
break_cycles()
break_cycles()
@pytest.mark.parametrize("dtype", [np.float16])
def test_wavfile_dtype_unsupported(tmpdir, dtype):
tmpfile = str(tmpdir.join('temp.wav'))
rng = np.random.default_rng(1234)
data = rng.random((100, 5)).astype(dtype)
rate = 8000
with pytest.raises(ValueError, match="Unsupported"):
wavfile.write(tmpfile, rate, data)
|