f806d13a2437bb3eb1774b13a732a4cf8594da09
[profile/ivi/qtdeclarative.git] / tests / auto / declarative / qdeclarativeconsole / tst_qdeclarativeconsole.cpp
1 /****************************************************************************
2 **
3 ** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
4 ** All rights reserved.
5 ** Contact: Nokia Corporation (qt-info@nokia.com)
6 **
7 ** This file is part of the test suite of the Qt Toolkit.
8 **
9 ** $QT_BEGIN_LICENSE:LGPL$
10 ** GNU Lesser General Public License Usage
11 ** This file may be used under the terms of the GNU Lesser General Public
12 ** License version 2.1 as published by the Free Software Foundation and
13 ** appearing in the file LICENSE.LGPL included in the packaging of this
14 ** file. Please review the following information to ensure the GNU Lesser
15 ** General Public License version 2.1 requirements will be met:
16 ** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
17 **
18 ** In addition, as a special exception, Nokia gives you certain additional
19 ** rights. These rights are described in the Nokia Qt LGPL Exception
20 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
21 **
22 ** GNU General Public License Usage
23 ** Alternatively, this file may be used under the terms of the GNU General
24 ** Public License version 3.0 as published by the Free Software Foundation
25 ** and appearing in the file LICENSE.GPL included in the packaging of this
26 ** file. Please review the following information to ensure the GNU General
27 ** Public License version 3.0 requirements will be met:
28 ** http://www.gnu.org/copyleft/gpl.html.
29 **
30 ** Other Usage
31 ** Alternatively, this file may be used in accordance with the terms and
32 ** conditions contained in a signed written agreement between you and Nokia.
33 **
34 **
35 **
36 **
37 **
38 ** $QT_END_LICENSE$
39 **
40 ****************************************************************************/
41 #include <qtest.h>
42 #include <QDebug>
43 #include <QDeclarativeEngine>
44 #include <QDeclarativeComponent>
45 #include "../../shared/util.h"
46
47 class tst_qdeclarativeconsole : public QDeclarativeDataTest
48 {
49     Q_OBJECT
50 public:
51     tst_qdeclarativeconsole() {}
52
53 private slots:
54     void logging();
55     void tracing();
56     void profiling();
57
58 private:
59     QDeclarativeEngine engine;
60 };
61
62 void tst_qdeclarativeconsole::logging()
63 {
64     QUrl testUrl = testFileUrl("logging.qml");
65
66     QTest::ignoreMessage(QtDebugMsg, "console.debug");
67     QTest::ignoreMessage(QtDebugMsg, "console.log");
68     QTest::ignoreMessage(QtDebugMsg, "console.info");
69     QTest::ignoreMessage(QtWarningMsg, "console.warn");
70     QTest::ignoreMessage(QtCriticalMsg, "console.error");
71
72     QTest::ignoreMessage(QtDebugMsg, "[1,2]");
73     QTest::ignoreMessage(QtDebugMsg, "Object");
74     QTest::ignoreMessage(QtDebugMsg, "undefined");
75     QTest::ignoreMessage(QtDebugMsg, "12");
76     QTest::ignoreMessage(QtDebugMsg, "function () { return 5;}");
77     QTest::ignoreMessage(QtDebugMsg, "true");
78     QTest::ignoreMessage(QtDebugMsg, "Object");
79     QTest::ignoreMessage(QtDebugMsg, "Object");
80     QTest::ignoreMessage(QtDebugMsg, "1 pong! Object");
81     QTest::ignoreMessage(QtDebugMsg, "1 [ping,pong] Object 2");
82
83
84     QDeclarativeComponent component(&engine, testUrl);
85     QObject *object = component.create();
86     QVERIFY(object != 0);
87     delete object;
88 }
89
90 void tst_qdeclarativeconsole::tracing()
91 {
92     QUrl testUrl = testFileUrl("tracing.qml");
93
94     QString trace1 = QString::fromLatin1("tracing (%1:%2:%3)\n").arg(testUrl.toString()).arg(50).arg(17);
95     QString trace2 = QString::fromLatin1("onCompleted (%1:%2:%3)\n").arg(testUrl.toString()).arg(54).arg(9);
96     QTest::ignoreMessage(QtDebugMsg, qPrintable(trace1));
97     QTest::ignoreMessage(QtDebugMsg, qPrintable(trace2));
98
99     QDeclarativeComponent component(&engine, testUrl);
100     QObject *object = component.create();
101     QVERIFY(object != 0);
102     delete object;
103 }
104
105 void tst_qdeclarativeconsole::profiling()
106 {
107     QUrl testUrl = testFileUrl("profiling.qml");
108
109     // profiling()
110     QTest::ignoreMessage(QtDebugMsg, "Profiling started.");
111     QTest::ignoreMessage(QtDebugMsg, "Profiling ended.");
112
113     QDeclarativeComponent component(&engine, testUrl);
114     QObject *object = component.create();
115     QVERIFY(object != 0);
116     delete object;
117 }
118
119
120 QTEST_MAIN(tst_qdeclarativeconsole)
121
122 #include "tst_qdeclarativeconsole.moc"