summaryrefslogtreecommitdiffstats
path: root/tests/interpreter/runner/UntestedTests.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/interpreter/runner/UntestedTests.qml')
-rw-r--r--tests/interpreter/runner/UntestedTests.qml99
1 files changed, 99 insertions, 0 deletions
diff --git a/tests/interpreter/runner/UntestedTests.qml b/tests/interpreter/runner/UntestedTests.qml
new file mode 100644
index 0000000..2e180cd
--- /dev/null
+++ b/tests/interpreter/runner/UntestedTests.qml
@@ -0,0 +1,99 @@
+/****************************************************************************
+**
+** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
+** Contact: http://www.qt-project.org/
+**
+** This file is part of QtSystemTest.
+**
+** $QT_BEGIN_LICENSE:LGPL$
+** GNU Lesser General Public License Usage
+** This file may be used under the terms of the GNU Lesser General Public
+** License version 2.1 as published by the Free Software Foundation and
+** appearing in the file LICENSE.LGPL included in the packaging of this
+** file. Please review the following information to ensure the GNU Lesser
+** General Public License version 2.1 requirements will be met:
+** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
+**
+** In addition, as a special exception, Nokia gives you certain additional
+** rights. These rights are described in the Nokia Qt LGPL Exception
+** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
+**
+** GNU General Public License Usage
+** Alternatively, this file may be used under the terms of the GNU General
+** Public License version 3.0 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 3.0 requirements will be met:
+** http://www.gnu.org/copyleft/gpl.html.
+**
+** Other Usage
+** Alternatively, this file may be used in accordance with the terms and
+** conditions contained in a signed written agreement between you and Nokia.
+**
+**
+**
+**
+**
+**
+** $QT_END_LICENSE$
+**
+****************************************************************************/
+
+import QtQuick 1.1
+import QtSystemTest 1.0
+import 'RunnerInternals.js' as Internals
+
+TestCollection {
+ id: root
+ name: 'untested test collection'
+ description: 'tests if failing in the setup '
+ + 'of a test collection sets all child tests to '
+ + ' untested'
+
+ property bool runGotExecuted: false;
+ property int untestedTestsBeforeRun: 0
+ function setup() {
+ var Core = core();
+ Internals.setItem(dummyTest);
+ Internals.setRunner(__runner);
+ untestedTestsBeforeRun = __runner.report[Core.Qtt.Status.Untested];
+ log('Ignore the untested report, done on purpose');
+ fail('Generating a failure inside test collection -> setup');
+ }
+
+ Test {
+ id: dummyTest
+ name: 'a dummy test'; description: name
+
+ // Not having run shouldn't matter since this shouldn't
+ // be even executed
+ function run() {
+ runGotExecuted = true;
+ }
+ }
+
+ function cleanup() {
+ /// HACK should not be done
+ /// DO NOT screw around with the internals
+ /// it is your fault if things break done
+ var Core = core();
+ if (runGotExecuted) {
+ log('Run got executed somehow ...');
+ Internals.changeReport(Core.Qtt.Status.Failed);
+ return;
+ }
+ if (dummyTest.__status !== Core.Qtt.Status.Untested) {
+ log('Status is not set to Untestsed ...');
+ Internals.changeReport(Core.Qtt.Status.Failed);
+ return;
+ }
+ var untestedAfterRun = __runner.report[Core.Qtt.Status.Untested];
+ if ( untestedTestsBeforeRun + 1 !== untestedAfterRun) {
+ log('Wrong count of untested. Untested before run was : ', untestedTestsBeforeRun,
+ ' and after run is : ', untestedAfterRun);
+ Internals.changeReport(Core.Qtt.Status.Failed);
+ return;
+ }
+ Internals.changeReport(Core.Qtt.Status.Passed);
+ }
+}