aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorHugo Parente Lima <hugo.lima@openbossa.org>2010-04-29 11:39:34 -0300
committerHugo Parente Lima <hugo.pl@gmail.com>2012-03-09 19:10:01 -0300
commit4bab4ec7e92fa9cc758d30ad8ff7887760fbbdbb (patch)
tree5db033c9b4c23138c314d2a0c6b8776ff168363a /tests
parentca3eac504857ade114fadb614631fe6ab78c5aad (diff)
Added tests for template instanciations using enum values, all under a nice namespace.
Reviewer: Luciano Wolf <luciano.wolf@openbossa.org> Reviewer: Renato Araújo <renato.araujo@openbossa.org>
Diffstat (limited to 'tests')
-rw-r--r--tests/CMakeLists.txt1
-rw-r--r--tests/testtemplates.cpp73
-rw-r--r--tests/testtemplates.h36
3 files changed, 110 insertions, 0 deletions
diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt
index 4b8290eec..9fc31be55 100644
--- a/tests/CMakeLists.txt
+++ b/tests/CMakeLists.txt
@@ -27,3 +27,4 @@ declare_test(testreverseoperators)
declare_test(testtoposort)
declare_test(testfunctiontag)
declare_test(testvoidarg)
+declare_test(testtemplates)
diff --git a/tests/testtemplates.cpp b/tests/testtemplates.cpp
new file mode 100644
index 000000000..d52eed15a
--- /dev/null
+++ b/tests/testtemplates.cpp
@@ -0,0 +1,73 @@
+/*
+* This file is part of the API Extractor project.
+*
+* Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
+*
+* Contact: PySide team <contact@pyside.org>
+*
+* This program is free software; you can redistribute it and/or
+* modify it under the terms of the GNU General Public License
+* version 2 as published by the Free Software Foundation.
+*
+* This program is distributed in the hope that it will be useful, but
+* WITHOUT ANY WARRANTY; without even the implied warranty of
+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+* General Public License for more details.
+*
+* You should have received a copy of the GNU General Public License
+* along with this program; if not, write to the Free Software
+* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+* 02110-1301 USA
+*
+*/
+
+#include "testtemplates.h"
+#include <QtTest/QTest>
+#include "testutil.h"
+
+void TestTemplates::testTemplateOnContainers()
+{
+ const char cppCode[] = "\
+ struct Base {};\
+ namespace Namespace {\
+ enum SomeEnum { E1, E2 };\
+ template<SomeEnum type> struct A {\
+ A<type> foo(const QList<A<type> >& a);\
+ };\
+ typedef A<E1> B;\
+ }\
+ ";
+ const char xmlCode[] = "\
+ <typesystem package=\"Package\">\
+ <container-type name='QList' type='list'/> \
+ <namespace-type name='Namespace' />\
+ <enum-type name='Namespace::SomeEnum'/>\
+ <object-type name='Base' />\
+ <object-type name='Namespace::A' generate='no'/> \
+ <object-type name='Namespace::B'/> \
+ </typesystem>";
+
+ TestUtil t(cppCode, xmlCode, false);
+ AbstractMetaClassList classes = t.builder()->classes();
+
+ AbstractMetaClass* classB = classes.findClass("B");
+ QVERIFY(!classB->baseClass());
+ QVERIFY(classB->baseClassName().isNull());
+ const AbstractMetaFunction* func = classB->findFunction("foo");
+ AbstractMetaType* argType = func->arguments().first()->type();
+ QCOMPARE(argType->instantiations().count(), 1);
+ QCOMPARE(argType->typeEntry()->qualifiedCppName(), QString("QList"));
+
+ AbstractMetaType* instance1 = argType->instantiations().first();
+ QCOMPARE(instance1->instantiations().count(), 1);
+ QCOMPARE(instance1->typeEntry()->qualifiedCppName(), QString("Namespace::A"));
+
+ AbstractMetaType* instance2 = instance1->instantiations().first();
+ QCOMPARE(instance2->instantiations().count(), 0);
+ QCOMPARE(instance2->typeEntry()->qualifiedCppName(), QString("Namespace::E1"));
+}
+
+QTEST_APPLESS_MAIN(TestTemplates)
+
+#include "testtemplates.moc"
+
diff --git a/tests/testtemplates.h b/tests/testtemplates.h
new file mode 100644
index 000000000..5c6e85a06
--- /dev/null
+++ b/tests/testtemplates.h
@@ -0,0 +1,36 @@
+/*
+* This file is part of the API Extractor project.
+*
+* Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
+*
+* Contact: PySide team <contact@pyside.org>
+*
+* This program is free software; you can redistribute it and/or
+* modify it under the terms of the GNU General Public License
+* version 2 as published by the Free Software Foundation.
+*
+* This program is distributed in the hope that it will be useful, but
+* WITHOUT ANY WARRANTY; without even the implied warranty of
+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+* General Public License for more details.
+*
+* You should have received a copy of the GNU General Public License
+* along with this program; if not, write to the Free Software
+* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+* 02110-1301 USA
+*
+*/
+
+#ifndef TESTTEMPLATES_H
+#define TESTTEMPLATES_H
+
+#include <QObject>
+
+class TestTemplates : public QObject
+{
+ Q_OBJECT
+private slots:
+ void testTemplateOnContainers();
+};
+
+#endif