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 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500
|
#!/usr/bin/env python
# CREATED:2014-01-18 14:09:05 by Brian McFee <brm2132@columbia.edu>
# unit tests for util routines
from __future__ import annotations
# Disable cache
import os
try:
os.environ.pop("LIBROSA_CACHE_DIR")
except KeyError:
pass
import platform
import numpy as np
import scipy.sparse
import pytest
import warnings
import librosa
from typing import Any, List, Union
from test_core import srand
np.set_printoptions(precision=3)
@pytest.mark.parametrize("frame_length", [4, 8])
@pytest.mark.parametrize("hop_length", [2, 4])
@pytest.mark.parametrize("y", [np.random.randn(32)])
@pytest.mark.parametrize("axis", [0, -1])
def test_frame1d(frame_length, hop_length, axis, y):
y_frame = librosa.util.frame(
y, frame_length=frame_length, hop_length=hop_length, axis=axis
)
if axis == -1:
y_frame = y_frame.T
for i in range(y_frame.shape[0]):
assert np.allclose(
y_frame[i], y[i * hop_length : (i * hop_length + frame_length)]
)
@pytest.mark.parametrize("frame_length", [4, 8])
@pytest.mark.parametrize("hop_length", [2, 4])
@pytest.mark.parametrize(
"y, axis",
[
(np.asfortranarray(np.random.randn(16, 32)), -1),
(np.ascontiguousarray(np.random.randn(16, 32)), 0),
],
)
def test_frame2d(frame_length, hop_length, axis, y):
y_frame = librosa.util.frame(
y, frame_length=frame_length, hop_length=hop_length, axis=axis
)
if axis == -1:
y_frame = y_frame.T
y = y.T
for i in range(y_frame.shape[0]):
assert np.allclose(
y_frame[i], y[i * hop_length : (i * hop_length + frame_length)]
)
def test_frame_0stride():
x = np.arange(10)
xpad = x[np.newaxis]
xpad2 = np.atleast_2d(x)
xf = librosa.util.frame(x, frame_length=3, hop_length=1)
xfpad = librosa.util.frame(xpad, frame_length=3, hop_length=1)
xfpad2 = librosa.util.frame(xpad2, frame_length=3, hop_length=1)
assert np.allclose(xf, xfpad)
assert np.allclose(xf, xfpad2)
@pytest.mark.parametrize("frame_length", [5, 10])
@pytest.mark.parametrize("hop_length", [1, 2])
@pytest.mark.parametrize("ndim", [2, 3, 4, 5])
def test_frame_highdim(frame_length, hop_length, ndim):
srand()
x = np.asarray(np.random.randn(*([20] * ndim)))
xf = librosa.util.frame(x, frame_length=frame_length, hop_length=hop_length)
for i in range(x.shape[0]):
xf0 = librosa.util.frame(x[i], frame_length=frame_length, hop_length=hop_length)
assert np.allclose(xf[i], xf0)
@pytest.mark.parametrize(
"in_shape,axis,out_shape",
[
((20, 20, 20, 20), 0, (6, 10, 20, 20, 20)),
((20, 20, 20, 20), 1, (20, 6, 10, 20, 20)),
((20, 20, 20, 20), 2, (20, 20, 6, 10, 20)),
((20, 20, 20, 20), 3, (20, 20, 20, 6, 10)),
((20, 20, 20, 20), -1, (20, 20, 20, 10, 6)),
((20, 20, 20, 20), -2, (20, 20, 10, 6, 20)),
((20, 20, 20, 20), -3, (20, 10, 6, 20, 20)),
((20, 20, 20, 20), -4, (10, 6, 20, 20, 20)),
],
)
def test_frame_targetaxis(in_shape, axis, out_shape):
x = np.empty(in_shape)
xf = librosa.util.frame(x, frame_length=10, hop_length=2, axis=axis)
assert xf.shape == out_shape
@pytest.mark.xfail(raises=librosa.ParameterError)
@pytest.mark.parametrize("axis", [0, -1])
@pytest.mark.parametrize("x", [np.arange(16)])
def test_frame_too_short(x, axis):
librosa.util.frame(x, frame_length=17, hop_length=1, axis=axis)
@pytest.mark.xfail(raises=librosa.ParameterError)
def test_frame_bad_hop():
librosa.util.frame(np.arange(16), frame_length=4, hop_length=0)
@pytest.mark.parametrize("y", [np.ones((16,)), np.ones((16, 16))])
@pytest.mark.parametrize("m", [0, 10])
@pytest.mark.parametrize("axis", [0, -1])
@pytest.mark.parametrize("mode", ["constant", "edge", "reflect"])
def test_pad_center(y, m, axis, mode):
n = m + y.shape[axis]
y_out = librosa.util.pad_center(y, size=n, axis=axis, mode=mode)
n_len = y.shape[axis]
n_pad = int((n - n_len) / 2)
eq_slice = [slice(None)] * y.ndim
eq_slice[axis] = slice(n_pad, n_pad + n_len)
assert np.allclose(y, y_out[tuple(eq_slice)])
@pytest.mark.parametrize("y", [np.ones((16,)), np.ones((16, 16))])
@pytest.mark.parametrize("n", [0, 10])
@pytest.mark.parametrize("axis", [0, -1])
@pytest.mark.parametrize("mode", ["constant", "edge", "reflect"])
@pytest.mark.xfail(raises=librosa.ParameterError)
def test_pad_center_fail(y, n, axis, mode):
librosa.util.pad_center(y, size=n, axis=axis, mode=mode)
@pytest.mark.parametrize("y", [np.ones((16,)), np.ones((16, 16))])
@pytest.mark.parametrize("m", [-5, 0, 5])
@pytest.mark.parametrize("axis", [0, -1])
def test_fix_length(y, m, axis):
n = m + y.shape[axis]
y_out = librosa.util.fix_length(y, size=n, axis=axis)
eq_slice = [slice(None)] * y.ndim
eq_slice[axis] = slice(y.shape[axis])
if n > y.shape[axis]:
assert np.allclose(y, y_out[tuple(eq_slice)])
else:
assert np.allclose(y[tuple(eq_slice)], y)
@pytest.mark.parametrize("frames", [np.arange(20, 100, step=15)])
@pytest.mark.parametrize("x_min", [0, 20])
@pytest.mark.parametrize("x_max", [20, 70, 120])
@pytest.mark.parametrize("pad", [False, True])
def test_fix_frames(frames, x_min, x_max, pad):
f_fix = librosa.util.fix_frames(frames, x_min=x_min, x_max=x_max, pad=pad)
if x_min is not None:
if pad:
assert f_fix[0] == x_min
assert np.all(f_fix >= x_min)
if x_max is not None:
if pad:
assert f_fix[-1] == x_max
assert np.all(f_fix <= x_max)
@pytest.mark.xfail(raises=librosa.ParameterError)
@pytest.mark.parametrize("frames", [np.arange(-20, 100)])
@pytest.mark.parametrize("x_min", [None, 0, 20])
@pytest.mark.parametrize("x_max", [None, 0, 20])
@pytest.mark.parametrize("pad", [False, True])
def test_fix_frames_fail_negative(frames, x_min, x_max, pad):
librosa.util.fix_frames(frames, x_min=x_min, x_max=x_max, pad=pad)
@pytest.mark.parametrize("norm", [np.inf, -np.inf, 0, 0.5, 1.0, 2.0, None])
@pytest.mark.parametrize(
"ndims,axis",
[(1, 0), (1, -1), (2, 0), (2, 1), (2, -1), (3, 0), (3, 1), (3, 2), (3, -1)],
)
def test_normalize(ndims, norm, axis):
srand()
X = np.asarray(np.random.randn(*([4] * ndims)))
X_norm = librosa.util.normalize(X, norm=norm, axis=axis)
# Shape and dtype checks
assert X_norm.dtype == X.dtype
assert X_norm.shape == X.shape
if norm is None:
assert np.allclose(X, X_norm)
return
X_norm = np.abs(X_norm)
if norm == np.inf:
values = np.max(X_norm, axis=axis)
elif norm == -np.inf:
values = np.min(X_norm, axis=axis)
elif norm == 0:
# XXX: normalization here isn't quite right
values = np.ones(1)
else:
values = np.sum(X_norm**norm, axis=axis) ** (1.0 / norm)
assert np.allclose(values, np.ones_like(values))
@pytest.mark.parametrize("norm", ["inf", -0.5, -2])
@pytest.mark.parametrize("X", [np.ones((3, 3))])
@pytest.mark.xfail(raises=librosa.ParameterError)
def test_normalize_badnorm(X, norm):
librosa.util.normalize(X, norm=norm)
@pytest.mark.parametrize("badval", [np.nan, np.inf, -np.inf])
@pytest.mark.xfail(raises=librosa.ParameterError)
def test_normalize_bad_input(badval):
X = np.ones((3, 3))
X[0] = badval
librosa.util.normalize(X, norm=np.inf, axis=0)
@pytest.mark.parametrize("fill", [7, "foo"])
@pytest.mark.parametrize("X", [np.ones((2, 2))])
@pytest.mark.xfail(raises=librosa.ParameterError)
def test_normalize_badfill(X, fill):
librosa.util.normalize(X, fill=fill)
@pytest.mark.parametrize("x", [np.asarray([[0, 1, 2, 3]])])
@pytest.mark.parametrize(
"threshold, result",
[
(None, [[0, 1, 1, 1]]),
(1, [[0, 1, 1, 1]]),
(2, [[0, 1, 1, 1]]),
(3, [[0, 1, 2, 1]]),
(4, [[0, 1, 2, 3]]),
],
)
def test_normalize_threshold(x, threshold, result):
assert np.allclose(librosa.util.normalize(x, threshold=threshold), result)
@pytest.mark.xfail(raises=librosa.ParameterError)
@pytest.mark.parametrize("x", [np.asarray([[0, 1, 2, 3]])])
@pytest.mark.parametrize("threshold", [0, -1])
def test_normalize_threshold_fail(x, threshold):
librosa.util.normalize(x, threshold=threshold)
@pytest.mark.xfail(raises=librosa.ParameterError)
def test_normalize_fill_l0():
X = np.ones((2, 2))
librosa.util.normalize(X, fill=True, norm=0)
@pytest.mark.parametrize("norm", [1, 2, np.inf])
@pytest.mark.parametrize("X", [np.zeros((3, 3))])
def test_normalize_fill_allaxes(X, norm):
Xn = librosa.util.normalize(X, fill=True, axis=None, norm=norm)
if norm is np.inf:
assert np.allclose(Xn, 1)
else:
assert np.allclose(np.sum(Xn**norm) ** (1.0 / norm), 1)
@pytest.mark.parametrize("norm", [1, 2, np.inf])
@pytest.mark.parametrize("X", [np.zeros((3, 3))])
def test_normalize_nofill(X, norm):
Xn = librosa.util.normalize(X, fill=False, norm=norm)
assert np.allclose(Xn, 0)
@pytest.mark.parametrize("X", [np.asarray([[0.0, 1], [0, 1]])])
@pytest.mark.parametrize("norm,value", [(1, 0.5), (2, np.sqrt(2) / 2), (np.inf, 1)])
@pytest.mark.parametrize("threshold", [0.5, 2])
def test_normalize_fill(X, threshold, norm, value):
Xn = librosa.util.normalize(X, fill=True, norm=norm, threshold=threshold)
assert np.allclose(Xn, value)
@pytest.mark.parametrize("ndim", [1, 3])
@pytest.mark.parametrize("axis", [0, 1, -1])
@pytest.mark.parametrize("index", [False, True])
@pytest.mark.parametrize("value", [None, np.min, np.mean, np.max])
@pytest.mark.xfail(raises=librosa.ParameterError)
def test_axis_sort_badndim(ndim, axis, index, value):
data = np.zeros([2] * ndim)
librosa.util.axis_sort(data, axis=axis, index=index, value=value)
@pytest.mark.parametrize("ndim", [2])
@pytest.mark.parametrize("axis", [0, 1, -1])
@pytest.mark.parametrize("index", [False, True])
@pytest.mark.parametrize("value", [None, np.min, np.mean, np.max])
def test_axis_sort(ndim, axis, index, value):
srand()
data = np.asarray(np.random.randn(*([10] * ndim)))
if index:
Xsorted, idx = librosa.util.axis_sort(data, axis=axis, index=index, value=value)
cmp_slice = [slice(None)] * ndim
cmp_slice[axis] = idx
assert np.allclose(data[tuple(cmp_slice)], Xsorted)
else:
Xsorted = librosa.util.axis_sort(data, axis=axis, index=index, value=value)
compare_axis = np.mod(1 - axis, 2)
if value is None:
value = np.argmax
sort_values = value(Xsorted, axis=compare_axis)
assert np.allclose(sort_values, np.sort(sort_values))
@pytest.mark.parametrize(
"int_from, int_to",
[
(np.asarray([[0, 2], [0, 4], [3, 6]]), np.zeros((0, 2), dtype=int)),
(np.zeros((0, 2), dtype=int), np.asarray([[0, 2], [0, 4], [3, 6]])),
],
)
@pytest.mark.xfail(raises=librosa.ParameterError)
def test_match_intervals_empty(int_from, int_to):
librosa.util.match_intervals(int_from, int_to)
@pytest.mark.xfail(raises=librosa.ParameterError)
def test_match_intervals_strict_fail():
int_from = np.asarray([[0, 3], [2, 4], [5, 7]])
int_to = np.asarray([[0, 2], [0, 4]])
librosa.util.match_intervals(int_from, int_to, strict=True)
@pytest.mark.parametrize("int_from", [np.asarray([[0, 3], [2, 4], [5, 7]])])
@pytest.mark.parametrize("int_to", [np.asarray([[0, 2], [0, 4], [3, 6]])])
@pytest.mark.parametrize("matches", [np.asarray([1, 1, 2])])
def test_match_intervals_strict(int_from, int_to, matches):
test_matches = librosa.util.match_intervals(int_from, int_to, strict=True)
assert np.array_equal(matches, test_matches)
@pytest.mark.parametrize("int_from", [np.asarray([[0, 3], [2, 4], [5, 7]])])
@pytest.mark.parametrize(
"int_to,matches",
[
(np.asarray([[0, 2], [0, 4], [3, 6]]), np.asarray([1, 1, 2])),
(np.asarray([[0, 2], [0, 4]]), np.asarray([1, 1, 1])),
],
)
def test_match_intervals_nonstrict(int_from, int_to, matches):
test_matches = librosa.util.match_intervals(int_from, int_to, strict=False)
assert np.array_equal(matches, test_matches)
@pytest.mark.parametrize("n", [1, 5, 20, 100])
@pytest.mark.parametrize("m", [1, 5, 20, 100])
def test_match_events(n, m):
srand()
ev1 = np.abs(np.random.randn(n))
ev2 = np.abs(np.random.randn(m))
match = librosa.util.match_events(ev1, ev2)
for i in range(len(match)):
values = np.asarray([np.abs(ev1[i] - e2) for e2 in ev2])
assert not np.any(values < values[match[i]])
@pytest.mark.parametrize(
"ev1,ev2", [(np.array([]), np.arange(5)), (np.arange(5), np.array([]))]
)
@pytest.mark.xfail(raises=librosa.ParameterError)
def test_match_events_failempty(ev1, ev2):
librosa.util.match_events(ev1, ev2)
@pytest.mark.parametrize("events_from", [np.asarray([5, 15, 25])])
@pytest.mark.parametrize("events_to", [np.asarray([0, 10, 20, 30])])
@pytest.mark.parametrize(
"left,right,target", [(False, True, [10, 20, 30]), (True, False, [0, 10, 20])]
)
def test_match_events_onesided(events_from, events_to, left, right, target):
events_from = np.asarray(events_from)
events_to = np.asarray(events_to)
match = librosa.util.match_events(events_from, events_to, left=left, right=right)
assert np.allclose(target, events_to[match])
def test_match_events_twosided():
events_from = np.asarray([5, 15, 25])
events_to = np.asarray([5, 15, 25, 30])
match = librosa.util.match_events(events_from, events_to, left=False, right=False)
assert np.allclose(match, [0, 1, 2])
@pytest.mark.xfail(raises=librosa.ParameterError)
@pytest.mark.parametrize(
"events_from,events_to,left,right",
[
([40, 15, 25], [0, 10, 20, 30], False, True), # right-sided fail
([-1, 15, 25], [0, 10, 20, 30], True, False), # left-sided fail
([-1, 15, 25], [0, 10, 20, 30], False, False), # two-sided fail
],
)
def test_match_events_onesided_fail(events_from, events_to, left, right):
events_from = np.asarray(events_from)
events_to = np.asarray(events_to)
librosa.util.match_events(events_from, events_to, left=left, right=right)
@pytest.mark.parametrize("ndim, axis", [(n, m) for n in range(1, 5) for m in range(n)])
def test_localmax(ndim, axis):
srand()
data = np.asarray(np.random.randn(*([7] * ndim)))
lm = librosa.util.localmax(data, axis=axis)
for hits in np.argwhere(lm):
for offset in [-1, 1]:
compare_idx = hits.copy()
compare_idx[axis] += offset
if compare_idx[axis] < 0:
continue
if compare_idx[axis] >= data.shape[axis]:
continue
if offset < 0:
assert data[tuple(hits)] > data[tuple(compare_idx)]
else:
assert data[tuple(hits)] >= data[tuple(compare_idx)]
@pytest.mark.parametrize("ndim, axis", [(n, m) for n in range(1, 5) for m in range(n)])
def test_localmin(ndim, axis):
srand()
data = np.asarray(np.random.randn(*([7] * ndim)))
lm = librosa.util.localmin(data, axis=axis)
for hits in np.argwhere(lm):
for offset in [-1, 1]:
compare_idx = hits.copy()
compare_idx[axis] += offset
if compare_idx[axis] < 0:
continue
if compare_idx[axis] >= data.shape[axis]:
continue
if offset < 0:
assert data[tuple(hits)] < data[tuple(compare_idx)]
else:
assert data[tuple(hits)] <= data[tuple(compare_idx)]
@pytest.mark.parametrize("x", [np.random.randn(_) ** 2 for _ in [1, 5, 10, 100]])
@pytest.mark.parametrize("pre_max", [0, 1, 10])
@pytest.mark.parametrize("post_max", [1, 10])
@pytest.mark.parametrize("pre_avg", [0, 1, 10])
@pytest.mark.parametrize("post_avg", [1, 10])
@pytest.mark.parametrize("wait", [0, 1, 10])
@pytest.mark.parametrize("delta", [0.05, 100.0])
def test_peak_pick(x, pre_max, post_max, pre_avg, post_avg, delta, wait):
peaks = librosa.util.peak_pick(
x,
pre_max=pre_max,
post_max=post_max,
pre_avg=pre_avg,
post_avg=post_avg,
delta=delta,
wait=wait,
sparse=True,
)
dpeaks = librosa.util.peak_pick(
x,
pre_max=pre_max,
post_max=post_max,
pre_avg=pre_avg,
post_avg=post_avg,
delta=delta,
wait=wait,
sparse=False,
)
for i in peaks:
# Test 1: is it a peak in this window?
s = i - pre_max
if s < 0:
s = 0
t = i + post_max
diff = x[i] - np.max(x[s:t])
assert diff > 0 or np.isclose(diff, 0, rtol=1e-3, atol=1e-4)
# Test 2: is it a big enough peak to count?
s = i - pre_avg
if s < 0:
s = 0
t = i + post_avg
diff = x[i] - (delta + np.mean(x[s:t]))
assert diff > 0 or np.isclose(diff, 0, rtol=1e-3, atol=1e-4)
# Test 3: peak separation
assert not np.any(np.diff(peaks) <= wait)
# Test 4: check dense vs sparse
assert np.allclose(np.flatnonzero(dpeaks), peaks)
@pytest.mark.xfail(raises=librosa.ParameterError)
@pytest.mark.parametrize("x", [np.random.randn(_) ** 2 for _ in [1, 5, 10, 100]])
@pytest.mark.parametrize(
"pre_max,post_max,pre_avg,post_avg,delta,wait",
[
(-1, 1, 1, 1, 0.05, 1), # negative pre-max
(1, -1, 1, 1, 0.05, 1), # negative post-max
(1, 0, 1, 1, 0.05, 1), # 0 post-max
(1, 1, -1, 1, 0.05, 1), # negative pre-avg
(1, 1, 1, -1, 0.05, 1), # negative post-avg
(1, 1, 1, 0, 0.05, 1), # zero post-avg
(1, 1, 1, 1, -0.05, 1), # negative delta
(1, 1, 1, 1, 0.05, -1), # negative wait
],
)
def test_peak_pick_fail(x, pre_max, post_max, pre_avg, post_avg, delta, wait):
librosa.util.peak_pick(
x,
pre_max=pre_max,
post_max=post_max,
pre_avg=pre_avg,
post_avg=post_avg,
delta=delta,
wait=wait,
)
@pytest.mark.xfail(raises=librosa.ParameterError)
@pytest.mark.parametrize("ndim", [3, 4])
def test_sparsify_rows_ndimfail(ndim):
X = np.zeros([2] * ndim)
librosa.util.sparsify_rows(X)
@pytest.mark.xfail(raises=librosa.ParameterError)
@pytest.mark.parametrize("quantile", [1.0, -1, 2.0])
@pytest.mark.parametrize("X", [np.ones((3, 3))])
def test_sparsify_rows_badquantile(X, quantile):
librosa.util.sparsify_rows(X, quantile=quantile)
@pytest.mark.parametrize("dtype", [None, np.float32, np.float64])
@pytest.mark.parametrize("ref_dtype", [np.float32, np.float64])
def test_sparsify_rows_dtype(dtype, ref_dtype):
x = np.ones(10, dtype=ref_dtype)
xs = librosa.util.sparsify_rows(x, dtype=dtype)
if dtype is None:
assert xs.dtype == x.dtype
else:
assert xs.dtype == dtype
@pytest.mark.parametrize("ndim", [1, 2])
@pytest.mark.parametrize("d", [1, 5, 10, 100])
@pytest.mark.parametrize("q", [0.0, 0.01, 0.25, 0.5, 0.99])
def test_sparsify_rows(ndim, d, q):
srand()
X = np.random.randn(*([d] * ndim)) ** 4
X = np.asarray(X)
xs = librosa.util.sparsify_rows(X, quantile=q)
if ndim == 1:
X = X.reshape((1, -1))
assert np.allclose(xs.shape, X.shape)
# And make sure that xs matches X on nonzeros
xsd = np.asarray(xs.todense())
for i in range(xs.shape[0]):
assert np.allclose(xsd[i, xs[i].indices], X[i, xs[i].indices])
# Compute row-wise magnitude marginals
v_in = np.sum(np.abs(X), axis=-1)
v_out = np.sum(np.abs(xsd), axis=-1)
# Ensure that v_out retains 1-q fraction of v_in
assert np.all(v_out >= (1.0 - q) * v_in)
@pytest.mark.parametrize(
"searchdir",
[
os.path.join(os.path.curdir, "tests"),
os.path.join(os.path.curdir, "tests", "data"),
],
)
@pytest.mark.parametrize("ext", [None, "wav", "WAV", ["wav"], ["WAV"]])
@pytest.mark.parametrize("recurse", [True])
@pytest.mark.parametrize(
"case_sensitive", list({False} | {platform.system() != "Windows"})
)
@pytest.mark.parametrize("limit", [None, 1, 2])
@pytest.mark.parametrize("offset", [0, 1, -1])
@pytest.mark.parametrize(
"output",
[
[
os.path.join(os.path.abspath(os.path.curdir), "tests", "data", s)
for s in [
"test1_22050.mp3",
"test1_22050.wav",
"test1_44100.wav",
"test2_8000.wav",
]
]
],
)
def test_find_files(searchdir, ext, recurse, case_sensitive, limit, offset, output):
files = librosa.util.find_files(
searchdir,
ext=ext,
recurse=recurse,
case_sensitive=case_sensitive,
limit=limit,
offset=offset,
)
targets = output
if ext is not None:
# If we're only seeking wavs, bump off the mp3 file
targets = targets[1:]
s1 = slice(offset, None)
s2 = slice(limit)
if case_sensitive and ext not in (None, "wav", ["wav"]):
assert len(files) == 0
else:
assert set(files) == set(targets[s1][s2])
def test_find_files_nonrecurse():
files = librosa.util.find_files(
os.path.join(os.path.curdir, "tests"), recurse=False
)
assert len(files) == 0
# fail if ext is not none, we're case-sensitive, and looking for WAV
@pytest.mark.parametrize("ext", ["WAV", ["WAV"]])
def test_find_files_case_sensitive(ext):
files = librosa.util.find_files(
os.path.join(os.path.curdir, "tests"), ext=ext, case_sensitive=True
)
# On windows, this test won't work
if platform.system() != "Windows":
assert len(files) == 0
@pytest.mark.parametrize("x_in", np.linspace(-2, 2, num=6))
@pytest.mark.parametrize("cast", [None, np.floor, np.ceil])
def test_valid_int(x_in, cast):
z = librosa.util.valid_int(x_in, cast=cast)
assert isinstance(z, int)
if cast is None:
assert z == int(np.floor(x_in))
else:
assert z == int(cast(x_in))
@pytest.mark.parametrize("x", np.linspace(-2, 2, num=3))
@pytest.mark.parametrize("cast", [7])
@pytest.mark.xfail(raises=librosa.ParameterError)
def test_valid_int_fail(x, cast):
# Test with a non-callable cast operator
librosa.util.valid_int(x, cast=cast)
@pytest.mark.parametrize("x", [1, 64])
def test_is_positive_int(x):
assert librosa.util.is_positive_int(x) is True
@pytest.mark.parametrize(
"x", [None, 0, -1, 1.1, np.float64(1.2), -np.inf, np.finfo(float).eps]
)
def test_is_positive_int_fail(x):
assert librosa.util.is_positive_int(x) is False
@pytest.mark.parametrize(
"ivals",
[
np.asarray([[0, 1], [1, 2]]),
np.asarray([[0, 0], [1, 1]]),
np.asarray([[0, 2], [1, 2]]),
],
)
def test_valid_intervals(ivals):
librosa.util.valid_intervals(ivals)
@pytest.mark.xfail(raises=librosa.ParameterError)
@pytest.mark.parametrize(
"ivals",
[
np.asarray([]),
np.arange(2),
np.ones((2, 2, 2)),
np.ones((2, 3)),
], # ndim=0 # ndim=1 # ndim=3
) # ndim=2, shape[1] != 2
def test_valid_intervals_badshape(ivals):
# fail if ndim != 2 or shape[1] != 2
librosa.util.valid_intervals(ivals)
@pytest.mark.xfail(raises=librosa.ParameterError)
@pytest.mark.parametrize("intval", [np.asarray([[0, 1], [2, 1]])])
def test_valid_intervals_fail(intval):
# Test for issue #712: intervals must have non-negative duration
librosa.util.valid_intervals(intval)
def test_warning_deprecated():
@librosa.util.decorators.deprecated(
version="old_version", version_removed="new_version"
)
def __placeholder():
return True
with pytest.warns(FutureWarning, match="Deprecated"):
x = __placeholder()
# Make sure we still get the right value
assert x is True
def test_warning_moved():
@librosa.util.decorators.moved(
moved_from="from", version="old_version", version_removed="new_version"
)
def __placeholder():
return True
with warnings.catch_warnings(record=True) as out:
x = __placeholder()
# Make sure we still get the right value
assert x is True
# And that the warning triggered
assert len(out) > 0
# And that the category is correct
assert out[0].category is FutureWarning
# And that it says the right thing (roughly)
assert "moved" in str(out[0].message).lower()
def test_warning_rename_kw_pass():
ov = librosa.util.Deprecated()
nv = 23
with warnings.catch_warnings(record=True) as out:
v = librosa.util.rename_kw(
old_name="old",
old_value=ov,
new_name="new",
new_value=nv,
version_deprecated="0",
version_removed="1",
)
assert v == nv
# Make sure no warning triggered
assert len(out) == 0
def test_warning_rename_kw_fail():
ov = 27
nv = 23
with pytest.warns(FutureWarning, match="renamed"):
v = librosa.util.rename_kw(
old_name="old",
old_value=ov,
new_name="new",
new_value=nv,
version_deprecated="0",
version_removed="1",
)
assert v == ov
@pytest.mark.parametrize("idx", [np.arange(10, 90, 10), np.arange(10, 90, 15)])
@pytest.mark.parametrize("idx_min", [None, 5, 15])
@pytest.mark.parametrize("idx_max", [None, 85, 100])
@pytest.mark.parametrize("step", [None, 2])
@pytest.mark.parametrize("pad", [False, True])
def test_index_to_slice(idx, idx_min, idx_max, step, pad):
slices = librosa.util.index_to_slice(
idx, idx_min=idx_min, idx_max=idx_max, step=step, pad=pad
)
if pad:
if idx_min is not None:
assert slices[0].start == idx_min
if idx.min() != idx_min:
slices = slices[1:]
if idx_max is not None:
assert slices[-1].stop == idx_max
if idx.max() != idx_max:
slices = slices[:-1]
if idx_min is not None:
idx = idx[idx >= idx_min]
if idx_max is not None:
idx = idx[idx <= idx_max]
idx = np.unique(idx)
assert len(slices) == len(idx) - 1
for sl, start, stop in zip(slices, idx, idx[1:]):
assert sl.start == start
assert sl.stop == stop
assert sl.step == step
@pytest.mark.parametrize("aggregate", [None, np.mean, np.sum])
@pytest.mark.parametrize(
"ndim,axis", [(1, 0), (1, -1), (2, 0), (2, 1), (2, -1), (3, 0), (3, 2), (3, -1)]
)
def test_sync(aggregate, ndim, axis: int):
data = np.ones([6] * ndim, dtype=float)
# Make some slices that don't fill the entire dimension
slices = [slice(1, 3), slice(3, 4)]
dsync = librosa.util.sync(data, slices, aggregate=aggregate, axis=axis)
# Check the axis shapes
assert dsync.shape[axis] == len(slices)
s_test = list(dsync.shape)
del s_test[axis]
s_orig = list(data.shape)
del s_orig[axis]
assert s_test == s_orig
# The first slice will sum to 2 and have mean 1
idx: List[Union[slice, int]] = [slice(None)] * ndim
idx[axis] = 0
if aggregate is np.sum:
assert np.allclose(dsync[tuple(idx)], 2)
else:
assert np.allclose(dsync[tuple(idx)], 1)
# The second slice will sum to 1 and have mean 1
idx[axis] = 1
assert np.allclose(dsync[tuple(idx)], 1)
@pytest.mark.parametrize("aggregate", [np.mean, np.max])
def test_sync_slices(aggregate):
x = np.arange(8, dtype=float)
slices = [slice(0, 2), slice(2, 4), slice(4, 6), slice(6, 8)]
xsync = librosa.util.sync(x, slices, aggregate=aggregate)
if aggregate is np.mean:
assert np.allclose(xsync, [0.5, 2.5, 4.5, 6.5])
elif aggregate is np.max:
assert np.allclose(xsync, [1, 3, 5, 7])
else:
assert False
@pytest.mark.parametrize("aggregate", [np.mean, np.max])
@pytest.mark.parametrize("atype", [list, np.asarray])
def test_sync_frames(aggregate, atype):
x = np.arange(8, dtype=float)
frames = atype([0, 2, 4, 6, 8])
xsync = librosa.util.sync(x, frames, aggregate=aggregate)
if aggregate is np.mean:
assert np.allclose(xsync, [0.5, 2.5, 4.5, 6.5])
elif aggregate is np.max:
assert np.allclose(xsync, [1, 3, 5, 7])
else:
assert False
@pytest.mark.parametrize("atype", [list, np.asarray])
@pytest.mark.parametrize("pad", [False, True])
def test_sync_frames_pad(atype, pad):
x = np.arange(8, dtype=float)
frames = atype([2, 4, 6])
xsync = librosa.util.sync(x, frames, pad=pad)
if pad:
assert np.allclose(xsync, [0.5, 2.5, 4.5, 6.5])
else:
assert np.allclose(xsync, [2.5, 4.5])
@pytest.mark.parametrize("data", [np.mod(np.arange(135), 5)])
@pytest.mark.parametrize("idx", [["foo", "bar"], [None], [slice(None), None]])
@pytest.mark.xfail(raises=librosa.ParameterError)
def test_sync_fail(data, idx):
librosa.util.sync(data, idx)
@pytest.mark.parametrize("power", [1, 2, 50, 100, np.inf])
@pytest.mark.parametrize("split_zeros", [False, True])
def test_softmask(power, split_zeros):
srand()
X = np.abs(np.random.randn(10, 10))
X_ref = np.abs(np.random.randn(10, 10))
# Zero out some rows
X[3, :] = 0
X_ref[3, :] = 0
M = librosa.util.softmask(X, X_ref, power=power, split_zeros=split_zeros)
assert np.all(0 <= M) and np.all(M <= 1)
if split_zeros and np.isfinite(power):
assert np.allclose(M[3, :], 0.5)
else:
assert not np.any(M[3, :]), M[3]
def test_softmask_int():
X = 2 * np.ones((3, 3), dtype=np.int32)
X_ref = np.vander(np.arange(3))
M1 = librosa.util.softmask(X, X_ref, power=1)
M2 = librosa.util.softmask(X_ref, X, power=1)
assert np.allclose(M1 + M2, 1)
@pytest.mark.parametrize(
"x,x_ref,power,split_zeros",
[
(-np.ones(3), np.ones(3), 1, False),
(np.ones(3), -np.ones(3), 1, False),
(np.ones(3), np.ones(4), 1, False),
(np.ones(3), np.ones(3), 0, False),
(np.ones(3), np.ones(3), -1, False),
],
)
@pytest.mark.xfail(raises=librosa.ParameterError)
def test_softmask_fail(x, x_ref, power, split_zeros):
librosa.util.softmask(x, x_ref, power=power, split_zeros=split_zeros)
@pytest.mark.parametrize(
"x,value",
[
(1, np.finfo(np.float32).tiny),
(np.ones(3, dtype=int), np.finfo(np.float32).tiny),
(np.ones(3, dtype=np.float32), np.finfo(np.float32).tiny),
(1.0, np.finfo(np.float64).tiny),
(np.ones(3, dtype=np.float64), np.finfo(np.float64).tiny),
(1j, np.finfo(np.complex128).tiny),
(np.ones(3, dtype=np.complex64), np.finfo(np.complex64).tiny),
(np.ones(3, dtype=np.complex128), np.finfo(np.complex128).tiny),
],
)
def test_tiny(x, value):
assert value == librosa.util.tiny(x)
def test_util_fill_off_diagonal_8_8():
# Case 1: Square matrix (N=M)
mut_x = np.ones((8, 8))
librosa.util.fill_off_diagonal(mut_x, radius=0.25)
gt_x = np.array(
[
[1, 1, 0, 0, 0, 0, 0, 0],
[1, 1, 1, 0, 0, 0, 0, 0],
[0, 1, 1, 1, 0, 0, 0, 0],
[0, 0, 1, 1, 1, 0, 0, 0],
[0, 0, 0, 1, 1, 1, 0, 0],
[0, 0, 0, 0, 1, 1, 1, 0],
[0, 0, 0, 0, 0, 1, 1, 1],
[0, 0, 0, 0, 0, 0, 1, 1],
]
)
assert np.array_equal(mut_x, gt_x)
assert np.array_equal(mut_x, gt_x.T)
def test_util_fill_off_diagonal_8_12():
# Case 2a: N!=M
mut_x = np.ones((8, 12))
librosa.util.fill_off_diagonal(mut_x, radius=0.25)
gt_x = np.array(
[
[1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0],
[1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0],
[0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0],
[0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0],
[0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0],
[0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0],
[0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1],
[0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1],
]
)
assert np.array_equal(mut_x, gt_x)
# Case 2b: (N!=M).T
mut_x = np.ones((8, 12)).T
librosa.util.fill_off_diagonal(mut_x, radius=0.25)
assert np.array_equal(mut_x, gt_x.T)
@pytest.mark.parametrize("dtype_A", [np.float32, np.float64])
@pytest.mark.parametrize("dtype_B", [np.float32, np.float64])
def test_nnls_vector(dtype_A, dtype_B):
srand()
# Make a random basis
A = np.random.randn(7, 5).astype(dtype_A)
# Make a random latent vector
x = np.random.randn(A.shape[1]) ** 2
B = A.dot(x).astype(dtype_B)
x_rec = librosa.util.nnls(A, B)
assert np.all(x_rec >= 0)
assert np.sqrt(np.mean((B - A.dot(x_rec)) ** 2)) <= 1e-6
@pytest.mark.parametrize("dtype_A", [np.float32, np.float64])
@pytest.mark.parametrize("dtype_B", [np.float32, np.float64])
@pytest.mark.parametrize("x_size", [3, 30])
def test_nnls_matrix(dtype_A, dtype_B, x_size):
srand()
# Make a random basis
A = np.random.randn(5, 7).astype(dtype_A)
# Make a random latent matrix
# when x_size is 3, B is 7x3 (smaller than A)
x = np.random.randn(A.shape[1], x_size) ** 2
B = A.dot(x).astype(dtype_B)
x_rec = librosa.util.nnls(A, B)
assert np.all(x_rec >= 0)
assert np.sqrt(np.mean((B - A.dot(x_rec)) ** 2)) <= 2e-4
@pytest.mark.parametrize("dtype_A", [np.float32, np.float64])
@pytest.mark.parametrize("dtype_B", [np.float32, np.float64])
@pytest.mark.parametrize("x_size", [16, 64, 256])
def test_nnls_multiblock(dtype_A, dtype_B, x_size):
srand()
# Make a random basis
A = np.random.randn(7, 1025).astype(dtype_A)
# Make a random latent matrix
# when x_size is 3, B is 7x3 (smaller than A)
x = np.random.randn(A.shape[1], x_size) ** 2
B = A.dot(x).astype(dtype_B)
x_rec = librosa.util.nnls(A, B)
assert np.all(x_rec >= 0)
assert np.sqrt(np.mean((B - A.dot(x_rec)) ** 2)) <= 2e-4
@pytest.fixture
def psig():
# [[0, 1, 2, 3, 4]]
# axis=1 or -1 ==> [-1.5, 1, 1, 1, -1.5]
# axis=0 ==> [0, 0, 0, 0, 0]
return np.arange(0, 5, dtype=float)[np.newaxis]
@pytest.mark.parametrize("edge_order", [1, 2])
@pytest.mark.parametrize("axis", [0, 1, -1])
def test_cyclic_gradient(psig, edge_order, axis):
grad = librosa.util.cyclic_gradient(psig, edge_order=edge_order, axis=axis)
assert grad.shape == psig.shape
assert grad.dtype == psig.dtype
# Check the values
if axis == 0:
assert np.allclose(grad, 0)
else:
assert np.allclose(grad, [-1.5, 1, 1, 1, -1.5])
def test_shear_dense():
E = np.eye(3)
E_shear = librosa.util.shear(E, factor=1, axis=0)
assert np.allclose(E_shear, np.asarray([[1, 0, 0], [0, 0, 1], [0, 1, 0]]))
E_shear = librosa.util.shear(E, factor=1, axis=1)
assert np.allclose(E_shear, np.asarray([[1, 0, 0], [0, 0, 1], [0, 1, 0]]))
E_shear = librosa.util.shear(E, factor=-1, axis=1)
assert np.allclose(E_shear, np.asarray([[1, 1, 1], [0, 0, 0], [0, 0, 0]]))
E_shear = librosa.util.shear(E, factor=-1, axis=0)
assert np.allclose(E_shear, np.asarray([[1, 0, 0], [1, 0, 0], [1, 0, 0]]))
@pytest.mark.parametrize("fmt", ["csc", "csr", "lil", "dok"])
def test_shear_sparse(fmt):
E = scipy.sparse.identity(3, format=fmt)
E_shear = librosa.util.shear(E, factor=1, axis=0)
assert E_shear.format == fmt
assert np.allclose(E_shear.toarray(), np.asarray([[1, 0, 0], [0, 0, 1], [0, 1, 0]]))
E_shear = librosa.util.shear(E, factor=1, axis=1)
assert E_shear.format == fmt
assert np.allclose(E_shear.toarray(), np.asarray([[1, 0, 0], [0, 0, 1], [0, 1, 0]]))
E_shear = librosa.util.shear(E, factor=-1, axis=1)
assert E_shear.format == fmt
assert np.allclose(E_shear.toarray(), np.asarray([[1, 1, 1], [0, 0, 0], [0, 0, 0]]))
E_shear = librosa.util.shear(E, factor=-1, axis=0)
assert E_shear.format == fmt
assert np.allclose(E_shear.toarray(), np.asarray([[1, 0, 0], [1, 0, 0], [1, 0, 0]]))
@pytest.mark.xfail(raises=librosa.ParameterError)
def test_shear_badfactor():
librosa.util.shear(np.eye(3), factor=None) # type: ignore
def test_stack_contig():
x1 = np.ones(3)
x2 = -np.ones(3)
xs = librosa.util.stack([x1, x2], axis=0)
assert xs.flags["F_CONTIGUOUS"]
assert np.allclose(xs, [[1, 1, 1], [-1, -1, -1]])
@pytest.mark.xfail(raises=librosa.ParameterError)
def test_stack_fail_shape():
x1 = np.ones(3)
x2 = np.ones(2)
librosa.util.stack([x1, x2])
@pytest.mark.xfail(raises=librosa.ParameterError)
def test_stack_fail_empty():
librosa.util.stack([])
@pytest.mark.parametrize("axis", [0, 1, -1])
@pytest.mark.parametrize("x", [np.random.randn(5, 10, 20)])
def test_stack_consistent(x, axis):
xs = librosa.util.stack([x, x], axis=axis)
xsnp = np.stack([x, x], axis=axis)
assert np.allclose(xs, xsnp)
if axis != 0:
assert xs.flags["C_CONTIGUOUS"]
"""
========================================
this test cannot work in the context of debian packaging.
It raises always a PermissionError
========================================
@pytest.mark.network
@pytest.mark.parametrize(
"key",
[
"trumpet",
"brahms",
"nutcracker",
"choice",
"humpback",
"libri1",
"libri2",
"libri3",
"pistachio",
"robin",
"sweetwaltz",
"fishin",
"vibeace",
],
)
@pytest.mark.parametrize("hq", [False, True])
def test_example(key, hq):
fn = librosa.example(key, hq=hq)
assert os.path.exists(fn)
"""
@pytest.mark.xfail(raises=librosa.ParameterError)
def test_example_fail():
librosa.example("no such track")
"""
========================================
this test cannot work in the context of debian packaging.
It raises always a PermissionError
========================================
@pytest.mark.network
@pytest.mark.parametrize(
"key",
[
"trumpet",
"brahms",
"nutcracker",
"choice",
"humpback",
"libri1",
"libri2",
"libri3",
"pistachio",
"robin",
"sweetwaltz",
"fishin",
"vibeace",
],
)
def test_example_info(key):
librosa.util.example_info(key)
"""
@pytest.mark.xfail(raises=librosa.ParameterError)
def test_example_info_fail():
librosa.util.example_info("no such track")
def test_list_examples():
librosa.util.list_examples()
@pytest.mark.parametrize(
"dtype,target",
[
(np.float32, np.complex64),
(np.float64, np.complex128),
(np.int32, np.complex64),
(np.complex128, np.complex128),
],
)
def test_dtype_r2c(dtype, target):
inf_type = librosa.util.dtype_r2c(dtype)
# better to do a bidirectional subtype test than strict equality here
assert np.issubdtype(inf_type, target) and np.issubdtype(target, inf_type)
@pytest.mark.parametrize(
"dtype,target",
[
(np.float32, np.float32),
(np.complex64, np.float32),
(np.int32, np.float32),
(np.complex128, np.float64),
(complex, float),
(np.dtype(complex), np.float64),
],
)
def test_dtype_c2r(dtype, target):
inf_type = librosa.util.dtype_c2r(dtype)
# better to do a bidirectional subtype test than strict equality here
assert np.issubdtype(inf_type, target) and np.issubdtype(target, inf_type)
@pytest.mark.xfail(raises=librosa.ParameterError)
def test_expand_to_badshape():
x = np.arange(3)
librosa.util.expand_to(x, ndim=2, axes=[0, 1])
@pytest.mark.xfail(raises=librosa.ParameterError)
def test_expand_to_badndim():
x = np.zeros((3, 3))
librosa.util.expand_to(x, ndim=1, axes=[0, 1])
@pytest.mark.parametrize("axes", [0, 1, -1, [0], [1], [-1]])
@pytest.mark.parametrize("ndim", [2, 3, 4])
def test_expand_to_1d(axes, ndim):
x = np.arange(5)
xout = librosa.util.expand_to(x, ndim=ndim, axes=axes)
assert xout.ndim == ndim
assert xout.size == x.size
assert np.allclose(x, xout.squeeze())
if not hasattr(axes, "__iter__"):
axes = [axes]
# Verify that remaining dimensions match
assert np.array_equal(x.shape, xout.squeeze().shape)
# Verify that we have 1s on expanded dims
for i, ax in enumerate(axes):
assert xout.shape[ax] == x.shape[i]
@pytest.mark.parametrize("axes", [[0, 1], [0, 2], [1, 2]])
@pytest.mark.parametrize("ndim", [3, 4])
def test_expand_to_2d(axes, ndim):
x = np.multiply.outer(np.arange(4), np.arange(6))
xout = librosa.util.expand_to(x, ndim=ndim, axes=axes)
assert xout.ndim == ndim
assert xout.size == x.size
assert np.allclose(x, xout.squeeze())
# Verify that remaining dimensions match
assert np.array_equal(x.shape, xout.squeeze().shape)
# Verify that we have 1s on expanded dims
for i, ax in enumerate(axes):
assert xout.shape[ax] == x.shape[i]
def test_count_unique():
x = np.vander(np.arange(5))
x0 = librosa.util.count_unique(x, axis=0)
x1 = librosa.util.count_unique(x, axis=1)
assert np.allclose(x0, [5, 5, 5, 5, 1])
assert np.allclose(x1, [2, 1, 5, 5, 5])
def test_is_unique():
x = np.vander(np.arange(5))
x0 = librosa.util.is_unique(x, axis=0)
x1 = librosa.util.is_unique(x, axis=1)
assert np.allclose(x0, [True, True, True, True, False])
assert np.allclose(x1, [False, False, True, True, True])
@pytest.mark.parametrize("x", [-2, 3, np.arange(-3, 3)])
@pytest.mark.parametrize("dtype", [np.float32, np.float64])
def test_abs2_real(x, dtype):
x = dtype(x)
p = librosa.util.abs2(x)
assert np.allclose(p, x**2)
@pytest.mark.parametrize("x", [(2 - 2j), (3 + 0j), (0.5j) ** np.arange(6)])
@pytest.mark.parametrize("dtype", [np.complex64, np.complex128])
def test_abs2_complex(x, dtype):
x_cast: Union[np.complexfloating[Any, Any], np.ndarray] = dtype(x)
p = librosa.util.abs2(x_cast)
assert np.allclose(p, np.abs(x_cast) ** 2)
assert p.dtype == librosa.util.dtype_c2r(x_cast.dtype)
def test_abs2_int_dtype():
x = np.arange(5, dtype=np.int16)
y = librosa.util.abs2(x, dtype=None)
assert x.dtype == y.dtype
z = librosa.util.abs2(x, dtype=np.float32)
assert z.dtype == np.float32
def test_abs2_complex_dtype():
x = np.arange(5, dtype=np.complex64)
y = librosa.util.abs2(x, dtype=None)
assert np.isrealobj(y)
# complex64 -> float32 by default
assert y.dtype == np.float32
z = librosa.util.abs2(x, dtype=np.float64)
# force it to float64
assert z.dtype == np.float64
@pytest.mark.parametrize("dtype", [np.float32, np.float64])
@pytest.mark.parametrize("angles", [np.pi / 2, [np.pi / 2, -np.pi / 3]])
@pytest.mark.parametrize("mag", [None, 2])
def test_phasor(dtype, angles, mag):
angles_cast: Union[np.floating[Any], np.ndarray] = dtype(angles)
z = np.exp(1j * angles_cast)
if mag is not None:
mag = dtype(mag)
z *= mag
z2 = librosa.util.phasor(angles_cast, mag=mag)
assert np.allclose(z, z2)
assert z2.dtype == librosa.util.dtype_r2c(dtype)
"""
========================================
those three tests cannot work in the context of debian packaging.
They raise always a PermissionError
========================================
@pytest.mark.network
def test_cite_released():
version = "0.10.1"
doi = "https://doi.org/10.5281/zenodo.8252662"
assert doi == librosa.cite(version=version)
@pytest.mark.xfail(raises=librosa.ParameterError)
def test_cite_badversion():
librosa.cite(version="-1.5")
@pytest.mark.network
@pytest.mark.xfail(raises=librosa.ParameterError)
def test_cite_unreleased():
librosa.cite("0.10.0.dev0")
"""
|