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
|
// Copyright (C) 2021 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
#include <QtTest/qtest.h>
#include <QtCore/qdebug.h>
#include <QtMultimedia/qaudiodecoder.h>
#include <private/mediafileselector_p.h>
#include <private/mediabackendutils_p.h>
constexpr char TEST_FILE_NAME[] = "testdata/test.wav";
constexpr char TEST_UNSUPPORTED_FILE_NAME[] = "testdata/test-unsupported.avi";
constexpr char TEST_CORRUPTED_FILE_NAME[] = "testdata/test-corrupted.wav";
constexpr char TEST_INVALID_SOURCE[] = "invalid";
constexpr char TEST_NO_AUDIO_TRACK[] = "testdata/test-no-audio-track.mp4";
constexpr int testFileSampleCount = 44094;
constexpr int testFileSampleRate = 44100;
constexpr std::chrono::microseconds testFileDuration = [] {
using namespace std::chrono;
using namespace std::chrono_literals;
auto duration = nanoseconds(1s) * testFileSampleCount / testFileSampleRate;
return round<microseconds>(duration);
}();
constexpr qint64 testFileDurationUs = qint64(testFileDuration.count());
QT_USE_NAMESPACE
/*
This is the backend conformance test.
Since it relies on platform media framework
it may be less stable.
*/
class tst_QAudioDecoderBackend : public QObject
{
Q_OBJECT
public slots:
void init();
void cleanup();
void initTestCase();
private slots:
void testMediaFilesAreSupported();
void directBruteForceReading();
void indirectReadingByBufferReadySignal();
void indirectReadingByBufferAvailableSignal();
void stopOnBufferReady();
void restartOnBufferReady();
void restartOnFinish();
void fileTest();
void unsupportedFileTest();
void corruptedFileTest();
void invalidSource();
void deviceTest();
void play_emitsFormatError_whenMediaHasNoAudioTrack();
private:
QUrl testFileUrl(const QString filePath);
void checkNoMoreChanges(QAudioDecoder &decoder);
#ifdef Q_OS_ANDROID
QTemporaryFile *temporaryFile = nullptr;
#endif
MediaFileSelector m_mediaSelector;
MaybeUrl m_wavFile = MaybeUrl{ q23::unexpect };
};
void tst_QAudioDecoderBackend::init()
{
}
void tst_QAudioDecoderBackend::initTestCase()
{
QAudioDecoder d;
if (!d.isSupported())
QSKIP("Audio decoder service is not available");
m_wavFile = m_mediaSelector.select(QFINDTESTDATA(TEST_FILE_NAME));
}
void tst_QAudioDecoderBackend::cleanup()
{
#ifdef Q_OS_ANDROID
if (temporaryFile) {
delete temporaryFile;
temporaryFile = nullptr;
}
#endif
}
QUrl tst_QAudioDecoderBackend::testFileUrl(const QString filePath)
{
QUrl url;
#ifndef Q_OS_ANDROID
QFileInfo fileInfo(QFINDTESTDATA(filePath));
url = QUrl::fromLocalFile(fileInfo.absoluteFilePath());
#else
QFile file(":/" + filePath);
if (temporaryFile) {
delete temporaryFile;
temporaryFile = nullptr;
}
if (file.open(QIODevice::ReadOnly)) {
temporaryFile = QTemporaryFile::createNativeFile(file);
url = QUrl(temporaryFile->fileName());
}
#endif
return url;
}
void tst_QAudioDecoderBackend::checkNoMoreChanges(QAudioDecoder &decoder)
{
QSignalSpy finishedSpy(&decoder, &QAudioDecoder::finished);
QSignalSpy bufferReadySpy(&decoder, &QAudioDecoder::bufferReady);
QSignalSpy bufferAvailableSpy(&decoder, &QAudioDecoder::bufferAvailableChanged);
QTest::qWait(50); // wait a bit to check nothing happened after finish
QCOMPARE(finishedSpy.size(), 0);
QCOMPARE(bufferReadySpy.size(), 0);
QCOMPARE(bufferAvailableSpy.size(), 0);
}
void tst_QAudioDecoderBackend::testMediaFilesAreSupported()
{
QCOMPARE(m_mediaSelector.dumpErrors(), "");
}
void tst_QAudioDecoderBackend::directBruteForceReading()
{
CHECK_SELECTED_URL(m_wavFile);
QAudioDecoder decoder;
if (decoder.error() == QAudioDecoder::NotSupportedError)
QSKIP("There is no audio decoding support on this platform.");
int sampleCount = 0;
decoder.setSource(*m_wavFile);
QVERIFY(!decoder.isDecoding());
QVERIFY(!decoder.bufferAvailable());
decoder.start();
QTRY_VERIFY(decoder.isDecoding());
auto waitAndCheck = [](auto &&predicate) { QVERIFY(QTest::qWaitFor(predicate)); };
auto waitForBufferAvailable = [&]() {
waitAndCheck([&]() { return !decoder.isDecoding() || decoder.bufferAvailable(); });
return decoder.bufferAvailable();
};
while (waitForBufferAvailable()) {
auto buffer = decoder.read();
QVERIFY(buffer.isValid());
sampleCount += buffer.sampleCount();
}
checkNoMoreChanges(decoder);
QCOMPARE(sampleCount, testFileSampleCount);
}
void tst_QAudioDecoderBackend::indirectReadingByBufferReadySignal()
{
CHECK_SELECTED_URL(m_wavFile);
QAudioDecoder decoder;
if (decoder.error() == QAudioDecoder::NotSupportedError)
QSKIP("There is no audio decoding support on this platform.");
int sampleCount = 0;
connect(&decoder, &QAudioDecoder::bufferReady, this, [&]() {
QVERIFY(decoder.bufferAvailable());
auto buffer = decoder.read();
QVERIFY(buffer.isValid());
QVERIFY(!decoder.bufferAvailable());
sampleCount += buffer.sampleCount();
});
QSignalSpy decodingSpy(&decoder, &QAudioDecoder::isDecodingChanged);
QSignalSpy finishSpy(&decoder, &QAudioDecoder::finished);
decoder.setSource(*m_wavFile);
QVERIFY(!decoder.isDecoding());
QVERIFY(!decoder.bufferAvailable());
decoder.start();
QTRY_VERIFY_WITH_TIMEOUT(decodingSpy.size() >= 1,
60s); // High timeout because decoding can take a long time
QTRY_VERIFY_WITH_TIMEOUT(finishSpy.size() == 1,
60s); // High timeout because decoding can take a long time
QVERIFY(!decoder.isDecoding());
checkNoMoreChanges(decoder);
QCOMPARE(sampleCount, testFileSampleCount);
QCOMPARE(finishSpy.size(), 1);
}
void tst_QAudioDecoderBackend::indirectReadingByBufferAvailableSignal() {
CHECK_SELECTED_URL(m_wavFile);
QAudioDecoder decoder;
if (decoder.error() == QAudioDecoder::NotSupportedError)
QSKIP("There is no audio decoding support on this platform.");
int sampleCount = 0;
connect(&decoder, &QAudioDecoder::bufferAvailableChanged, this, [&](bool available) {
QCOMPARE(decoder.bufferAvailable(), available);
if (!available)
return;
while (decoder.bufferAvailable()) {
auto buffer = decoder.read();
QVERIFY(buffer.isValid());
sampleCount += buffer.sampleCount();
}
});
QSignalSpy decodingSpy(&decoder, &QAudioDecoder::isDecodingChanged);
QSignalSpy finishSpy(&decoder, &QAudioDecoder::finished);
decoder.setSource(*m_wavFile);
QVERIFY(!decoder.isDecoding());
QVERIFY(!decoder.bufferAvailable());
decoder.start();
QTRY_VERIFY(decodingSpy.size() >= 1);
QTRY_VERIFY(finishSpy.size() == 1);
QVERIFY(!decoder.isDecoding());
checkNoMoreChanges(decoder);
QCOMPARE(sampleCount, testFileSampleCount);
QCOMPARE(finishSpy.size(), 1);
}
void tst_QAudioDecoderBackend::stopOnBufferReady()
{
CHECK_SELECTED_URL(m_wavFile);
QAudioDecoder decoder;
if (decoder.error() == QAudioDecoder::NotSupportedError)
QSKIP("There is no audio decoding support on this platform.");
connect(&decoder, &QAudioDecoder::bufferReady, this, [&]() {
decoder.read(); // run next reading
decoder.stop();
});
QSignalSpy finishSpy(&decoder, &QAudioDecoder::finished);
QSignalSpy bufferReadySpy(&decoder, &QAudioDecoder::bufferReady);
decoder.setSource(*m_wavFile);
decoder.start();
bufferReadySpy.wait();
QVERIFY(!decoder.isDecoding());
checkNoMoreChanges(decoder);
QCOMPARE(bufferReadySpy.size(), 1);
}
void tst_QAudioDecoderBackend::restartOnBufferReady()
{
QSKIP_GSTREAMER("QTBUG-124005: failures on gstreamer");
CHECK_SELECTED_URL(m_wavFile);
QAudioDecoder decoder;
if (decoder.error() == QAudioDecoder::NotSupportedError)
QSKIP("There is no audio decoding support on this platform.");
int sampleCount = 0;
std::once_flag restartOnce;
connect(&decoder, &QAudioDecoder::bufferReady, this, [&]() {
QVERIFY(decoder.bufferAvailable());
auto buffer = decoder.read();
QVERIFY(buffer.isValid());
QVERIFY(!decoder.bufferAvailable());
sampleCount += buffer.sampleCount();
std::call_once(restartOnce, [&]() {
sampleCount = 0;
decoder.stop();
decoder.start();
});
});
QSignalSpy finishSpy(&decoder, &QAudioDecoder::finished);
decoder.setSource(*m_wavFile);
decoder.start();
QTRY_VERIFY2(finishSpy.size() == 2, "Wait for signals after restart and after finishing");
QVERIFY(!decoder.isDecoding());
checkNoMoreChanges(decoder);
QCOMPARE(sampleCount, testFileSampleCount);
}
void tst_QAudioDecoderBackend::restartOnFinish()
{
CHECK_SELECTED_URL(m_wavFile);
QAudioDecoder decoder;
if (decoder.error() == QAudioDecoder::NotSupportedError)
QSKIP("There is no audio decoding support on this platform.");
int sampleCount = 0;
connect(&decoder, &QAudioDecoder::bufferReady, this, [&]() {
auto buffer = decoder.read();
QVERIFY(buffer.isValid());
sampleCount += buffer.sampleCount();
});
QSignalSpy finishSpy(&decoder, &QAudioDecoder::finished);
std::once_flag restartOnce;
connect(&decoder, &QAudioDecoder::finished, this, [&]() {
QVERIFY(!decoder.bufferAvailable());
QVERIFY(!decoder.isDecoding());
std::call_once(restartOnce, [&]() {
sampleCount = 0;
decoder.start();
});
});
decoder.setSource(*m_wavFile);
decoder.start();
QTRY_VERIFY(finishSpy.size() == 2);
QVERIFY(!decoder.isDecoding());
checkNoMoreChanges(decoder);
QCOMPARE(sampleCount, testFileSampleCount);
}
void tst_QAudioDecoderBackend::fileTest()
{
CHECK_SELECTED_URL(m_wavFile);
QAudioDecoder d;
if (d.error() == QAudioDecoder::NotSupportedError)
QSKIP("There is no audio decoding support on this platform.");
QAudioBuffer buffer;
quint64 duration = 0;
int byteCount = 0;
int sampleCount = 0;
QVERIFY(!d.isDecoding());
QVERIFY(d.bufferAvailable() == false);
QCOMPARE(d.source(), QStringLiteral(""));
QVERIFY(d.audioFormat() == QAudioFormat());
// Test local file
d.setSource(*m_wavFile);
QVERIFY(!d.isDecoding());
QVERIFY(!d.bufferAvailable());
QCOMPARE(d.source(), *m_wavFile);
QSignalSpy readySpy(&d, &QAudioDecoder::bufferReady);
QSignalSpy bufferChangedSpy(&d, &QAudioDecoder::bufferAvailableChanged);
QSignalSpy errorSpy(&d, SIGNAL(error(QAudioDecoder::Error)));
QSignalSpy isDecodingSpy(&d, &QAudioDecoder::isDecodingChanged);
QSignalSpy durationSpy(&d, &QAudioDecoder::durationChanged);
QSignalSpy finishedSpy(&d, &QAudioDecoder::finished);
QSignalSpy positionSpy(&d, &QAudioDecoder::positionChanged);
d.start();
QTRY_VERIFY(!isDecodingSpy.isEmpty());
QTRY_VERIFY(!readySpy.isEmpty());
QTRY_VERIFY(!bufferChangedSpy.isEmpty());
QVERIFY(d.bufferAvailable());
QTRY_VERIFY(!durationSpy.isEmpty());
QVERIFY(qAbs(durationSpy.front().front().value<qint64>() - 1000) < 20);
if (finishedSpy.empty())
QVERIFY(qAbs(d.duration() - 1000) < 20);
else
QCOMPARE(d.duration(), -1);
buffer = d.read();
QVERIFY(buffer.isValid());
// Test file is 44.1K 16bit mono, 44094 samples
QCOMPARE(buffer.format().channelCount(), 1);
QCOMPARE(buffer.format().sampleRate(), testFileSampleRate);
QCOMPARE(buffer.format().sampleFormat(), QAudioFormat::Int16);
QCOMPARE(buffer.byteCount(), buffer.sampleCount() * 2); // 16bit mono
// The decoder should still have no format set
QVERIFY(d.audioFormat() == QAudioFormat());
QVERIFY(errorSpy.isEmpty());
duration += buffer.duration();
sampleCount += buffer.sampleCount();
byteCount += buffer.byteCount();
// Now drain the decoder
if (sampleCount < testFileSampleCount) {
QTRY_COMPARE(d.bufferAvailable(), true);
}
auto durationToMs = [](uint64_t dur) {
if (isGStreamerPlatform())
return std::round(dur / 1000.0);
else
return dur / 1000.0;
};
while (d.bufferAvailable()) {
buffer = d.read();
QVERIFY(buffer.isValid());
QTRY_VERIFY(!positionSpy.isEmpty());
QCOMPARE(positionSpy.takeLast().at(0).toLongLong(), qint64(durationToMs(duration)));
duration += buffer.duration();
sampleCount += buffer.sampleCount();
byteCount += buffer.byteCount();
if (sampleCount < testFileSampleCount) {
QTRY_COMPARE(d.bufferAvailable(), true);
}
}
// Make sure the duration is roughly correct (+/- 20ms)
QCOMPARE(sampleCount, testFileSampleCount);
QCOMPARE(byteCount, testFileSampleCount * 2);
QVERIFY(qAbs(qint64(duration) - 1000000) < 20000);
QVERIFY(qAbs((d.position() + (buffer.duration() / 1000)) - 1000) < 20);
QTRY_COMPARE(finishedSpy.size(), 1);
QVERIFY(!d.bufferAvailable());
QTRY_VERIFY(!d.isDecoding());
d.stop();
QTRY_VERIFY(!d.isDecoding());
QTRY_COMPARE(durationSpy.size(), 2);
QCOMPARE(d.duration(), qint64(-1));
QVERIFY(!d.bufferAvailable());
readySpy.clear();
bufferChangedSpy.clear();
isDecodingSpy.clear();
durationSpy.clear();
finishedSpy.clear();
positionSpy.clear();
#ifdef Q_OS_ANDROID
QSKIP("Setting a desired audio format is not yet supported on Android");
#endif
// change output audio format
QAudioFormat format;
format.setChannelCount(2);
format.setSampleRate(11050);
format.setSampleFormat(QAudioFormat::UInt8);
d.setAudioFormat(format);
// We expect 1 second still, at 11050 * 2 samples == 22k samples.
// (at 1 byte/sample -> 22kb)
// Make sure it stuck
QVERIFY(d.audioFormat() == format);
duration = 0;
sampleCount = 0;
byteCount = 0;
d.start();
QTRY_VERIFY(!isDecodingSpy.isEmpty());
QTRY_VERIFY(!readySpy.isEmpty());
QTRY_VERIFY(!bufferChangedSpy.isEmpty());
QVERIFY(d.bufferAvailable());
QTRY_VERIFY(!durationSpy.isEmpty());
QVERIFY(qAbs(durationSpy.front().front().value<qint64>() - 1000) < 20);
if (finishedSpy.empty())
QVERIFY(qAbs(d.duration() - 1000) < 20);
else
QCOMPARE(d.duration(), -1);
buffer = d.read();
QVERIFY(buffer.isValid());
// See if we got the right format
QVERIFY(buffer.format() == format);
// The decoder should still have the same format
QVERIFY(d.audioFormat() == format);
QVERIFY(errorSpy.isEmpty());
duration += buffer.duration();
sampleCount += buffer.sampleCount();
byteCount += buffer.byteCount();
while (finishedSpy.isEmpty() || d.bufferAvailable()) {
if (!d.bufferAvailable()) {
QTest::qWait(std::chrono::milliseconds(10));
continue;
}
buffer = d.read();
QVERIFY(buffer.isValid());
QTRY_VERIFY(!positionSpy.isEmpty());
QCOMPARE(positionSpy.takeLast().at(0).toLongLong(), qlonglong(durationToMs(duration)));
QCOMPARE_LT(d.position() - durationToMs(duration), 20u);
duration += buffer.duration();
sampleCount += buffer.sampleCount();
byteCount += buffer.byteCount();
}
// Resampling might end up with fewer or more samples
// so be a bit sloppy
QCOMPARE_LT(qAbs(sampleCount - 22047), 100);
QCOMPARE_LT(qAbs(byteCount - 22047), 100);
QCOMPARE_LT(qAbs(qint64(duration) - testFileDurationUs), 20000);
QCOMPARE_LT(qAbs((d.position() + (buffer.duration() / 1000)) - 1000), 20);
QVERIFY(!d.bufferAvailable());
QVERIFY(!d.isDecoding());
d.stop();
QTRY_VERIFY(!d.isDecoding());
QTRY_COMPARE(durationSpy.size(), 2);
QCOMPARE(d.duration(), qint64(-1));
QVERIFY(!d.bufferAvailable());
}
/*
The avi file has an audio stream not supported by any codec.
*/
void tst_QAudioDecoderBackend::unsupportedFileTest()
{
QAudioDecoder d;
if (d.error() == QAudioDecoder::NotSupportedError)
QSKIP("There is no audio decoding support on this platform.");
QAudioBuffer buffer;
QVERIFY(!d.isDecoding());
QVERIFY(d.bufferAvailable() == false);
QCOMPARE(d.source(), QStringLiteral(""));
QVERIFY(d.audioFormat() == QAudioFormat());
// Test local file
QUrl url = testFileUrl(TEST_UNSUPPORTED_FILE_NAME);
d.setSource(url);
QVERIFY(!d.isDecoding());
QVERIFY(!d.bufferAvailable());
QCOMPARE(d.source(), url);
QSignalSpy readySpy(&d, &QAudioDecoder::bufferReady);
QSignalSpy bufferChangedSpy(&d, &QAudioDecoder::bufferAvailableChanged);
QSignalSpy errorSpy(&d, SIGNAL(error(QAudioDecoder::Error)));
QSignalSpy isDecodingSpy(&d, &QAudioDecoder::isDecodingChanged);
QSignalSpy durationSpy(&d, &QAudioDecoder::durationChanged);
QSignalSpy finishedSpy(&d, &QAudioDecoder::finished);
QSignalSpy positionSpy(&d, &QAudioDecoder::positionChanged);
d.start();
QTRY_VERIFY(!d.isDecoding());
QVERIFY(!d.bufferAvailable());
QCOMPARE(d.audioFormat(), QAudioFormat());
QCOMPARE(d.duration(), qint64(-1));
QCOMPARE(d.position(), qint64(-1));
// Check the error code.
QTRY_VERIFY(!errorSpy.isEmpty());
// Have to use qvariant_cast, toInt will return 0 because unrecognized type;
QAudioDecoder::Error errorCode = qvariant_cast<QAudioDecoder::Error>(errorSpy.takeLast().at(0));
QCOMPARE(errorCode, QAudioDecoder::FormatError);
QCOMPARE(d.error(), QAudioDecoder::FormatError);
// Check all other spies.
QVERIFY(readySpy.isEmpty());
QVERIFY(bufferChangedSpy.isEmpty());
QVERIFY(isDecodingSpy.isEmpty());
QVERIFY(finishedSpy.isEmpty());
QVERIFY(positionSpy.isEmpty());
// Either reject the file directly, or set the duration to 5secs on setUrl() and back to -1 on start()
QVERIFY(durationSpy.isEmpty() || durationSpy.size() == 2);
errorSpy.clear();
// Try read even if the file is not supported to test robustness.
buffer = d.read();
QTRY_VERIFY(!d.isDecoding());
QVERIFY(!buffer.isValid());
QVERIFY(!d.bufferAvailable());
QCOMPARE(d.position(), qint64(-1));
QVERIFY(errorSpy.isEmpty());
QVERIFY(readySpy.isEmpty());
QVERIFY(bufferChangedSpy.isEmpty());
QVERIFY(isDecodingSpy.isEmpty());
QVERIFY(finishedSpy.isEmpty());
QVERIFY(positionSpy.isEmpty());
QVERIFY(durationSpy.isEmpty() || durationSpy.size() == 2);
d.stop();
QTRY_VERIFY(!d.isDecoding());
QCOMPARE(d.duration(), qint64(-1));
QVERIFY(!d.bufferAvailable());
}
/*
The corrupted file is generated by copying a few random numbers
from /dev/random on a linux machine.
*/
void tst_QAudioDecoderBackend::corruptedFileTest()
{
QAudioDecoder d;
if (d.error() == QAudioDecoder::NotSupportedError)
QSKIP("There is no audio decoding support on this platform.");
QAudioBuffer buffer;
QVERIFY(!d.isDecoding());
QVERIFY(d.bufferAvailable() == false);
QCOMPARE(d.source(), QUrl());
QVERIFY(d.audioFormat() == QAudioFormat());
// Test local file
QUrl url = testFileUrl(TEST_CORRUPTED_FILE_NAME);
d.setSource(url);
QVERIFY(!d.isDecoding());
QVERIFY(!d.bufferAvailable());
QCOMPARE(d.source(), url);
QSignalSpy readySpy(&d, &QAudioDecoder::bufferReady);
QSignalSpy bufferChangedSpy(&d, &QAudioDecoder::bufferAvailableChanged);
QSignalSpy errorSpy(&d, SIGNAL(error(QAudioDecoder::Error)));
QSignalSpy isDecodingSpy(&d, &QAudioDecoder::isDecodingChanged);
QSignalSpy durationSpy(&d, &QAudioDecoder::durationChanged);
QSignalSpy finishedSpy(&d, &QAudioDecoder::finished);
QSignalSpy positionSpy(&d, &QAudioDecoder::positionChanged);
d.start();
QTRY_VERIFY(!d.isDecoding());
QVERIFY(!d.bufferAvailable());
QCOMPARE(d.audioFormat(), QAudioFormat());
QCOMPARE(d.duration(), qint64(-1));
QCOMPARE(d.position(), qint64(-1));
// Check the error code.
QTRY_VERIFY(!errorSpy.isEmpty());
// Have to use qvariant_cast, toInt will return 0 because unrecognized type;
QAudioDecoder::Error errorCode = qvariant_cast<QAudioDecoder::Error>(errorSpy.takeLast().at(0));
QCOMPARE(errorCode, QAudioDecoder::FormatError);
QCOMPARE(d.error(), QAudioDecoder::FormatError);
// Check all other spies.
QVERIFY(readySpy.isEmpty());
QVERIFY(bufferChangedSpy.isEmpty());
QVERIFY(isDecodingSpy.isEmpty());
QVERIFY(finishedSpy.isEmpty());
QVERIFY(positionSpy.isEmpty());
QVERIFY(durationSpy.isEmpty());
errorSpy.clear();
// Try read even if the file is corrupted to test the robustness.
buffer = d.read();
QTRY_VERIFY(!d.isDecoding());
QVERIFY(!buffer.isValid());
QVERIFY(!d.bufferAvailable());
QCOMPARE(d.position(), qint64(-1));
QVERIFY(errorSpy.isEmpty());
QVERIFY(readySpy.isEmpty());
QVERIFY(bufferChangedSpy.isEmpty());
QVERIFY(isDecodingSpy.isEmpty());
QVERIFY(finishedSpy.isEmpty());
QVERIFY(positionSpy.isEmpty());
QVERIFY(durationSpy.isEmpty());
d.stop();
QTRY_VERIFY(!d.isDecoding());
QCOMPARE(d.duration(), qint64(-1));
QVERIFY(!d.bufferAvailable());
}
void tst_QAudioDecoderBackend::invalidSource()
{
QAudioDecoder d;
if (d.error() == QAudioDecoder::NotSupportedError)
QSKIP("There is no audio decoding support on this platform.");
QAudioBuffer buffer;
QVERIFY(!d.isDecoding());
QVERIFY(d.bufferAvailable() == false);
QCOMPARE(d.source(), QUrl());
QVERIFY(d.audioFormat() == QAudioFormat());
// Test invalid file source
QFileInfo fileInfo(TEST_INVALID_SOURCE);
QUrl url = QUrl::fromLocalFile(fileInfo.absoluteFilePath());
d.setSource(url);
QVERIFY(!d.isDecoding());
QVERIFY(!d.bufferAvailable());
QCOMPARE(d.source(), url);
QSignalSpy readySpy(&d, &QAudioDecoder::bufferReady);
QSignalSpy bufferChangedSpy(&d, &QAudioDecoder::bufferAvailableChanged);
QSignalSpy errorSpy(&d, SIGNAL(error(QAudioDecoder::Error)));
QSignalSpy isDecodingSpy(&d, &QAudioDecoder::isDecodingChanged);
QSignalSpy durationSpy(&d, &QAudioDecoder::durationChanged);
QSignalSpy finishedSpy(&d, &QAudioDecoder::finished);
QSignalSpy positionSpy(&d, &QAudioDecoder::positionChanged);
d.start();
QTRY_VERIFY(!d.isDecoding());
QVERIFY(!d.bufferAvailable());
QCOMPARE(d.audioFormat(), QAudioFormat());
QCOMPARE(d.duration(), qint64(-1));
QCOMPARE(d.position(), qint64(-1));
// Check the error code.
QTRY_VERIFY(!errorSpy.isEmpty());
// Have to use qvariant_cast, toInt will return 0 because unrecognized type;
QAudioDecoder::Error errorCode = qvariant_cast<QAudioDecoder::Error>(errorSpy.takeLast().at(0));
QCOMPARE(errorCode, QAudioDecoder::ResourceError);
QCOMPARE(d.error(), QAudioDecoder::ResourceError);
// Check all other spies.
QVERIFY(readySpy.isEmpty());
QVERIFY(bufferChangedSpy.isEmpty());
QVERIFY(isDecodingSpy.isEmpty());
QVERIFY(finishedSpy.isEmpty());
QVERIFY(positionSpy.isEmpty());
QVERIFY(durationSpy.isEmpty());
errorSpy.clear();
d.stop();
QTRY_VERIFY(!d.isDecoding());
QCOMPARE(d.duration(), qint64(-1));
QVERIFY(!d.bufferAvailable());
QFile file;
file.setFileName(TEST_INVALID_SOURCE);
QTEST_ASSERT(!file.open(QIODevice::ReadOnly));
d.setSourceDevice(&file);
d.start();
QTRY_VERIFY(!d.isDecoding());
QVERIFY(!d.bufferAvailable());
QCOMPARE(d.audioFormat(), QAudioFormat());
QCOMPARE(d.duration(), qint64(-1));
QCOMPARE(d.position(), qint64(-1));
// Check the error code.
QTRY_VERIFY(!errorSpy.isEmpty());
errorCode = qvariant_cast<QAudioDecoder::Error>(errorSpy.takeLast().at(0));
QCOMPARE(errorCode, QAudioDecoder::ResourceError);
QCOMPARE(d.error(), QAudioDecoder::ResourceError);
// Check all other spies.
QVERIFY(readySpy.isEmpty());
QVERIFY(bufferChangedSpy.isEmpty());
QVERIFY(isDecodingSpy.isEmpty());
QVERIFY(finishedSpy.isEmpty());
QVERIFY(positionSpy.isEmpty());
QVERIFY(durationSpy.isEmpty());
errorSpy.clear();
d.stop();
QTRY_VERIFY(!d.isDecoding());
QCOMPARE(d.duration(), qint64(-1));
QVERIFY(!d.bufferAvailable());
}
void tst_QAudioDecoderBackend::deviceTest()
{
using namespace std::chrono;
CHECK_SELECTED_URL(m_wavFile);
QAudioDecoder d;
if (d.error() == QAudioDecoder::NotSupportedError)
QSKIP("There is no audio decoding support on this platform.");
QAudioBuffer buffer;
quint64 duration = 0;
int sampleCount = 0;
QSignalSpy readySpy(&d, &QAudioDecoder::bufferReady);
QSignalSpy bufferChangedSpy(&d, &QAudioDecoder::bufferAvailableChanged);
QSignalSpy errorSpy(&d, SIGNAL(error(QAudioDecoder::Error)));
QSignalSpy isDecodingSpy(&d, &QAudioDecoder::isDecodingChanged);
QSignalSpy durationSpy(&d, &QAudioDecoder::durationChanged);
QSignalSpy finishedSpy(&d, &QAudioDecoder::finished);
QSignalSpy positionSpy(&d, &QAudioDecoder::positionChanged);
QVERIFY(!d.isDecoding());
QVERIFY(d.bufferAvailable() == false);
QCOMPARE(d.source(), QStringLiteral(""));
QVERIFY(d.audioFormat() == QAudioFormat());
QFile file(m_wavFile->toString());
QVERIFY(file.open(QIODevice::ReadOnly));
d.setSourceDevice(&file);
QVERIFY(d.sourceDevice() == &file);
QVERIFY(d.source().isEmpty());
// We haven't set the format yet
QVERIFY(d.audioFormat() == QAudioFormat());
d.start();
QTRY_VERIFY(!isDecodingSpy.isEmpty());
QTRY_VERIFY(!readySpy.isEmpty());
QTRY_VERIFY(!bufferChangedSpy.isEmpty());
QVERIFY(d.bufferAvailable());
QTRY_VERIFY(!durationSpy.isEmpty());
if (finishedSpy.empty())
QVERIFY(qAbs(d.duration() - 1000) < 20);
else
QCOMPARE(d.duration(), -1);
buffer = d.read();
QVERIFY(buffer.isValid());
// Test file is 44.1K 16bit mono
QCOMPARE(buffer.format().channelCount(), 1);
QCOMPARE(buffer.format().sampleRate(), testFileSampleRate);
QCOMPARE(buffer.format().sampleFormat(), QAudioFormat::Int16);
QVERIFY(errorSpy.isEmpty());
duration += buffer.duration();
sampleCount += buffer.sampleCount();
// Now drain the decoder
if (sampleCount < testFileSampleCount) {
QTRY_COMPARE(d.bufferAvailable(), true);
}
while (d.bufferAvailable()) {
buffer = d.read();
QVERIFY(buffer.isValid());
QTRY_VERIFY(!positionSpy.isEmpty());
if (isGStreamerPlatform())
QCOMPARE_EQ(positionSpy.takeLast().at(0).toLongLong(),
round<milliseconds>(microseconds{ duration }).count());
else
QCOMPARE_EQ(positionSpy.takeLast().at(0).toLongLong(),
floor<milliseconds>(microseconds{ duration }).count());
QVERIFY(d.position() - (duration / 1000) < 20);
duration += buffer.duration();
sampleCount += buffer.sampleCount();
if (sampleCount < testFileSampleCount) {
QTRY_COMPARE(d.bufferAvailable(), true);
}
}
// Make sure the duration is roughly correct (+/- 20ms)
QCOMPARE(sampleCount, testFileSampleCount);
QVERIFY(qAbs(qint64(duration) - 1000000) < 20000);
QVERIFY(qAbs((d.position() + (buffer.duration() / 1000)) - 1000) < 20);
QTRY_COMPARE(finishedSpy.size(), 1);
QVERIFY(!d.bufferAvailable());
QTRY_VERIFY(!d.isDecoding());
d.stop();
QTRY_VERIFY(!d.isDecoding());
QVERIFY(!d.bufferAvailable());
QTRY_COMPARE(durationSpy.size(), 2);
QCOMPARE(d.duration(), qint64(-1));
readySpy.clear();
bufferChangedSpy.clear();
isDecodingSpy.clear();
durationSpy.clear();
finishedSpy.clear();
positionSpy.clear();
#ifdef Q_OS_ANDROID
QSKIP("Setting a desired audio format is not yet supported on Android");
#endif
// Now try changing formats
QAudioFormat format;
format.setChannelCount(2);
format.setSampleRate(8000);
format.setSampleFormat(QAudioFormat::UInt8);
d.setAudioFormat(format);
// Make sure it stuck
QVERIFY(d.audioFormat() == format);
d.start();
QVERIFY(d.error() == QAudioDecoder::NoError);
QTRY_VERIFY(!isDecodingSpy.isEmpty());
QTRY_VERIFY(!readySpy.isEmpty());
QTRY_VERIFY(!bufferChangedSpy.isEmpty());
QVERIFY(d.bufferAvailable());
QTRY_VERIFY(!durationSpy.isEmpty());
QVERIFY(qAbs(durationSpy.front().front().value<qint64>() - 1000) < 20);
if (finishedSpy.empty())
QVERIFY(qAbs(d.duration() - 1000) < 20);
else
QCOMPARE(d.duration(), -1);
buffer = d.read();
QVERIFY(buffer.isValid());
// See if we got the right format
QVERIFY(buffer.format() == format);
// The decoder should still have the same format
QVERIFY(d.audioFormat() == format);
QVERIFY(errorSpy.isEmpty());
d.stop();
QTRY_VERIFY(!d.isDecoding());
QVERIFY(!d.bufferAvailable());
QTRY_COMPARE(durationSpy.size(), 2);
QCOMPARE(d.duration(), qint64(-1));
}
void tst_QAudioDecoderBackend::play_emitsFormatError_whenMediaHasNoAudioTrack()
{
QAudioDecoder decoder;
QSignalSpy errors{ &decoder, qOverload<QAudioDecoder::Error>(&QAudioDecoder::error) };
decoder.setSource(testFileUrl(TEST_NO_AUDIO_TRACK));
decoder.start();
QTRY_VERIFY(!errors.empty());
QCOMPARE_EQ(decoder.error(), QAudioDecoder::Error::FormatError);
}
QTEST_MAIN(tst_QAudioDecoderBackend)
#include "tst_qaudiodecoderbackend.moc"
|