summaryrefslogtreecommitdiffstats
path: root/tests/auto/studio3d/q3dssurfaceviewer/tst_q3dssurfaceviewer.cpp
blob: 7dcf254d6f63fc7ac7d2ee3095aaaec7979ffd53 (plain)
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
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
/****************************************************************************
**
** Copyright (C) 2017 The Qt Company Ltd.
** Contact: http://www.qt.io/licensing/
**
** This file is part of Qt 3D Studio.
**
** $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 <QtTest/QtTest>
#include <QtStudio3D/q3dssurfaceviewer.h>
#include <QtStudio3D/q3dsviewersettings.h>
#include <QtStudio3D/q3dspresentation.h>
#include <QtStudio3D/q3dssceneelement.h>
#include <QtStudio3D/q3dselement.h>
#include <QtStudio3D/q3dsdatainput.h>
#include <QtGui/qwindow.h>
#include <QtGui/qopenglcontext.h>
#include <QtGui/qoffscreensurface.h>
#include <QtGui/qpixmap.h>
#include <QtGui/qimage.h>
#include <QtGui/qscreen.h>
#include <QtGui/qopenglframebufferobject.h>
#include <QtGui/qevent.h>
#include <QtCore/qurl.h>
#include <QtCore/qfile.h>
#include "../shared/shared_presentations.h"

class tst_Q3DSSurfaceViewer : public QObject
{
    Q_OBJECT
public:
    tst_Q3DSSurfaceViewer();
    ~tst_Q3DSSurfaceViewer() {}

private slots:
    void initTestCase();
    void init();
    void cleanup();

    void testBasics_data();
    void testBasics();
    void testSourceChange_data();
    void testSourceChange();
    void testSizeChange_data();
    void testSizeChange();
    void testUpdateInterval_data();
    void testUpdateInterval();
    void testMultiple_data();
    void testMultiple();
    void testGrab_data();
    void testGrab();
    void testReset_data();
    void testReset();
    void testSettings_data();
    void testSettings();
    void testPresentation_data();
    void testPresentation();
    void testPresentationActivation_data();
    void testPresentationActivation();
    void testSceneElement_data();
    void testSceneElement();
    void testElement_data();
    void testElement();
    void testMouseInput_data();
    void testMouseInput();
    void testDataInput_data();
    void testDataInput();
    void testTextureQuery();
    void testTextureQuery_data();

private:
    QWindow *createWindow(const QSize &size);
    QOffscreenSurface *createOffscreen();
    QOpenGLFramebufferObject *createFbo(const QSize &size);

    // Created viewers are returned via *&viewer parameter rather than return value, so that we can
    // use QCOMPARE and QVERIFY inside these functions (they require void return value).
    void createViewer(Q3DSSurfaceViewer *&viewer, QSurface *surface, const QUrl &url,
                      bool autoSize, const QSize &size, int updateInterval, int fboId);
    void createWindowAndViewer(Q3DSSurfaceViewer *&viewer, const QUrl &url = RED,
                               bool autoSize = true, const QSize &size = QSize(),
                               int updateInterval = 0);
    void createOffscreenAndViewer(Q3DSSurfaceViewer *&viewer, const QUrl &url = RED,
                                  const QSize &size = QSize(), int updateInterval = 0);
    void checkPixel(Q3DSSurfaceViewer *viewer, const QColor &color,
                    const QPoint &pixel = QPoint(50, 50));

    QWindow *m_window;
    QOffscreenSurface *m_surface;
    Q3DSSurfaceViewer *m_viewer;
    QSurfaceFormat m_format;
    QOpenGLContext *m_context;
    QOpenGLFramebufferObject *m_fbo;
};

tst_Q3DSSurfaceViewer::tst_Q3DSSurfaceViewer()
    : m_window(nullptr)
    , m_surface(nullptr)
    , m_viewer(nullptr)
    , m_context(nullptr)
    , m_fbo(nullptr)
{
}

//#define DUMP_LOGFILE  // Uncomment log Qt 3D Studio internal messages to log.txt file
void messageOutput(QtMsgType type, const QMessageLogContext &context, const QString &msg)
{
    Q_UNUSED(context);
    switch (type) {
    //    case QtDebugMsg:
    case QtInfoMsg:
    case QtWarningMsg:
    case QtCriticalMsg: {
#ifdef DUMP_LOGFILE
        QFile file("log.txt");
        if (file.open(QIODevice::WriteOnly | QIODevice::Text | QIODevice::Append)) {
            QTextStream stream(&file);
            stream << msg << "\n";
        }
        file.close();
#endif
    } break; // swallow
    case QtFatalMsg:
        QFAIL(msg.toLocal8Bit().constData());
    }
}

void tst_Q3DSSurfaceViewer::initTestCase()
{
    qInstallMessageHandler(messageOutput);
#ifdef DUMP_LOGFILE
    QFile file("log.txt");
    if (file.open(QIODevice::WriteOnly | QIODevice::Text | QIODevice::Truncate)) {
        QTextStream stream(&file);
        stream << "Log file: " << QTime::currentTime().toString() << "\n";
    }
    file.close();
#endif

    QWindow *dummy = createWindow(QSize(100, 100));
    m_format = dummy->format();
    qDebug() << m_format;
    delete dummy;
}

void tst_Q3DSSurfaceViewer::init()
{
    m_context = new QOpenGLContext();
    m_context->setFormat(m_format);
    m_context->create();
}

void tst_Q3DSSurfaceViewer::cleanup()
{
    if (m_window)
        m_window->close();

    delete m_viewer;
    m_viewer = nullptr;

    delete m_window;
    m_window = nullptr;

    delete m_surface;
    m_surface = nullptr;

    delete m_fbo;
    m_fbo = nullptr;

    delete m_context;
    m_context = nullptr;
}

QWindow *tst_Q3DSSurfaceViewer::createWindow(const QSize &size)
{
    QWindow *window = new QWindow();

    window->resize(size);
    window->setSurfaceType(QSurface::OpenGLSurface);
    window->setFormat(m_format);
    window->setTitle(QStringLiteral("Q3DSSurfaceViewer test window"));
    window->create();

    return window;
}

QOffscreenSurface *tst_Q3DSSurfaceViewer::createOffscreen()
{
    QOffscreenSurface *surface = new QOffscreenSurface();
    surface->setFormat(m_format);
    surface->create();

    return surface;
}

QOpenGLFramebufferObject *tst_Q3DSSurfaceViewer::createFbo(const QSize &size)
{
    QOpenGLFramebufferObjectFormat fboFormat;
    fboFormat.setAttachment(QOpenGLFramebufferObject::CombinedDepthStencil);
    return new QOpenGLFramebufferObject(size, fboFormat);
}

void tst_Q3DSSurfaceViewer::createViewer(Q3DSSurfaceViewer *&viewer, QSurface *surface,
                                         const QUrl &url, bool autoSize, const QSize &size,
                                         int updateInterval, int fboId)
{
    viewer = new Q3DSSurfaceViewer();
    QSignalSpy spy(viewer, &Q3DSSurfaceViewer::runningChanged);

    viewer->presentation()->setSource(url);
    QCOMPARE(viewer->presentation()->source(), url);

    QVERIFY(spy.isValid());
    QCOMPARE(spy.count(), 0);

    viewer->setAutoSize(autoSize);
    if (!autoSize)
        viewer->setSize(size);
    viewer->setUpdateInterval(updateInterval);

    QVERIFY(viewer->create(surface, m_context, fboId));

    QCOMPARE(spy.count(), 1);
    QVERIFY(viewer->isRunning());

    QVERIFY(viewer->fboId() == fboId);
    QVERIFY(viewer->surface() == surface);
    QVERIFY(viewer->context() == m_context);
}

void tst_Q3DSSurfaceViewer::createWindowAndViewer(Q3DSSurfaceViewer *&viewer,
                                                  const QUrl &url, bool autoSize,
                                                  const QSize &size, int updateInterval)
{
    QSize actualSize = size;
    if (actualSize.isEmpty())
        actualSize = QSize(300, 200);

    m_window = createWindow(actualSize);

    createViewer(viewer, m_window, url, autoSize, actualSize, updateInterval, 0);

    m_window->show();
    QGuiApplication::processEvents();
}

void tst_Q3DSSurfaceViewer::createOffscreenAndViewer(Q3DSSurfaceViewer *&viewer,
                                                     const QUrl &url, const QSize &size,
                                                     int updateInterval)
{
    QSize actualSize = size;
    if (actualSize.isEmpty())
        actualSize = QSize(300, 200);

    m_surface = createOffscreen();
    m_context->makeCurrent(m_surface);
    m_fbo = createFbo(actualSize);

    createViewer(viewer, m_surface, url, false, actualSize, updateInterval, m_fbo->handle());
}

void tst_Q3DSSurfaceViewer::checkPixel(Q3DSSurfaceViewer *viewer, const QColor &color,
                                       const QPoint &pixel)
{
    // Grab operation is potentially costly, so retry only every second instead of using
    // QTRY_COMPARE which would try it every 50ms. We also want to wait first as it takes some time
    // for the presentation to be displayed.
    QColor grabColor;
    for (int i = 0; i < 20; i++) {
        // Note: If checkpixel is ever changed to not have this wait, some
        // QGuiApplication::processEvents() calls may be necessary in various test cases to
        // ensure expected signaling order.
        QTest::qWait(1000);
        QImage image = viewer->grab(QRect(pixel, QSize(1, 1)));
        grabColor = QColor(image.pixel(0, 0));
        if (grabColor == color)
            break;
    }
    QCOMPARE(grabColor, color);
}

void tst_Q3DSSurfaceViewer::testBasics_data()
{
    QTest::addColumn<bool>("isWindow");
    QTest::newRow("window") << true;
    QTest::newRow("offscreen") << false;
}

void tst_Q3DSSurfaceViewer::testBasics()
{
    QFETCH(bool, isWindow);

    if (isWindow)
        createWindowAndViewer(m_viewer, RED);
    else
        createOffscreenAndViewer(m_viewer, RED);

    QSignalSpy spy(m_viewer, &Q3DSSurfaceViewer::runningChanged);
    QVERIFY(spy.isValid());

    checkPixel(m_viewer, Qt::red);

    m_viewer->destroy();

    QCOMPARE(spy.count(), 1);
    QVERIFY(!m_viewer->isRunning());
}

void tst_Q3DSSurfaceViewer::testSourceChange_data()
{
    testBasics_data();
}

void tst_Q3DSSurfaceViewer::testSourceChange()
{
    QFETCH(bool, isWindow);

    if (isWindow)
        createWindowAndViewer(m_viewer, RED);
    else
        createOffscreenAndViewer(m_viewer, RED);

    QSignalSpy spy(m_viewer->presentation(), &Q3DSPresentation::sourceChanged);
    QVERIFY(spy.isValid());
    QVERIFY(m_viewer->presentation()->source() == RED);

    checkPixel(m_viewer, Qt::red);

    // Different source
    m_viewer->presentation()->setSource(BLUE);
    QCOMPARE(spy.count(), 1);
    QVERIFY(m_viewer->presentation()->source() == BLUE);

    checkPixel(m_viewer, Qt::blue);

    // Reset same source
    m_viewer->presentation()->setSource(BLUE);
    QCOMPARE(spy.count(), 1);
    QVERIFY(m_viewer->presentation()->source() == BLUE);

    checkPixel(m_viewer, Qt::blue);

    // Different source again
    m_viewer->presentation()->setSource(RED);
    QCOMPARE(spy.count(), 2);
    QVERIFY(m_viewer->presentation()->source() == RED);

    checkPixel(m_viewer, Qt::red);
}

void tst_Q3DSSurfaceViewer::testSizeChange_data()
{
    testBasics_data();
}

void tst_Q3DSSurfaceViewer::testSizeChange()
{
    QFETCH(bool, isWindow);

    if (isWindow) {
        createWindowAndViewer(m_viewer, MIXED, true, QSize(600, 600));
    } else {
        // Changing size for offscreen surface means recreating the fbo. There's no guarantee
        // we can get the same fbo id if we do that, so we would have to reinitialize anyway
        QSKIP("Skipping size change testing for offscreen surfaces");
    }

    m_viewer->settings()->setScaleMode(Q3DSViewerSettings::ScaleModeFill);

    QSignalSpy spy1(m_viewer, &Q3DSSurfaceViewer::sizeChanged);
    QVERIFY(spy1.isValid());
    QSignalSpy spy2(m_viewer, &Q3DSSurfaceViewer::autoSizeChanged);
    QVERIFY(spy2.isValid());

    QPoint leftPoint(m_viewer->size().width() * 11 / 24, m_viewer->size().height() / 2);
    QPoint rightPoint(m_viewer->size().width() * 13 / 24, m_viewer->size().height() / 2);

    // MIXED presentation has left side blue, right side red
    checkPixel(m_viewer, Qt::blue, leftPoint);
    checkPixel(m_viewer, Qt::red, rightPoint);

    m_window->resize(QSize(800, 800));
    QGuiApplication::processEvents();
    QCOMPARE(spy1.count(), 1);

    checkPixel(m_viewer, Qt::blue, leftPoint);
    checkPixel(m_viewer, Qt::blue, rightPoint);

    m_window->resize(QSize(400, 400));
    QGuiApplication::processEvents();
    QCOMPARE(spy1.count(), 2);

    checkPixel(m_viewer, Qt::red, leftPoint);
    checkPixel(m_viewer, Qt::red, rightPoint);

    m_viewer->setAutoSize(false);
    QCOMPARE(spy2.count(), 1);

    // Size should not change since autosize is no longer on
    m_window->resize(QSize(600, 600));
    QGuiApplication::processEvents();
    QCOMPARE(spy1.count(), 2);

    checkPixel(m_viewer, Qt::red, leftPoint);
    checkPixel(m_viewer, Qt::red, rightPoint);

    m_viewer->setSize(QSize(700, 700));
    QCOMPARE(spy1.count(), 3);

    checkPixel(m_viewer, Qt::blue, leftPoint);
    checkPixel(m_viewer, Qt::blue, rightPoint);
}

void tst_Q3DSSurfaceViewer::testUpdateInterval_data()
{
    testBasics_data();
}

void tst_Q3DSSurfaceViewer::testUpdateInterval()
{
    QFETCH(bool, isWindow);

    if (isWindow)
        createWindowAndViewer(m_viewer, ANIMATION);
    else
        createOffscreenAndViewer(m_viewer, ANIMATION);

    m_viewer->settings()->setScaleMode(Q3DSViewerSettings::ScaleModeFill);

    QSignalSpy spy(m_viewer, &Q3DSSurfaceViewer::updateIntervalChanged);
    QVERIFY(spy.isValid());
    QVERIFY(m_viewer->updateInterval() == 0);

    checkPixel(m_viewer, Qt::black);
    {
        // Grab two images two seconds apart to verify animation is happening
        QImage image1 = m_viewer->grab();
        QTest::qWait(2000);
        QImage image2 = m_viewer->grab();
        QVERIFY(image1 != image2);

    }
    {
        m_viewer->setUpdateInterval(100000);
        QVERIFY(m_viewer->updateInterval() == 100000);
        QCOMPARE(spy.count(), 1);
        // Can't test if animation actually stopped, as grabbing the viewer forces update on it
    }
    {
        m_viewer->setUpdateInterval(20);
        QCOMPARE(spy.count(), 2);
        QVERIFY(m_viewer->updateInterval() == 20);

        // Non-zero interval short enough to see animation
        QImage image1 = m_viewer->grab();
        QTest::qWait(2000);
        QImage image2 = m_viewer->grab();
        QVERIFY(image1 != image2);
    }
    {
        m_viewer->setUpdateInterval(-1);
        QCOMPARE(spy.count(), 3);
        QVERIFY(m_viewer->updateInterval() == -1);
        // Can't test if animation actually stopped, as grabbing the viewer forces update on it
    }
}

void tst_Q3DSSurfaceViewer::testMultiple_data()
{
    QTest::addColumn<int>("windowCount");
    QTest::addColumn<int>("offscreenCount");
    QTest::newRow("windows") << 2 << 0;
    QTest::newRow("offscreens") << 0 << 2;
    QTest::newRow("mixed") << 1 << 1;
}

void tst_Q3DSSurfaceViewer::testMultiple()
{
    QFETCH(int, windowCount);
    QFETCH(int, offscreenCount);

    QVector<QWindow *> windows;
    QVector<QOffscreenSurface *> surfaces;
    QVector<Q3DSSurfaceViewer *> viewers;
    QVector<QOpenGLFramebufferObject *> fbos;

    int viewerCount = windowCount + offscreenCount;
    windows.resize(windowCount);
    surfaces.resize(offscreenCount);
    fbos.resize(offscreenCount);
    viewers.resize(viewerCount);

    QSize size(200, 150);
    QUrl url;
    for (int i = 0; i < windowCount; i++) {
        windows[i] = createWindow(size);
        if (i % 2)
            url = RED;
        else
            url = BLUE;
        createViewer(viewers[i], windows[i], url, true, size, 0, 0);
        windows[i]->setPosition(10 + i * 50, 10 + i * 50);
        windows[i]->show();
        QGuiApplication::processEvents();
    }
    for (int i = 0; i < offscreenCount; i++) {
        surfaces[i] = createOffscreen();
        m_context->makeCurrent(surfaces[i]);
        fbos[i] = createFbo(size);
        if ((i + windowCount) % 2)
            url = RED;
        else
            url = BLUE;
        createViewer(viewers[i + windowCount], surfaces[i], url, false, size, 0,
                fbos[i]->handle());
    }

    for (int i = 0; i < viewerCount; i++) {
        if (i % 2)
            checkPixel(viewers[i], Qt::red);
        else
            checkPixel(viewers[i], Qt::blue);
    }

    for (QWindow *w : windows) {
        w->close();
        delete w;
    }
    windows.clear();

    for (QOffscreenSurface *s : surfaces)
        delete s;
    surfaces.clear();

    for (Q3DSSurfaceViewer *v : viewers)
        delete v;
    viewers.clear();

    for (QOpenGLFramebufferObject *f : fbos)
        delete f;
    fbos.clear();
}

void tst_Q3DSSurfaceViewer::testGrab_data()
{
    testBasics_data();
}

void tst_Q3DSSurfaceViewer::testGrab()
{
    QFETCH(bool, isWindow);

    if (isWindow)
        createWindowAndViewer(m_viewer, MIXED_VERTICAL);
    else
        createOffscreenAndViewer(m_viewer, MIXED_VERTICAL);

    // Single pixels
    int w = m_viewer->size().width();
    int h = m_viewer->size().height();

    checkPixel(m_viewer, Qt::blue, QPoint(w / 2, h / 4));
    checkPixel(m_viewer, Qt::red, QPoint(w / 2, 3 * h / 4));

    checkPixel(m_viewer, Qt::blue, QPoint(0, 0));
    checkPixel(m_viewer, Qt::blue, QPoint(w - 1, 0));
    checkPixel(m_viewer, Qt::red, QPoint(0, h - 1));
    checkPixel(m_viewer, Qt::red, QPoint(w - 1, h - 1));

    // Full buffer
    QImage img = m_viewer->grab();
    QColor grabColor1 = img.pixel(w / 2, h / 4);
    QColor grabColor2 = img.pixel(w / 2, 3 * h / 4);
    QCOMPARE(grabColor1, QColor(Qt::blue));
    QCOMPARE(grabColor2, QColor(Qt::red));

    // Partial buffer
    img = m_viewer->grab(QRect(w / 3, h / 3, w / 2, h / 2));
    grabColor1 = img.pixel(0, 0);
    grabColor2 = img.pixel(w / 2 - 1, h / 2 - 1);
    QCOMPARE(grabColor1, QColor(Qt::blue));
    QCOMPARE(grabColor2, QColor(Qt::red));
}

void tst_Q3DSSurfaceViewer::testReset_data()
{
    testBasics_data();
}

void tst_Q3DSSurfaceViewer::testReset()
{
    QFETCH(bool, isWindow);

    if (isWindow)
        createWindowAndViewer(m_viewer, RED);
    else
        createOffscreenAndViewer(m_viewer, RED);

    checkPixel(m_viewer, Qt::red);

    m_viewer->presentation()->setAttribute(QStringLiteral("Scene.Layer.Rectangle.Material"),
                                           QStringLiteral("diffuse.r"), QVariant(0.0));
    m_viewer->presentation()->setAttribute(QStringLiteral("Scene.Layer.Rectangle.Material"),
                                           QStringLiteral("diffuse.b"), QVariant(1.0));
    checkPixel(m_viewer, Qt::blue);

    // Note: reset() is private method now, instead can reload presentation by switching sources
    //  m_viewer->reset();
    m_viewer->presentation()->setSource(ANIMATION);
    m_viewer->presentation()->setSource(RED);

    checkPixel(m_viewer, Qt::red);
}

void tst_Q3DSSurfaceViewer::testSettings_data()
{
    testBasics_data();
}

void tst_Q3DSSurfaceViewer::testSettings()
{
    QFETCH(bool, isWindow);

    int width = 500;
    int height = 500;

    if (isWindow)
        createWindowAndViewer(m_viewer, SETTINGS, false, QSize(width, height));
    else
        createOffscreenAndViewer(m_viewer, SETTINGS, QSize(width, height));

    Q3DSViewerSettings *s = m_viewer->settings();

    QSignalSpy spy1(s, &Q3DSViewerSettings::matteColorChanged);
    QSignalSpy spy2(s, &Q3DSViewerSettings::showRenderStatsChanged);
    QSignalSpy spy4(s, &Q3DSViewerSettings::scaleModeChanged);
    QVERIFY(spy1.isValid());
    QVERIFY(spy2.isValid());
    QVERIFY(spy4.isValid());

    // Check defaults
    QCOMPARE(s->matteColor(), QColor(Qt::black));
    QCOMPARE(s->isShowRenderStats(), false);
    QCOMPARE(s->scaleMode(), Q3DSViewerSettings::ScaleModeCenter);

    // Enable matte
    s->setMatteEnabled(true);

    // Matte
    checkPixel(m_viewer, Qt::black);

    s->setMatteColor(Qt::cyan);
    QCOMPARE(s->matteColor(), QColor(Qt::cyan));

    QCOMPARE(spy1.count(), 1);
    QCOMPARE(spy2.count(), 0);
    QCOMPARE(spy4.count(), 0);

    checkPixel(m_viewer, Qt::cyan);

    // Render stats
    QImage image1 = m_viewer->grab();

    s->setShowRenderStats(true);
    QCOMPARE(s->isShowRenderStats(), true);

    QCOMPARE(spy1.count(), 1);
    QCOMPARE(spy2.count(), 1);
    QCOMPARE(spy4.count(), 0);

    QImage image2 = m_viewer->grab();
    QVERIFY(image1 != image2);

    s->setShowRenderStats(false);
    QCOMPARE(spy1.count(), 1);
    QCOMPARE(spy2.count(), 2);
    QCOMPARE(spy4.count(), 0);

    // ScaleMode
    checkPixel(m_viewer, Qt::cyan);
    checkPixel(m_viewer, Qt::cyan, QPoint(50, height / 2));
    s->setScaleMode(Q3DSViewerSettings::ScaleModeFit);
    QCOMPARE(s->scaleMode(), Q3DSViewerSettings::ScaleModeFit);

    QCOMPARE(spy1.count(), 1);
    QCOMPARE(spy2.count(), 2);
    QCOMPARE(spy4.count(), 1);

    checkPixel(m_viewer, Qt::cyan);
    checkPixel(m_viewer, Qt::red, QPoint(50, height / 2));

    s->setScaleMode(Q3DSViewerSettings::ScaleModeFill);
    QCOMPARE(s->scaleMode(), Q3DSViewerSettings::ScaleModeFill);

    QCOMPARE(spy1.count(), 1);
    QCOMPARE(spy2.count(), 2);
    QCOMPARE(spy4.count(), 2);

    checkPixel(m_viewer, Qt::blue);
    checkPixel(m_viewer, Qt::red, QPoint(50, height / 2));

    // Saving & loading settings
    s->save(QStringLiteral("testViewer"), QStringLiteral("The Qt Company"),
            QStringLiteral("tst_q3dsurfaceviewer"));

    image1 = m_viewer->grab();

    s->setMatteColor(Qt::yellow);
    s->setShowRenderStats(true);
    s->setScaleMode(Q3DSViewerSettings::ScaleModeFit);

    QCOMPARE(s->matteColor(), QColor(Qt::yellow));
    QCOMPARE(s->isShowRenderStats(), true);
    QCOMPARE(s->scaleMode(), Q3DSViewerSettings::ScaleModeFit);

    QCOMPARE(spy1.count(), 2);
    QCOMPARE(spy2.count(), 3);
    QCOMPARE(spy4.count(), 3);

    image2 = m_viewer->grab();

    s->load(QStringLiteral("testViewer"), QStringLiteral("The Qt Company"),
            QStringLiteral("tst_q3dsurfaceviewer"));

    QCOMPARE(s->matteColor(), QColor(Qt::cyan));
    QCOMPARE(s->isShowRenderStats(), false);
    QCOMPARE(s->scaleMode(), Q3DSViewerSettings::ScaleModeFill);

    QCOMPARE(spy1.count(), 3);
    QCOMPARE(spy2.count(), 4);
    QCOMPARE(spy4.count(), 4);

    QImage image3 = m_viewer->grab();
    QVERIFY(image1 != image2);
    QVERIFY(image3 != image2);
    QVERIFY(image1 == image3);

    // Clean up the settings so they don't pollute the system (and we have clean slate next time)
    QSettings(QStringLiteral("The Qt Company"), QStringLiteral("tst_q3dsurfaceviewer")).clear();
}

void tst_Q3DSSurfaceViewer::testPresentation_data()
{
    testBasics_data();
}

void tst_Q3DSSurfaceViewer::testPresentation()
{
    QFETCH(bool, isWindow);

    if (isWindow)
        createWindowAndViewer(m_viewer, MULTISLIDE);
    else
        createOffscreenAndViewer(m_viewer, MULTISLIDE);

    m_viewer->settings()->setScaleMode(Q3DSViewerSettings::ScaleModeFill);

    QList<QVariant> args;
    Q3DSPresentation *p = m_viewer->presentation();
    QSignalSpy spy1(p, &Q3DSPresentation::slideEntered);
    QSignalSpy spy2(p, &Q3DSPresentation::slideExited);
    QVERIFY(spy1.isValid());
    QVERIFY(spy2.isValid());

    // There are three different "scenes":
    // The main Scene, three slides: S1, S2, S3
    // Two components on Scene.Layer:
    //   Scene.Layer.Component1, two slides: C1S1, C1S2
    //   Scene.Layer.Component2, two slides: C2S1, C2S2
    // The component slides also get enter when parent slide is entered, but they do not get
    // the corresponding exit if parent slide is exited.
    QString path = QStringLiteral("Scene");
    QString pathC1 = QStringLiteral("Scene.Layer.Component1");
    QString pathC2 = QStringLiteral("Scene.Layer.Component2");
    QPoint mainPoint(m_viewer->size().width() * 2 / 8, m_viewer->size().height() / 2);
    QPoint bgPoint(m_viewer->size().width() * 2 / 8, m_viewer->size().height() / 32);
    QPoint c1Point(m_viewer->size().width() * 5 / 8, m_viewer->size().height() / 2);
    QPoint c2Point(m_viewer->size().width() * 7 / 8, m_viewer->size().height() / 2);

    checkPixel(m_viewer, Qt::red, mainPoint);
    checkPixel(m_viewer, Qt::green, c1Point);
    checkPixel(m_viewer, Qt::yellow, c2Point);

    QCOMPARE(spy1.count(), 3);
    QCOMPARE(spy2.count(), 0);

    // String Attribute
    QImage image1 = m_viewer->grab();
    p->setAttribute(QStringLiteral("Scene.Layer.Text"),
                    QStringLiteral("textstring"), QStringLiteral("Test!"));
    QImage image2 = m_viewer->grab();
    QTRY_VERIFY(image1 != image2);

    // Float Attribute
    p->setAttribute(QStringLiteral("Scene.Layer.Rect.Material"),
                    QStringLiteral("diffuse.r"), 0.0);
    p->setAttribute(QStringLiteral("Scene.Layer.Rect.Material"),
                    QStringLiteral("diffuse.g"), 1.0);
    p->setAttribute(QStringLiteral("Scene.Layer.Rect.Material"),
                    QStringLiteral("diffuse.b"), 1.0);

    checkPixel(m_viewer, Qt::cyan, mainPoint);
    checkPixel(m_viewer, Qt::green, c1Point);
    checkPixel(m_viewer, Qt::yellow, c2Point);

    p->setAttribute(QStringLiteral("Scene.Layer.Rect.Material"),
                    QStringLiteral("diffuse.r"), 1.0);
    p->setAttribute(QStringLiteral("Scene.Layer.Rect.Material"),
                    QStringLiteral("diffuse.g"), 0.0);
    p->setAttribute(QStringLiteral("Scene.Layer.Rect.Material"),
                    QStringLiteral("diffuse.b"), 0.0);

    checkPixel(m_viewer, Qt::red, mainPoint);
    checkPixel(m_viewer, Qt::green, c1Point);
    checkPixel(m_viewer, Qt::yellow, c2Point);

    // Bool Attribute
    checkPixel(m_viewer, Qt::yellow, bgPoint);
    p->setAttribute(QStringLiteral("Scene"), QStringLiteral("bgcolorenable"), false);
    checkPixel(m_viewer, Qt::black, bgPoint);

    // Slide changes
    p->goToSlide(path, 2);
    checkPixel(m_viewer, Qt::blue, mainPoint);
    checkPixel(m_viewer, Qt::blue, c1Point);
    checkPixel(m_viewer, Qt::blue, c2Point);

    QCOMPARE(spy1.count(), 4);
    QCOMPARE(spy2.count(), 1);
    args = spy1.last();
    QCOMPARE(args.at(0).toString(), path);
    QCOMPARE(args.at(1).toInt(), 2);
    QCOMPARE(args.at(2).toString(), QStringLiteral("S2"));
    args = spy2.last();
    QCOMPARE(args.at(0).toString(), path);
    QCOMPARE(args.at(1).toInt(), 1);
    QCOMPARE(args.at(2).toString(), QStringLiteral("S1"));

    // Time change
    p->goToTime(path, 7.0f);
    checkPixel(m_viewer, Qt::black, mainPoint);
    QCOMPARE(spy1.count(), 4);
    QCOMPARE(spy2.count(), 1);

    // More complex slide changes
    // Changing slide that is not visible should not trigger enter signals
    // The slides should still change, though, and become visible later when we switch back to S1
    p->goToSlide(pathC1, QStringLiteral("C1S2"));
    p->goToSlide(pathC2, QStringLiteral("C2S2"));
    QCOMPARE(spy1.count(), 4);
    QCOMPARE(spy2.count(), 1);

    p->goToSlide(path, QStringLiteral("S1"));
    checkPixel(m_viewer, Qt::red, mainPoint);
    checkPixel(m_viewer, Qt::cyan, c1Point);
    checkPixel(m_viewer, Qt::magenta, c2Point);
    QCOMPARE(spy1.count(), 7);
    QCOMPARE(spy2.count(), 2);

    p->goToSlide(pathC1, QStringLiteral("C1S1"));
    checkPixel(m_viewer, Qt::red, mainPoint);
    checkPixel(m_viewer, Qt::green, c1Point);
    checkPixel(m_viewer, Qt::magenta, c2Point);
    QCOMPARE(spy1.count(), 8);
    QCOMPARE(spy2.count(), 3);

    args = spy1.last();
    QCOMPARE(args.at(0).toString(), pathC1);
    QCOMPARE(args.at(1).toInt(), 1);
    QCOMPARE(args.at(2).toString(), QStringLiteral("C1S1"));
    args = spy2.last();
    QCOMPARE(args.at(0).toString(), pathC1);
    QCOMPARE(args.at(1).toInt(), 2);
    QCOMPARE(args.at(2).toString(), QStringLiteral("C1S2"));

    p->goToSlide(pathC2, QStringLiteral("C2S1"));
    checkPixel(m_viewer, Qt::red, mainPoint);
    checkPixel(m_viewer, Qt::green, c1Point);
    checkPixel(m_viewer, Qt::yellow, c2Point);
    QCOMPARE(spy1.count(), 9);
    QCOMPARE(spy2.count(), 4);

    args = spy1.last();
    QCOMPARE(args.at(0).toString(), pathC2);
    QCOMPARE(args.at(1).toInt(), 1);
    QCOMPARE(args.at(2).toString(), QStringLiteral("C2S1"));
    args = spy2.last();
    QCOMPARE(args.at(0).toString(), pathC2);
    QCOMPARE(args.at(1).toInt(), 2);
    QCOMPARE(args.at(2).toString(), QStringLiteral("C2S2"));

    p->goToSlide(path, true, true);
    checkPixel(m_viewer, Qt::blue, mainPoint);
    checkPixel(m_viewer, Qt::blue, c1Point);
    checkPixel(m_viewer, Qt::blue, c2Point);
    QCOMPARE(spy1.count(), 10);
    QCOMPARE(spy2.count(), 5);

    args = spy1.last();
    QCOMPARE(args.at(0).toString(), path);
    QCOMPARE(args.at(1).toInt(), 2);
    QCOMPARE(args.at(2).toString(), QStringLiteral("S2"));
    args = spy2.last();
    QCOMPARE(args.at(0).toString(), path);
    QCOMPARE(args.at(1).toInt(), 1);
    QCOMPARE(args.at(2).toString(), QStringLiteral("S1"));

    p->goToSlide(path, false, true);
    checkPixel(m_viewer, Qt::red, mainPoint);
    checkPixel(m_viewer, Qt::green, c1Point);
    checkPixel(m_viewer, Qt::yellow, c2Point);
    QCOMPARE(spy1.count(), 11);
    QCOMPARE(spy2.count(), 6);

    // No wrap, should not change
    p->goToSlide(path, false, false);
    checkPixel(m_viewer, Qt::red, mainPoint);
    checkPixel(m_viewer, Qt::green, c1Point);
    checkPixel(m_viewer, Qt::yellow, c2Point);
    QCOMPARE(spy1.count(), 11);
    QCOMPARE(spy2.count(), 6);

    // Should wrap
    p->goToSlide(path, false, true);
    checkPixel(m_viewer, Qt::green, mainPoint);
    checkPixel(m_viewer, Qt::green, c1Point);
    checkPixel(m_viewer, Qt::green, c2Point);
    QCOMPARE(spy1.count(), 12);
    QCOMPARE(spy2.count(), 7);

    // No wrap, should not change
    p->goToSlide(path, true, false);
    checkPixel(m_viewer, Qt::green, mainPoint);
    checkPixel(m_viewer, Qt::green, c1Point);
    checkPixel(m_viewer, Qt::green, c2Point);
    QCOMPARE(spy1.count(), 12);
    QCOMPARE(spy2.count(), 7);

    // Should wrap
    p->goToSlide(path, true, true);
    checkPixel(m_viewer, Qt::red, mainPoint);
    checkPixel(m_viewer, Qt::green, c1Point);
    checkPixel(m_viewer, Qt::yellow, c2Point);
    QCOMPARE(spy1.count(), 13);
    QCOMPARE(spy2.count(), 8);
}

void tst_Q3DSSurfaceViewer::testPresentationActivation_data()
{
    testBasics_data();
}

void tst_Q3DSSurfaceViewer::testPresentationActivation()
{
    QFETCH(bool, isWindow);

    if (isWindow)
        createWindowAndViewer(m_viewer, ANIMATION);
    else
        createOffscreenAndViewer(m_viewer, ANIMATION);

    // Note: Presentation filename isn't default ID anymore, need to set manually.
    m_viewer->setPresentationId(QStringLiteral("animation"));
    m_viewer->settings()->setScaleMode(Q3DSViewerSettings::ScaleModeFill);

    {
        // Grab two images two seconds apart to verify animation is happening
        QImage image1 = m_viewer->grab();
        QTest::qWait(2000);
        QImage image2 = m_viewer->grab();
        QVERIFY(image1 != image2);
    }

    m_viewer->presentation()->setPresentationActive(QStringLiteral("animation"), false);

    {
        // Grab two images two seconds apart to verify animation has stopped
        QImage image1 = m_viewer->grab();
        QTest::qWait(2000);
        QImage image2 = m_viewer->grab();
        QVERIFY(image1 == image2);
    }

    m_viewer->presentation()->setPresentationActive(QStringLiteral("animation"), true);

    {
        // Grab two images two seconds apart to verify animation is happening
        QImage image1 = m_viewer->grab();
        QTest::qWait(2000);
        QImage image2 = m_viewer->grab();
        QVERIFY(image1 != image2);
    }
}

void tst_Q3DSSurfaceViewer::testSceneElement_data()
{
    testBasics_data();
}

void tst_Q3DSSurfaceViewer::testSceneElement()
{
    QFETCH(bool, isWindow);

    if (isWindow)
        createWindowAndViewer(m_viewer, MULTISLIDE);
    else
        createOffscreenAndViewer(m_viewer, MULTISLIDE);

    m_viewer->settings()->setScaleMode(Q3DSViewerSettings::ScaleModeFill);

    QString path = QStringLiteral("Scene");
    QString pathC1 = QStringLiteral("Scene.Layer.Component1");
    QString pathC2 = QStringLiteral("Scene.Layer.Component2");

    Q3DSPresentation *p = m_viewer->presentation();
    Q3DSSceneElement *scene = new Q3DSSceneElement(path);
    Q3DSSceneElement *sceneC1 = new Q3DSSceneElement(pathC1);
    Q3DSSceneElement *sceneC2 = new Q3DSSceneElement(pathC2);
    QSignalSpy spy1(scene, &Q3DSSceneElement::currentSlideIndexChanged);
    QSignalSpy spy2(scene, &Q3DSSceneElement::previousSlideIndexChanged);
    QSignalSpy spy3(scene, &Q3DSSceneElement::currentSlideNameChanged);
    QSignalSpy spy4(scene, &Q3DSSceneElement::previousSlideNameChanged);
    QSignalSpy spy5(scene, &Q3DSSceneElement::elementPathChanged);
    QSignalSpy spy6(sceneC1, &Q3DSSceneElement::currentSlideIndexChanged);
    QSignalSpy spy7(sceneC1, &Q3DSSceneElement::previousSlideIndexChanged);
    QSignalSpy spy8(sceneC1, &Q3DSSceneElement::currentSlideNameChanged);
    QSignalSpy spy9(sceneC1, &Q3DSSceneElement::previousSlideNameChanged);
    QSignalSpy spy10(sceneC1, &Q3DSSceneElement::elementPathChanged);
    QSignalSpy spy11(sceneC2, &Q3DSSceneElement::currentSlideIndexChanged);
    QSignalSpy spy12(sceneC2, &Q3DSSceneElement::previousSlideIndexChanged);
    QSignalSpy spy13(sceneC2, &Q3DSSceneElement::currentSlideNameChanged);
    QSignalSpy spy14(sceneC2, &Q3DSSceneElement::previousSlideNameChanged);
    QSignalSpy spy15(sceneC2, &Q3DSSceneElement::elementPathChanged);
    QVERIFY(spy1.isValid());
    QVERIFY(spy2.isValid());
    QVERIFY(spy3.isValid());
    QVERIFY(spy4.isValid());
    QVERIFY(spy5.isValid());
    QVERIFY(spy6.isValid());
    QVERIFY(spy7.isValid());
    QVERIFY(spy8.isValid());
    QVERIFY(spy9.isValid());
    QVERIFY(spy10.isValid());
    QVERIFY(spy11.isValid());
    QVERIFY(spy12.isValid());
    QVERIFY(spy13.isValid());
    QVERIFY(spy14.isValid());
    QVERIFY(spy15.isValid());

    // Defaults
    QCOMPARE(scene->currentSlideIndex(), 0);
    QCOMPARE(scene->previousSlideIndex(), 0);
    QCOMPARE(scene->currentSlideName(), QStringLiteral(""));
    QCOMPARE(scene->previousSlideName(), QStringLiteral(""));
    QCOMPARE(scene->elementPath(), path);

    checkPixel(m_viewer, Qt::red);

    // Ensure we have no pending events to confuse spy counts
    QGuiApplication::processEvents();

    p->registerElement(scene);
    p->registerElement(sceneC1);
    p->registerElement(sceneC2);

    QCOMPARE(scene->currentSlideIndex(), 1);
    QCOMPARE(scene->previousSlideIndex(), 0);
    QCOMPARE(scene->currentSlideName(), QStringLiteral("S1"));
    QCOMPARE(scene->previousSlideName(), QStringLiteral(""));
    QCOMPARE(scene->elementPath(), path);

    p->goToSlide(path, QStringLiteral("S2"));
    checkPixel(m_viewer, Qt::blue);

    QCOMPARE(spy1.count(), 1);
    QCOMPARE(spy2.count(), 1);
    QCOMPARE(spy3.count(), 1);
    QCOMPARE(spy4.count(), 1);
    QCOMPARE(spy5.count(), 0);
    QCOMPARE(spy6.count(), 0);
    QCOMPARE(spy7.count(), 0);
    QCOMPARE(spy8.count(), 0);
    QCOMPARE(spy9.count(), 0);
    QCOMPARE(spy10.count(), 0);
    QCOMPARE(spy11.count(), 0);
    QCOMPARE(spy12.count(), 0);
    QCOMPARE(spy13.count(), 0);
    QCOMPARE(spy14.count(), 0);
    QCOMPARE(spy15.count(), 0);

    p->goToSlide(path, QStringLiteral("S1"));
    checkPixel(m_viewer, Qt::red);

    QCOMPARE(spy1.count(), 2);
    QCOMPARE(spy2.count(), 2);
    QCOMPARE(spy3.count(), 2);
    QCOMPARE(spy4.count(), 2);
    QCOMPARE(spy5.count(), 0);
    QCOMPARE(spy6.count(), 0);
    QCOMPARE(spy7.count(), 0);
    QCOMPARE(spy8.count(), 0);
    QCOMPARE(spy9.count(), 0);
    QCOMPARE(spy10.count(), 0);
    QCOMPARE(spy11.count(), 0);
    QCOMPARE(spy12.count(), 0);
    QCOMPARE(spy13.count(), 0);
    QCOMPARE(spy14.count(), 0);
    QCOMPARE(spy15.count(), 0);

    p->goToSlide(pathC1, QStringLiteral("C1S2"));
    checkPixel(m_viewer, Qt::red);

    QCOMPARE(spy1.count(), 2);
    QCOMPARE(spy2.count(), 2);
    QCOMPARE(spy3.count(), 2);
    QCOMPARE(spy4.count(), 2);
    QCOMPARE(spy5.count(), 0);
    QCOMPARE(spy6.count(), 1);
    QCOMPARE(spy7.count(), 1);
    QCOMPARE(spy8.count(), 1);
    QCOMPARE(spy9.count(), 1);
    QCOMPARE(spy10.count(), 0);
    QCOMPARE(spy11.count(), 0);
    QCOMPARE(spy12.count(), 0);
    QCOMPARE(spy13.count(), 0);
    QCOMPARE(spy14.count(), 0);
    QCOMPARE(spy15.count(), 0);

    p->goToSlide(pathC2, QStringLiteral("C2S2"));
    checkPixel(m_viewer, Qt::red);

    QCOMPARE(spy1.count(), 2);
    QCOMPARE(spy2.count(), 2);
    QCOMPARE(spy3.count(), 2);
    QCOMPARE(spy4.count(), 2);
    QCOMPARE(spy5.count(), 0);
    QCOMPARE(spy6.count(), 1);
    QCOMPARE(spy7.count(), 1);
    QCOMPARE(spy8.count(), 1);
    QCOMPARE(spy9.count(), 1);
    QCOMPARE(spy10.count(), 0);
    QCOMPARE(spy11.count(), 1);
    QCOMPARE(spy12.count(), 1);
    QCOMPARE(spy13.count(), 1);
    QCOMPARE(spy14.count(), 1);
    QCOMPARE(spy15.count(), 0);

    // Subscenes revert to original slides when parent is re-entered
    p->goToSlide(path, QStringLiteral("S2"));
    checkPixel(m_viewer, Qt::blue);

    QCOMPARE(spy1.count(), 3);
    QCOMPARE(spy2.count(), 3);
    QCOMPARE(spy3.count(), 3);
    QCOMPARE(spy4.count(), 3);
    QCOMPARE(spy5.count(), 0);
    QCOMPARE(spy6.count(), 1);
    QCOMPARE(spy7.count(), 1);
    QCOMPARE(spy8.count(), 1);
    QCOMPARE(spy9.count(), 1);
    QCOMPARE(spy10.count(), 0);
    QCOMPARE(spy11.count(), 1);
    QCOMPARE(spy12.count(), 1);
    QCOMPARE(spy13.count(), 1);
    QCOMPARE(spy14.count(), 1);
    QCOMPARE(spy15.count(), 0);

    p->goToSlide(path, QStringLiteral("S1"));
    checkPixel(m_viewer, Qt::red);

    QCOMPARE(spy1.count(), 4);
    QCOMPARE(spy2.count(), 4);
    QCOMPARE(spy3.count(), 4);
    QCOMPARE(spy4.count(), 4);
    QCOMPARE(spy5.count(), 0);
    QCOMPARE(spy6.count(), 1);
    QCOMPARE(spy7.count(), 1);
    QCOMPARE(spy8.count(), 1);
    QCOMPARE(spy9.count(), 1);
    QCOMPARE(spy10.count(), 0);
    QCOMPARE(spy11.count(), 1);
    QCOMPARE(spy12.count(), 1);
    QCOMPARE(spy13.count(), 1);
    QCOMPARE(spy14.count(), 1);
    QCOMPARE(spy15.count(), 0);

    p->unregisterElement(scene);
    p->unregisterElement(sceneC1);
    p->unregisterElement(sceneC2);

    // No more signals after unregistering
    p->goToSlide(path, QStringLiteral("S2"));
    checkPixel(m_viewer, Qt::blue);

    QCOMPARE(spy1.count(), 4);
    QCOMPARE(spy2.count(), 4);
    QCOMPARE(spy3.count(), 4);
    QCOMPARE(spy4.count(), 4);
    QCOMPARE(spy5.count(), 0);
    QCOMPARE(spy6.count(), 1);
    QCOMPARE(spy7.count(), 1);
    QCOMPARE(spy8.count(), 1);
    QCOMPARE(spy9.count(), 1);
    QCOMPARE(spy10.count(), 0);
    QCOMPARE(spy11.count(), 1);
    QCOMPARE(spy12.count(), 1);
    QCOMPARE(spy13.count(), 1);
    QCOMPARE(spy14.count(), 1);
    QCOMPARE(spy15.count(), 0);

    // Reregister
    p->registerElement(scene);
    p->goToSlide(path, QStringLiteral("S1"));
    checkPixel(m_viewer, Qt::red);

    QCOMPARE(spy1.count(), 5);
    QCOMPARE(spy2.count(), 5);
    QCOMPARE(spy3.count(), 5);
    QCOMPARE(spy4.count(), 5);
    QCOMPARE(spy5.count(), 0);

    QCOMPARE(scene->currentSlideIndex(), 1);
    QCOMPARE(scene->previousSlideIndex(), 2);
    QCOMPARE(scene->currentSlideName(), QStringLiteral("S1"));
    QCOMPARE(scene->previousSlideName(), QStringLiteral("S2"));
    QCOMPARE(scene->elementPath(), path);

    scene->setCurrentSlideName(QStringLiteral("S2"));
    checkPixel(m_viewer, Qt::blue);

    QCOMPARE(spy1.count(), 6);
    QCOMPARE(spy2.count(), 6);

    scene->setCurrentSlideIndex(1);
    checkPixel(m_viewer, Qt::red);

    QCOMPARE(spy1.count(), 7);
    QCOMPARE(spy2.count(), 7);

    // Go to next slide, wrap parameter doesn't matter
    scene->goToSlide(true, true);
    checkPixel(m_viewer, Qt::blue);

    QCOMPARE(spy1.count(), 8);
    QCOMPARE(spy2.count(), 8);

    // Go to next slide, wrap parameter doesn't matter
    scene->goToSlide(true, false);
    checkPixel(m_viewer, Qt::green);

    QCOMPARE(spy1.count(), 9);
    QCOMPARE(spy2.count(), 9);

    // No wrap, should not change
    scene->goToSlide(true, false);
    checkPixel(m_viewer, Qt::green);

    QCOMPARE(spy1.count(), 9);
    QCOMPARE(spy2.count(), 9);

    // Should wrap
    scene->goToSlide(true, true);
    checkPixel(m_viewer, Qt::red);

    QCOMPARE(spy1.count(), 10);
    QCOMPARE(spy2.count(), 10);

    // No wrap, should not change
    scene->goToSlide(false, false);
    checkPixel(m_viewer, Qt::red);

    QCOMPARE(spy1.count(), 10);
    QCOMPARE(spy2.count(), 10);

    // Should wrap
    scene->goToSlide(false, true);
    checkPixel(m_viewer, Qt::green);

    QCOMPARE(spy1.count(), 11);
    QCOMPARE(spy2.count(), 11);

    // Time change
    scene->goToTime(7.0f);
    checkPixel(m_viewer, Qt::yellow);

    QCOMPARE(spy1.count(), 11);
    QCOMPARE(spy2.count(), 11);

    // Back to first slide for further tests
    scene->setCurrentSlideIndex(1);
    checkPixel(m_viewer, Qt::red);

    QCOMPARE(spy1.count(), 12);
    QCOMPARE(spy2.count(), 12);

    // Change element path
    scene->setElementPath(pathC1);
    checkPixel(m_viewer, Qt::red);

    QCOMPARE(spy1.count(), 12);
    QCOMPARE(spy2.count(), 12);
    QCOMPARE(spy3.count(), 12);
    QCOMPARE(spy4.count(), 12);
    QCOMPARE(spy5.count(), 1);

    QCOMPARE(scene->currentSlideIndex(), 2);
    QCOMPARE(scene->previousSlideIndex(), 1);
    QCOMPARE(scene->currentSlideName(), QStringLiteral("C1S2"));
    QCOMPARE(scene->previousSlideName(), QStringLiteral("C1S1"));
    QCOMPARE(scene->elementPath(), pathC1);

    p->goToSlide(pathC1, QStringLiteral("C1S2"));
    checkPixel(m_viewer, Qt::red);

    QCOMPARE(spy1.count(), 12);
    QCOMPARE(spy2.count(), 13);
    QCOMPARE(spy3.count(), 12);
    QCOMPARE(spy4.count(), 13);
    QCOMPARE(spy5.count(), 1);
}

void tst_Q3DSSurfaceViewer::testElement_data()
{
    testBasics_data();
}

void tst_Q3DSSurfaceViewer::testElement()
{
    QFETCH(bool, isWindow);

    if (isWindow)
        createWindowAndViewer(m_viewer, MULTISLIDE);
    else
        createOffscreenAndViewer(m_viewer, MULTISLIDE);

    m_viewer->settings()->setScaleMode(Q3DSViewerSettings::ScaleModeFill);

    QString path1 = QStringLiteral("Scene.Layer.Rect.Material"); // Red
    QString path2 = QStringLiteral("Scene.Layer.Component1.Rectangle4.Material"); // Green
    QString path3 = QStringLiteral("Scene.Layer.Component2.Rectangle6.Material"); // Yellow

    QPoint mainPoint(m_viewer->size().width() * 2 / 8, m_viewer->size().height() / 2);
    QPoint c1Point(m_viewer->size().width() * 5 / 8, m_viewer->size().height() / 2);
    QPoint c2Point(m_viewer->size().width() * 7 / 8, m_viewer->size().height() / 2);

    Q3DSPresentation *p = m_viewer->presentation();
    Q3DSElement *element1 = new Q3DSElement(p, path1);
    Q3DSElement *element2 = new Q3DSElement(p, path2);
    QSignalSpy spy2(element2, &Q3DSSceneElement::elementPathChanged);
    QVERIFY(spy2.isValid());

    checkPixel(m_viewer, Qt::red, mainPoint);
    checkPixel(m_viewer, Qt::green, c1Point);
    checkPixel(m_viewer, Qt::yellow, c2Point);

    element1->setAttribute(QStringLiteral("diffuse.r"), 0.0);
    element1->setAttribute(QStringLiteral("diffuse.g"), 0.0);
    element1->setAttribute(QStringLiteral("diffuse.b"), 1.0);
    checkPixel(m_viewer, Qt::blue, mainPoint);
    checkPixel(m_viewer, Qt::green, c1Point);
    checkPixel(m_viewer, Qt::yellow, c2Point);

    element2->setAttribute(QStringLiteral("diffuse.r"), 1.0);
    element2->setAttribute(QStringLiteral("diffuse.g"), 0.0);
    element2->setAttribute(QStringLiteral("diffuse.b"), 1.0);
    checkPixel(m_viewer, Qt::blue, mainPoint);
    checkPixel(m_viewer, Qt::magenta, c1Point);
    checkPixel(m_viewer, Qt::yellow, c2Point);

    // Change elementpath, nothing changes visually
    element2->setElementPath(path3);
    checkPixel(m_viewer, Qt::blue, mainPoint);
    checkPixel(m_viewer, Qt::magenta, c1Point);
    checkPixel(m_viewer, Qt::yellow, c2Point);
    QCOMPARE(spy2.count(), 1);

    element2->setAttribute(QStringLiteral("diffuse.r"), 0.0);
    element2->setAttribute(QStringLiteral("diffuse.g"), 1.0);
    element2->setAttribute(QStringLiteral("diffuse.b"), 1.0);
    checkPixel(m_viewer, Qt::blue, mainPoint);
    checkPixel(m_viewer, Qt::magenta, c1Point);
    checkPixel(m_viewer, Qt::cyan, c2Point);
}

void tst_Q3DSSurfaceViewer::testMouseInput_data()
{
    testBasics_data();
}

void tst_Q3DSSurfaceViewer::testMouseInput()
{
    QFETCH(bool, isWindow);

    if (isWindow)
        createWindowAndViewer(m_viewer, MOUSE);
    else
        createOffscreenAndViewer(m_viewer, MOUSE);

    m_viewer->settings()->setScaleMode(Q3DSViewerSettings::ScaleModeFill);

    QPoint point1(m_viewer->size().width() * 1 / 4, m_viewer->size().height() / 2);
    QPoint point2(m_viewer->size().width() * 3 / 4, m_viewer->size().height() / 2);

    checkPixel(m_viewer, Qt::blue, point1);
    checkPixel(m_viewer, Qt::red, point2);

    QMouseEvent e1(QEvent::MouseButtonPress, point1, Qt::LeftButton, Qt::LeftButton,
                   Qt::NoModifier);
    m_viewer->presentation()->mousePressEvent(&e1);

    checkPixel(m_viewer, Qt::green, point1);
    checkPixel(m_viewer, Qt::red, point2);

    QMouseEvent e2(QEvent::MouseButtonRelease, point1, Qt::LeftButton, Qt::LeftButton,
                   Qt::NoModifier);
    m_viewer->presentation()->mouseReleaseEvent(&e2);

    checkPixel(m_viewer, Qt::blue, point1);
    checkPixel(m_viewer, Qt::red, point2);

    QMouseEvent e3(QEvent::MouseButtonPress, point2, Qt::LeftButton, Qt::LeftButton,
                   Qt::NoModifier);
    m_viewer->presentation()->mousePressEvent(&e3);

    checkPixel(m_viewer, Qt::blue, point1);
    checkPixel(m_viewer, Qt::blue, point2);

    QMouseEvent e4(QEvent::MouseButtonRelease, point2, Qt::LeftButton, Qt::LeftButton,
                   Qt::NoModifier);
    m_viewer->presentation()->mouseReleaseEvent(&e4);

    checkPixel(m_viewer, Qt::blue, point1);
    checkPixel(m_viewer, Qt::red, point2);

    // Note: No way yet to hook mouse move into anything in the presentation
}

void tst_Q3DSSurfaceViewer::testDataInput_data()
{
    testBasics_data();
}

void tst_Q3DSSurfaceViewer::testDataInput()
{
    QFETCH(bool, isWindow);

    if (isWindow)
        createWindowAndViewer(m_viewer, DATAINPUT);
    else
        createOffscreenAndViewer(m_viewer, DATAINPUT);

    m_viewer->settings()->setScaleMode(Q3DSViewerSettings::ScaleModeFill);

    QPoint point1(m_viewer->size().width() / 4, m_viewer->size().height() / 4);

    const QString animationName = QStringLiteral("animationInput");
    const QString slideName = QStringLiteral("slideInput");

    checkPixel(m_viewer, Qt::red, point1);
    m_viewer->presentation()->setDataInputValue(animationName, 90);
    checkPixel(m_viewer, Qt::blue, point1);
    m_viewer->presentation()->setDataInputValue(animationName, 10);
    checkPixel(m_viewer, Qt::red, point1);

    Q3DSDataInput *animationInput = new Q3DSDataInput();
    animationInput->setName(animationName);

    m_viewer->presentation()->registerDataInput(animationInput);
    QVERIFY(m_viewer->presentation()->registeredDataInput(animationInput->name()));

    Q3DSDataInput *slideInput = new Q3DSDataInput(m_viewer->presentation(), slideName);
    QVERIFY(m_viewer->presentation()->registeredDataInput(slideInput->name()));

    animationInput->setValue(90);
    checkPixel(m_viewer, Qt::blue, point1);
    animationInput->setValue(10);
    checkPixel(m_viewer, Qt::red, point1);

    slideInput->setValue(QStringLiteral("Slide2"));
    checkPixel(m_viewer, Qt::green, point1);
    slideInput->setValue(QStringLiteral("Slide1"));
    checkPixel(m_viewer, Qt::red, point1);

    m_viewer->presentation()->unregisterDataInput(animationInput);
    m_viewer->presentation()->unregisterDataInput(slideInput);
    QVERIFY(!m_viewer->presentation()->registeredDataInput(animationInput->name()));
    QVERIFY(!m_viewer->presentation()->registeredDataInput(slideInput->name()));
    delete animationInput;
    delete slideInput;
}

void tst_Q3DSSurfaceViewer::testTextureQuery_data()
{
    testBasics_data();
}

void tst_Q3DSSurfaceViewer::testTextureQuery()
{
    QFETCH(bool, isWindow);

    if (isWindow)
        createWindowAndViewer(m_viewer, DATAINPUT);
    else
        createOffscreenAndViewer(m_viewer, DATAINPUT);

    m_viewer->settings()->setScaleMode(Q3DSViewerSettings::ScaleModeFill);

    QGuiApplication::processEvents();
    // Test texture info getters, first for layer then for individual material.
    // Texture id's are likely to change if test ordering changes.
    QSize texsize;
    GLenum format;

    uint textureid = m_viewer->presentation()->textureId("Scene.Layer", texsize, format);
    if (isWindow)
        QCOMPARE(textureid, 6);
    else
        QCOMPARE(textureid, 7);

    QCOMPARE(texsize, QSize(300,200));
    QCOMPARE(format, GL_RGBA8);

    textureid = m_viewer->presentation()->textureId("Scene.Layer.Rectangle.Default.diffusemap",
                                                    texsize, format);
    if (isWindow)
        QCOMPARE(textureid, 1);
    else
        QCOMPARE(textureid, 2);
    QCOMPARE(texsize, QSize(400,200));
    QCOMPARE(format, GL_RGBA8);

    m_viewer->presentation()->setAttribute("Scene.Layer.Rectangle.Default.diffusemap",
                                           "subpresentation", "");
    m_viewer->presentation()->setAttribute("Scene.Layer.Rectangle.Default.diffusemap", "sourcepath",
                                           "maps/OpenfootageNET_garage-512.hdr");

    QGuiApplication::processEvents();

    // Changed to HDR texture, studio-internally RGB8E but texture query should map to GL RGBA8
    textureid = m_viewer->presentation()->textureId("Scene.Layer.Rectangle.Default.diffusemap",
                                                    texsize, format);
    if (isWindow)
        QCOMPARE(textureid, 8);
    else
        QCOMPARE(textureid, 9);

    QCOMPARE(texsize, QSize(512,256));
    QCOMPARE(format, GL_RGBA8);
}

QTEST_MAIN(tst_Q3DSSurfaceViewer)

#include "tst_q3dssurfaceviewer.moc"