summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorKevin Ottens <kevin.ottens@kdab.com>2015-12-14 18:18:13 +0100
committerKevin Ottens <kevin.ottens@kdab.com>2015-12-16 13:54:12 +0000
commit48e61aae3da9939a7200885fe0b80bfef6c34da3 (patch)
tree76f49108052be3bc275abcb74fa4d3b11e39b6ec /tests
parent997e76988d19d01385667db1230d63177670f77f (diff)
Add tests to QAspectJob
Change-Id: I373f57fc40f9f2d92de6b48126d6c84363ed6d28 Reviewed-by: Sean Harmer <sean.harmer@kdab.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/auto/core/core.pro1
-rw-r--r--tests/auto/core/qaspectjob/qaspectjob.pro7
-rw-r--r--tests/auto/core/qaspectjob/tst_qaspectjob.cpp98
3 files changed, 106 insertions, 0 deletions
diff --git a/tests/auto/core/core.pro b/tests/auto/core/core.pro
index 3fb16b4d0..d33b97edc 100644
--- a/tests/auto/core/core.pro
+++ b/tests/auto/core/core.pro
@@ -11,6 +11,7 @@ SUBDIRS = \
qentity \
qaspectengine \
qaspectfactory \
+ qaspectjob \
qchangearbiter \
qscene \
qservicelocator \
diff --git a/tests/auto/core/qaspectjob/qaspectjob.pro b/tests/auto/core/qaspectjob/qaspectjob.pro
new file mode 100644
index 000000000..0a7a94f6d
--- /dev/null
+++ b/tests/auto/core/qaspectjob/qaspectjob.pro
@@ -0,0 +1,7 @@
+TARGET = tst_qaspectjob
+CONFIG += testcase
+TEMPLATE = app
+
+SOURCES += tst_qaspectjob.cpp
+
+QT += testlib 3dcore
diff --git a/tests/auto/core/qaspectjob/tst_qaspectjob.cpp b/tests/auto/core/qaspectjob/tst_qaspectjob.cpp
new file mode 100644
index 000000000..28ff7997d
--- /dev/null
+++ b/tests/auto/core/qaspectjob/tst_qaspectjob.cpp
@@ -0,0 +1,98 @@
+/****************************************************************************
+**
+** Copyright (C) 2015 Klaralvdalens Datakonsult AB (KDAB).
+** Contact: http://www.qt-project.org/legal
+**
+** This file is part of the Qt3D module of the Qt Toolkit.
+**
+** $QT_BEGIN_LICENSE:LGPL3$
+** 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 http://www.qt.io/terms-conditions. For further
+** information use the contact form at http://www.qt.io/contact-us.
+**
+** GNU Lesser General Public License Usage
+** Alternatively, this file may be used under the terms of the GNU Lesser
+** General Public License version 3 as published by the Free Software
+** Foundation and appearing in the file LICENSE.LGPLv3 included in the
+** packaging of this file. Please review the following information to
+** ensure the GNU Lesser General Public License version 3 requirements
+** will be met: https://www.gnu.org/licenses/lgpl.html.
+**
+** GNU General Public License Usage
+** Alternatively, this file may be used under the terms of the GNU
+** General Public License version 2.0 or later as published by the Free
+** Software Foundation and appearing in the file LICENSE.GPL included in
+** the packaging of this file. Please review the following information to
+** ensure the GNU General Public License version 2.0 requirements will be
+** met: http://www.gnu.org/licenses/gpl-2.0.html.
+**
+** $QT_END_LICENSE$
+**
+****************************************************************************/
+
+#include <QtTest/QtTest>
+#include <Qt3DCore/qaspectjob.h>
+
+using namespace Qt3DCore;
+
+class FakeAspectJob : public QAspectJob
+{
+public:
+ void run() Q_DECL_OVERRIDE {}
+};
+
+class tst_QAspectJob : public QObject
+{
+ Q_OBJECT
+private Q_SLOTS:
+ void shouldAddDependencies()
+ {
+ // GIVEN
+ QAspectJobPtr job1(new FakeAspectJob);
+ QAspectJobPtr job2(new FakeAspectJob);
+ QAspectJobPtr job3(new FakeAspectJob);
+
+ // THEN
+ QVERIFY(job1->dependencies().isEmpty());
+ QVERIFY(job2->dependencies().isEmpty());
+ QVERIFY(job3->dependencies().isEmpty());
+
+ // WHEN
+ job1->addDependency(job2);
+ job1->addDependency(job3);
+
+ // THEN
+ QCOMPARE(job1->dependencies().size(), 2);
+ QCOMPARE(job1->dependencies().at(0).lock(), job2);
+ QCOMPARE(job1->dependencies().at(1).lock(), job3);
+ QVERIFY(job2->dependencies().isEmpty());
+ QVERIFY(job3->dependencies().isEmpty());
+ }
+
+ void shouldClearNullDependencies()
+ {
+ // GIVEN
+ QAspectJobPtr job1(new FakeAspectJob);
+ QAspectJobPtr job2(new FakeAspectJob);
+ QAspectJobPtr job3(new FakeAspectJob);
+
+ job1->addDependency(job2);
+ job1->addDependency(job3);
+
+ // WHEN
+ job2.clear();
+ job1->clearNullDependencies();
+
+ // THEN
+ QCOMPARE(job1->dependencies().size(), 1);
+ QCOMPARE(job1->dependencies().at(0).lock(), job3);
+ }
+};
+
+QTEST_MAIN(tst_QAspectJob)
+
+#include "tst_qaspectjob.moc"