Files
qt-creator/tests/auto/debugger/tst_dumpers.cpp

4144 lines
166 KiB
C++
Raw Normal View History

/****************************************************************************
2011-02-18 14:48:16 +01:00
**
** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
** Contact: http://www.qt-project.org/legal
2011-02-18 14:48:16 +01:00
**
** This file is part of Qt Creator.
2011-02-18 14:48:16 +01:00
**
** 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 Digia. For licensing terms and
** conditions see http://qt.digia.com/licensing. For further information
** use the contact form at http://qt.digia.com/contact-us.
2011-02-18 14:48:16 +01:00
**
** GNU Lesser General Public License Usage
** Alternatively, 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.
2011-02-18 14:48:16 +01:00
**
** In addition, as a special exception, Digia gives you certain additional
** rights. These rights are described in the Digia Qt LGPL Exception
2011-02-18 14:48:16 +01:00
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
**
****************************************************************************/
2011-02-18 14:48:16 +01:00
#include "debuggerprotocol.h"
#include "watchdata.h"
#include "watchutils.h"
#include <CppRewriter.h>
#include <QtTest>
#include <QTemporaryFile>
#include <QTemporaryDir>
using namespace Debugger;
using namespace Internal;
static QByteArray noValue = "\001";
struct Context
{
Context() : qtVersion(0) {}
QByteArray nameSpace;
int qtVersion;
};
struct Name
{
Name() : name(noValue) {}
Name(const char *str) : name(str) {}
Name(const QByteArray &ba) : name(ba) {}
bool matches(const QByteArray &actualName0, const Context &context) const
{
QByteArray actualName = actualName0;
QByteArray expectedName = name;
expectedName.replace("@Q", context.nameSpace + 'Q');
return actualName == expectedName;
}
QByteArray name;
};
static Name nameFromIName(const QByteArray &iname)
{
int pos = iname.lastIndexOf('.');
return Name(pos == -1 ? iname : iname.mid(pos + 1));
}
static QByteArray parentIName(const QByteArray &iname)
{
int pos = iname.lastIndexOf('.');
return pos == -1 ? QByteArray() : iname.left(pos);
}
struct ValueBase
{
ValueBase() : hasPtrSuffix(false), version(0) {}
bool hasPtrSuffix;
int version;
};
struct Value : public ValueBase
{
Value() : value(noValue) {}
Value(const char *str) : value(str) {}
Value(const QByteArray &ba) : value(ba) {}
bool matches(const QString &actualValue0, const Context &context) const
{
if (value == noValue)
return true;
if (context.qtVersion) {
if (version == 4) {
if (context.qtVersion < 0x40000 || context.qtVersion >= 0x50000) {
//QWARN("Qt 4 specific case skipped");
return true;
}
} else if (version == 5) {
if (context.qtVersion < 0x50000 || context.qtVersion >= 0x60000) {
//QWARN("Qt 5 specific case skipped");
return true;
}
}
}
QString actualValue = actualValue0;
if (actualValue == QLatin1String(" "))
actualValue.clear(); // FIXME: Remove later.
QByteArray expectedValue = value;
expectedValue.replace('@', context.nameSpace);
QString self = QString::fromLatin1(expectedValue);
if (hasPtrSuffix)
return actualValue.startsWith(self + QLatin1String(" @0x"))
|| actualValue.startsWith(self + QLatin1String("@0x"));
return actualValue == self;
}
QByteArray value;
};
struct Pointer : Value
{
Pointer() { hasPtrSuffix = true; }
Pointer(const QByteArray &value) : Value(value) { hasPtrSuffix = true; }
};
struct Value4 : Value
{
Value4(const QByteArray &value) : Value(value) { version = 4; }
};
struct Value5 : Value
{
Value5(const QByteArray &value) : Value(value) { version = 5; }
};
struct Type
{
Type() {}
Type(const char *str) : type(str) {}
Type(const QByteArray &ba) : type(ba) {}
bool matches(const QByteArray &actualType0, const Context &context) const
{
QByteArray actualType =
CPlusPlus::simplifySTLType(QString::fromLatin1(actualType0)).toLatin1();
actualType.replace(' ', "");
QByteArray expectedType = type;
expectedType.replace(' ', "");
expectedType.replace('@', context.nameSpace);
return actualType == expectedType;
}
QByteArray type;
};
struct Check
{
Check() {}
Check(const QByteArray &iname, const Value &value, const Type &type)
: iname(iname), expectedName(nameFromIName(iname)),
expectedValue(value), expectedType(type)
{}
Check(const QByteArray &iname, const Name &name,
const Value &value, const Type &type)
: iname(iname), expectedName(name),
expectedValue(value), expectedType(type)
{}
QByteArray iname;
Name expectedName;
Value expectedValue;
Type expectedType;
};
struct CheckType : public Check
{
CheckType(const QByteArray &iname, const Name &name,
const Type &type)
: Check(iname, name, noValue, type)
{}
CheckType(const QByteArray &iname, const Type &type)
: Check(iname, noValue, type)
{}
};
struct Profile
{
Profile(const QByteArray &contents) : contents(contents) {}
QByteArray contents;
};
struct Cxx11Profile : public Profile
{
//Cxx11Profile() : Profile("CONFIG += c++11") {}
Cxx11Profile() : Profile("QMAKE_CXXFLAGS += -std=c++0x") {}
};
struct ForceC {};
struct CoreProfile {};
struct CorePrivateProfile {};
struct GuiProfile {};
struct DataBase
{
DataBase() : useQt(false), forceC(false) {}
mutable bool useQt;
mutable bool forceC;
};
class Data : public DataBase
{
public:
Data() {}
Data(const QByteArray &code) : code(code) {}
Data(const QByteArray &includes, const QByteArray &code)
: includes(includes), code(code)
{}
const Data &operator%(const Check &check) const
{
checks.insert("local." + check.iname, check);
return *this;
}
const Data &operator%(const Profile &profile) const
{
profileExtra += profile.contents;
return *this;
}
const Data &operator%(const CoreProfile &) const
{
profileExtra +=
"CONFIG += QT\n"
"QT += gui\n"
"greaterThan(QT_MAJOR_VERSION, 4):QT *= widgets\n";
useQt = true;
return *this;
}
const Data &operator%(const GuiProfile &) const
{
profileExtra +=
"CONFIG += QT\n"
"QT += gui\n"
"greaterThan(QT_MAJOR_VERSION, 4):QT *= widgets\n";
useQt = true;
return *this;
}
const Data &operator%(const CorePrivateProfile &) const
{
profileExtra +=
"CONFIG += QT\n"
"greaterThan(QT_MAJOR_VERSION, 4) {\n"
" QT += core core-private\n"
" CONFIG += no_private_qt_headers_warning\n"
"}";
useQt = true;
return *this;
}
const Data &operator%(const ForceC &) const
{
forceC = true;
return *this;
}
public:
mutable QByteArray profileExtra;
QByteArray includes;
QByteArray code;
mutable QMap<QByteArray, Check> checks;
2009-07-08 17:27:45 +02:00
};
Q_DECLARE_METATYPE(Data)
2009-07-08 17:27:45 +02:00
class tst_Dumpers : public QObject
{
Q_OBJECT
public:
tst_Dumpers() {}
private slots:
void dumper();
void dumper_data();
};
void tst_Dumpers::dumper()
{
QFETCH(Data, data);
bool ok;
QString cmd;
QByteArray output;
QByteArray error;
QTemporaryDir buildDir(QLatin1String("qt_tst_dumpers_"));
const bool keepTemp = qgetenv("QTC_KEEP_TEMP").toInt();
buildDir.setAutoRemove(!keepTemp);
//qDebug() << "Temp dir: " << buildDir.path();
QVERIFY(!buildDir.path().isEmpty());
const char *mainFile = data.forceC ? "main.c" : "main.cpp";
QFile proFile(buildDir.path() + QLatin1String("/doit.pro"));
ok = proFile.open(QIODevice::ReadWrite);
QVERIFY(ok);
proFile.write("SOURCES = ");
proFile.write(mainFile);
proFile.write("\nTARGET = doit\n");
if (data.useQt)
proFile.write("QT -= widgets gui\n");
else
proFile.write("CONFIG -= QT\n");
proFile.write(data.profileExtra);
proFile.close();
QFile source(buildDir.path() + QLatin1Char('/') + QLatin1String(mainFile));
ok = source.open(QIODevice::ReadWrite);
QByteArray fullCode =
"\n\nvoid unused(const void *first,...) { (void) first; }"
"\n\nvoid breakHere() {}"
"\n\n" + data.includes +
"\n\nint main(int argc, char *argv[])"
"\n{"
"\n int qtversion = " + (data.useQt ? "QT_VERSION" : "0") + ";\n"
"\n unused(&argc, &argv, &qtversion);\n"
"\n" + data.code +
"\n breakHere();"
"\n return 0;"
"\n}\n";
QVERIFY(ok);
source.write(fullCode);
source.close();
QProcess qmake;
qmake.setWorkingDirectory(buildDir.path());
cmd = QString::fromLatin1("qmake");
//qDebug() << "Starting qmake: " << cmd;
qmake.start(cmd);
ok = qmake.waitForFinished();
QVERIFY(ok);
output = qmake.readAllStandardOutput();
error = qmake.readAllStandardError();
//qDebug() << "stdout: " << output;
if (!error.isEmpty()) { qDebug() << error; QVERIFY(false); }
QProcess make;
make.setWorkingDirectory(buildDir.path());
cmd = QString::fromLatin1("make");
//qDebug() << "Starting make: " << cmd;
make.start(cmd);
ok = make.waitForFinished();
QVERIFY(ok);
output = make.readAllStandardOutput();
error = make.readAllStandardError();
//qDebug() << "stdout: " << output;
if (!error.isEmpty()) {
qDebug() << error;
qDebug() << "\n------------------ CODE --------------------";
qDebug() << fullCode;
qDebug() << "\n------------------ CODE --------------------";
qDebug() << ".pro: " << qPrintable(proFile.fileName());
QVERIFY(false);
}
QByteArray dumperDir = DUMPERDIR;
QSet<QByteArray> expandedINames;
expandedINames.insert("local");
foreach (const Check &check, data.checks) {
QByteArray parent = check.iname;
while (true) {
parent = parentIName(parent);
if (parent.isEmpty())
break;
expandedINames.insert("local." + parent);
}
}
QByteArray expanded;
foreach (const QByteArray &iname, expandedINames) {
if (!expanded.isEmpty())
expanded.append(',');
expanded += iname;
}
QByteArray nograb = "-nograb";
QByteArray cmds =
"set confirm off\n"
"file doit\n"
"break breakHere\n"
"set print object on\n"
"set auto-load python-scripts off\n"
"python execfile('" + dumperDir + "/bridge.py')\n"
"python execfile('" + dumperDir + "/dumper.py')\n"
"python execfile('" + dumperDir + "/qttypes.py')\n"
"bbsetup\n"
"run " + nograb + "\n"
"up\n"
"python print('@%sS@%s@' % ('N', qtNamespace()))\n"
"bb options:fancy,autoderef,dyntype vars: expanded:" + expanded + " typeformats:\n"
"quit\n";
if (keepTemp) {
QFile logger(buildDir.path() + QLatin1String("/input.txt"));
ok = logger.open(QIODevice::ReadWrite);
logger.write(cmds);
}
QByteArray debuggerBinary = qgetenv("QTC_DEBUGGER_PATH");
if (debuggerBinary.isEmpty())
debuggerBinary = "gdb";
QProcessEnvironment env = QProcessEnvironment::systemEnvironment();
env.insert(QLatin1String("QT_HASH_SEED"), QLatin1String("0"));
QProcess debugger;
debugger.setProcessEnvironment(env);
debugger.setWorkingDirectory(buildDir.path());
debugger.start(QString::fromLatin1(debuggerBinary)
+ QLatin1String(" -i mi -quiet -nx"));
ok = debugger.waitForStarted();
debugger.write(cmds);
ok = debugger.waitForFinished();
QVERIFY(ok);
output = debugger.readAllStandardOutput();
//qDebug() << "stdout: " << output;
error = debugger.readAllStandardError();
if (!error.isEmpty()) { qDebug() << error; }
if (keepTemp) {
QFile logger(buildDir.path() + QLatin1String("/output.txt"));
ok = logger.open(QIODevice::ReadWrite);
logger.write("=== STDOUT ===\n");
logger.write(output);
logger.write("\n=== STDERR ===\n");
logger.write(error);
}
Context context;
int pos1 = output.indexOf("data=");
QVERIFY(pos1 != -1);
int pos2 = output.indexOf(",typeinfo", pos1);
QVERIFY(pos2 != -1);
QByteArray contents = output.mid(pos1, pos2 - pos1);
contents.replace("\\\"", "\"");
int pos3 = output.indexOf("@NS@");
QVERIFY(pos3 != -1);
pos3 += sizeof("@NS@") - 1;
int pos4 = output.indexOf("@", pos3);
QVERIFY(pos4 != -1);
context.nameSpace = output.mid(pos3, pos4 - pos3);
//qDebug() << "FOUND NS: " << context.nameSpace;
if (context.nameSpace == "::")
context.nameSpace.clear();
GdbMi actual;
actual.fromString(contents);
ok = false;
WatchData local;
local.iname = "local";
QList<WatchData> list;
foreach (const GdbMi &child, actual.children()) {
WatchData dummy;
dummy.iname = child.findChild("iname").data();
dummy.name = QLatin1String(child.findChild("name").data());
if (dummy.iname == "local.qtversion")
context.qtVersion = child.findChild("value").data().toInt();
else
parseWatchData(expandedINames, dummy, child, &list);
}
//qDebug() << "QT VERSION " << QByteArray::number(context.qtVersion, 16);
QSet<QByteArray> seenINames;
foreach (const WatchData &item, list) {
seenINames.insert(item.iname);
if (data.checks.contains(item.iname)) {
Check check = data.checks.take(item.iname);
if (!check.expectedName.matches(item.name.toLatin1(), context)) {
qDebug() << "INAME : " << item.iname;
qDebug() << "NAME ACTUAL : " << item.name.toLatin1();
qDebug() << "NAME EXPECTED: " << check.expectedName.name;
qDebug() << "CONTENTS : " << contents;
QVERIFY(false);
}
if (!check.expectedValue.matches(item.value, context)) {
qDebug() << "INAME : " << item.iname;
qDebug() << "VALUE ACTUAL : " << item.value << item.value.toLatin1().toHex();
qDebug() << "VALUE EXPECTED: " << check.expectedValue.value << check.expectedValue.value.toHex();
qDebug() << "CONTENTS : " << contents;
QVERIFY(false);
}
if (!check.expectedType.matches(item.type, context)) {
qDebug() << "INAME : " << item.iname;
qDebug() << "TYPE ACTUAL : " << item.type;
qDebug() << "TYPE EXPECTED: " << check.expectedType.type;
qDebug() << "CONTENTS : " << contents;
QVERIFY(false);
}
}
}
if (!data.checks.isEmpty()) {
bool fail = false;
qDebug() << "SOME TESTS NOT EXECUTED: ";
foreach (const Check &check, data.checks) {
qDebug() << " TEST NOT FOUND FOR INAME: " << check.iname;
if (!fail && check.expectedValue.version != 0)
fail = true;
}
qDebug() << "SEEN INAMES " << seenINames;
qDebug() << "CONTENTS : " << contents;
qDebug() << "EXPANDED : " << expanded;
QVERIFY(false);
}
}
void tst_Dumpers::dumper_data()
{
QTest::addColumn<Data>("data");
QByteArray fooData =
"#include <QHash>\n"
"#include <QMap>\n"
"#include <QObject>\n"
"#include <QString>\n"
"class Foo\n"
"{\n"
"public:\n"
" Foo(int i = 0)\n"
" : a(i), b(2)\n"
" {}\n"
" virtual ~Foo()\n"
" {\n"
" a = 5;\n"
" }\n"
" void doit()\n"
" {\n"
" static QObject ob;\n"
" m[\"1\"] = \"2\";\n"
" h[&ob] = m.begin();\n"
" --b;\n"
" }\n"
"public:\n"
" int a, b;\n"
" char x[6];\n"
"private:\n"
" typedef QMap<QString, QString> Map;\n"
" Map m;\n"
" QHash<QObject *, Map::iterator> h;\n"
"};\n";
QByteArray nsData =
"namespace nsA {\n"
"namespace nsB {\n"
" struct SomeType\n"
" {\n"
" SomeType(int a) : a(a) {}\n"
" int a;\n"
" };\n"
" } // namespace nsB\n"
" } // namespace nsA\n";
QTest::newRow("AnonymousStruct")
<< Data("union {\n"
" struct { int i; int b; };\n"
" struct { float f; };\n"
" double d;\n"
" } a = { { 42, 43 } };\n (void)a;")
% CheckType("a", "a", "union {...}")
% Check("a.b", "43", "int")
% Check("a.d", "9.1245819032257467e-313", "double")
% Check("a.f", "5.88545355e-44", "float")
% Check("a.i", "42", "int");
QTest::newRow("QByteArray0")
<< Data("#include <QByteArray>\n",
"QByteArray ba;")
% CoreProfile()
% Check("ba", "ba", "\"\"", "@QByteArray");
QTest::newRow("QByteArray1")
<< Data("#include <QByteArray>\n",
"QByteArray ba = \"Hello\\\"World\";\n"
"ba += char(0);\n"
"ba += 1;\n"
"ba += 2;\n")
% CoreProfile()
% Check("ba", "\"Hello\"World\"", "@QByteArray")
% Check("ba.0", "[0]", "72", "char")
% Check("ba.11", "[11]", "0", "char")
% Check("ba.12", "[12]", "1", "char")
% Check("ba.13", "[13]", "2", "char");
QTest::newRow("QByteArray2")
<< Data("#include <QByteArray>\n"
"#include <QString>\n"
"#include <string>\n",
"QByteArray ba;\n"
"for (int i = 256; --i >= 0; )\n"
" ba.append(char(i));\n"
"QString s(10000, 'x');\n"
"std::string ss(10000, 'c');\n"
"unused(&ba, &s, &ss);\n")
% CoreProfile()
% CheckType("ba", "@QByteArray")
% Check("s", '"' + QByteArray(10000, 'x') + '"', "@QString")
% Check("ss", '"' + QByteArray(10000, 'c') + '"', "std::string");
QTest::newRow("QByteArray3")
<< Data("#include <QByteArray>\n",
"const char *str1 = \"\356\";\n"
"const char *str2 = \"\xee\";\n"
"const char *str3 = \"\\ee\";\n"
"QByteArray buf1(str1);\n"
"QByteArray buf2(str2);\n"
"QByteArray buf3(str3);\n"
"unused(&buf1, &buf2, &buf3);\n")
% CoreProfile()
% Check("buf1", "\"" + QByteArray(1, 0xee) + "\"", "@QByteArray")
% Check("buf2", "\"" + QByteArray(1, 0xee) + "\"", "@QByteArray")
% Check("buf3", "\"\ee\"", "@QByteArray")
% CheckType("str1", "char *");
QTest::newRow("QByteArray4")
<< Data("#include <QByteArray>\n",
"char data[] = { 'H', 'e', 'l', 'l', 'o' };\n"
"QByteArray ba1 = QByteArray::fromRawData(data, 4);\n"
"QByteArray ba2 = QByteArray::fromRawData(data + 1, 4);\n")
% CoreProfile()
% Check("ba1", "\"Hell\"", "@QByteArray")
% Check("ba2", "\"ello\"", "@QByteArray");
QTest::newRow("QDate0")
<< Data("#include <QDate>\n",
"QDate date;\n"
"unused(&date);\n")
% CoreProfile()
% Check("date", Value4("(invalid)"), "@QDate")
% Check("date", Value5(""), "@QDate");
QTest::newRow("QDate1")
<< Data("#include <QDate>\n",
"QDate date;\n"
"date.setDate(1980, 1, 1);\n"
"unused(&date);\n")
% CoreProfile()
% Check("date", "Tue Jan 1 1980", "@QDate")
% Check("date.(ISO)", "\"1980-01-01\"", "@QString")
% CheckType("date.(Locale)", "@QString")
% CheckType("date.(SystemLocale)", "@QString")
% Check("date.toString", "\"Tue Jan 1 1980\"", "@QString");
QTest::newRow("QTime0")
<< Data("#include <QTime>\n",
"QTime time;\n")
% CoreProfile()
% Check("time", "(invalid)", "@QTime");
QTest::newRow("QTime1")
<< Data("#include <QTime>\n",
"QTime time(13, 15, 32);")
% CoreProfile()
% Check("time", "13:15:32", "@QTime")
% Check("time.(ISO)", "\"13:15:32\"", "@QString")
% CheckType("time.(Locale)", "@QString")
% CheckType("time.(SystemLocale)", "@QString")
% Check("time.toString", "\"13:15:32\"", "@QString");
QTest::newRow("QDateTime0")
<< Data("#include <QDateTime>\n",
"QDateTime date;\n")
% CoreProfile()
% Check("date", "(invalid)", "@QDateTime");
QTest::newRow("QDateTime1")
<< Data("#include <QDateTime>\n",
"QDateTime date(QDate(1980, 1, 1), QTime(13, 15, 32), Qt::UTC);\n")
% CoreProfile()
% Check("date", "Tue Jan 1 13:15:32 1980", "@QDateTime")
% Check("date.(ISO)", "\"1980-01-01T13:15:32Z\"", "@QString")
% CheckType("date.(Locale)", "@QString")
% CheckType("date.(SystemLocale)", "@QString")
% Check("date.toString", "\"Tue Jan 1 13:15:32 1980\"", "@QString")
% Check("date.toUTC", "Tue Jan 1 13:15:32 1980", "@QDateTime");
#ifdef Q_OS_WIN
QByteArray tempDir = "\"C:/Program Files\"";
#else
QByteArray tempDir = "\"/tmp\"";
#endif
QTest::newRow("QDir")
<< Data("#include <QDir>\n",
"QDir dir(" + tempDir + ");\n"
"QString s = dir.absolutePath();\n"
"unused(&dir, &s);\n")
% CoreProfile()
% Check("dir", tempDir, "@QDir")
% Check("dir.absolutePath", tempDir, "@QString")
% Check("dir.canonicalPath", tempDir, "@QString");
QTest::newRow("QFileInfo")
#ifdef Q_OS_WIN
<< Data("#include <QFile>\n"
"#include <QFileInfo>\n",
"QFile file(\"C:\\\\Program Files\\t\");\n"
"file.setObjectName(\"A QFile instance\");\n"
"QFileInfo fi(\"C:\\Program Files\\tt\");\n"
"QString s = fi.absoluteFilePath();\n")
% Check("fi", "\"C:/Program Files/tt\"", "QFileInfo")
% Check("file", "\"C:\Program Files\t\"", "QFile")
% Check("s", "\"C:/Program Files/tt\"", "QString");
#else
<< Data("#include <QFile>\n"
"#include <QFileInfo>\n",
"QFile file(\"/tmp/t\");\n"
"file.setObjectName(\"A QFile instance\");\n"
"QFileInfo fi(\"/tmp/tt\");\n"
"QString s = fi.absoluteFilePath();\n")
% CoreProfile()
% Check("fi", "\"/tmp/tt\"", "@QFileInfo")
% Check("file", "\"/tmp/t\"", "@QFile")
% Check("s", "\"/tmp/tt\"", "@QString");
#endif
QTest::newRow("QHash1")
<< Data("#include <QHash>\n"
"#include <QString>\n"
"#include <QList>\n",
"QHash<QString, QList<int> > hash;\n"
"hash.insert(\"Hallo\", QList<int>());\n"
"hash.insert(\"Welt\", QList<int>() << 1);\n"
"hash.insert(\"!\", QList<int>() << 1 << 2);\n")
% CoreProfile()
% Check("hash", "<3 items>", "@QHash<@QString, @QList<int> >")
% Check("hash.0", "[0]", "", "@QHashNode<@QString, @QList<int>>")
% Check("hash.0.key", Value4("\"Hallo\""), "@QString")
% Check("hash.0.key", Value5("\"Welt\""), "@QString")
% Check("hash.0.value", Value4("<0 items>"), "@QList<int>")
% Check("hash.0.value", Value5("<1 items>"), "@QList<int>")
% Check("hash.1", "[1]", "", "@QHashNode<@QString, @QList<int>>")
% Check("hash.1.key", "key", Value4("\"Welt\""), "@QString")
% Check("hash.1.key", "key", Value5("\"Hallo\""), "@QString")
% Check("hash.1.value", "value", Value4("<1 items>"), "@QList<int>")
% Check("hash.1.value", "value", Value5("<0 items>"), "@QList<int>")
% Check("hash.2", "[2]", "", "@QHashNode<@QString, @QList<int>>")
% Check("hash.2.key", "key", "\"!\"", "@QString")
% Check("hash.2.value", "value", "<2 items>", "@QList<int>")
% Check("hash.2.value.0", "[0]", "1", "int")
% Check("hash.2.value.1", "[1]", "2", "int");
QTest::newRow("QHash2")
<< Data("#include <QHash>\n",
"QHash<int, float> hash;\n"
"hash[11] = 11.0;\n"
"hash[22] = 22.0;\n")
% CoreProfile()
% Check("hash", "hash", "<2 items>", "@QHash<int, float>")
% Check("hash.22", "[22]", "22", "float")
% Check("hash.11", "[11]", "11", "float");
QTest::newRow("QHash3")
<< Data("#include <QString>\n"
"#include <QHash>\n",
"QHash<QString, int> hash;\n"
"hash[\"22.0\"] = 22.0;\n"
"hash[\"123.0\"] = 22.0;\n"
"hash[\"111111ss111128.0\"] = 28.0;\n"
"hash[\"11124.0\"] = 22.0;\n"
"hash[\"1111125.0\"] = 22.0;\n"
"hash[\"11111126.0\"] = 22.0;\n"
"hash[\"111111127.0\"] = 27.0;\n"
"hash[\"111111111128.0\"] = 28.0;\n"
"hash[\"111111111111111111129.0\"] = 29.0;\n")
% CoreProfile()
% Check("hash", "hash", "<9 items>", "@QHash<@QString, int>")
% Check("hash.0", "[0]", "", "@QHashNode<@QString, int>")
% Check("hash.0.key", "key", Value4("\"123.0\""), "@QString")
% Check("hash.0.key", "key", Value5("\"111111111128.0\""), "@QString")
% Check("hash.0.value", Value4("22"), "int")
% Check("hash.0.value", Value5("28"), "int")
% Check("hash.8", "[8]", "", "@QHashNode<@QString, int>")
% Check("hash.8.key", "key", Value4("\"11124.0\""), "@QString")
% Check("hash.8.key", "key", Value5("\"123.0\""), "@QString")
% Check("hash.8.value", "value", Value4("22"), "int")
% Check("hash.8.value", "value", Value5("22"), "int");
QTest::newRow("QHash4")
<< Data("#include <QByteArray>\n"
"#include <QHash>\n",
"QHash<QByteArray, float> hash;\n"
"hash[\"22.0\"] = 22.0;\n"
"hash[\"123.0\"] = 22.0;\n"
"hash[\"111111ss111128.0\"] = 28.0;\n"
"hash[\"11124.0\"] = 22.0;\n"
"hash[\"1111125.0\"] = 22.0;\n"
"hash[\"11111126.0\"] = 22.0;\n"
"hash[\"111111127.0\"] = 27.0;\n"
"hash[\"111111111128.0\"] = 28.0;\n"
"hash[\"111111111111111111129.0\"] = 29.0;\n")
% CoreProfile()
% Check("hash", "<9 items>", "@QHash<@QByteArray, float>")
% Check("hash.0", "[0]", "", "@QHashNode<@QByteArray, float>")
% Check("hash.0.key", Value4("\"123.0\""), "@QByteArray")
% Check("hash.0.key", Value5("\"111111111128.0\""), "@QByteArray")
% Check("hash.0.value", Value4("22"), "float")
% Check("hash.0.value", Value5("28"), "float")
% Check("hash.8", "[8]", "", "@QHashNode<@QByteArray, float>")
% Check("hash.8.key", Value4("\"11124.0\""), "@QByteArray")
% Check("hash.8.key", Value5("\"123.0\""), "@QByteArray")
% Check("hash.8.value", Value4("22"), "float")
% Check("hash.8.value", Value5("22"), "float");
QTest::newRow("QHash5")
<< Data("#include <QString>\n"
"#include <QHash>\n",
"QHash<int, QString> hash;\n"
"hash[22] = \"22.0\";\n")
% CoreProfile()
% Check("hash", "<1 items>", "@QHash<int, @QString>")
% Check("hash.0", "[0]", "", "@QHashNode<int, @QString>")
% Check("hash.0.key", "22", "int")
% Check("hash.0.value", "\"22.0\"", "@QString");
QTest::newRow("QHash6")
<< Data("#include <QHash>\n" + fooData,
"QHash<QString, Foo> hash;\n"
"hash[\"22.0\"] = Foo(22);\n"
"hash[\"33.0\"] = Foo(33);\n")
% CoreProfile()
% Check("hash", "<2 items>", "@QHash<@QString, Foo>")
% Check("hash.0", "[0]", "", "@QHashNode<@QString, Foo>")
% Check("hash.0.key", Value4("\"22.0\""), "@QString")
% Check("hash.0.key", Value5("\"33.0\""), "@QString")
% CheckType("hash.0.value", "Foo")
% Check("hash.0.value.a", Value4("22"), "int")
% Check("hash.0.value.a", Value5("33"), "int")
% Check("hash.1", "[1]", "", "@QHashNode<@QString, Foo>")
% Check("hash.1.key", Value4("\"33.0\""), "@QString")
% Check("hash.1.key", Value4("\"22.0\""), "@QString")
% CheckType("hash.1.value", "Foo");
QTest::newRow("QHash7")
<< Data("#include <QHash>\n"
"#include <QPointer>\n",
"QObject ob;\n"
"QHash<QString, QPointer<QObject> > hash;\n"
"hash.insert(\"Hallo\", QPointer<QObject>(&ob));\n"
"hash.insert(\"Welt\", QPointer<QObject>(&ob));\n"
"hash.insert(\".\", QPointer<QObject>(&ob));\n")
% CoreProfile()
% Check("hash", "<3 items>", "@QHash<@QString, @QPointer<@QObject>>")
% Check("hash.0", "[0]", "", "@QHashNode<@QString, @QPointer<@QObject>>")
% Check("hash.0.key", Value4("\"Hallo\""), "@QString")
% Check("hash.0.key", Value4("\"Welt\""), "@QString")
% CheckType("hash.0.value", "@QPointer<@QObject>")
//% CheckType("hash.0.value.o", "@QObject")
% Check("hash.2", "[2]", "", "@QHashNode<@QString, @QPointer<@QObject>>")
% Check("hash.2.key", "\".\"", "@QString")
% CheckType("hash.2.value", "@QPointer<@QObject>");
QTest::newRow("QHashIntFloatIterator")
<< Data("#include <QHash>\n",
"typedef QHash<int, float> Hash;\n"
"Hash hash;\n"
"hash[11] = 11.0;\n"
"hash[22] = 22.0;\n"
"hash[33] = 33.0;\n"
"hash[44] = 44.0;\n"
"hash[55] = 55.0;\n"
"hash[66] = 66.0;\n"
"Hash::iterator it1 = hash.begin();\n"
"Hash::iterator it2 = it1; ++it2;\n"
"Hash::iterator it3 = it2; ++it3;\n"
"Hash::iterator it4 = it3; ++it4;\n"
"Hash::iterator it5 = it4; ++it5;\n"
"Hash::iterator it6 = it5; ++it6;\n")
% CoreProfile()
% Check("hash", "<6 items>", "Hash")
% Check("hash.11", "[11]", "11", "float")
% Check("it1.key", "55", "int")
% Check("it1.value", "55", "float")
% Check("it6.key", "33", "int")
% Check("it6.value", "33", "float");
QTest::newRow("QHostAddress")
<< Data("#include <QHostAddress>\n",
"QHostAddress ha1(129u * 256u * 256u * 256u + 130u);\n"
"QHostAddress ha2(\"127.0.0.1\");\n")
% CoreProfile()
% Profile("QT += network\n")
% Check("ha1", "129.0.0.130", "@QHostAddress")
% Check("ha2", "\"127.0.0.1\"", "@QHostAddress");
QTest::newRow("QImage")
<< Data("#include <QImage>\n"
"#include <QPainter>\n",
"QImage im(QSize(200, 200), QImage::Format_RGB32);\n"
"im.fill(QColor(200, 100, 130).rgba());\n"
"QPainter pain;\n"
"pain.begin(&im);\n"
"unused(&pain, &im);\n")
% GuiProfile()
% Check("im", "(200x200)", "@QImage")
% CheckType("pain", "@QPainter");
QTest::newRow("QPixmap")
<< Data("#include <QImage>\n"
"#include <QPainter>\n"
"#include <QApplication>\n",
"QApplication app(argc, argv);\n"
"QImage im(QSize(200, 200), QImage::Format_RGB32);\n"
"im.fill(QColor(200, 100, 130).rgba());\n"
"QPainter pain;\n"
"pain.begin(&im);\n"
"pain.drawLine(2, 2, 130, 130);\n"
"pain.end();\n"
"QPixmap pm = QPixmap::fromImage(im);\n"
"unused(&pm);\n")
% GuiProfile()
% Check("im", "(200x200)", "@QImage")
% CheckType("pain", "@QPainter")
% Check("pm", "(200x200)", "@QPixmap");
QTest::newRow("QLinkedListInt")
<< Data("#include <QLinkedList>\n",
"QLinkedList<int> list;\n"
"list.append(101);\n"
"list.append(102);\n")
% CoreProfile()
% Check("list", "<2 items>", "@QLinkedList<int>")
% Check("list.0", "[0]", "101", "int")
% Check("list.1", "[1]", "102", "int");
QTest::newRow("QLinkedListUInt")
<< Data("#include <QLinkedList>\n",
"QLinkedList<uint> list;\n"
"list.append(103);\n"
"list.append(104);\n")
% CoreProfile()
% Check("list", "<2 items>", "@QLinkedList<unsigned int>")
% Check("list.0", "[0]", "103", "unsigned int")
% Check("list.1", "[1]", "104", "unsigned int");
QTest::newRow("QLinkedListFooStar")
<< Data("#include <QLinkedList>\n" + fooData,
"QLinkedList<Foo *> list;\n"
"list.append(new Foo(1));\n"
"list.append(0);\n"
"list.append(new Foo(3));\n")
% CoreProfile()
% Check("list", "<3 items>", "@QLinkedList<Foo*>")
% CheckType("list.0", "[0]", "Foo")
% Check("list.0.a", "1", "int")
% Check("list.1", "[1]", "0x0", "Foo *")
% CheckType("list.2", "[2]", "Foo")
% Check("list.2.a", "3", "int");
QTest::newRow("QLinkedListULongLong")
<< Data("#include <QLinkedList>\n",
"QLinkedList<qulonglong> list;\n"
"list.append(42);\n"
"list.append(43);\n")
% CoreProfile()
% Check("list", "<2 items>", "@QLinkedList<unsigned long long>")
% Check("list.0", "[0]", "42", "unsigned long long")
% Check("list.1", "[1]", "43", "unsigned long long");
QTest::newRow("QLinkedListFoo")
<< Data("#include <QLinkedList>\n" + fooData,
"QLinkedList<Foo> list;\n"
"list.append(Foo(1));\n"
"list.append(Foo(2));\n")
% CoreProfile()
% Check("list", "<2 items>", "@QLinkedList<Foo>")
% CheckType("list.0", "[0]", "Foo")
% Check("list.0.a", "1", "int")
% CheckType("list.1", "[1]", "Foo")
% Check("list.1.a", "2", "int");
QTest::newRow("QLinkedListStdString")
<< Data("#include <QLinkedList>\n"
"#include <string>\n",
"QLinkedList<std::string> list;\n"
"list.push_back(\"aa\");\n"
"list.push_back(\"bb\");\n")
% CoreProfile()
% Check("list", "<2 items>", "@QLinkedList<std::string>")
% Check("list.0", "[0]", "\"aa\"", "std::string")
% Check("list.1", "[1]", "\"bb\"", "std::string");
QTest::newRow("QListInt")
<< Data("#include <QList>\n",
"QList<int> big;\n"
"for (int i = 0; i < 10000; ++i)\n"
" big.push_back(i);\n")
% CoreProfile()
% Check("big", "<10000 items>", "@QList<int>")
% Check("big.0", "[0]", "0", "int")
% Check("big.1999", "[1999]", "1999", "int");
QTest::newRow("QListIntTakeFirst")
<< Data("#include <QList>\n",
"QList<int> l;\n"
"l.append(0);\n"
"l.append(1);\n"
"l.append(2);\n"
"l.takeFirst();\n")
% CoreProfile()
% Check("l", "<2 items>", "@QList<int>")
% Check("l.0", "[0]", "1", "int");
QTest::newRow("QListStringTakeFirst")
<< Data("#include <QList>\n"
"#include <QString>\n",
"QList<QString> l;\n"
"l.append(\"0\");\n"
"l.append(\"1\");\n"
"l.append(\"2\");\n"
"l.takeFirst();\n")
% CoreProfile()
% Check("l", "<2 items>", "@QList<@QString>")
% Check("l.0", "[0]", "\"1\"", "@QString");
QTest::newRow("QStringListTakeFirst")
<< Data("#include <QStringList>\n",
"QStringList l;\n"
"l.append(\"0\");\n"
"l.append(\"1\");\n"
"l.append(\"2\");\n"
"l.takeFirst();\n")
% CoreProfile()
% Check("l", "<2 items>", "@QStringList")
% Check("l.0", "[0]", "\"1\"", "@QString");
QTest::newRow("QListIntStar")
<< Data("#include <QList>\n",
"QList<int *> l0, l;\n"
"l.append(new int(1));\n"
"l.append(new int(2));\n"
"l.append(new int(3));\n")
% CoreProfile()
% Check("l0", "<0 items>", "@QList<int*>")
% Check("l", "<3 items>", "@QList<int*>")
% CheckType("l.0", "[0]", "int")
% CheckType("l.2", "[2]", "int");
QTest::newRow("QListUInt")
<< Data("#include <QList>\n",
"QList<uint> l0,l;\n"
"l.append(101);\n"
"l.append(102);\n"
"l.append(102);\n")
% CoreProfile()
% Check("l0", "<0 items>", "@QList<unsigned int>")
% Check("l", "<3 items>", "@QList<unsigned int>")
% Check("l.0", "[0]", "101", "unsigned int")
% Check("l.2", "[2]", "102", "unsigned int");
QTest::newRow("QListUShort")
<< Data("#include <QList>\n",
"QList<ushort> l0,l;\n"
"l.append(101);\n"
"l.append(102);\n"
"l.append(102);\n")
% CoreProfile()
% Check("l0", "<0 items>", "@QList<unsigned short>")
% Check("l", "<3 items>", "@QList<unsigned short>")
% Check("l.0", "[0]", "101", "unsigned short")
% Check("l.2", "[2]", "102", "unsigned short");
QTest::newRow("QListQChar")
<< Data("#include <QList>\n"
"#include <QChar>\n",
"QList<QChar> l0, l;\n"
"l.append(QChar('a'));\n"
"l.append(QChar('b'));\n"
"l.append(QChar('c'));\n")
% CoreProfile()
% Check("l0", "<0 items>", "@QList<@QChar>")
% Check("l", "<3 items>", "@QList<@QChar>")
% Check("l.0", "[0]", "'a' (97)", "@QChar")
% Check("l.2", "[2]", "'c' (99)", "@QChar");
QTest::newRow("QListQULongLong")
<< Data("#include <QList>\n",
"QList<qulonglong> l0, l;\n"
"l.append(101);\n"
"l.append(102);\n"
"l.append(102);\n")
% CoreProfile()
% Check("l0", "<0 items>", "@QList<unsigned long long>")
% Check("l", "<3 items>", "@QList<unsigned long long>")
% Check("l.0", "[0]", "101", "unsigned long long")
% Check("l.2", "[2]", "102", "unsigned long long");
QTest::newRow("QListStdString")
<< Data("#include <QList>\n"
"#include <string>\n",
"QList<std::string> l0, l;\n"
"l.push_back(\"aa\");\n"
"l.push_back(\"bb\");\n"
"l.push_back(\"cc\");\n"
"l.push_back(\"dd\");")
% CoreProfile()
% Check("l0", "<0 items>", "@QList<std::string>")
% Check("l", "<4 items>", "@QList<std::string>")
% CheckType("l.0", "[0]", "std::string")
% Check("l.3", "[3]" ,"\"dd\"", "std::string");
QTest::newRow("QListFoo")
<< Data("#include <QList>\n" + fooData,
"QList<Foo> l0, l;\n"
"for (int i = 0; i < 100; ++i)\n"
" l.push_back(i + 15);\n")
% CoreProfile()
% Check("l0", "<0 items>", "@QList<Foo>")
% Check("l", "<100 items>", "@QList<Foo>")
% Check("l.0", "[0]", "", "Foo")
% Check("l.99", "[99]", "", "Foo");
QTest::newRow("QListReverse")
<< Data("#include <QList>\n",
"QList<int> l = QList<int>() << 1 << 2 << 3;\n"
"typedef std::reverse_iterator<QList<int>::iterator> Reverse;\n"
"Reverse rit(l.end());\n"
"Reverse rend(l.begin());\n"
"QList<int> r;\n"
"while (rit != rend)\n"
" r.append(*rit++);\n")
% CoreProfile()
% Check("l", "<3 items>", "@QList<int>")
% Check("l.0", "[0]", "1", "int")
% Check("l.1", "[1]", "2", "int")
% Check("l.2", "[2]", "3", "int")
% Check("r", "<3 items>", "@QList<int>")
% Check("r.0", "[0]", "3", "int")
% Check("r.1", "[1]", "2", "int")
% Check("r.2", "[2]", "1", "int")
% Check("rend", "", "Reverse")
% Check("rit", "", "Reverse");
QTest::newRow("QLocale")
<< Data("#include <QLocale>\n",
"QLocale loc = QLocale::system();\n"
"QLocale::MeasurementSystem m = loc.measurementSystem();\n"
"unused(&m);\n")
% CoreProfile()
% Check("loc", "", "@QLocale")
% Check("m", "", "@QLocale::MeasurementSystem");
QTest::newRow("QMapUIntStringList")
<< Data("#include <QMap>\n"
"#include <QStringList>\n",
"QMap<uint, QStringList> map;\n"
"map[11] = QStringList() << \"11\";\n"
"map[22] = QStringList() << \"22\";\n")
% CoreProfile()
% Check("map", "<2 items>", "@QMap<unsigned int, @QStringList>")
% Check("map.0", "[0]", "", "@QMapNode<unsigned int, @QStringList>")
% Check("map.0.key", "11", "unsigned int")
% Check("map.0.value", "<1 items>", "@QStringList")
% Check("map.0.value.0", "[0]", "\"11\"", "@QString")
% Check("map.1", "[1]", "", "@QMapNode<unsigned int, @QStringList>")
% Check("map.1.key", "22", "unsigned int")
% Check("map.1.value", "<1 items>", "@QStringList")
% Check("map.1.value.0", "[0]", "\"22\"", "@QString");
QTest::newRow("QMapUIntStringListTypedef")
<< Data("#include <QMap>\n"
"#include <QStringList>\n",
"typedef QMap<uint, QStringList> T;\n"
"T map;\n"
"map[11] = QStringList() << \"11\";\n"
"map[22] = QStringList() << \"22\";\n")
% CoreProfile()
% Check("map", "<2 items>", "T")
% Check("map.0", "[0]", "", "@QMapNode<unsigned int, @QStringList>");
QTest::newRow("QMapUIntFloat")
<< Data("#include <QMap>\n",
"QMap<uint, float> map;\n"
"map[11] = 11.0;\n"
"map[22] = 22.0;\n")
% CoreProfile()
% Check("map", "<2 items>", "@QMap<unsigned int, float>")
% Check("map.11", "[11]", "11", "float")
% Check("map.22", "[22]", "22", "float");
QTest::newRow("QMapStringFloat")
<< Data("#include <QMap>\n"
"#include <QString>\n",
"QMap<QString, float> map;\n"
"map[\"22.0\"] = 22.0;\n")
% CoreProfile()
% Check("map", "<1 items>", "@QMap<@QString, float>")
% Check("map.0", "[0]", "", "@QMapNode<@QString, float>")
% Check("map.0.key", "\"22.0\"", "@QString")
% Check("map.0.value", "22", "float");
QTest::newRow("QMapIntString")
<< Data("#include <QMap>\n"
"#include <QString>\n",
"QMap<int, QString> map;\n"
"map[22] = \"22.0\";\n")
% CoreProfile()
% Check("map", "<1 items>", "@QMap<int, @QString>")
% Check("map.0", "[0]", "", "@QMapNode<int, @QString>")
% Check("map.0.key", "22", "int")
% Check("map.0.value", "\"22.0\"", "@QString");
QTest::newRow("QMapStringFoo")
<< Data("#include <QMap>\n" + fooData +
"#include <QString>\n",
"QMap<QString, Foo> map;\n"
"map[\"22.0\"] = Foo(22);\n"
"map[\"33.0\"] = Foo(33);\n")
% CoreProfile()
% Check("map", "<2 items>", "@QMap<@QString, Foo>")
% Check("map.0", "[0]", "", "@QMapNode<@QString, Foo>")
% Check("map.0.key", "\"22.0\"", "@QString")
% Check("map.0.value", "", "Foo")
% Check("map.0.value.a", "22", "int")
% Check("map.1", "[1]", "", "@QMapNode<@QString, Foo>")
% Check("map.1.key", "\"33.0\"", "@QString")
% Check("map.1.value", "", "Foo")
% Check("map.1.value.a", "33", "int");
QTest::newRow("QMapStringPointer")
<< Data("#include <QMap>\n"
"#include <QObject>\n"
"#include <QPointer>\n"
"#include <QString>\n",
"QObject ob;\n"
"QMap<QString, QPointer<QObject> > map;\n"
"map.insert(\"Hallo\", QPointer<QObject>(&ob));\n"
"map.insert(\"Welt\", QPointer<QObject>(&ob));\n"
"map.insert(\".\", QPointer<QObject>(&ob));\n")
% CoreProfile()
% Check("map", "<3 items>", "@QMap<@QString, @QPointer<@QObject>>")
% Check("map.0", "[0]", "", "@QMapNode<@QString, @QPointer<@QObject>>")
% Check("map.0.key", "\".\"", "@QString")
% Check("map.0.value", "", "@QPointer<@QObject>")
% Check("map.0.value.o", "\"\"", "@QObject")
% Check("map.1", "[1]", "", "@QMapNode<@QString, @QPointer<@QObject>>")
% Check("map.1.key", "\"Hallo\"", "@QString")
% Check("map.2", "[2]", "", "@QMapNode<@QString, @QPointer<@QObject>>")
% Check("map.2.key", "\"Welt\"", "@QString");
QTest::newRow("QMapStringList")
<< Data("#include <QMap>\n"
"#include <QList>\n"
"#include <QString>\n" + nsData,
"QList<nsA::nsB::SomeType *> x;\n"
"x.append(new nsA::nsB::SomeType(1));\n"
"x.append(new nsA::nsB::SomeType(2));\n"
"x.append(new nsA::nsB::SomeType(3));\n"
"QMap<QString, QList<nsA::nsB::SomeType *> > map;\n"
"map[\"foo\"] = x;\n"
"map[\"bar\"] = x;\n"
"map[\"1\"] = x;\n"
"map[\"2\"] = x;\n")
% CoreProfile()
% Check("map", "<4 items>", "@QMap<@QString, @QList<nsA::nsB::SomeType*>>")
% Check("map.0", "[0]", "", "@QMapNode<@QString, @QList<nsA::nsB::SomeType*>>")
% Check("map.0.key", "\"1\"", "@QString")
% Check("map.0.value", "<3 items>", "@QList<nsA::nsB::SomeType*>")
% Check("map.0.value.0", "[0]", "", "nsA::nsB::SomeType")
% Check("map.0.value.0.a", "1", "int")
% Check("map.0.value.1", "[1]", "", "nsA::nsB::SomeType")
% Check("map.0.value.1.a", "2", "int")
% Check("map.0.value.2", "[2]", "", "nsA::nsB::SomeType")
% Check("map.0.value.2.a", "3", "int")
% Check("map.3", "[3]", "", "@QMapNode<@QString, @QList<nsA::nsB::SomeType*>>")
% Check("map.3.key", "\"foo\"", "@QString")
% Check("map.3.value", "<3 items>", "@QList<nsA::nsB::SomeType*>")
% Check("map.3.value.2", "[2]", "", "nsA::nsB::SomeType")
% Check("map.3.value.2.a", "3", "int")
% Check("x", "<3 items>", "@QList<nsA::nsB::SomeType*>");
QTest::newRow("QMultiMapUintFloat")
<< Data("#include <QMap>\n",
"QMultiMap<uint, float> map;\n"
"map.insert(11, 11.0);\n"
"map.insert(22, 22.0);\n"
"map.insert(22, 33.0);\n"
"map.insert(22, 34.0);\n"
"map.insert(22, 35.0);\n"
"map.insert(22, 36.0);\n")
// FIXME: Wrong behaviour.
% Check("map", "<6 items>", "@QMultiMap<unsigned int, float>")
% Check("map.[0] 11", "[0] 11", "11", "float")
% Check("map.[5] 22", "[5] 22", "22", "float");
QTest::newRow("QMultiMapStringFloat")
<< Data("#include <QMap>\n"
"#include <QString>\n",
"QMultiMap<QString, float> map;\n"
"map.insert(\"22.0\", 22.0);\n")
% CoreProfile()
% Check("map", "<1 items>", "@QMultiMap<@QString, float>")
% Check("map.0", "[0]", "", "@QMapNode<@QString, float>")
% Check("map.0.key", "\"22.0\"", "@QString")
% Check("map.0.value", "22", "float");
QTest::newRow("QMultiMapIntString")
<< Data("#include <QMap>\n"
"#include <QString>\n",
"QMultiMap<int, QString> map;\n"
"map.insert(22, \"22.0\");\n")
% CoreProfile()
% Check("map", "<1 items>", "@QMultiMap<int, @QString>")
% Check("map.0", "[0]", "", "@QMapNode<int, @QString>")
% Check("map.0.key", "22", "int")
% Check("map.0.value", "\"22.0\"", "@QString");
QTest::newRow("QMultiMapStringFoo")
<< Data("#include <QMultiMap>\n" + fooData,
"QMultiMap<QString, Foo> map;\n"
"map.insert(\"22.0\", Foo(22));\n"
"map.insert(\"33.0\", Foo(33));\n"
"map.insert(\"22.0\", Foo(22));\n")
% CoreProfile()
% Check("map", "<3 items>", "@QMultiMap<@QString, Foo>")
% Check("map.0", "[0]", "", "@QMapNode<@QString, Foo>")
% Check("map.0.key", "\"22.0\"", "@QString")
% Check("map.0.value", "", "Foo")
% Check("map.0.value.a", "22", "int")
% Check("map.2", "[2]", "", "@QMapNode<@QString, Foo>");
QTest::newRow("QMultiMapStringPointer")
<< Data("#include <QMap>\n"
"#include <QObject>\n"
"#include <QPointer>\n"
"#include <QString>\n",
"QObject ob;\n"
"QMultiMap<QString, QPointer<QObject> > map;\n"
"map.insert(\"Hallo\", QPointer<QObject>(&ob));\n"
"map.insert(\"Welt\", QPointer<QObject>(&ob));\n"
"map.insert(\".\", QPointer<QObject>(&ob));\n"
"map.insert(\".\", QPointer<QObject>(&ob));\n")
% CoreProfile()
% Check("map", "<4 items>", "@QMultiMap<@QString, @QPointer<@QObject>>")
% Check("map.0", "[0]", "", "@QMapNode<@QString, @QPointer<@QObject>>")
% Check("map.0.key", "\".\"", "@QString")
% Check("map.0.value", "", "@QPointer<@QObject>")
% Check("map.1", "[1]", "", "@QMapNode<@QString, @QPointer<@QObject>>")
% Check("map.1.key", "\".\"", "@QString")
% Check("map.2", "[2]", "", "@QMapNode<@QString, @QPointer<@QObject>>")
% Check("map.2.key", "\"Hallo\"", "@QString")
% Check("map.3", "[3]", "", "@QMapNode<@QString, @QPointer<@QObject>>")
% Check("map.3.key", "\"Welt\"", "@QString");
QTest::newRow("QObject1")
<< Data("#include <QObject>\n",
"QObject parent;\n"
"parent.setObjectName(\"A Parent\");\n"
"QObject child(&parent);\n"
"child.setObjectName(\"A Child\");\n"
"QObject::connect(&child, SIGNAL(destroyed()), &parent, SLOT(deleteLater()));\n"
"QObject::disconnect(&child, SIGNAL(destroyed()), &parent, SLOT(deleteLater()));\n"
"child.setObjectName(\"A renamed Child\");\n")
% CoreProfile()
% Check("child", "\"A renamed Child\"", "@QObject")
% Check("parent", "\"A Parent\"", "@QObject");
QTest::newRow("QObject2")
<< Data("#include <QWidget>\n"
"#include <QApplication>\n"
"namespace Names {\n"
"namespace Bar {\n"
" struct Ui { Ui() { w = 0; } QWidget *w; };\n"
" class TestObject : public QObject\n"
" {\n"
" Q_OBJECT\n"
" public:\n"
" TestObject(QObject *parent = 0)\n"
" : QObject(parent)\n"
" {\n"
" m_ui = new Ui;\n"
" m_ui->w = new QWidget;\n"
" }\n"
" Q_PROPERTY(QString myProp1 READ myProp1 WRITE setMyProp1)\n"
" QString myProp1() const { return m_myProp1; }\n"
" Q_SLOT void setMyProp1(const QString&mt) { m_myProp1 = mt; }\n"
" Q_PROPERTY(QString myProp2 READ myProp2 WRITE setMyProp2)\n"
" QString myProp2() const { return m_myProp2; }\n"
" Q_SLOT void setMyProp2(const QString&mt) { m_myProp2 = mt; }\n"
" public:\n"
" Ui *m_ui;\n"
" QString m_myProp1;\n"
" QString m_myProp2;\n"
" };\n"
"} // namespace Bar\n"
"} // namespace Names\n"
"#include <main.moc>\n",
""
"QApplication app(argc, argv);\n"
"Q_UNUSED(app)\n"
"Names::Bar::TestObject test;\n"
"test.setMyProp1(\"HELLO\");\n"
"test.setMyProp2(\"WORLD\");\n"
"QString s = test.myProp1();\n"
"s += test.myProp2();\n")
% GuiProfile()
% Check("s", "\"HELLOWORLD\"", "@QString")
% Check("test", "", "Names::Bar::TestObject");
QTest::newRow("QObject3")
<< Data("#include <QWidget>\n"
"#include <QList>\n"
"#include <QStringList>\n"
"#include <QVariant>\n"
"#include <QApplication>\n",
"QApplication app(argc, argv);\n"
"QWidget ob;\n"
"ob.setObjectName(\"An Object\");\n"
"ob.setProperty(\"USER DEFINED 1\", 44);\n"
"ob.setProperty(\"USER DEFINED 2\", QStringList() << \"FOO\" << \"BAR\");\n"
""
"QObject ob1;\n"
"ob1.setObjectName(\"Another Object\");\n"
"QObject::connect(&ob, SIGNAL(destroyed()), &ob1, SLOT(deleteLater()));\n"
"QObject::connect(&ob, SIGNAL(destroyed()), &ob1, SLOT(deleteLater()));\n"
"//QObject::connect(&app, SIGNAL(lastWindowClosed()), &ob, SLOT(deleteLater()));\n"
""
"QList<QObject *> obs;\n"
"obs.append(&ob);\n"
"obs.append(&ob1);\n"
"obs.append(0);\n"
"obs.append(&app);\n"
"ob1.setObjectName(\"A Subobject\");\n")
% GuiProfile()
% Check("ob", "An Object", "@QObject");
QByteArray senderData =
" class Sender : public QObject\n"
" {\n"
" Q_OBJECT\n"
" public:\n"
" Sender() { setObjectName(\"Sender\"); }\n"
" void doEmit() { emit aSignal(); }\n"
" signals:\n"
" void aSignal();\n"
" };\n"
"\n"
" class Receiver : public QObject\n"
" {\n"
" Q_OBJECT\n"
" public:\n"
" Receiver() { setObjectName(\"Receiver\"); }\n"
" public slots:\n"
" void aSlot() {\n"
" QObject *s = sender();\n"
" if (s) {\n"
" qDebug() << \"SENDER: \" << s;\n"
" } else {\n"
" qDebug() << \"NO SENDER\";\n"
" }\n"
" }\n"
" };\n";
QTest::newRow("QObjectData")
<< Data("#include <QObject>\n"
"#include <QStringList>\n"
"#include <private/qobject_p.h>\n"
" class DerivedObjectPrivate : public QObjectPrivate\n"
" {\n"
" public:\n"
" DerivedObjectPrivate() {\n"
" m_extraX = 43;\n"
" m_extraY.append(\"xxx\");\n"
" m_extraZ = 1;\n"
" }\n"
" int m_extraX;\n"
" QStringList m_extraY;\n"
" uint m_extraZ : 1;\n"
" bool m_extraA : 1;\n"
" bool m_extraB;\n"
" };\n"
"\n"
" class DerivedObject : public QObject\n"
" {\n"
" Q_OBJECT\n"
"\n"
" public:\n"
" DerivedObject() : QObject(*new DerivedObjectPrivate, 0) {}\n"
"\n"
" Q_PROPERTY(int x READ x WRITE setX)\n"
" Q_PROPERTY(QStringList y READ y WRITE setY)\n"
" Q_PROPERTY(uint z READ z WRITE setZ)\n"
"\n"
" int x() const;\n"
" void setX(int x);\n"
" QStringList y() const;\n"
" void setY(QStringList y);\n"
" uint z() const;\n"
" void setZ(uint z);\n"
"\n"
" private:\n"
" Q_DECLARE_PRIVATE(DerivedObject)\n"
" };\n"
"\n"
" int DerivedObject::x() const\n"
" {\n"
" Q_D(const DerivedObject);\n"
" return d->m_extraX;\n"
" }\n"
"\n"
" void DerivedObject::setX(int x)\n"
" {\n"
" Q_D(DerivedObject);\n"
" d->m_extraX = x;\n"
" d->m_extraA = !d->m_extraA;\n"
" d->m_extraB = !d->m_extraB;\n"
" }\n"
"\n"
" QStringList DerivedObject::y() const\n"
" {\n"
" Q_D(const DerivedObject);\n"
" return d->m_extraY;\n"
" }\n"
"\n"
" void DerivedObject::setY(QStringList y)\n"
" {\n"
" Q_D(DerivedObject);\n"
" d->m_extraY = y;\n"
" }\n"
"\n"
" uint DerivedObject::z() const\n"
" {\n"
" Q_D(const DerivedObject);\n"
" return d->m_extraZ;\n"
" }\n"
"\n"
" void DerivedObject::setZ(uint z)\n"
" {\n"
" Q_D(DerivedObject);\n"
" d->m_extraZ = z;\n"
" }\n"
"#include \"main.moc\"\n",
"DerivedObject ob;\n"
"ob.setX(26);\n")
% CoreProfile()
% CorePrivateProfile()
% Check("ob.properties.x", "26", "@QVariant (int)");
QTest::newRow("QRegExp")
<< Data("#include <QRegExp>\n",
"QRegExp re(QString(\"a(.*)b(.*)c\"));\n"
"QString str1 = \"a1121b344c\";\n"
"QString str2 = \"Xa1121b344c\";\n"
"int pos2 = re.indexIn(str2);\n"
"int pos1 = re.indexIn(str1);\n"
"unused(&pos1, &pos2);\n")
% CoreProfile()
% Check("re", "\"a(.*)b(.*)c\"", "@QRegExp")
% Check("str1", "\"a1121b344c\"", "@QString")
% Check("str2", "\"Xa1121b344c\"", "@QString")
% Check("pos1", "0", "int")
% Check("pos2", "1", "int");
QTest::newRow("QPoint")
<< Data("#include <QPoint>\n"
"#include <QString> // Dummy for namespace\n",
"QString dummy;\n"
"QPoint s0, s;\n"
"s = QPoint(100, 200);\n"
"unused(&s0, &s);\n")
% CoreProfile()
% Check("s0", "(0, 0)", "@QPoint")
% Check("s", "(100, 200)", "@QPoint");
QTest::newRow("QPointF")
<< Data("#include <QPointF>\n"
"#include <QString> // Dummy for namespace\n",
"QString dummy;\n"
"QPointF s0, s;\n"
"s = QPointF(100, 200);\n")
% CoreProfile()
% Check("s0", "(0, 0)", "@QPointF")
% Check("s", "(100, 200)", "@QPointF");
QTest::newRow("QRect")
<< Data("#include <QRect>\n"
"#include <QString> // Dummy for namespace\n",
"QString dummy;\n"
"QRect rect0, rect;\n"
"rect = QRect(100, 100, 200, 200);\n")
% Check("rect", "0x0+0+0", "@QRect")
% Check("rect", "200x200+100+100", "@QRect");
QTest::newRow("QRectF")
<< Data("#include <QRectF>\n"
"#include <QString> // Dummy for namespace\n",
"QString dummy;\n"
"QRectF rect0, rect;\n"
"rect = QRectF(100, 100, 200, 200);\n")
% Check("rect", "0x0+0+0", "@QRectF")
% Check("rect", "200x200+100+100", "@QRectF");
QTest::newRow("QSize")
<< Data("#include <QSize>\n"
"#include <QString> // Dummy for namespace\n",
"QString dummy;\n"
"QSize s0, s;\n"
"s = QSize(100, 200);\n")
% CoreProfile()
% Check("s0", "(-1, -1)", "@QSize")
% Check("s", "(100, 200)", "@QSize");
QTest::newRow("QSizeF")
<< Data("#include <QSizeF>\n"
"#include <QString> // Dummy for namespace\n",
"QString dummy;\n"
"QSizeF s0, s;\n"
"s = QSizeF(100, 200);\n")
% CoreProfile()
% Check("s0", "(-1, -1)", "@QSizeF")
% Check("s", "(100, 200)", "@QSizeF");
QTest::newRow("QRegion")
<< Data("#include <QRegion>\n"
"#include <QString> // Dummy for namespace\n",
"QString dummy;\n"
"QRegion region, region0, region1, region2;\n"
"region0 = region;\n"
"region += QRect(100, 100, 200, 200);\n"
"region1 = region;\n"
"region += QRect(300, 300, 400, 500);\n"
"region2 = region;\n"
"unused(&region0, &region1, &region2);\n")
% GuiProfile()
% Check("region0", Value4("<empty>"), "@QRegion")
% Check("region0", Value5("<0 items>"), "@QRegion")
% Check("region1", "<1 items>", "@QRegion")
% Check("region1.extents", "200x200+100+100", "@QRect")
% Check("region1.innerArea", "40000", "int")
% Check("region1.innerRect", "200x200+100+100", "@QRect")
% Check("region1.numRects", "1", "int")
% Check("region1.rects", "<0 items>", "@QVector<@QRect>")
% Check("region2", "<2 items>", "@QRegion")
% Check("region2.extents", "600x700+100+100", "@QRect")
% Check("region2.innerArea", "200000", "int")
% Check("region2.innerRect", "400x500+300+300", "@QRect")
% Check("region2.numRects", "2", "int")
% Check("region2.rects", "<2 items>", "@QVector<@QRect>");
QTest::newRow("QSettings")
<< Data("#include <QSettings>\n"
"#include <QCoreApplication>\n"
"#include <QVariant>\n",
"QCoreApplication app(argc, argv);\n"
"QSettings settings(\"/tmp/test.ini\", QSettings::IniFormat);\n"
"QVariant value = settings.value(\"item1\", \"\").toString();\n")
% CoreProfile()
% Check("settings", "", "@QSettings")
// FIXME
//% Check("settings.[@QObject]", "", "@QObject")
// FIXME
% Check("value", "\"\"", "@QVariant (QString)");
QTest::newRow("QSet1")
<< Data("#include <QSet>\n",
"QSet<int> s;\n"
"s.insert(11);\n"
"s.insert(22);\n")
% CoreProfile()
% Check("s", "<2 items>", "@QSet<int>")
% Check("s.22", "[22]", "22", "int")
% Check("s.11", "[11]", "11", "int");
QTest::newRow("QSet2")
<< Data("#include <QSet>\n"
"#include <QString>\n",
"QSet<QString> s;\n"
"s.insert(\"11.0\");\n"
"s.insert(\"22.0\");\n")
% CoreProfile()
% Check("s", "<2 items>", "@QSet<@QString>")
% Check("s.0", "[0]", "\"11.0\"", "@QString")
% Check("s.1", "[1]", "\"22.0\"", "@QString");
QTest::newRow("QSet3")
<< Data("#include <QObject>\n"
"#include <QPointer>\n"
"#include <QSet>\n"
"QT_BEGIN_NAMESPACE\n"
"uint qHash(const QMap<int, int> &) { return 0; }\n"
"uint qHash(const double & f) { return int(f); }\n"
"uint qHash(const QPointer<QObject> &p) { return (ulong)p.data(); }\n"
"QT_END_NAMESPACE\n",
"QObject ob;\n"
"QSet<QPointer<QObject> > s;\n"
"QPointer<QObject> ptr(&ob);\n"
"s.insert(ptr);\n"
"s.insert(ptr);\n"
"s.insert(ptr);\n")
% CoreProfile()
% Check("s", "<1 items>", "@QSet<@QPointer<@QObject>>")
% Check("s.0", "[0]", "", "@QPointer<@QObject>");
QByteArray sharedData =
" class EmployeeData : public QSharedData\n"
" {\n"
" public:\n"
" EmployeeData() : id(-1) { name.clear(); }\n"
" EmployeeData(const EmployeeData &other)\n"
" : QSharedData(other), id(other.id), name(other.name) { }\n"
" ~EmployeeData() { }\n"
"\n"
" int id;\n"
" QString name;\n"
" };\n"
"\n"
" class Employee\n"
" {\n"
" public:\n"
" Employee() { d = new EmployeeData; }\n"
" Employee(int id, QString name) {\n"
" d = new EmployeeData;\n"
" setId(id);\n"
" setName(name);\n"
" }\n"
" Employee(const Employee &other)\n"
" : d (other.d)\n"
" {\n"
" }\n"
" void setId(int id) { d->id = id; }\n"
" void setName(QString name) { d->name = name; }\n"
"\n"
" int id() const { return d->id; }\n"
" QString name() const { return d->name; }\n"
"\n"
" private:\n"
" QSharedDataPointer<EmployeeData> d;\n"
" };\n";
QTest::newRow("QSharedPointer1")
<< Data("#include <QSharedPointer>\n",
"QSharedPointer<int> ptr;\n"
"QSharedPointer<int> ptr2 = ptr;\n"
"QSharedPointer<int> ptr3 = ptr;\n"
"unused(&ptr, &ptr2, &ptr3);\n")
% CoreProfile()
% Check("ptr", "(null)", "@QSharedPointer<int>")
% Check("ptr2", "(null)", "@QSharedPointer<int>")
% Check("ptr3", "(null)", "@QSharedPointer<int>");
QTest::newRow("QSharedPointer2")
<< Data("#include <QSharedPointer>\n",
"QSharedPointer<QString> ptr(new QString(\"hallo\"));\n"
"QSharedPointer<QString> ptr2 = ptr;\n"
"QSharedPointer<QString> ptr3 = ptr;\n"
"unused(&ptr, &ptr2, &ptr3);\n")
% CoreProfile()
% Check("ptr", "", "@QSharedPointer<@QString>")
% Check("ptr.data", "\"hallo\"", "@QString")
% Check("ptr.weakref", "3", "int")
% Check("ptr.strongref", "3", "int")
% Check("ptr2.data", "\"hallo\"", "@QString")
% Check("ptr3.data", "\"hallo\"", "@QString");
QTest::newRow("QSharedPointer3")
<< Data("#include <QSharedPointer>\n",
"QSharedPointer<int> iptr(new int(43));\n"
"QWeakPointer<int> ptr(iptr);\n"
"QWeakPointer<int> ptr2 = ptr;\n"
"QWeakPointer<int> ptr3 = ptr;\n"
"unused(&ptr, &ptr2, &ptr3);\n")
% CoreProfile()
% Check("iptr", "", "@QSharedPointer<int>")
% Check("iptr.data", "43", "int")
% Check("iptr.weakref", "4", "int")
% Check("iptr.strongref", "1", "int")
% Check("ptr3", "43", "int")
% Check("ptr3.data", "43", "int");
QTest::newRow("QSharedPointer4")
<< Data("#include <QSharedPointer>\n"
"#include <QString>\n",
"QSharedPointer<QString> sptr(new QString(\"hallo\"));\n"
"QWeakPointer<QString> ptr(sptr);\n"
"QWeakPointer<QString> ptr2 = ptr;\n"
"QWeakPointer<QString> ptr3 = ptr;\n"
"unused(&ptr, &ptr2, &ptr3);\n")
% CoreProfile()
% Check("sptr", "", "@QSharedPointer<@QString>")
% Check("sptr.data", "\"hallo\"", "@QString")
% Check("ptr3", "", "@QWeakPointer<@QString>");
QTest::newRow("QSharedPointer5")
<< Data("#include <QSharedPointer>\n" + fooData,
"QSharedPointer<Foo> fptr(new Foo(1));\n"
"QWeakPointer<Foo> ptr(fptr);\n"
"QWeakPointer<Foo> ptr2 = ptr;\n"
"QWeakPointer<Foo> ptr3 = ptr;\n"
"unused(&ptr, &ptr2, &ptr3);\n")
% CoreProfile()
% Check("fptr", "", "@QSharedPointer<Foo>")
% Check("fptr.data", "", "Foo")
% Check("ptr3", "", "@QWeakPointer<Foo>");
QTest::newRow("QXmlAttributes")
<< Data("#include <QXmlAttributes>\n",
"QXmlAttributes atts;\n"
"atts.append(\"name1\", \"uri1\", \"localPart1\", \"value1\");\n"
"atts.append(\"name2\", \"uri2\", \"localPart2\", \"value2\");\n"
"atts.append(\"name3\", \"uri3\", \"localPart3\", \"value3\");\n")
% CoreProfile()
% Profile("QT += xml\n")
% Check("atts", "", "@QXmlAttributes")
% CheckType("atts.[vptr]", "")
% Check("atts.attList", "<3 items>", "@QXmlAttributes::AttributeList")
% Check("atts.attList.0", "[0]", "", "@QXmlAttributes::Attribute")
% Check("atts.attList.0.localname", "\"localPart1\"", "@QString")
% Check("atts.attList.0.qname", "\"name1\"", "@QString")
% Check("atts.attList.0.uri", "\"uri1\"", "@QString")
% Check("atts.attList.0.value", "\"value1\"", "@QString")
% Check("atts.attList.1", "[1]", "", "@QXmlAttributes::Attribute")
% Check("atts.attList.1.localname", "\"localPart2\"", "@QString")
% Check("atts.attList.1.qname", "\"name2\"", "@QString")
% Check("atts.attList.1.uri", "\"uri2\"", "@QString")
% Check("atts.attList.1.value", "\"value2\"", "@QString")
% Check("atts.attList.2", "[2]", "", "@QXmlAttributes::Attribute")
% Check("atts.attList.2.localname", "\"localPart3\"", "@QString")
% Check("atts.attList.2.qname", "\"name3\"", "@QString")
% Check("atts.attList.2.uri", "\"uri3\"", "@QString")
% Check("atts.attList.2.value", "\"value3\"", "@QString")
% Check("atts.d", "", "@QXmlAttributesPrivate");
QTest::newRow("StdArray")
<< Data("#include <array>\n"
"#include <QString>\n",
"std::array<int, 4> a = { { 1, 2, 3, 4} };\n"
"std::array<QString, 4> b = { { \"1\", \"2\", \"3\", \"4\"} };\n"
"unused(&a, &b);\n")
% CoreProfile()
% Cxx11Profile()
% Check("a", "<4 items>", "std::array<int, 4u>")
% Check("b", "<4 items>", "std::array<@QString, 4u>");
QTest::newRow("StdComplex")
<< Data("#include <complex>\n",
"std::complex<double> c(1, 2);\n")
% Check("c", "(1.000000, 2.000000)", "std::complex<double>");
QTest::newRow("CComplex")
<< Data("#include <complex.h>\n",
"// Doesn't work when compiled as C++.\n"
"double complex a = 0;\n"
"double _Complex b = 0;\n"
"unused(&a, &b);\n")
% ForceC()
% Check("a", "0 + 0 * I", "complex double")
% Check("b", "0 + 0 * I", "complex double");
QTest::newRow("StdDequeInt")
<< Data("#include <deque>\n",
"std::deque<int> deque;\n"
"deque.push_back(1);\n"
"deque.push_back(2);\n")
% Check("deque", "<2 items>", "std::deque<int>")
% Check("deque.0", "[0]", "1", "int")
% Check("deque.1", "[1]", "2", "int");
QTest::newRow("StdDequeIntStar")
<< Data("#include <deque>\n",
"std::deque<int *> deque;\n"
"deque.push_back(new int(1));\n"
"deque.push_back(0);\n"
"deque.push_back(new int(2));\n"
"deque.push_back(new int(3));\n"
"deque.pop_back();\n"
"deque.pop_front();\n")
% Check("deque", "<2 items>", "std::deque<int *>")
% Check("deque.0", "[0]", "0x0", "int *")
% Check("deque.1", "[1]", "2", "int");
QTest::newRow("StdDequeFoo")
<< Data("#include <deque>\n" + fooData,
"std::deque<Foo> deque;\n"
"deque.push_back(1);\n"
"deque.push_front(2);\n")
% Check("deque", "<2 items>", "std::deque<Foo>")
% Check("deque.0", "[0]", "", "Foo")
% Check("deque.0.a", "2", "int")
% Check("deque.1", "[1]", "", "Foo")
% Check("deque.1.a", "1", "int");
QTest::newRow("StdDequeFooStar")
<< Data("#include <deque>\n" + fooData,
"std::deque<Foo *> deque;\n"
"deque.push_back(new Foo(1));\n"
"deque.push_back(new Foo(2));\n")
% Check("deque", "<2 items>", "std::deque<Foo*>")
% Check("deque.0", "[0]", "", "Foo")
% Check("deque.0.a", "1", "int")
% Check("deque.1", "[1]", "", "Foo")
% Check("deque.1.a", "2", "int");
QTest::newRow("StdHashSet")
<< Data("#include <hash_set>\n"
"using namespace __gnu_cxx;\n",
"hash_set<int> h;\n"
"h.insert(1);\n"
"h.insert(194);\n"
"h.insert(2);\n"
"h.insert(3);\n")
% Profile("QMAKE_CXXFLAGS += -Wno-deprecated")
% Check("h", "<4 items>", "__gnu__cxx::hash_set<int>")
% Check("h.0", "[0]", "194", "int")
% Check("h.1", "[1]", "1", "int")
% Check("h.2", "[2]", "2", "int")
% Check("h.3", "[3]", "3", "int");
QTest::newRow("StdListInt")
<< Data("#include <list>\n",
"std::list<int> list;\n"
"list.push_back(1);\n"
"list.push_back(2);\n")
% Check("list", "<2 items>", "std::list<int>")
% Check("list.0", "[0]", "1", "int")
% Check("list.1", "[1]", "2", "int");
QTest::newRow("StdListIntStar")
<< Data("#include <list>\n",
"std::list<int *> list;\n"
"list.push_back(new int(1));\n"
"list.push_back(0);\n"
"list.push_back(new int(2));\n")
% Check("list", "<3 items>", "std::list<int*>")
% Check("list.0", "[0]", "1", "int")
% Check("list.1", "[1]", "0x0", "int *")
% Check("list.2", "[2]", "2", "int");
QTest::newRow("StdListIntBig")
<< Data("#include <list>\n",
"std::list<int> list;\n"
"for (int i = 0; i < 10000; ++i)\n"
" list.push_back(i);\n")
% Check("list", "<>1000 items>", "std::list<int>")
% Check("list.0", "[0]", "0", "int")
% Check("list.999", "[999]", "999", "int");
QTest::newRow("StdListFoo")
<< Data("#include <list>\n" + fooData,
"std::list<Foo> list;\n"
"list.push_back(15);\n"
"list.push_back(16);\n")
% Check("list", "<2 items>", "std::list<Foo>")
% Check("list.0", "[0]", "", "Foo")
% Check("list.0.a", "15", "int")
% Check("list.1", "[1]", "", "Foo")
% Check("list.1.a", "16", "int");
QTest::newRow("StdListFooStar")
<< Data("#include <list>\n" + fooData,
"std::list<Foo *> list;\n"
"list.push_back(new Foo(1));\n"
"list.push_back(0);\n"
"list.push_back(new Foo(2));\n")
% Check("list", "<3 items>", "std::list<Foo*>")
% Check("list.0", "[0]", "", "Foo")
% Check("list.0.a", "1", "int")
% Check("list.1", "[1]", "0x0", "Foo *")
% Check("list.2", "[2]", "", "Foo")
% Check("list.2.a", "2", "int");
QTest::newRow("StdListBool")
<< Data("#include <list>\n",
"std::list<bool> list;\n"
"list.push_back(true);\n"
"list.push_back(false);\n")
% Check("list", "<2 items>", "std::list<bool>")
% Check("list.0", "[0]", "true", "bool")
% Check("list.1", "[1]", "false", "bool");
QTest::newRow("StdMapStringFoo")
<< Data("#include <map>\n"
"#include <QString>\n" + fooData,
"std::map<QString, Foo> map;\n"
"map[\"22.0\"] = Foo(22);\n"
"map[\"33.0\"] = Foo(33);\n"
"map[\"44.0\"] = Foo(44);\n")
% Check("map", "<3 items>", "std::map<@QString, Foo>")
% Check("map.0", "[0]", "", "std::pair<@QString const, Foo>")
% Check("map.0.first", "\"22.0\"", "@QString")
% Check("map.0.second", "", "Foo")
% Check("map.0.second.a", "22", "int")
% Check("map.1", "[1]", "", "std::pair<@QString const, Foo>")
% Check("map.2.first", "\"44.0\"", "@QString")
% Check("map.2.second", "", "Foo")
% Check("map.2.second.a", "44", "int");
QTest::newRow("StdMapCharStarFoo")
<< Data("#include <map>\n" + fooData,
"std::map<const char *, Foo> map;\n"
"map[\"22.0\"] = Foo(22);\n"
"map[\"33.0\"] = Foo(33);\n")
% Check("map", "<2 items>", "std::map<char const*, Foo>")
% Check("map.0", "[0]", "", "std::pair<char const* const, Foo>")
% CheckType("map.0.first", "char *")
// FIXME
//% Check("map.0.first.0", "50", "char")
% Check("map.0.second", "", "Foo")
% Check("map.0.second.a", "22", "int")
% Check("map.1", "[1]", "", "std::pair<char const* const, Foo>")
% CheckType("map.1.first", "char *")
//% Check("map.1.first.*first", "51 '3'", "char")
% Check("map.1.second", "", "Foo")
% Check("map.1.second.a", "33", "int");
QTest::newRow("StdMapUIntUInt")
<< Data("#include <map>\n",
"std::map<unsigned int, unsigned int> map;\n"
"map[11] = 1;\n"
"map[22] = 2;\n")
% Check("map", "<2 items>", "std::map<unsigned int, unsigned int>")
% Check("map.11", "[11]", "1", "unsigned int")
% Check("map.22", "[22]", "2", "unsigned int");
QTest::newRow("StdMapUIntStringList")
<< Data("#include <map>\n"
"#include <QStringList>\n",
"std::map<uint, QStringList> map;\n"
"map[11] = QStringList() << \"11\";\n"
"map[22] = QStringList() << \"22\";\n")
% Check("map", "<2 items>", "std::map<unsigned int, @QStringList>")
% Check("map.0", "[0]", "", "std::pair<unsigned int const, @QStringList>")
% Check("map.0.first", "11", "unsigned int")
% Check("map.0.second", "<1 items>", "@QStringList")
% Check("map.0.second.0", "[0]", "\"11\"", "@QString")
% Check("map.1", "[1]", "", "std::pair<unsigned int const, @QStringList>")
% Check("map.1.first", "22", "unsigned int")
% Check("map.1.second", "<1 items>", "@QStringList")
% Check("map.1.second.0", "[0]", "\"22\"", "@QString");
QTest::newRow("StdMapUIntStringListTypedef")
<< Data("#include <map>\n"
"#include <QStringList>\n",
"typedef std::map<uint, QStringList> T;\n"
"T map;\n"
"map[11] = QStringList() << \"11\";\n"
"map[22] = QStringList() << \"22\";\n")
% Check("map.1.second.0", "[0]", "\"22\"", "@QString");
QTest::newRow("StdMapUIntFloat")
<< Data("#include <map>\n",
"std::map<unsigned int, float> map;\n"
"map[11] = 11.0;\n"
"map[22] = 22.0;\n")
% Check("map", "<2 items>", "std::map<unsigned int, float>")
% Check("map.11", "[11]", "11", "float")
% Check("map.22", "[22]", "22", "float");
QTest::newRow("StdMapUIntFloatIterator")
<< Data("#include <map>\n",
"typedef std::map<int, float> Map;\n"
"Map map;\n"
"map[11] = 11.0;\n"
"map[22] = 22.0;\n"
"map[33] = 33.0;\n"
"map[44] = 44.0;\n"
"map[55] = 55.0;\n"
"map[66] = 66.0;\n"
"Map::iterator it1 = map.begin();\n"
"Map::iterator it2 = it1; ++it2;\n"
"Map::iterator it3 = it2; ++it3;\n"
"Map::iterator it4 = it3; ++it4;\n"
"Map::iterator it5 = it4; ++it5;\n"
"Map::iterator it6 = it5; ++it6;\n")
% Check("map", "<6 items>", "Map")
% Check("map.11", "[11]", "11", "float")
% Check("it1.first", "11", "int")
% Check("it1.second", "11", "float")
% Check("it6.first", "66", "int")
% Check("it6.second", "66", "float");
QTest::newRow("StdMapStringFloat")
<< Data("#include <map>\n"
"#include <QString>\n",
"std::map<QString, float> map;\n"
"map[\"11.0\"] = 11.0;\n"
"map[\"22.0\"] = 22.0;\n")
% Check("map", "<2 items>", "std::map<@QString, float>")
% Check("map.0", "[0]", "", "std::pair<@QString const, float>")
% Check("map.0.first", "\"11.0\"", "@QString")
% Check("map.0.second", "11", "float")
% Check("map.1", "[1]", "", "std::pair<@QString const, float>")
% Check("map.1.first", "\"22.0\"", "@QString")
% Check("map.1.second", "22", "float");
QTest::newRow("StdMapIntString")
<< Data("#include <map>\n"
"#include <QString>\n",
"std::map<int, QString> map;\n"
"map[11] = \"11.0\";\n"
"map[22] = \"22.0\";\n")
% Check("map", "<2 items>", "std::map<int, @QString>")
% Check("map.0", "[0]", "", "std::pair<int const, @QString>")
% Check("map.0.first", "11", "int")
% Check("map.0.second", "\"11.0\"", "@QString")
% Check("map.1", "[1]", "", "std::pair<int const, @QString>")
% Check("map.1.first", "22", "int")
% Check("map.1.second", "\"22.0\"", "@QString");
QTest::newRow("StdMapStringPointer")
<< Data("#include <QPointer>\n"
"#include <QObject>\n"
"#include <QString>\n"
"#include <map>\n",
"QObject ob;\n"
"std::map<QString, QPointer<QObject> > map;\n"
"map[\"Hallo\"] = QPointer<QObject>(&ob);\n"
"map[\"Welt\"] = QPointer<QObject>(&ob);\n"
"map[\".\"] = QPointer<QObject>(&ob);\n")
% Check("map", "<3 items>", "std::map<@QString, @QPointer<@QObject>>")
% Check("map.0", "[0]", "", "std::pair<@QString const, @QPointer<@QObject>>")
% Check("map.0.first", "\".\"", "@QString")
% Check("map.0.second", "", "@QPointer<@QObject>")
% Check("map.2", "[2]", "", "std::pair<@QString const, @QPointer<@QObject>>")
% Check("map.2.first", "\"Welt\"", "@QString");
QTest::newRow("StdUniquePtr")
<< Data("#include <memory>\n" + fooData,
"std::unique_ptr<int> pi(new int(32));\n"
"std::unique_ptr<Foo> pf(new Foo);\n")
% Cxx11Profile()
% Check("pi", Pointer("32"), "std::unique_ptr<int, std::default_delete<int> >")
% Check("pf", Pointer(), "std::unique_ptr<Foo, std::default_delete<Foo> >");
QTest::newRow("StdSharedPtr")
<< Data("#include <memory>\n" + fooData,
"std::shared_ptr<int> pi(new int(32));\n"
"std::shared_ptr<Foo> pf(new Foo);\n")
% Cxx11Profile()
% Check("pi", Pointer("32"), "std::shared_ptr<int>")
% Check("pf", Pointer(), "std::shared_ptr<Foo>");
QTest::newRow("StdSetInt")
<< Data("#include <set>\n",
"std::set<int> set;\n"
"set.insert(11);\n"
"set.insert(22);\n"
"set.insert(33);\n")
% Check("set", "<3 items>", "std::set<int>");
QTest::newRow("StdSetIntIterator")
<< Data("#include <set>\n",
"typedef std::set<int> Set;\n"
"Set set;\n"
"set.insert(11.0);\n"
"set.insert(22.0);\n"
"set.insert(33.0);\n"
"set.insert(44.0);\n"
"set.insert(55.0);\n"
"set.insert(66.0);\n"
"Set::iterator it1 = set.begin();\n"
"Set::iterator it2 = it1; ++it2;\n"
"Set::iterator it3 = it2; ++it3;\n"
"Set::iterator it4 = it3; ++it4;\n"
"Set::iterator it5 = it4; ++it5;\n"
"Set::iterator it6 = it5; ++it6;\n")
% Check("set", "<6 items>", "Set")
% Check("it1.value", "11", "int")
% Check("it6.value", "66", "int");
QTest::newRow("StdSetString")
<< Data("#include <set>\n"
"#include <QString>\n",
"std::set<QString> set;\n"
"set.insert(\"22.0\");\n")
% Check("set", "<1 items>", "std::set<@QString>")
% Check("set.0", "[0]", "\"22.0\"", "@QString");
QTest::newRow("StdSetPointer")
<< Data("#include <set>\n"
"#include <QPointer>\n"
"#include <QObject>\n",
"QObject ob;\n"
"std::set<QPointer<QObject> > hash;\n"
"QPointer<QObject> ptr(&ob);\n")
% Check("hash", "<0 items>", "std::set<@QPointer<@QObject>, std::less<@QPointer<@QObject>>, std::allocator<@QPointer<@QObject>>>")
% Check("ob", "\"\"", "@QObject")
% Check("ptr", "", "@QPointer<@QObject>");
QTest::newRow("StdStack1")
<< Data("#include <stack>\n",
"std::stack<int *> s0, s;\n"
"s.push(new int(1));\n"
"s.push(0);\n"
"s.push(new int(2));\n")
% Check("s0", "<0 items>", "std::stack<int*>")
% Check("s", "<3 items>", "std::stack<int*>")
% Check("s.0", "[0]", "1", "int")
% Check("s.1", "[1]", "0x0", "int *")
% Check("s.2", "[2]", "2", "int");
QTest::newRow("StdStack2")
<< Data("#include <stack>\n",
"std::stack<int> s0, s;\n"
"s.push(1);\n"
"s.push(2);\n")
% Check("s0", "<0 items>", "std::stack<int>")
% Check("s", "<2 items>", "std::stack<int>")
% Check("s.0", "[0]", "1", "int")
% Check("s.1", "[1]", "2", "int");
QTest::newRow("StdStack3")
<< Data("#include <stack>\n" + fooData,
"std::stack<Foo *> s, s0;\n"
"s.push(new Foo(1));\n"
"s.push(new Foo(2));\n")
% CoreProfile()
% Check("s", "<2 items>", "std::stack<Foo*>")
% Check("s.0", "[0]", "", "Foo")
% Check("s.0.a", "1", "int")
% Check("s.1", "[1]", "", "Foo")
% Check("s.1.a", "2", "int");
QTest::newRow("StdStack4")
<< Data("#include <stack>\n" + fooData,
"std::stack<Foo> s0, s;\n"
"s.push(1);\n"
"s.push(2);\n")
% CoreProfile()
% Check("s0", "<0 items>", "std::stack<Foo>")
% Check("s", "<2 items>", "std::stack<Foo>")
% Check("s.0", "[0]", "", "Foo")
% Check("s.0.a", "1", "int")
% Check("s.1", "[1]", "", "Foo")
% Check("s.1.a", "2", "int");
QTest::newRow("StdString1")
<< Data("#include <string>\n",
"std::string str0, str;\n"
"std::wstring wstr0, wstr;\n"
"str += \"b\";\n"
"wstr += wchar_t('e');\n"
"str += \"d\";\n"
"wstr += wchar_t('e');\n"
"str += \"e\";\n"
"str += \"b\";\n"
"str += \"d\";\n"
"str += \"e\";\n"
"wstr += wchar_t('e');\n"
"wstr += wchar_t('e');\n"
"str += \"e\";\n")
% Check("str0", "\"\"", "std::string")
% Check("wstr0", "\"\"", "std::wstring")
% Check("str", "\"bdebdee\"", "std::string")
% Check("wstr", "\"eeee\"", "std::wstring");
QTest::newRow("StdString2")
<< Data("#include <string>\n"
"#include <vector>\n"
"#include <QList>\n",
"std::string str = \"foo\";\n"
"std::vector<std::string> v;\n"
"QList<std::string> l0, l;\n"
"v.push_back(str);\n"
"v.push_back(str);\n"
"l.push_back(str);\n"
"l.push_back(str);\n")
% Check("l0", "<0 items>", "@QList<std::string>")
% Check("l", "<2 items>", "@QList<std::string>")
% Check("str", "\"foo\"", "std::string")
% Check("v", "<2 items>", "std::vector<std::string>")
% Check("v.0", "[0]", "\"foo\"", "std::string");
QTest::newRow("StdVector1")
<< Data("#include <vector>\n",
"std::vector<int *> v0, v;\n"
"v.push_back(new int(1));\n"
"v.push_back(0);\n"
"v.push_back(new int(2));\n")
% Check("v0", "<0 items>", "std::vector<int*>")
% Check("v", "<3 items>", "std::vector<int*>")
% Check("v.0", "[0]", "1", "int")
% Check("v.1", "[1]", "0x0", "int *")
% Check("v.2", "[2]", "2", "int");
QTest::newRow("StdVector2")
<< Data("#include <vector>\n",
"std::vector<int> v;\n"
"v.push_back(1);\n"
"v.push_back(2);\n"
"v.push_back(3);\n"
"v.push_back(4);\n")
% Check("v", "<4 items>", "std::vector<int>")
% Check("v.0", "[0]", "1", "int")
% Check("v.3", "[3]", "4", "int");
QTest::newRow("StdVector3")
<< Data("#include <vector>\n" + fooData,
"std::vector<Foo *> v;\n"
"v.push_back(new Foo(1));\n"
"v.push_back(0);\n"
"v.push_back(new Foo(2));\n")
% CoreProfile()
% Check("v", "<3 items>", "std::vector<Foo*>")
% Check("v.0", "[0]", "", "Foo")
% Check("v.0.a", "1", "int")
% Check("v.1", "[1]", "0x0", "Foo *")
% Check("v.2", "[2]", "", "Foo")
% Check("v.2.a", "2", "int");
QTest::newRow("StdVector4")
<< Data("#include <vector>\n" + fooData,
"std::vector<Foo> v;\n"
"v.push_back(1);\n"
"v.push_back(2);\n"
"v.push_back(3);\n"
"v.push_back(4);\n")
% CoreProfile()
% Check("v", "<4 items>", "std::vector<Foo>")
% Check("v.0", "[0]", "", "Foo")
% Check("v.1.a", "2", "int")
% Check("v.3", "[3]", "", "Foo");
QTest::newRow("StdVectorBool1")
<< Data("#include <vector>\n",
"std::vector<bool> v;\n"
"v.push_back(true);\n"
"v.push_back(false);\n"
"v.push_back(false);\n"
"v.push_back(true);\n"
"v.push_back(false);\n")
% Check("v", "<5 items>", "std::vector<bool>")
% Check("v.0", "[0]", "1", "bool")
% Check("v.1", "[1]", "0", "bool")
% Check("v.2", "[2]", "0", "bool")
% Check("v.3", "[3]", "1", "bool")
% Check("v.4", "[4]", "0", "bool");
QTest::newRow("StdVectorBool2")
<< Data("#include <vector>\n",
"std::vector<bool> v1(65, true);\n"
"std::vector<bool> v2(65);\n")
% Check("v1", "<65 items>", "std::vector<bool>")
% Check("v1.0", "[0]", "1", "bool")
% Check("v1.64", "[64]", "1", "bool")
% Check("v2", "<65 items>", "std::vector<bool>")
% Check("v2.0", "[0]", "0", "bool")
% Check("v2.64", "[64]", "0", "bool");
QTest::newRow("StdVector6")
<< Data("#include <vector>\n"
"#include <list>\n",
"std::vector<std::list<int> *> vector;\n"
"std::list<int> list;\n"
"vector.push_back(new std::list<int>(list));\n"
"vector.push_back(0);\n"
"list.push_back(45);\n"
"vector.push_back(new std::list<int>(list));\n"
"vector.push_back(0);\n")
% Check("list", "<1 items>", "std::list<int>")
% Check("list.0", "[0]", "45", "int")
% Check("vector", "<4 items>", "std::vector<std::list<int>*>")
% Check("vector.0", "[0]", "<0 items>", "std::list<int>")
% Check("vector.2", "[2]", "<1 items>", "std::list<int>")
% Check("vector.2.0", "[0]", "45", "int")
% Check("vector.3", "[3]", "0x0", "std::list<int> *");
QTest::newRow("StdStream")
<< Data("#include <istream>\n"
"#include <fstream>\n",
"using namespace std;\n"
"ifstream is0, is;\n"
"#ifdef Q_OS_WIN\n"
" is.open(\"C:\\\\Program Files\\\\Windows NT\\\\Accessories\\\\wordpad.exe\");\n"
"#else\n"
" is.open(\"/etc/passwd\");\n"
"#endif\n"
"bool ok = is.good();\n"
"unused(&ok, &is, &is0);\n")
% Check("is", "", "std::ifstream")
% Check("ok", "true", "bool");
QTest::newRow("ItemModel")
<< Data("#include <QStandardItemModel>\n",
"QStandardItemModel m;\n"
"QStandardItem *i1, *i2, *i11;\n"
"m.appendRow(QList<QStandardItem *>()\n"
" << (i1 = new QStandardItem(\"1\")) "
" << (new QStandardItem(\"a\")) "
" << (new QStandardItem(\"a2\")));\n"
"QModelIndex mi = i1->index();\n"
"m.appendRow(QList<QStandardItem *>()\n"
" << (i2 = new QStandardItem(\"2\")) "
" << (new QStandardItem(\"b\")));\n"
"i1->appendRow(QList<QStandardItem *>()\n"
" << (i11 = new QStandardItem(\"11\")) "
" << (new QStandardItem(\"aa\")));\n"
"unused(&i1, &i2, &i11, &m, &mi);\n")
% GuiProfile()
% Check("i1", "", "@QStandardItem")
% Check("i11", "", "@QStandardItem")
% Check("i2", "", "@QStandardItem")
% Check("m", "", "@QStandardItemModel")
% Check("mi", "\"1\"", "@QModelIndex");
QTest::newRow("QStackInt")
<< Data("#include <QStack>\n",
"QStack<int> s;\n"
"s.append(1);\n"
"s.append(2);\n")
% Check("s", "<2 items>", "@QStack<int>")
% Check("s.0", "[0]", "1", "int")
% Check("s.1", "[1]", "2", "int");
QTest::newRow("QStackBig")
<< Data("#include <QStack>\n",
"QStack<int> s;\n"
"for (int i = 0; i != 10000; ++i)\n"
" s.append(i);\n")
% CoreProfile()
% Check("s", "<10000 items>", "@QStack<int>")
% Check("s.0", "[0]", "0", "int")
% Check("s.1999", "[1999]", "1999", "int");
QTest::newRow("QStackFooPointer")
<< Data("#include <QStack>\n" + fooData,
"QStack<Foo *> s;\n"
"s.append(new Foo(1));\n"
"s.append(0);\n"
"s.append(new Foo(2));\n")
% CoreProfile()
% Check("s", "<3 items>", "@QStack<Foo*>")
% Check("s.0", "[0]", "", "Foo")
% Check("s.0.a", "1", "int")
% Check("s.1", "[1]", "0x0", "Foo *")
% Check("s.2", "[2]", "", "Foo")
% Check("s.2.a", "2", "int");
QTest::newRow("QStackFoo")
<< Data("#include <QStack>\n" + fooData,
"QStack<Foo> s;\n"
"s.append(1);\n"
"s.append(2);\n"
"s.append(3);\n"
"s.append(4);\n")
% CoreProfile()
% Check("s", "<4 items>", "@QStack<Foo>")
% Check("s.0", "[0]", "", "Foo")
% Check("s.0.a", "1", "int")
% Check("s.3", "[3]", "", "Foo")
% Check("s.3.a", "4", "int");
QTest::newRow("QStackBool")
<< Data("#include <QStack>",
"QStack<bool> s;\n"
"s.append(true);\n"
"s.append(false);\n")
% CoreProfile()
% Check("s", "<2 items>", "@QStack<bool>")
% Check("s.0", "[0]", "1", "bool") // 1 -> true is done on display
% Check("s.1", "[1]", "0", "bool");
QTest::newRow("QUrl")
<< Data("#include <QUrl>",
"QUrl url(QString(\"http://qt-project.org\"));\n")
% Check("url", "\"http://qt-project.org\"", "@QUrl");
QTest::newRow("QStringQuotes")
<< Data("#include <QString>\n",
"QString str1(\"Hello Qt\");\n"
// --> Value: \"Hello Qt\"
"QString str2(\"Hello\\nQt\");\n"
// --> Value: \\"\"Hello\nQt"" (double quote not expected)
"QString str3(\"Hello\\rQt\");\n"
// --> Value: ""HelloQt"" (double quote and missing \r not expected)
"QString str4(\"Hello\\tQt\");\n"
"unused(&str1, &str2, &str3, &str3);\n")
// --> Value: "Hello\9Qt" (expected \t instead of \9)
% CoreProfile()
% Check("str1", "\"Hello Qt\"", "@QString")
% Check("str2", "\"Hello\nQt\"", "@QString")
% Check("str3", "\"Hello\rQt\"", "@QString")
% Check("str4", "\"Hello\tQt\"", "@QString");
QTest::newRow("QString1")
<< Data("#include <QByteArray>\n",
"QByteArray str = \"Hello \";\n"
"str += '\\t';\n"
"str += '\\r';\n"
"str += '\\n';\n"
"str += char(0);\n"
"str += char(1);\n"
"str += \" World\";\n"
"str.prepend(\"Prefix: \");\n"
"unused(&str);\n")
% CoreProfile()
% Check("str", "\"Prefix: Hello big, \\t\\r\\n\\000\\001 World\"", "@QByteArray");
QTest::newRow("QString2")
<< Data("#include <QString>\n",
"QChar data[] = { 'H', 'e', 'l', 'l', 'o' };\n"
"QString str1 = QString::fromRawData(data, 4);\n"
"QString str2 = QString::fromRawData(data + 1, 4);\n"
"unused(&data, &str1, &str2);\n")
% CoreProfile()
% Check("str1", "\"Hell\"", "@QString")
% Check("str2", "\"ello\"", "@QString");
QTest::newRow("QString3")
<< Data("#include <QString>\n"
"void stringRefTest(const QString &refstring) { breakHere(); unused(&refstring); }\n",
"stringRefTest(QString(\"Ref String Test\"));\n")
% CoreProfile()
% Check("refstring", "\"Ref String Test\"", "@QString &");
QTest::newRow("QString4")
<< Data("#include <QString>\n",
"QString str = \"Hello \";\n"
"QString string(\"String Test\");\n"
"QString *pstring = new QString(\"Pointer String Test\");\n"
"unused(&str, &string, &pstring);\n")
% CoreProfile()
% Check("pstring", "\"Pointer String Test\"", "@QString")
% Check("str", "\"Hello \"", "@QString")
% Check("string", "\"String Test\"", "@QString");
QTest::newRow("QStringRef1")
<< Data("#include <QStringRef>\n",
"QString str = \"Hello\";\n"
"QStringRef ref(&str, 1, 2);")
% CoreProfile()
% Check("ref", "\"el\"", "@QStringRef");
QTest::newRow("QStringList")
<< Data("#include <QStringList>\n",
"QStringList l;\n"
"l << \"Hello \";\n"
"l << \" big, \";\n"
"l.takeFirst();\n"
"l << \" World \";\n")
% CoreProfile()
% Check("l", "<2 items>", "@QStringList")
% Check("l.0", "[0]", "\" big, \"", "@QString")
% Check("l.1", "[1]", "\" World \"", "@QString");
QTest::newRow("String")
<< Data("#include <QString>",
"const wchar_t *w = L\"aöa\";\n"
"QString u;\n"
"if (sizeof(wchar_t) == 4)\n"
" u = QString::fromUcs4((uint *)w);\n"
"else\n"
" u = QString::fromUtf16((ushort *)w);\n"
"unused(&w, &u);\n")
% CoreProfile()
% Check("u", "u", "\"aöa\"", "@QString")
% CheckType("w", "w", "wchar_t *");
// All: Select UTF-8 in "Change Format for Type" in L&W context menu");
// Windows: Select UTF-16 in "Change Format for Type" in L&W context menu");
// Other: Select UCS-6 in "Change Format for Type" in L&W context menu");
// These tests should result in properly displayed umlauts in the
// Locals&Watchers view. It is only support on gdb with Python");
QTest::newRow("CharPointers")
<< Data("const char *s = \"aöa\";\n"
"const char *t = \"a\\xc3\\xb6\";\n"
"const unsigned char uu[] = { 'a', 153 /* ö Latin1 */, 'a' };\n"
"const unsigned char *u = uu;\n"
"const wchar_t *w = L\"aöa\";\n"
"unused(&s, &t, &uu, &u, &w);\n")
% CheckType("u", "unsigned char *")
% CheckType("uu", "unsigned char [3]")
% CheckType("s", "char *")
% CheckType("t", "char *")
% CheckType("w", "wchar_t *");
// All: Select UTF-8 in "Change Format for Type" in L&W context menu");
// Windows: Select UTF-16 in "Change Format for Type" in L&W context menu");
// Other: Select UCS-6 in "Change Format for Type" in L&W context menu");
QTest::newRow("CharArrays")
<< Data("const char s[] = \"aöa\";\n"
"const char t[] = \"aöax\";\n"
"const wchar_t w[] = L\"aöa\";\n"
"unused(&s, &t, &w);\n")
% CheckType("s", "char [5]")
% CheckType("t", "char [6]")
% CheckType("w", "wchar_t [4]");
QTest::newRow("Text")
<< Data("#include <QApplication>\n"
"#include <QTextCursor>\n"
"#include <QTextDocument>\n",
"QApplication app(argc, argv);\n"
"QTextDocument doc;\n"
"doc.setPlainText(\"Hallo\\nWorld\");\n"
"QTextCursor tc;\n"
"tc = doc.find(\"all\");\n"
"int pos = tc.position();\n"
"int anc = tc.anchor();\n"
"unused(&pos, &anc);\n")
% GuiProfile()
% CheckType("doc", "@QTextDocument")
% Check("tc", "4", "@QTextCursor")
% Check("pos", "4", "int")
% Check("anc", "1", "int");
QTest::newRow("QThread1")
<< Data("#include <QThread>\n",
"struct Thread : QThread\n"
"{\n"
" void run()\n"
" {\n"
" if (m_id == 3)\n"
" breakHere();\n"
" }\n"
" int m_id;\n"
"};\n"
"const int N = 14;\n"
"Thread thread[N];\n"
"for (int i = 0; i != N; ++i) {\n"
" thread[i].m_id = i;\n"
" thread[i].setObjectName(\"This is thread #\" + QString::number(i));\n"
" thread[i].start();\n"
"}\n")
% CheckType("this", "Thread")
% Check("this.@1", "[@QThread]", "", "@QThread")
% Check("this.@1.@1", "[@QObject]", "\"This is thread #3\"", "@QObject");
QTest::newRow("QVariant1")
<< Data("#include <QVariant>\n",
"QVariant value;\n"
"QVariant::Type t = QVariant::String;\n"
"value = QVariant(t, (void*)0);\n"
"*(QString*)value.data() = QString(\"Some string\");\n")
% CoreProfile()
% Check("t", "@QVariant::String (10)", "@QVariant::Type")
% Check("value", "\"Some string\"", "@QVariant (QString)");
QTest::newRow("QVariant2")
<< Data("#include <QVariant>\n"
"#include <QRect>\n"
"#include <QRectF>\n"
"#include <QStringList>\n"
"#include <QString>\n",
"QVariant var; // Type 0, invalid\n"
"QVariant var1(true); // 1, bool\n"
"QVariant var2(2); // 2, int\n"
"QVariant var3(3u); // 3, uint\n"
"QVariant var4(qlonglong(4)); // 4, qlonglong\n"
"QVariant var5(qulonglong(5)); // 5, qulonglong\n"
"QVariant var6(double(6)); // 6, double\n"
"QVariant var7(QChar(7)); // 7, QChar\n"
//None, # 8, QVariantMap
// None, # 9, QVariantList
"QVariant var10(QString(\"Hello 10\")); // 10, QString\n"
"QVariant var11(QStringList() << \"Hello\" << \"World\"); // 11, QStringList\n"
"QVariant var19(QRect(100, 200, 300, 400)); // 19 QRect\n"
"QVariant var20(QRectF(100, 200, 300, 400)); // 20 QRectF\n"
)
% CoreProfile()
% Check("var", "(invalid)", "@QVariant (invalid)")
% Check("var1", "true", "@QVariant (bool)")
% Check("var2", "2", "@QVariant (int)")
% Check("var3", "3", "@QVariant (uint)")
% Check("var4", "4", "@QVariant (qlonglong)")
% Check("var5", "5", "@QVariant (qulonglong)")
% Check("var6", "6", "@QVariant (double)")
% Check("var7", "'?' (7)", "@QVariant (QChar)")
% Check("var10", "\"Hello 10\"", "@QVariant (QString)")
% Check("var11", "<2 items>", "@QVariant (QStringList)")
% Check("var11.1", "[1]", "\"World\"", "@QString")
% Check("var19", "300x400+100+200", "@QVariant (QRect)")
% Check("var20", "300x400+100+200", "@QVariant (QRectF)");
/*
"QByteArray", # 12
"QBitArray", # 13
"QDate", # 14
"QTime", # 15
"QDateTime", # 16
"QUrl", # 17
"QLocale", # 18
"QRect", # 19
"QRectF", # 20
"QSize", # 21
"QSizeF", # 22
"QLine", # 23
"QLineF", # 24
"QPoint", # 25
"QPointF", # 26
"QRegExp", # 27
*/
QTest::newRow("QVariant3")
<< Data("#include <QVariant>\n",
"QVariant var;\n"
"unused(&var);\n")
% CoreProfile()
% Check("var", "(invalid)", "@QVariant (invalid)");
QTest::newRow("QVariant4")
<< Data("#include <QHostAddress>\n"
"#include <QVariant>\n"
"Q_DECLARE_METATYPE(QHostAddress)\n",
"QVariant var;\n"
"QHostAddress ha(\"127.0.0.1\");\n"
"var.setValue(ha);\n"
"QHostAddress ha1 = var.value<QHostAddress>();\n")
% CoreProfile()
% Profile("QT += network\n")
% Check("ha", "\"127.0.0.1\"", "@QHostAddress")
% Check("ha.a", "0", "@quint32")
% Check("ha.a6", "", "@Q_IPV6ADDR")
% Check("ha.ipString", "\"127.0.0.1\"", "@QString")
% Check("ha.isParsed", "false", "bool")
% Check("ha.protocol", "@QAbstractSocket::UnknownNetworkLayerProtocol (-1)",
"@QAbstractSocket::NetworkLayerProtocol")
% Check("ha.scopeId", "\"\"", "@QString")
% Check("ha1", "\"127.0.0.1\"", "@QHostAddress")
% Check("ha1.a", "0", "@quint32")
% Check("ha1.a6", "", "@Q_IPV6ADDR")
% Check("ha1.ipString", "\"127.0.0.1\"", "@QString")
% Check("ha1.isParsed", "false", "bool")
% Check("ha1.protocol", "@QAbstractSocket::UnknownNetworkLayerProtocol (-1)",
"@QAbstractSocket::NetworkLayerProtocol")
% Check("ha1.scopeId", "\"\"", "@QString")
% Check("var", "", "@QVariant (@QHostAddress)")
% Check("var.data", "\"127.0.0.1\"", "@QHostAddress");
QTest::newRow("QVariant5")
<< Data("#include <QMap>\n"
"#include <QStringList>\n"
"#include <QVariant>\n"
// This checks user defined types in QVariants\n";
"typedef QMap<uint, QStringList> MyType;\n"
"Q_DECLARE_METATYPE(QList<int>)\n"
"Q_DECLARE_METATYPE(QStringList)\n"
"#define COMMA ,\n"
"Q_DECLARE_METATYPE(QMap<uint COMMA QStringList>)\n",
"MyType my;\n"
"my[1] = (QStringList() << \"Hello\");\n"
"my[3] = (QStringList() << \"World\");\n"
"QVariant var;\n"
"var.setValue(my);\n"
"breakHere();\n")
% Check("my", "<2 items>", "MyType")
% Check("my.0", "[0]", "", "@QMapNode<unsigned int, @QStringList>")
% Check("my.0.key", "1", "unsigned int")
% Check("my.0.value", "<1 items>", "@QStringList")
% Check("my.0.value.0", "[0]", "\"Hello\"", "@QString")
% Check("my.1", "[1]", "", "@QMapNode<unsigned int, @QStringList>")
% Check("my.1.key", "3", "unsigned int")
% Check("my.1.value", "<1 items>", "@QStringList")
% Check("my.1.value.0", "[0]", "\"World\"", "@QString")
% CheckType("var", "@QVariant (@QMap<unsigned int, @QStringList>)")
% Check("var.data", "<2 items>", "@QMap<unsigned int, @QStringList>")
% Check("var.data.0", "[0]", "", "@QMapNode<unsigned int, @QStringList>")
% Check("var.data.0.key", "1", "unsigned int")
% Check("var.data.0.value", "<1 items>", "@QStringList")
% Check("var.data.0.value.0", "[0]", "\"Hello\"", "@QString")
% Check("var.data.1", "[1]", "", "@QMapNode<unsigned int, @QStringList>")
% Check("var.data.1.key", "3", "unsigned int")
% Check("var.data.1.value", "<1 items>", "@QStringList")
% Check("var.data.1.value.0", "[0]", "\"World\"", "@QString");
QTest::newRow("QVariant6")
<< Data("#include <QList>\n"
"#include <QVariant>\n"
"Q_DECLARE_METATYPE(QList<int>)\n",
"QList<int> list;\n"
"list << 1 << 2 << 3;\n"
"QVariant variant = qVariantFromValue(list);\n"
"unused(&list, &variant);\n")
% CoreProfile()
% Check("list", "<3 items>", "@QList<int>")
% Check("list.0", "[0]", "1", "int")
% Check("list.1", "[1]", "2", "int")
% Check("list.2", "[2]", "3", "int")
% Check("variant", "", "@QVariant (@QList<int>)")
% Check("variant.data", "<3 items>", "@QList<int>")
% Check("variant.data.0", "[0]", "1", "int")
% Check("variant.data.1", "[1]", "2", "int")
% Check("variant.data.2", "[2]", "3", "int");
// QTest::newRow("QVariantList")
// << Data(
// "QVariantList vl;\n"
// " % Check("vl <0 items> QVariantList");\n"
// "// Continue");\n"
// "vl.append(QVariant(1));\n"
// "vl.append(QVariant(2));\n"
// "vl.append(QVariant("Some String"));\n"
// "vl.append(QVariant(21));\n"
// "vl.append(QVariant(22));\n"
// "vl.append(QVariant("2Some String"));\n"
// % Check("vl <6 items> QVariantList");
// % CheckType("vl.0 QVariant (int)");
// % CheckType("vl.2 QVariant (QString)");
// QTest::newRow("QVariantMap")
// << Data(
// "QVariantMap vm;\n"
// % Check("vm <0 items> QVariantMap");
// "// Continue");\n"
// "vm["a"] = QVariant(1);\n"
// "vm["b"] = QVariant(2);\n"
// "vm["c"] = QVariant("Some String");\n"
// "vm["d"] = QVariant(21);\n"
// "vm["e"] = QVariant(22);\n"
// "vm["f"] = QVariant("2Some String");\n"
// % Check("vm <6 items> QVariantMap");
// % Check("vm.0 QMapNode<QString, QVariant>");
// % Check("vm.0.key "a" QString");
// % Check("vm.0.value 1 QVariant (int)");
// % Check("vm.5 QMapNode<QString, QVariant>");
// % Check("vm.5.key "f" QString");
// % Check("vm.5.value "2Some String" QVariant (QString)");
// QTest::newRow("QVectorIntBig")
// << Data(
// // This tests the display of a big vector");
// QVector<int> vec(10000);
// for (int i = 0; i != vec.size(); ++i)
// vec[i] = i * i;
// % Check("vec <10000 items> QVector<int>");
// % Check("vec.0", "0", "int");
// % Check("vec.1999", "3996001", "int");
// // Continue");
// // step over
// // check that the display updates in reasonable time
// vec[1] = 1;
// vec[2] = 2;
// vec.append(1);
// vec.append(1);
// % Check("vec <10002 items> QVector<int>");
// % Check("vec.1", "1", "int");
// % Check("vec.2", "2", "int");
// QTest::newRow("QVectorFoo")
// << Data(
// // This tests the display of a vector of pointers to custom structs");\n"
// "QVector<Foo> vec;\n"
// % Check("vec <0 items> QVector<Foo>");
// // Continue");\n"
// // step over, check display");\n"
// "vec.append(1);\n"
// "vec.append(2);\n"
// % Check("vec <2 items> QVector<Foo>");
// % Check("vec.0", "Foo");
// % Check("vec.0.a", "1", "int");
// % Check("vec.1", "Foo");
// % Check("vec.1.a", "2", "int");
// typedef QVector<Foo> FooVector;
// QTest::newRow("QVectorFooTypedef")
// << Data(
// {
// "FooVector vec;\n"
// "vec.append(Foo(2));\n"
// "vec.append(Foo(3));\n"
// unused(&vec);
// }
// QTest::newRow("QVectorFooStar")
// << Data(
// {
// // This tests the display of a vector of pointers to custom structs");
// "QVector<Foo *> vec;\n"
// % Check("vec <0 items> QVector<Foo*>");
// // Continue");\n"
// // step over\n"
// // check that the display is ok");\n"
// "vec.append(new Foo(1));\n"
// "vec.append(0);\n"
// "vec.append(new Foo(2));\n"
// "vec.append(new Fooooo(3));\n"
// // switch "Auto derefencing pointers" in Locals context menu\n"
// // off and on again, and check result looks sane");\n"
// % Check("vec <4 items> QVector<Foo*>");
// % Check("vec.0", "Foo");
// % Check("vec.0.a", "1", "int");
// % Check("vec.1 0x0 Foo *");
// % Check("vec.2", "Foo");
// % Check("vec.2.a", "2", "int");
// % Check("vec.3", "Fooooo");
// % Check("vec.3.a", "5", "int");
// QTest::newRow("QVectorBool")
// << Data(
// QVector<bool> vec;
// % Check("vec <0 items> QVector<bool>");
// // Continue");
// // step over
// // check that the display is ok");
// vec.append(true);
// vec.append(false);
// % Check("vec <2 items> QVector<bool>");
// % Check("vec.0", "true", "bool");
// % Check("vec.1", "false", "bool");
// QTest::newRow("QVectorListInt")
// << Data(
// "QVector<QList<int> > vec;
// "QVector<QList<int> > *pv = &vec;
// % Check("pv", "QVector<QList<int>>");
// % Check("vec <0 items> QVector<QList<int>>");
// // Continue");
// "vec.append(QList<int>() << 1);
// "vec.append(QList<int>() << 2 << 3);
// % Check("pv", "QVector<QList<int>>");
// % Check("pv.0 <1 items> QList<int>");
// % Check("pv.0.0", "1", "int");
// % Check("pv.1 <2 items> QList<int>");
// % Check("pv.1.0", "2", "int");
// % Check("pv.1.1", "3", "int");
// % Check("vec <2 items> QVector<QList<int>>");
// % Check("vec.0 <1 items> QList<int>");
// % Check("vec.0.0", "1", "int");
// % Check("vec.1 <2 items> QList<int>");
// % Check("vec.1.0", "2", "int");
// % Check("vec.1.1", "3", "int");
//namespace noargs {
// class Goo
// {
// public:
// Goo(const QString &str, const int n) : str_(str), n_(n) {}
// private:
// QString str_;
// int n_;
// };
// typedef QList<Goo> GooList;
// QTest::newRow("NoArgumentName(int i, int, int k)
// {
// // This is not supposed to work with the compiled dumpers");
// "GooList list;
// "list.append(Goo("Hello", 1));
// "list.append(Goo("World", 2));
// "QList<Goo> list2;
// "list2.append(Goo("Hello", 1));
// "list2.append(Goo("World", 2));
// % Check("i", "1", "int");
// % Check("k", "3", "int");
// % Check("list <2 items> noargs::GooList");
// % Check("list.0", "noargs::Goo");
// % Check("list.0.n_", "1", "int");
// % Check("list.0.str_ "Hello" QString");
// % Check("list.1", "noargs::Goo");
// % Check("list.1.n_", "2", "int");
// % Check("list.1.str_ "World" QString");
// % Check("list2 <2 items> QList<noargs::Goo>");
// % Check("list2.0", "noargs::Goo");
// % Check("list2.0.n_", "1", "int");
// % Check("list2.0.str_ "Hello" QString");
// % Check("list2.1", "noargs::Goo");
// % Check("list2.1.n_", "2", "int");
// % Check("list2.1.str_ "World" QString");
//"void foo() {}\n"
//"void foo(int) {}\n"
//"void foo(QList<int>) {}\n"
//"void foo(QList<QVector<int> >) {}\n"
//"void foo(QList<QVector<int> *>) {}\n"
//"void foo(QList<QVector<int *> *>) {}\n"
//"\n"
//"template <class T>\n"
//"void foo(QList<QVector<T> *>) {}\n"
//"\n"
//"\n"
//"namespace namespc {\n"
//"\n"
//" class MyBase : public QObject\n"
//" {\n"
//" public:\n"
//" MyBase() {}\n"
//" virtual void doit(int i)\n"
//" {\n"
//" n = i;\n"
//" }\n"
//" protected:\n"
//" int n;\n"
//" };\n"
//"\n"
//" namespace nested {\n"
//"\n"
//" class MyFoo : public MyBase\n"
//" {\n"
//" public:\n"
//" MyFoo() {}\n"
//" virtual void doit(int i)\n"
//" {\n"
//" // Note there's a local 'n' and one in the base class");\n"
//" n = i;\n"
//" }\n"
//" protected:\n"
//" int n;\n"
//" };\n"
//"\n"
//" class MyBar : public MyFoo\n"
//" {\n"
//" public:\n"
//" virtual void doit(int i)\n"
//" {\n"
//" n = i + 1;\n"
//" }\n"
//" };\n"
//"\n"
//" namespace {\n"
//"\n"
//" class MyAnon : public MyBar\n"
//" {\n"
//" public:\n"
//" virtual void doit(int i)\n"
//" {\n"
//" n = i + 3;\n"
//" }\n"
//" };\n"
//"\n"
//" namespace baz {\n"
//"\n"
//" class MyBaz : public MyAnon\n"
//" {\n"
//" public:\n"
//" virtual void doit(int i)\n"
//" {\n"
//" n = i + 5;\n"
//" }\n"
//" };\n"
//"\n"
//" } // namespace baz\n"
//"\n"
//" } // namespace anon\n"
//"\n"
//" } // namespace nested\n"
//"\n"
// QTest::newRow("Namespace()
// {
// // This checks whether classes with "special" names are
// // properly displayed");
// "using namespace nested;\n"
// "MyFoo foo;\n"
// "MyBar bar;\n"
// "MyAnon anon;\n"
// "baz::MyBaz baz;\n"
// % CheckType("anon namespc::nested::(anonymous namespace)::MyAnon");
// % Check("bar", "namespc::nested::MyBar");
// % CheckType("baz namespc::nested::(anonymous namespace)::baz::MyBaz");
// % Check("foo", "namespc::nested::MyFoo");
// // Continue");
// // step into the doit() functions
// baz.doit(1);\n"
// anon.doit(1);\n"
// foo.doit(1);\n"
// bar.doit(1);\n"
// unused();\n"
// }
QTest::newRow("GccExtensions")
<< Data(
"char v[8] = { 1, 2 };\n"
"char w __attribute__ ((vector_size (8))) = { 1, 2 };\n"
"int y[2] = { 1, 2 };\n"
"int z __attribute__ ((vector_size (8))) = { 1, 2 };\n"
"unused(&v, &w, &y, &z);\n")
% Check("v.0", "[0]", "1", "char")
% Check("v.1", "[1]", "2", "char")
% Check("w.0", "[0]", "1", "char")
% Check("w.1", "[1]", "2", "char")
% Check("y.0", "[0]", "1", "int")
% Check("y.1", "[1]", "2", "int")
% Check("z.0", "[0]", "1", "int")
% Check("z.1", "[1]", "2", "int");
QTest::newRow("Int")
<< Data("#include <qglobal.h>\n"
"#include <limits.h>\n"
"#include <QString>\n",
"quint64 u64 = ULLONG_MAX;\n"
"qint64 s64 = LLONG_MAX;\n"
"quint32 u32 = ULONG_MAX;\n"
"qint32 s32 = LONG_MAX;\n"
"quint64 u64s = 0;\n"
"qint64 s64s = LLONG_MIN;\n"
"quint32 u32s = 0;\n"
"qint32 s32s = LONG_MIN;\n"
"QString dummy; // needed to get namespace\n"
"unused(&u64, &s64, &u32, &s32, &u64s, &s64s, &u32s, &s32s, &dummy);\n")
% CoreProfile()
% Check("u64", "18446744073709551615", "@quint64")
% Check("s64", "9223372036854775807", "@qint64")
% Check("u32", "4294967295", "@quint32")
% Check("s32", "2147483647", "@qint32")
% Check("u64s", "0", "@quint64")
% Check("s64s", "-9223372036854775808", "@qint64")
% Check("u32s", "0", "@quint32")
% Check("s32s", "-2147483648", "@qint32");
QTest::newRow("Array1")
<< Data("double d[3][3];\n"
"for (int i = 0; i != 3; ++i)\n"
" for (int j = 0; j != 3; ++j)\n"
" d[i][j] = i + j;\n"
"unused(&d);\n")
% Check("d", Pointer(), "double [3][3]")
% Check("d.0", "[0]", Pointer(), "double [3]")
% Check("d.0.0", "[0]", "0", "double")
% Check("d.0.2", "[2]", "2", "double")
% Check("d.2", "[2]", Pointer(), "double [3]");
QTest::newRow("Array2")
<< Data("char c[20];\n"
"c[0] = 'a';\n"
"c[1] = 'b';\n"
"c[2] = 'c';\n"
"c[3] = 'd';\n"
"c[4] = 0;\n"
"unused(&c);\n")
% Check("c", "\"abcd\"", "char [20]")
% Check("c.0", "[0]", "97", "char")
% Check("c.3", "[3]", "100", "char");
QTest::newRow("Array3")
<< Data("#include <QString>\n",
"QString b[20];\n"
"b[0] = \"a\";\n"
"b[1] = \"b\";\n"
"b[2] = \"c\";\n"
"b[3] = \"d\";\n")
% CheckType("b", "@QString [20]")
% Check("b.0", "[0]", "\"a\"", "@QString")
% Check("b.3", "[3]", "\"d\"", "@QString")
% Check("b.4", "[4]", "\"\"", "@QString")
% Check("b.19", "[19]", "\"\"", "@QString");
QTest::newRow("Array4")
<< Data("#include <QByteArray>\n",
"QByteArray b[20];\n"
"b[0] = \"a\";\n"
"b[1] = \"b\";\n"
"b[2] = \"c\";\n"
"b[3] = \"d\";\n")
% CheckType("b", "@QByteArray [20]")
% Check("b.0", "[0]", "\"a\"", "@QByteArray")
% Check("b.3", "[3]", "\"d\"", "@QByteArray")
% Check("b.4", "[4]", "\"\"", "@QByteArray")
% Check("b.19", "[19]", "\"\"", "@QByteArray");
QTest::newRow("Array5")
<< Data(fooData,
"Foo foo[10];\n"
"for (int i = 0; i < 5; ++i)\n"
" foo[i].a = i;\n")
% CheckType("foo", "Foo [10]")
% Check("foo.0", "[0]", "", "Foo")
% Check("foo.9", "[9]", "", "Foo");
QTest::newRow("Bitfields")
<< Data("struct S\n"
"{\n"
" S() : x(0), y(0), c(0), b(0), f(0), d(0), i(0) {}\n"
" unsigned int x : 1;\n"
" unsigned int y : 1;\n"
" bool c : 1;\n"
" bool b;\n"
" float f;\n"
" double d;\n"
" int i;\n"
"} s;\n"
"unused(&s);\n")
% Check("s", "", "S")
% Check("s.b", "false", "bool")
% Check("s.c", "false", "bool")
% Check("s.d", "0", "double")
% Check("s.f", "0", "float")
% Check("s.i", "0", "int")
% Check("s.x", "0", "unsigned int")
% Check("s.y", "0", "unsigned int");
QTest::newRow("Function")
<< Data("#include <QByteArray>\n"
"struct Function\n"
"{\n"
" Function(QByteArray var, QByteArray f, double min, double max)\n"
" : var(var), f(f), min(min), max(max) {}\n"
" QByteArray var;\n"
" QByteArray f;\n"
" double min;\n"
" double max;\n"
"};\n",
"// In order to use this, switch on the 'qDump__Function' in dumper.py\n"
"Function func(\"x\", \"sin(x)\", 0, 1);\n"
"func.max = 10;\n"
"func.f = \"cos(x)\";\n"
"func.max = 4;\n"
"func.max = 5;\n"
"func.max = 6;\n"
"func.max = 7;\n")
% CoreProfile()
% Check("func", "", "Function")
% Check("func.f", "sin(x)", "@QByteArray")
% Check("func.max", "1", "double")
% Check("func.min", "0", "double")
% Check("func.var", "\"x\"", "@QByteArray")
% Check("func", "", "Function")
% Check("func.f", "\"cos(x)\"", "@QByteArray")
% Check("func.max", "7", "double");
// QTest::newRow("AlphabeticSorting")
// << Data(
// "// This checks whether alphabetic sorting of structure\n"
// "// members work");\n"
// "struct Color\n"
// "{\n"
// " int r,g,b,a;\n"
// " Color() { r = 1, g = 2, b = 3, a = 4; }\n"
// "};\n"
// " Color c;\n"
// % Check("c", "basic::Color");
// % Check("c.a", "4", "int");
// % Check("c.b", "3", "int");
// % Check("c.g", "2", "int");
// % Check("c.r", "1", "int");
// // Manual: Toogle "Sort Member Alphabetically" in context menu
// // Manual: of "Locals and Expressions" view");
// // Manual: Check that order of displayed members changes");
// QTest::newRow("Typedef")
// << Data(
// "namespace ns {\n"
// " typedef unsigned long long vl;\n"
// " typedef vl verylong;\n"
// "}\n"
// "typedef quint32 myType1;\n"
// "typedef unsigned int myType2;\n"
// "myType1 t1 = 0;\n"
// "myType2 t2 = 0;\n"
// "ns::vl j = 1000;\n"
// "ns::verylong k = 1000;\n"
// % Check("j", "1000", "basic::ns::vl");
// % Check("k", "1000", "basic::ns::verylong");
// % Check("t1", "0", "basic::myType1");
// % Check("t2", "0", "basic::myType2");
// QTest::newRow("Struct")
// << Data(
// "Foo f(2);\n"
// "f.doit();\n"
// "f.doit();\n"
// "f.doit();\n"
// % Check("f", "Foo");
// % Check("f.a", "5", "int");
// % Check("f.b", "2", "int");
// QTest::newRow("Union")
// << Data(
// "union U\n"
// "{\n"
// " int a;\n"
// " int b;\n"
// "} u;\n"
// % Check("u", "basic::U");
// % Check("u.a", "int");
// % Check("u.b", "int");
// QTest::newRow("TypeFormats")
// << Data(
// "// These tests should result in properly displayed umlauts in the\n"
// "// Locals and Expressions view. It is only support on gdb with Python");\n"
// "const char *s = "aöa";\n"
// "const wchar_t *w = L"aöa";\n"
// "QString u;\n"
// "// All: Select UTF-8 in "Change Format for Type" in L&W context menu");\n"
// "// Windows: Select UTF-16 in "Change Format for Type" in L&W context menu");\n"
// "// Other: Select UCS-6 in "Change Format for Type" in L&W context menu");\n"
// "if (sizeof(wchar_t) == 4)\n"
// " u = QString::fromUcs4((uint *)w);\n"
// "else\n"
// " u = QString::fromUtf16((ushort *)w);\n"
// % CheckType("s char *");
// % Check("u "" QString");
// % CheckType("w wchar_t *");
QTest::newRow("Pointer")
<< Data(fooData,
"Foo *f = new Foo();\n"
"unused(&f);\n")
% Check("f", Pointer(), "Foo")
% Check("f.a", "0", "int")
% Check("f.b", "2", "int");
QTest::newRow("PointerTypedef")
<< Data("typedef void *VoidPtr;\n"
"typedef const void *CVoidPtr;\n"
"struct A {};\n",
"A a;\n"
"VoidPtr p = &a;\n"
"CVoidPtr cp = &a;\n"
"unused(&a, &p, &cp);\n")
% Check("a", "", "A")
% Check("cp", Pointer(), "CVoidPtr")
% Check("p", Pointer(), "VoidPtr");
QTest::newRow("Reference1")
<< Data("int a = 43;\n"
"const int &b = a;\n"
"typedef int &Ref;\n"
"const int c = 44;\n"
"const Ref d = a;\n"
"unused(&a, &b, &c, &d);\n")
% Check("a", "43", "int")
% Check("b", "43", "int &")
% Check("c", "44", "int")
% Check("d", "43", "Ref");
QTest::newRow("Reference2")
<< Data("#include <QString>\n"
"QString fooxx() { return \"bababa\"; }\n",
"QString a = \"hello\";\n"
"const QString &b = fooxx();\n"
"typedef QString &Ref;\n"
"const QString c = \"world\";\n"
"const Ref d = a;\n"
"unused(&a, &b, &c, &d);\n")
% CoreProfile()
% Check("a", "\"hello\"", "@QString")
% Check("b", "\"bababa\"", "@QString &")
% Check("c", "\"world\"", "@QString")
% Check("d", "\"hello\"", "Ref");
QTest::newRow("Reference3")
<< Data("#include <QString>\n",
"QString a = QLatin1String(\"hello\");\n"
"const QString &b = a;\n"
"typedef QString &Ref;\n"
"const Ref d = const_cast<Ref>(a);\n"
"unused(&a, &b, &d);\n")
% CoreProfile()
% Check("a", "\"hello\"", "@QString")
% Check("b", "\"hello\"", "@QString &")
% Check("d", "\"hello\"", "Ref");
QTest::newRow("DynamicReference")
<< Data("struct BaseClass { virtual ~BaseClass() {} };\n"
"struct DerivedClass : BaseClass {};\n"
"DerivedClass d;\n"
"BaseClass *b1 = &d;\n"
"BaseClass &b2 = d;\n"
"unused(&b1, &b2);\n")
% CheckType("b1", "DerivedClass *")
% CheckType("b2", "DerivedClass &");
// QTest::newRow("LongEvaluation1")
// << Data(
// "QDateTime time = QDateTime::currentDateTime();\n"
// "const int N = 10000;\n"
// "QDateTime bigv[N];\n"
// "for (int i = 0; i < 10000; ++i) {\n"
// " bigv[i] = time;\n"
// " time = time.addDays(1);\n"
// "}\n"
// % Check("N", "10000", "int");
// % CheckType("bigv QDateTime [10000]");
// % Check("bigv.0", "QDateTime");
// % Check("bigv.9999", "QDateTime");
// % Check("time", "QDateTime");
// QTest::newRow("LongEvaluation2")
// << Data(
// "const int N = 10000;\n"
// "int bigv[N];\n"
// "for (int i = 0; i < 10000; ++i)\n"
// " bigv[i] = i;\n"
// % Check("N", "10000", "int");
// % CheckType("bigv int [10000]");
// % Check("bigv.0", "0", "int");
// % Check("bigv.9999", "9999", "int");
// QTest::newRow("Fork")
// << Data(
// "QProcess proc;\n"
// "proc.start("/bin/ls");\n"
// "proc.waitForFinished();\n"
// "QByteArray ba = proc.readAllStandardError();\n"
// "ba.append('x');\n"
// % Check("ba "x" QByteArray");
// % Check("proc QProcess");
// QTest::newRow("FunctionPointer")
// << Data(
// "int testFunctionPointerHelper(int x) { return x; }\n"
// "typedef int (*func_t)(int);\n"
// "func_t f = testFunctionPointerHelper;\n"
// "int a = f(43);\n"
// % Check("f", "basic::func_t");
// QByteArray dataClass = "struct Class
// "{\n"
// " Class() : a(34) {}\n"
// " int testFunctionPointerHelper(int x) { return x; }\n"
// " int a;\n"
// "};\n"
// QTest::newRow("MemberFunctionPointer")
// << Data(
// "Class x;\n"
// "typedef int (Class::*func_t)(int);\n"
// "func_t f = &Class::testFunctionPointerHelper;\n"
// "int a = (x.*f)(43);\n"
// % Check("f", "basic::func_t");
// QTest::newRow("MemberPointer")
// << Data(
// Class x;\n"
// typedef int (Class::*member_t);\n"
// member_t m = &Class::a;\n"
// int a = x.*m;\n"
// % Check("m", "basic::member_t");\n"
// // Continue");\n"
// % Check("there's a valid display for m");
// QTest::newRow("PassByReferenceHelper(Foo &f)
// % CheckType("f Foo &");\n"
// % Check("f.a", "12", "int");\n"
// // Continue");\n"
// ++f.a;\n"
// % CheckType("f Foo &");\n"
// % Check("f.a", "13", "int");\n"
// QTest::newRow("PassByReference")
// << Data(
// "Foo f(12);\n"
// "testPassByReferenceHelper(f);\n"
QTest::newRow("BigInt")
<< Data("#include <QString>\n"
"#include <limits>\n",
"qint64 a = Q_INT64_C(0xF020304050607080);\n"
"quint64 b = Q_UINT64_C(0xF020304050607080);\n"
"quint64 c = std::numeric_limits<quint64>::max() - quint64(1);\n"
"qint64 d = c;\n"
"QString dummy;\n"
"unused(&a, &b, &c, &d, &dummy);\n")
% Check("a", "-1143861252567568256", "@qint64")
% Check("b", "17302882821141983360", "@quint64")
% Check("c", "18446744073709551614", "@quint64")
% Check("d", "-2", "@qint64");
QTest::newRow("Hidden")
<< Data("#include <QString>\n",
"int n = 1;\n"
"{\n"
" QString n = \"2\";\n"
" {\n"
" double n = 3.5;\n"
" breakHere();\n"
" unused(&n);\n"
" }\n"
" unused(&n);\n"
"}\n"
"unused(&n);\n")
% CoreProfile()
% Check("n", "3.5", "double")
% Check("n@1", "\"2\"", "@QString")
% Check("n@2", "1", "int");
QTest::newRow("RValueReference")
<< Data("#include <utility>\n"
"struct X { X() : a(2), b(3) {} int a, b; };\n"
"X testRValueReferenceHelper1() { return X(); }\n"
"X testRValueReferenceHelper2(X &&x) { return x; }\n",
"X &&x1 = testRValueReferenceHelper1();\n"
"X &&x2 = testRValueReferenceHelper2(std::move(x1));\n"
"X &&x3 = testRValueReferenceHelper2(testRValueReferenceHelper1());\n"
"X y1 = testRValueReferenceHelper1();\n"
"X y2 = testRValueReferenceHelper2(std::move(y1));\n"
"X y3 = testRValueReferenceHelper2(testRValueReferenceHelper1());\n"
"unused(&x1, &x2, &x3, &y1, &y2, &y3);\n")
% Cxx11Profile()
% Check("x1", "", "X &")
% Check("x2", "", "X &")
% Check("x3", "", "X &")
% Check("y1", "", "X")
% Check("y2", "", "X")
% Check("y3", "", "X");
QTest::newRow("SSE")
<< Data("#include <xmmintrin.h>\n"
"#include <stddef.h>\n",
"float a[4];\n"
"float b[4];\n"
"int i;\n"
"for (i = 0; i < 4; i++) {\n"
" a[i] = 2 * i;\n"
" b[i] = 2 * i;\n"
"}\n"
"__m128 sseA, sseB;\n"
"sseA = _mm_loadu_ps(a);\n"
"sseB = _mm_loadu_ps(b);\n"
"unused(&i, &sseA, &sseB);\n")
% Profile("QMAKE_CXXFLAGS += -msse2")
% Check("sseA", "", "__m128")
% Check("sseB", "", "__m128");
//namespace qscript {
// QTest::newRow("QScript")
// << Data(
//" QScriptEngine engine;n"
//" QDateTime date = QDateTime::currentDateTime();n"
//" QScriptValue s;n"
//"n"
//" % Check("engine QScriptEngine");n"
//" % Check("s", "(invalid)", "QScriptValue");n"
//" % Check("x1 <not accessible> QString");n"
//" // Continue");n"
//" s = QScriptValue(33);n"
//" int x = s.toInt32();n"
//"n"
//" s = QScriptValue(QString("34"));n"
//" QString x1 = s.toString();n"
//"n"
//" s = engine.newVariant(QVariant(43));n"
//" QVariant v = s.toVariant();n"
//"n"
//" s = engine.newVariant(QVariant(43.0));n"
//" s = engine.newVariant(QVariant(QString("sss")));n"
//" s = engine.newDate(date);n"
//" date = s.toDateTime();n"
//" s.setProperty("a", QScriptValue());n"
//" QScriptValue d = s.data();n"
// % Check("d", "(invalid)", "QScriptValue");
// % Check("v 43 QVariant (int)");
// % Check("x", "33", "int");
// % Check("x1 "34" QString");
// QTest::newRow("WTFString")
// << Data(
// "QWebPage p;
// % Check("p", "QWebPage");
// QTest::newRow("BoostOptional1")
// << Data(
// "boost::optional<int> i0, i;
// "i = 1;
// % Check("i0", "<uninitialized>", "boost::optional<int>");
// % Check("i", "1", "boost::optional<int>");
// QTest::newRow("BoostOptional2")
// << Data(
// "boost::optional<QStringList> sl0, sl;\n"
// "sl = (QStringList() << "xxx" << "yyy");\n"
// "sl.get().append("zzz");\n"
// % Check("sl", "<uninitialized>", "boost::optional<QStringList>");
// % Check("sl <3 items> boost::optional<QStringList>");
// QTest::newRow("BoostSharedPtr")
// << Data(
// "boost::shared_ptr<int> s;\n"
// "boost::shared_ptr<int> i(new int(43));\n"
// "boost::shared_ptr<int> j = i;\n"
// "boost::shared_ptr<QStringList> sl(new QStringList(QStringList() << "HUH!"));
// % Check("s", "(null)", "boost::shared_ptr<int>");
// % Check("i", "43", "boost::shared_ptr<int>");
// % Check("j", "43", "boost::shared_ptr<int>");
// % Check("sl boost::shared_ptr<QStringList>");
// % Check("sl.data <1 items> QStringList
// QTest::newRow("BoostGregorianDate")
// << Data(
// "using namespace boost;\n"
// "using namespace gregorian;\n"
// "date d(2005, Nov, 29);\n"
// "d += months(1);\n"
// "d += months(1);\n"
// "// snap-to-end-of-month behavior kicks in:\n"
// "d += months(1);\n"
// "// Also end of the month (expected in boost)\n"
// "d += months(1);\n"
// "// Not where we started (expected in boost)\n"
// "d -= months(4);\n"
// % Check("d Tue Nov 29 2005 boost::gregorian::date");
// % Check("d Thu Dec 29 2005 boost::gregorian::date");
// % Check("d Sun Jan 29 2006 boost::gregorian::date");
// % Check("d Tue Feb 28 2006 boost::gregorian::date");
// % Check("d Fri Mar 31 2006 boost::gregorian::date");
// % Check("d Wed Nov 30 2005 boost::gregorian::date");
// QTest::newRow("BoostPosixTimeTimeDuration")
// << Data(
// "using namespace boost;\n"
// "using namespace posix_time;\n"
// "time_duration d1(1, 0, 0);\n"
// "time_duration d2(0, 1, 0);\n"
// "time_duration d3(0, 0, 1);\n"
// % Check("d1", "01:00:00", "boost::posix_time::time_duration");
// % Check("d2", "00:01:00", "boost::posix_time::time_duration");
// % Check("d3", "00:00:01", "boost::posix_time::time_duration");
// QTest::newRow("BoostBimap")
// << Data(
// "typedef boost::bimap<int, int> B;\n"
// "B b;\n"
// "b.left.insert(B::left_value_type(1, 2));\n"
// "B::left_const_iterator it = b.left.begin();\n"
// "int l = it->first;\n"
// "int r = it->second;\n"
// % Check("b <0 items> boost::B");
// % Check("b <1 items> boost::B");
// QTest::newRow("BoostPosixTimePtime")
// << Data(
// "using namespace boost;\n"
// "using namespace gregorian;\n"
// "using namespace posix_time;\n"
// "ptime p1(date(2002, 1, 10), time_duration(1, 0, 0));\n"
// "ptime p2(date(2002, 1, 10), time_duration(0, 0, 0));\n"
// "ptime p3(date(1970, 1, 1), time_duration(0, 0, 0));\n"
// % Check("p1 Thu Jan 10 01:00:00 2002 boost::posix_time::ptime");
// % Check("p2 Thu Jan 10 00:00:00 2002 boost::posix_time::ptime");
// % Check("p3 Thu Jan 1 00:00:00 1970 boost::posix_time::ptime");
// // This tests qdump__KRBase in dumpers/qttypes.py which uses
// // a static typeflag to dispatch to subclasses");
// QTest::newRow("KR")
// << Data(
// "namespace kr {\n"
//\n"
// " // FIXME: put in namespace kr, adjust qdump__KRBase in dumpers/qttypes.py\n"
// " struct KRBase\n"
// " {\n"
// " enum Type { TYPE_A, TYPE_B } type;\n"
// " KRBase(Type _type) : type(_type) {}\n"
// " };\n"
//\n"
// " struct KRA : KRBase { int x; int y; KRA():KRBase(TYPE_A), x(1), y(32) {} };\n"
// " struct KRB : KRBase { KRB():KRBase(TYPE_B) {} };\n"
// "/} // namespace kr\n"
// "KRBase *ptr1 = new KRA;\n"
// "KRBase *ptr2 = new KRB;\n"
// "ptr2 = new KRB;\n"
// % Check("ptr1", "KRBase");
// % Check("ptr1.type KRBase::TYPE_A (0) KRBase::Type");
// % Check("ptr2", "KRBase");
// % Check("ptr2.type KRBase::TYPE_B (1) KRBase::Type");
// QTest::newRow("Eigen")
// << Data(
// "using namespace Eigen;\n"
// "Vector3d test = Vector3d::Zero();\n"
// "Matrix3d myMatrix = Matrix3d::Constant(5);\n"
// "MatrixXd myDynamicMatrix(30, 10);\n"
// "myDynamicMatrix(0, 0) = 0;\n"
// "myDynamicMatrix(1, 0) = 1;\n"
// "myDynamicMatrix(2, 0) = 2;\n"
// "Matrix<double, 12, 15, ColMajor> colMajorMatrix;\n"
// "Matrix<double, 12, 15, RowMajor> rowMajorMatrix;\n"
// "int k = 0;\n"
// "for (int i = 0; i != 12; ++i) {\n"
// " for (int j = 0; j != 15; ++j) {\n"
// " colMajorMatrix(i, j) = k;\n"
// " rowMajorMatrix(i, j) = k;\n"
// " ++k;\n"
// " }\n"
// "}\n"
// QTest::newRow("https://bugreports.qt-project.org/browse/QTCREATORBUG-3611")
// "typedef unsigned char byte;\n"
// "byte f = '2';\n"
// "int *x = (int*)&f;\n"
// % Check("f 50 '2' bug3611::byte");
// QTest::newRow("https://bugreports.qt-project.org/browse/QTCREATORBUG-4904")
// << Data(
// "struct CustomStruct {\n"
// " int id;\n"
// " double dvalue;\n"
// "};",
// "QMap<int, CustomStruct> map;\n"
// "CustomStruct cs1;\n"
// "cs1.id = 1;\n"
// "cs1.dvalue = 3.14;\n"
// "CustomStruct cs2 = cs1;\n"
// "cs2.id = -1;\n"
// "map.insert(cs1.id, cs1);\n"
// "map.insert(cs2.id, cs2);\n"
// "QMap<int, CustomStruct>::iterator it = map.begin();\n"
// % Check("map <2 items> QMap<int, bug4904::CustomStruct>");
// % Check("map.0 QMapNode<int, bug4904::CustomStruct>");
// % Check("map.0.key", "-1", "int");
// % Check("map.0.value", "bug4904::CustomStruct");
// % Check("map.0.value.dvalue", "3.1400000000000001", "double");
// % Check("map.0.value.id", "-1", "int");
// QTest::newRow("// https://bugreports.qt-project.org/browse/QTCREATORBUG-5106")
// << Data(
// "class A5106\n"
// "{\n"
// "public:\n"
// " A5106(int a, int b) : m_a(a), m_b(b) {}\n"
// " virtual int test() { return 5; }\n"
// "private:\n"
// " int m_a, m_b;\n"
// "};\n"
// "class B5106 : public A5106\n"
// "{\n"
// "public:\n"
// " B5106(int c, int a, int b) : A5106(a, b), m_c(c) {}\n"
// " virtual int test() { return 4; BREAK_HERE; }\n"
// "private:\n"
// " int m_c;\n"
// "};\n"
// ,
// " B5106 b(1,2,3);\n"
// " b.test();\n"
// " b.A5106::test();\n"
// }
// // https://bugreports.qt-project.org/browse/QTCREATORBUG-5184
// // Note: The report there shows type field "QUrl &" instead of QUrl");
// // It's unclear how this can happen. It should never have been like
// // that with a stock 7.2 and any version of Creator");
// void helper(const QUrl &url)\n"
// {\n"
// QNetworkRequest request(url);\n"
// QList<QByteArray> raw = request.rawHeaderList();\n"
// % Check("raw <0 items> QList<QByteArray>");
// % Check("request", "QNetworkRequest");
// % Check("url "http://127.0.0.1/" QUrl &");
// }
// QTest::newRow("5184()
// {
// QUrl url(QString("http://127.0.0.1/"));\n"
// helper(url);\n"
// }
//namespace qc42170 {
// // http://www.qtcentre.org/threads/42170-How-to-watch-data-of-actual-type-in-debugger
// struct Object
// {
// Object(int id_) : id(id_) {}
// virtual ~Object() {}
// int id;
// };
// struct Point : Object
// {
// Point(double x_, double y_) : Object(1), x(x_), y(y_) {}
// double x, y;
// };
// struct Circle : Point
// {
// Circle(double x_, double y_, double r_) : Point(x_, y_), r(r_) { id = 2; }
// double r;
// };
// void helper(Object *obj)
// {
// % Check("obj", "qc42170::Circle");
// // Continue");
// % Check("that obj is shown as a 'Circle' object");
// unused(obj);
// }
// QTest::newRow("42170")
// << Data(
// {
// Circle *circle = new Circle(1.5, -2.5, 3.0);
// Object *obj = circle;
// helper(circle);
// helper(obj);
// }
//} // namespace qc42170
//namespace bug5799 {
// // https://bugreports.qt-project.org/browse/QTCREATORBUG-5799
// QTest::newRow("5799()
// "typedef struct { int m1; int m2; } S1;\n"
// "struct S2 : S1 { };\n"
// "typedef struct S3 { int m1; int m2; } S3;\n"
// "struct S4 : S3 { };\n"
// "S2 s2;\n"
// "s2.m1 = 5;\n"
// "S4 s4;\n"
// "s4.m1 = 5;\n"
// "S1 a1[10];\n"
// "typedef S1 Array[10];\n"
// "Array a2;\n"
// % CheckType("a1 bug5799::S1 [10]");
// % Check("a2", "bug5799::Array");
// % Check("s2", "bug5799::S2");
// % Check("s2.@1", "bug5799::S1");
// % Check("s2.@1.m1", "5", "int");
// % Check("s2.@1.m2", "int");
// % Check("s4", "bug5799::S4");
// % Check("s4.@1", "bug5799::S3");
// % Check("s4.@1.m1", "5", "int");
// % Check("s4.@1.m2", "int");
// // http://www.qtcentre.org/threads/41700-How-to-watch-STL-containers-iterators-during-debugging
// QTest::newRow("41700")
// << Data(
// {
// "using namespace std;\n"
// "typedef map<string, list<string> > map_t;\n"
// "map_t m;\n"
// "m["one"].push_back("a");\n"
// "m["one"].push_back("b");\n"
// "m["one"].push_back("c");\n"
// "m["two"].push_back("1");\n"
// "m["two"].push_back("2");\n"
// "m["two"].push_back("3");\n"
// "map_t::const_iterator it = m.begin();
// % Check("m <2 items> qc41700::map_t");
// % Check("m.0 std::pair<std::string const, std::list<std::string>>");
// % Check("m.0.first "one" std::string");
// % Check("m.0.second <3 items> std::list<std::string>");
// % Check("m.0.second.0 "a" std::string");
// % Check("m.0.second.1 "b" std::string");
// % Check("m.0.second.2 "c" std::string");
// % Check("m.1 std::pair<std::string const, std::list<std::string>>");
// % Check("m.1.first "two" std::string");
// % Check("m.1.second <3 items> std::list<std::string>");
// % Check("m.1.second.0 "1" std::string");
// % Check("m.1.second.1 "2" std::string");
// % Check("m.1.second.2 "3" std::string");
// // http://codepaster.europe.nokia.com/?id=42895
// QTest::newRow("42895()
// "void g(int c, int d)\n"
// "{\n"
// "qDebug() << c << d;\n"
// "breakHere()"\n"
//\n"
// "void f(int a, int b)\n"
// "{\n"
// " g(a, b);\n"
// "}\n"
// " f(3, 4);\n"
// % Check("c", "3", "int");
// % Check("d", "4", "int");
// % Check("there are frames for g and f in the stack view");
// // https://bugreports.qt-project.org/browse/QTCREATORBUG-6465
// QTest::newRow("6465()\n"
// {\n"
// typedef char Foo[20];\n"
// Foo foo = "foo";\n"
// char bar[20] = "baz";
//namespace bug6857 {
// class MyFile : public QFile
// {
// public:
// MyFile(const QString &fileName)
// : QFile(fileName) {}
// };
// QTest::newRow("6857")
// << Data(
// MyFile file("/tmp/tt");
// file.setObjectName("A file");
// % Check("file bug6857::MyFile");
// % Check("file.@1 "/tmp/tt" QFile");
// % Check("file.@1.@1.@1 "A file" QObject");
//namespace bug6858 {
// class MyFile : public QFile\n"
// {\n"
// public:\n"
// MyFile(const QString &fileName)\n"
// : QFile(fileName) {}\n"
// };\n"
// QTest::newRow("6858")
// << Data(
// MyFile file("/tmp/tt");\n"
// file.setObjectName("Another file");\n"
// QFile *pfile = &file;\n"
// % Check("pfile bug6858::MyFile");
// % Check("pfile.@1 "/tmp/tt" QFile");
// % Check("pfile.@1.@1.@1 "Another file" QObject");
//namespace bug6863 {
// class MyObject : public QObject\n"
// {\n"
// Q_OBJECT\n"
// public:\n"
// MyObject() {}\n"
// };\n"
//\n"
// void setProp(QObject *obj)\n"
// {\n"
// obj->setProperty("foo", "bar");
// % Check("obj.[QObject].properties", "<2", "items>");
// // Continue");
// unused(&obj);
// }
// QTest::newRow("6863")
// << Data(
// {
// QFile file("/tmp/tt");\n"
// setProp(&file);\n"
// MyObject obj;\n"
// setProp(&obj);\n"
// }\n"
//}
QTest::newRow("bug6933")
<< Data("struct Base\n"
"{\n"
" Base() : a(21) {}\n"
" virtual ~Base() {}\n"
" int a;\n"
"};\n"
"struct Derived : public Base\n"
"{\n"
" Derived() : b(42) {}\n"
" int b;\n"
"};\n"
"Derived d;\n"
"Base *b = &d;\n"
"unused(&d, &b);\n")
% CheckType("b.[vptr]", "")
% Check("b.a", "21", "int")
% Check("b.b", "42", "int");
QTest::newRow("valist")
<< Data("#include <stdarg.h>\n"
"void breakHere();\n"
"void test(const char *format, ...)\n"
"{\n"
" va_list arg;\n"
" va_start(arg, format);\n"
" int i = va_arg(arg, int);\n"
" double f = va_arg(arg, double);\n"
" unused(&i, &f);\n"
" va_end(arg);\n"
" breakHere();\n"
"}\n",
"test(\"abc\", 1, 2.0);\n")
% Check("i", "1", "int")
% Check("f", "2", "double");
QTest::newRow("gdb13393")
<< Data(
"struct Base {\n"
" Base() : a(1) {}\n"
" virtual ~Base() {} // Enforce type to have RTTI\n"
" int a;\n"
"};\n"
"struct Derived : public Base {\n"
" Derived() : b(2) {}\n"
" int b;\n"
"};\n"
"struct S\n"
"{\n"
" Base *ptr;\n"
" const Base *ptrConst;\n"
" Base &ref;\n"
" const Base &refConst;\n"
" S(Derived &d)\n"
" : ptr(&d), ptrConst(&d), ref(d), refConst(d)\n"
" {}\n"
" };\n"
,
"Derived d;\n"
"S s(d);\n"
"Base *ptr = &d;\n"
"const Base *ptrConst = &d;\n"
"Base &ref = d;\n"
"const Base &refConst = d;\n"
"Base **ptrToPtr = &ptr;\n"
"#if USE_BOOST\n"
"boost::shared_ptr<Base> sharedPtr(new Derived());\n"
"#else\n"
"int sharedPtr = 1;\n"
"#endif\n"
"unused(&ptrConst, &ref, &refConst, &ptrToPtr, &sharedPtr);\n")
% Check("d", "", "Derived")
% Check("d.@1", "[Base]", "", "Base")
% Check("d.b", "2", "int")
% Check("ptr", "", "Derived")
% Check("ptr.@1", "[Base]", "", "Base")
% Check("ptr.@1.a", "1", "int")
% Check("ptrConst", "", "Derived")
% Check("ptrConst.@1", "[Base]", "", "Base")
% Check("ptrConst.b", "2", "int")
% Check("ptrToPtr", "", "Derived")
//% CheckType("ptrToPtr.[vptr]", " ")
% Check("ptrToPtr.@1.a", "1", "int")
% Check("ref", "", "Derived &")
//% CheckType("ref.[vptr]", "")
% Check("ref.@1.a", "1", "int")
% Check("refConst", "", "Derived &")
//% CheckType("refConst.[vptr]", "")
% Check("refConst.@1.a", "1", "int")
% Check("s", "", "S")
% Check("s.ptr", "", "Derived")
% Check("s.ptrConst", "", "Derived")
% Check("s.ref", "", "Derived &")
% Check("s.refConst", "", "Derived &")
% Check("sharedPtr", "1", "int");
// http://sourceware.org/bugzilla/show_bug.cgi?id=10586. fsf/MI errors out
// on -var-list-children on an anonymous union. mac/MI was fixed in 2006");
// The proposed fix has been reported to crash gdb steered from eclipse");
// http://sourceware.org/ml/gdb-patches/2011-12/msg00420.html
QTest::newRow("gdb10586mi")
<< Data("struct Test {\n"
" struct { int a; float b; };\n"
" struct { int c; float d; };\n"
"} v = {{1, 2}, {3, 4}};\n"
"unused(&v);\n")
% Check("v", "", "Test")
% Check("v.a", "1", "int");
QTest::newRow("gdb10586eclipse")
<< Data("struct { int x; struct { int a; }; struct { int b; }; } v = {1, {2}, {3}};\n"
"struct S { int x, y; } n = {10, 20};\n"
"unused(&v, &n);\n")
% Check("v", "", "{...}")
% Check("n", "", "S")
% Check("v.a", "2", "int")
% Check("v.b", "3", "int")
% Check("v.x", "1", "int")
% Check("n.x", "10", "int")
% Check("n.y", "20", "int");
}
2009-04-06 16:30:11 +02:00
2009-04-06 16:30:11 +02:00
int main(int argc, char *argv[])
{
QApplication app(argc, argv);
tst_Dumpers test;
2009-04-06 16:30:11 +02:00
return QTest::qExec(&test, argc, argv);
}
#include "tst_dumpers.moc"