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
|
/****************************************************************************
**
** Copyright (C) 2016 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
** This file is part of the test suite of the Qt Toolkit.
**
** $QT_BEGIN_LICENSE:GPL-EXCEPT$
** Commercial License Usage
** Licensees holding valid commercial Qt licenses may use this file in
** accordance with the commercial license agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and The Qt Company. For licensing terms
** and conditions see https://www.qt.io/terms-conditions. For further
** information use the contact form at https://www.qt.io/contact-us.
**
** GNU General Public License Usage
** Alternatively, this file may be used under the terms of the GNU
** General Public License version 3 as published by the Free Software
** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
** included in the packaging of this file. Please review the following
** information to ensure the GNU General Public License requirements will
** be met: https://www.gnu.org/licenses/gpl-3.0.html.
**
** $QT_END_LICENSE$
**
****************************************************************************/
#include <QCoreApplication>
#include <QDebug>
#include <QElapsedTimer>
#include <QtTest/QtTest>
#include <QtConcurrent>
#include <private/qfutureinterface_p.h>
using namespace QtConcurrent;
#include <QtTest/QtTest>
//#define PRINT
class tst_QFutureWatcher: public QObject
{
Q_OBJECT
private slots:
void startFinish();
void progressValueChanged();
void canceled();
void resultAt();
void resultReadyAt();
void futureSignals();
void watchFinishedFuture();
void watchCanceledFuture();
void disconnectRunningFuture();
void tooMuchProgress();
void progressText();
void sharedFutureInterface();
void changeFuture();
void cancelEvents();
void pauseEvents();
void finishedState();
void throttling();
void incrementalMapResults();
void incrementalFilterResults();
void qfutureSynchronizer();
void warnRace();
void matchFlags();
};
void sleeper()
{
QTest::qSleep(100);
}
void tst_QFutureWatcher::startFinish()
{
QFutureWatcher<void> futureWatcher;
QSignalSpy startedSpy(&futureWatcher, &QFutureWatcher<void>::started);
QSignalSpy finishedSpy(&futureWatcher, &QFutureWatcher<void>::finished);
QVERIFY(startedSpy.isValid());
QVERIFY(finishedSpy.isValid());
futureWatcher.setFuture(QtConcurrent::run(sleeper));
QVERIFY(startedSpy.wait());
QCOMPARE(startedSpy.count(), 1);
QCOMPARE(finishedSpy.count(), 0);
futureWatcher.future().waitForFinished();
QVERIFY(finishedSpy.wait());
QCOMPARE(startedSpy.count(), 1);
QCOMPARE(finishedSpy.count(), 1);
}
void mapSleeper(int &)
{
QTest::qSleep(100);
}
QSet<int> progressValues;
QSet<QString> progressTexts;
QMutex mutex;
class ProgressObject : public QObject
{
Q_OBJECT
public slots:
void printProgress(int);
void printText(const QString &text);
void registerProgress(int);
void registerText(const QString &text);
};
void ProgressObject::printProgress(int progress)
{
qDebug() << "thread" << QThread::currentThread() << "reports progress" << progress;
}
void ProgressObject::printText(const QString &text)
{
qDebug() << "thread" << QThread::currentThread() << "reports progress text" << text;
}
void ProgressObject::registerProgress(int progress)
{
QTest::qSleep(1);
progressValues.insert(progress);
}
void ProgressObject::registerText(const QString &text)
{
QTest::qSleep(1);
progressTexts.insert(text);
}
QList<int> createList(int listSize)
{
QList<int> list;
for (int i = 0; i < listSize; ++i) {
list.append(i);
}
return list;
}
void tst_QFutureWatcher::progressValueChanged()
{
#ifdef PRINT
qDebug() << "main thread" << QThread::currentThread();
#endif
progressValues.clear();
const int listSize = 20;
QList<int> list = createList(listSize);
QFutureWatcher<void> futureWatcher;
ProgressObject progressObject;
QObject::connect(&futureWatcher, SIGNAL(finished()), &QTestEventLoop::instance(), SLOT(exitLoop()));
#ifdef PRINT
QObject::connect(&futureWatcher, SIGNAL(progressValueChanged(int)), &progressObject, SLOT(printProgress(int)), Qt::DirectConnection );
#endif
QObject::connect(&futureWatcher, SIGNAL(progressValueChanged(int)), &progressObject, SLOT(registerProgress(int)));
futureWatcher.setFuture(QtConcurrent::map(list, mapSleeper));
QTestEventLoop::instance().enterLoop(5);
QVERIFY(!QTestEventLoop::instance().timeout());
futureWatcher.disconnect();
QVERIFY(progressValues.contains(0));
QVERIFY(progressValues.contains(listSize));
}
class CancelObject : public QObject
{
Q_OBJECT
public:
bool wasCanceled;
CancelObject() : wasCanceled(false) {};
public slots:
void cancel();
};
void CancelObject::cancel()
{
#ifdef PRINT
qDebug() << "thread" << QThread::currentThread() << "reports canceled";
#endif
wasCanceled = true;
}
void tst_QFutureWatcher::canceled()
{
const int listSize = 20;
QList<int> list = createList(listSize);
QFutureWatcher<void> futureWatcher;
QFuture<void> future;
CancelObject cancelObject;
QObject::connect(&futureWatcher, SIGNAL(canceled()), &cancelObject, SLOT(cancel()));
QObject::connect(&futureWatcher, SIGNAL(canceled()),
&QTestEventLoop::instance(), SLOT(exitLoop()), Qt::QueuedConnection);
future = QtConcurrent::map(list, mapSleeper);
futureWatcher.setFuture(future);
futureWatcher.cancel();
QTestEventLoop::instance().enterLoop(5);
QVERIFY(!QTestEventLoop::instance().timeout());
QVERIFY(future.isCanceled());
QVERIFY(cancelObject.wasCanceled);
futureWatcher.disconnect();
future.waitForFinished();
}
class IntTask : public RunFunctionTask<int>
{
public:
void runFunctor()
{
result = 10;
}
};
void tst_QFutureWatcher::resultAt()
{
QFutureWatcher<int> futureWatcher;
futureWatcher.setFuture((new IntTask())->start());
futureWatcher.waitForFinished();
QCOMPARE(futureWatcher.result(), 10);
QCOMPARE(futureWatcher.resultAt(0), 10);
}
void tst_QFutureWatcher::resultReadyAt()
{
QFutureWatcher<int> futureWatcher;
QSignalSpy resultSpy(&futureWatcher, &QFutureWatcher<int>::resultReadyAt);
QFuture<int> future = (new IntTask())->start();
futureWatcher.setFuture(future);
QVERIFY(resultSpy.wait());
// Setting the future again should give us another signal.
// (this is to prevent the race where the task associated
// with the future finishes before setFuture is called.)
futureWatcher.setFuture(QFuture<int>());
futureWatcher.setFuture(future);
QVERIFY(resultSpy.wait());
}
class SignalSlotObject : public QObject
{
Q_OBJECT
signals:
void cancel();
public slots:
void started()
{
qDebug() << "started called";
}
void finished()
{
qDebug() << "finished called";
}
void canceled()
{
qDebug() << "canceled called";
}
#ifdef PRINT
void resultReadyAt(int index)
{
qDebug() << "result" << index << "ready";
}
#else
void resultReadyAt(int) { }
#endif
void progressValueChanged(int progress)
{
qDebug() << "progress" << progress;
}
void progressRangeChanged(int min, int max)
{
qDebug() << "progress range" << min << max;
}
};
void tst_QFutureWatcher::futureSignals()
{
{
QFutureInterface<int> a;
QFutureWatcher<int> f;
SignalSlotObject object;
#ifdef PRINT
connect(&f, SIGNAL(finished()), &object, SLOT(finished()));
connect(&f, SIGNAL(progressValueChanged(int)), &object, SLOT(progressValueChanged(int)));
#endif
// must connect to resultReadyAt so that the watcher can detect the connection
// (QSignalSpy does not trigger it.)
connect(&f, SIGNAL(resultReadyAt(int)), &object, SLOT(resultReadyAt(int)));
a.reportStarted();
QSignalSpy progressSpy(&f, &QFutureWatcher<void>::progressValueChanged);
QSignalSpy finishedSpy(&f, &QFutureWatcher<void>::finished);
QSignalSpy resultReadySpy(&f, &QFutureWatcher<void>::resultReadyAt);
QVERIFY(progressSpy.isValid());
QVERIFY(finishedSpy.isValid());
QVERIFY(resultReadySpy.isValid());
f.setFuture(a.future());
const int progress = 1;
a.setProgressValue(progress);
QTRY_COMPARE(progressSpy.count(), 2);
QCOMPARE(progressSpy.takeFirst().at(0).toInt(), 0);
QCOMPARE(progressSpy.takeFirst().at(0).toInt(), 1);
const int result = 10;
a.reportResult(&result);
QVERIFY(resultReadySpy.wait());
QCOMPARE(resultReadySpy.count(), 1);
a.reportFinished(&result);
QTRY_COMPARE(resultReadySpy.count(), 2);
QCOMPARE(resultReadySpy.takeFirst().at(0).toInt(), 0); // check the index
QCOMPARE(resultReadySpy.takeFirst().at(0).toInt(), 1);
QCOMPARE(finishedSpy.count(), 1);
}
}
void tst_QFutureWatcher::watchFinishedFuture()
{
QFutureInterface<int> iface;
iface.reportStarted();
QFuture<int> f = iface.future();
int value = 100;
iface.reportFinished(&value);
QFutureWatcher<int> watcher;
SignalSlotObject object;
#ifdef PRINT
connect(&watcher, SIGNAL(started()), &object, SLOT(started()));
connect(&watcher, SIGNAL(canceled()), &object, SLOT(canceled()));
connect(&watcher, SIGNAL(finished()), &object, SLOT(finished()));
connect(&watcher, SIGNAL(progressValueChanged(int)), &object, SLOT(progressValueChanged(int)));
connect(&watcher, SIGNAL(progressRangeChanged(int,int)), &object, SLOT(progressRangeChanged(int,int)));
#endif
connect(&watcher, SIGNAL(resultReadyAt(int)), &object, SLOT(resultReadyAt(int)));
QSignalSpy startedSpy(&watcher, &QFutureWatcher<int>::started);
QSignalSpy finishedSpy(&watcher, &QFutureWatcher<int>::finished);
QSignalSpy resultReadySpy(&watcher, &QFutureWatcher<int>::resultReadyAt);
QSignalSpy canceledSpy(&watcher, &QFutureWatcher<int>::canceled);
QVERIFY(startedSpy.isValid());
QVERIFY(finishedSpy.isValid());
QVERIFY(resultReadySpy.isValid());
QVERIFY(canceledSpy.isValid());
watcher.setFuture(f);
QVERIFY(finishedSpy.wait());
QCOMPARE(startedSpy.count(), 1);
QCOMPARE(finishedSpy.count(), 1);
QCOMPARE(resultReadySpy.count(), 1);
QCOMPARE(canceledSpy.count(), 0);
}
void tst_QFutureWatcher::watchCanceledFuture()
{
QFuture<int> f;
QFutureWatcher<int> watcher;
SignalSlotObject object;
#ifdef PRINT
connect(&watcher, SIGNAL(started()), &object, SLOT(started()));
connect(&watcher, SIGNAL(canceled()), &object, SLOT(canceled()));
connect(&watcher, SIGNAL(finished()), &object, SLOT(finished()));
connect(&watcher, SIGNAL(progressValueChanged(int)), &object, SLOT(progressValueChanged(int)));
connect(&watcher, SIGNAL(progressRangeChanged(int,int)), &object, SLOT(progressRangeChanged(int,int)));
#endif
connect(&watcher, SIGNAL(resultReadyAt(int)), &object, SLOT(resultReadyAt(int)));
QSignalSpy startedSpy(&watcher, &QFutureWatcher<int>::started);
QSignalSpy finishedSpy(&watcher, &QFutureWatcher<int>::finished);
QSignalSpy resultReadySpy(&watcher, &QFutureWatcher<int>::resultReadyAt);
QSignalSpy canceledSpy(&watcher, &QFutureWatcher<int>::canceled);
QVERIFY(startedSpy.isValid());
QVERIFY(finishedSpy.isValid());
QVERIFY(resultReadySpy.isValid());
QVERIFY(canceledSpy.isValid());
watcher.setFuture(f);
QVERIFY(finishedSpy.wait());
QCOMPARE(startedSpy.count(), 1);
QCOMPARE(finishedSpy.count(), 1);
QCOMPARE(resultReadySpy.count(), 0);
QCOMPARE(canceledSpy.count(), 1);
}
void tst_QFutureWatcher::disconnectRunningFuture()
{
QFutureInterface<int> a;
a.reportStarted();
QFuture<int> f = a.future();
QFutureWatcher<int> *watcher = new QFutureWatcher<int>();
QSignalSpy finishedSpy(watcher, &QFutureWatcher<int>::finished);
QSignalSpy resultReadySpy(watcher, &QFutureWatcher<int>::resultReadyAt);
QVERIFY(finishedSpy.isValid());
QVERIFY(resultReadySpy.isValid());
watcher->setFuture(f);
SignalSlotObject object;
connect(watcher, SIGNAL(resultReadyAt(int)), &object, SLOT(resultReadyAt(int)));
const int result = 10;
a.reportResult(&result);
QVERIFY(resultReadySpy.wait());
QCOMPARE(resultReadySpy.count(), 1);
delete watcher;
a.reportResult(&result);
QTest::qWait(10);
QCOMPARE(resultReadySpy.count(), 1);
a.reportFinished(&result);
QTest::qWait(10);
QCOMPARE(finishedSpy.count(), 0);
}
const int maxProgress = 100000;
class ProgressEmitterTask : public RunFunctionTask<void>
{
public:
void runFunctor()
{
setProgressRange(0, maxProgress);
for (int p = 0; p <= maxProgress; ++p)
setProgressValue(p);
}
};
void tst_QFutureWatcher::tooMuchProgress()
{
progressValues.clear();
ProgressObject o;
QFutureWatcher<void> f;
QObject::connect(&f, SIGNAL(finished()), &QTestEventLoop::instance(), SLOT(exitLoop()));
#ifdef PRINT
QObject::connect(&f, SIGNAL(progressValueChanged(int)), &o, SLOT(printProgress(int)));
#endif
QObject::connect(&f, SIGNAL(progressValueChanged(int)), &o, SLOT(registerProgress(int)));
f.setFuture((new ProgressEmitterTask())->start());
QTestEventLoop::instance().enterLoop(5);
QVERIFY(!QTestEventLoop::instance().timeout());
QVERIFY(progressValues.contains(maxProgress));
}
template <typename T>
class ProgressTextTask : public RunFunctionTask<T>
{
public:
void runFunctor()
{
this->setProgressValueAndText(1, QLatin1String("Foo 1"));
while (this->isProgressUpdateNeeded() == false)
QTest::qSleep(1);
this->setProgressValueAndText(2, QLatin1String("Foo 2"));
while (this->isProgressUpdateNeeded() == false)
QTest::qSleep(1);
this->setProgressValueAndText(3, QLatin1String("Foo 3"));
while (this->isProgressUpdateNeeded() == false)
QTest::qSleep(1);
this->setProgressValueAndText(4, QLatin1String("Foo 4"));
}
};
void tst_QFutureWatcher::progressText()
{
{ // instantiate API for T=int and T=void.
ProgressTextTask<int> a;
ProgressTextTask<void> b;
}
{
progressValues.clear();
progressTexts.clear();
QFuture<int> f = ((new ProgressTextTask<int>())->start());
QFutureWatcher<int> watcher;
ProgressObject o;
QObject::connect(&watcher, SIGNAL(finished()), &QTestEventLoop::instance(), SLOT(exitLoop()));
#ifdef PRINT
QObject::connect(&watcher, SIGNAL(progressValueChanged(int)), &o, SLOT(printProgress(int)));
QObject::connect(&watcher, SIGNAL(progressTextChanged(QString)), &o, SLOT(printText(QString)));
#endif
QObject::connect(&watcher, SIGNAL(progressValueChanged(int)), &o, SLOT(registerProgress(int)));
QObject::connect(&watcher, SIGNAL(progressTextChanged(QString)), &o, SLOT(registerText(QString)));
watcher.setFuture(f);
QTestEventLoop::instance().enterLoop(5);
QVERIFY(!QTestEventLoop::instance().timeout());
QCOMPARE(f.progressText(), QLatin1String("Foo 4"));
QCOMPARE(f.progressValue(), 4);
QVERIFY(progressValues.contains(1));
QVERIFY(progressValues.contains(2));
QVERIFY(progressValues.contains(3));
QVERIFY(progressValues.contains(4));
QVERIFY(progressTexts.contains(QLatin1String("Foo 1")));
QVERIFY(progressTexts.contains(QLatin1String("Foo 2")));
QVERIFY(progressTexts.contains(QLatin1String("Foo 3")));
QVERIFY(progressTexts.contains(QLatin1String("Foo 4")));
}
}
template <typename T>
void callInterface(T &obj)
{
obj.progressValue();
obj.progressMinimum();
obj.progressMaximum();
obj.progressText();
obj.isStarted();
obj.isFinished();
obj.isRunning();
obj.isCanceled();
obj.isPaused();
obj.cancel();
obj.pause();
obj.resume();
obj.togglePaused();
obj.waitForFinished();
const T& objConst = obj;
objConst.progressValue();
objConst.progressMinimum();
objConst.progressMaximum();
objConst.progressText();
objConst.isStarted();
objConst.isFinished();
objConst.isRunning();
objConst.isCanceled();
objConst.isPaused();
}
template <typename T>
void callInterface(const T &obj)
{
obj.result();
obj.resultAt(0);
}
// QFutureWatcher and QFuture has a similar interface. Test
// that the functions we want ot have in both are actually
// there.
void tst_QFutureWatcher::sharedFutureInterface()
{
QFutureInterface<int> iface;
iface.reportStarted();
QFuture<int> intFuture = iface.future();
int value = 0;
iface.reportFinished(&value);
QFuture<void> voidFuture;
QFutureWatcher<int> intWatcher;
intWatcher.setFuture(intFuture);
QFutureWatcher<void> voidWatcher;
callInterface(intFuture);
callInterface(voidFuture);
callInterface(intWatcher);
callInterface(voidWatcher);
callInterface(intFuture);
callInterface(intWatcher);
}
void tst_QFutureWatcher::changeFuture()
{
QFutureInterface<int> iface;
iface.reportStarted();
QFuture<int> a = iface.future();
int value = 0;
iface.reportFinished(&value);
QFuture<int> b;
QFutureWatcher<int> watcher;
SignalSlotObject object;
connect(&watcher, SIGNAL(resultReadyAt(int)), &object, SLOT(resultReadyAt(int)));
QSignalSpy resultReadySpy(&watcher, &QFutureWatcher<int>::resultReadyAt);
QVERIFY(resultReadySpy.isValid());
watcher.setFuture(a); // Watch 'a' which will generate a resultReady event.
watcher.setFuture(b); // But oh no! we're switching to another future
QTest::qWait(10); // before the event gets delivered.
QCOMPARE(resultReadySpy.count(), 0);
watcher.setFuture(a);
watcher.setFuture(b);
watcher.setFuture(a); // setting it back gets us one event, not two.
QVERIFY(resultReadySpy.wait());
QCOMPARE(resultReadySpy.count(), 1);
}
// Test that events aren't delivered from canceled futures
void tst_QFutureWatcher::cancelEvents()
{
QFutureInterface<int> iface;
iface.reportStarted();
QFuture<int> a = iface.future();
int value = 0;
iface.reportFinished(&value);
QFutureWatcher<int> watcher;
SignalSlotObject object;
connect(&watcher, SIGNAL(resultReadyAt(int)), &object, SLOT(resultReadyAt(int)));
QSignalSpy finishedSpy(&watcher, &QFutureWatcher<int>::finished);
QSignalSpy resultReadySpy(&watcher, &QFutureWatcher<int>::resultReadyAt);
QVERIFY(finishedSpy.isValid());
QVERIFY(resultReadySpy.isValid());
watcher.setFuture(a);
watcher.cancel();
QVERIFY(finishedSpy.wait());
QCOMPARE(resultReadySpy.count(), 0);
}
// Tests that events from paused futures are saved and
// delivered on resume.
void tst_QFutureWatcher::pauseEvents()
{
{
QFutureInterface<int> iface;
iface.reportStarted();
QFutureWatcher<int> watcher;
SignalSlotObject object;
connect(&watcher, SIGNAL(resultReadyAt(int)), &object, SLOT(resultReadyAt(int)));
QSignalSpy resultReadySpy(&watcher, &QFutureWatcher<int>::resultReadyAt);
QVERIFY(resultReadySpy.isValid());
watcher.setFuture(iface.future());
watcher.pause();
int value = 0;
iface.reportFinished(&value);
QTest::qWait(10);
QCOMPARE(resultReadySpy.count(), 0);
watcher.resume();
QTRY_VERIFY2(!resultReadySpy.isEmpty(), "Result didn't arrive");
QCOMPARE(resultReadySpy.count(), 1);
}
{
QFutureInterface<int> iface;
iface.reportStarted();
QFuture<int> a = iface.future();
QFutureWatcher<int> watcher;
SignalSlotObject object;
connect(&watcher, SIGNAL(resultReadyAt(int)), &object, SLOT(resultReadyAt(int)));
QSignalSpy resultReadySpy(&watcher, &QFutureWatcher<int>::resultReadyAt);
QVERIFY(resultReadySpy.isValid());
watcher.setFuture(a);
a.pause();
int value = 0;
iface.reportFinished(&value);
QFuture<int> b;
watcher.setFuture(b); // If we watch b instead, resuming a
a.resume(); // should give us no results.
QTest::qWait(10);
QCOMPARE(resultReadySpy.count(), 0);
}
}
// Test that the finished state for the watcher gets
// set when the finished event is delivered.
// This means it will lag the finished state for the future,
// but makes it more useful.
void tst_QFutureWatcher::finishedState()
{
QFutureInterface<int> iface;
iface.reportStarted();
QFuture<int> future = iface.future();
QFutureWatcher<int> watcher;
QSignalSpy startedSpy(&watcher, &QFutureWatcher<int>::started);
QSignalSpy finishedSpy(&watcher, &QFutureWatcher<int>::finished);
watcher.setFuture(future);
QVERIFY(startedSpy.wait());
iface.reportFinished();
QVERIFY(future.isFinished());
QVERIFY(!watcher.isFinished());
QVERIFY(finishedSpy.wait());
QVERIFY(watcher.isFinished());
}
/*
Verify that throttling kicks in if you report a lot of results,
and that it clears when the result events are processed.
*/
void tst_QFutureWatcher::throttling()
{
QFutureInterface<int> iface;
iface.reportStarted();
QFuture<int> future = iface.future();
QFutureWatcher<int> watcher;
QSignalSpy resultSpy(&watcher, &QFutureWatcher<int>::resultReadyAt);
watcher.setFuture(future);
QVERIFY(!iface.isThrottled());
const int resultCount = 1000;
for (int i = 0; i < resultCount; ++i) {
int result = 0;
iface.reportResult(result);
}
QVERIFY(iface.isThrottled());
QTRY_COMPARE(resultSpy.count(), resultCount); // Process the results
QVERIFY(!iface.isThrottled());
iface.reportFinished();
}
int mapper(const int &i)
{
return i;
}
class ResultReadyTester : public QObject
{
Q_OBJECT
public:
ResultReadyTester(QFutureWatcher<int> *watcher)
:m_watcher(watcher), filter(false), ok(true), count(0)
{
}
public slots:
void resultReadyAt(int index)
{
++count;
if (m_watcher->future().isResultReadyAt(index) == false)
ok = false;
if (!filter && m_watcher->future().resultAt(index) != index)
ok = false;
if (filter && m_watcher->future().resultAt(index) != index * 2 + 1)
ok = false;
}
public:
QFutureWatcher<int> *m_watcher;
bool filter;
bool ok;
int count;
};
void tst_QFutureWatcher::incrementalMapResults()
{
QFutureWatcher<int> watcher;
SignalSlotObject object;
#ifdef PRINT
connect(&watcher, SIGNAL(finished()), &object, SLOT(finished()));
connect(&watcher, SIGNAL(progressValueChanged(int)), &object, SLOT(progressValueChanged(int)));
connect(&watcher, SIGNAL(resultReadyAt(int)), &object, SLOT(resultReadyAt(int)));
#endif
QObject::connect(&watcher, SIGNAL(finished()), &QTestEventLoop::instance(), SLOT(exitLoop()));
ResultReadyTester resultReadyTester(&watcher);
connect(&watcher, SIGNAL(resultReadyAt(int)), &resultReadyTester, SLOT(resultReadyAt(int)));
const int count = 10000;
QList<int> ints;
for (int i = 0; i < count; ++i)
ints << i;
QFuture<int> future = QtConcurrent::mapped(ints, mapper);
watcher.setFuture(future);
QTestEventLoop::instance().enterLoop(10);
QVERIFY(!QTestEventLoop::instance().timeout());
QCOMPARE(resultReadyTester.count, count);
QVERIFY(resultReadyTester.ok);
QVERIFY(watcher.isFinished());
future.waitForFinished();
}
bool filterer(int i)
{
return (i % 2);
}
void tst_QFutureWatcher::incrementalFilterResults()
{
QFutureWatcher<int> watcher;
SignalSlotObject object;
#ifdef PRINT
connect(&watcher, SIGNAL(finished()), &object, SLOT(finished()));
connect(&watcher, SIGNAL(progressValueChanged(int)), &object, SLOT(progressValueChanged(int)));
connect(&watcher, SIGNAL(resultReadyAt(int)), &object, SLOT(resultReadyAt(int)));
#endif
QObject::connect(&watcher, SIGNAL(finished()), &QTestEventLoop::instance(), SLOT(exitLoop()));
ResultReadyTester resultReadyTester(&watcher);
resultReadyTester.filter = true;
connect(&watcher, SIGNAL(resultReadyAt(int)), &resultReadyTester, SLOT(resultReadyAt(int)));
const int count = 10000;
QList<int> ints;
for (int i = 0; i < count; ++i)
ints << i;
QFuture<int> future = QtConcurrent::filtered(ints, filterer);
watcher.setFuture(future);
QTestEventLoop::instance().enterLoop(10);
QVERIFY(!QTestEventLoop::instance().timeout());
QCOMPARE(resultReadyTester.count, count / 2);
QVERIFY(resultReadyTester.ok);
QVERIFY(watcher.isFinished());
future.waitForFinished();
}
void tst_QFutureWatcher::qfutureSynchronizer()
{
int taskCount = 1000;
QElapsedTimer t;
t.start();
{
QFutureSynchronizer<void> sync;
sync.setCancelOnWait(true);
for (int i = 0; i < taskCount; ++i) {
sync.addFuture(run(sleeper));
}
}
// Test that we're not running each task.
QVERIFY(t.elapsed() < taskCount * 10);
}
class DummyObject : public QObject {
Q_OBJECT
public slots:
void dummySlot() {}
public:
static void function(QMutex *m)
{
QMutexLocker lock(m);
}
};
void tst_QFutureWatcher::warnRace()
{
#ifndef Q_OS_MAC //I don't know why it is not working on mac
#ifndef QT_NO_DEBUG
QTest::ignoreMessage(QtWarningMsg, "QFutureWatcher::connect: connecting after calling setFuture() is likely to produce race");
#endif
#endif
QFutureWatcher<void> watcher;
DummyObject object;
QMutex mutex;
mutex.lock();
QFuture<void> future = QtConcurrent::run(DummyObject::function, &mutex);
watcher.setFuture(future);
QTRY_VERIFY(future.isStarted());
connect(&watcher, SIGNAL(finished()), &object, SLOT(dummySlot()));
mutex.unlock();
future.waitForFinished();
}
void tst_QFutureWatcher::matchFlags()
{
/* Regression test: expect a default watcher to be in the same state as a
* default future. */
QFutureWatcher<int> watcher;
QFuture<int> future;
QCOMPARE(watcher.isStarted(), future.isStarted());
QCOMPARE(watcher.isCanceled(), future.isCanceled());
QCOMPARE(watcher.isFinished(), future.isFinished());
}
QTEST_MAIN(tst_QFutureWatcher)
#include "tst_qfuturewatcher.moc"
|