From dda325de53c44decafe8f95a803e561b66dbe43f Mon Sep 17 00:00:00 2001 From: Marcelo Lira Date: Mon, 25 Jul 2011 16:28:10 -0300 Subject: Fixed TypeEntry::isCppPrimitive() to process typedefs and "long long" type. And added an unit test. --- tests/CMakeLists.txt | 1 + tests/testnumericaltypedef.cpp | 71 ++++++++++++++++++++++++++++++++++++++++++ tests/testnumericaltypedef.h | 36 +++++++++++++++++++++ 3 files changed, 108 insertions(+) create mode 100644 tests/testnumericaltypedef.cpp create mode 100644 tests/testnumericaltypedef.h (limited to 'tests') diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index 02537dea9..d2e84c601 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -31,6 +31,7 @@ declare_test(testmodifyfunction) declare_test(testmultipleinheritance) declare_test(testnamespace) declare_test(testnestedtypes) +declare_test(testnumericaltypedef) declare_test(testprimitivetypetag) declare_test(testrefcounttag) declare_test(testreferencetopointer) diff --git a/tests/testnumericaltypedef.cpp b/tests/testnumericaltypedef.cpp new file mode 100644 index 000000000..c479b8d69 --- /dev/null +++ b/tests/testnumericaltypedef.cpp @@ -0,0 +1,71 @@ +/* +* This file is part of the API Extractor project. +* +* Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). +* +* Contact: PySide team +* +* 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 "testnumericaltypedef.h" +#include +#include "testutil.h" + +void TestNumericalTypedef::testNumericalTypedef() +{ + const char* cppCode ="\ + typedef double real;\ + void funcDouble(double);\ + void funcReal(real);\ + "; + const char* xmlCode = "\ + \ + \ + \ + \ + \ + "; + TestUtil t(cppCode, xmlCode, false); + + QCOMPARE(t.builder()->globalFunctions().size(), 2); + const AbstractMetaFunction* funcDouble = t.builder()->globalFunctions().first(); + QVERIFY(funcDouble); + const AbstractMetaFunction* funcReal = t.builder()->globalFunctions().last(); + QVERIFY(funcReal); + + if (funcDouble->name() == "funcReal") + std::swap(funcDouble, funcReal); + + QCOMPARE(funcDouble->minimalSignature(), QString("funcDouble(double)")); + QCOMPARE(funcReal->minimalSignature(), QString("funcReal(real)")); + + const AbstractMetaType* doubleType = funcDouble->arguments().first()->type(); + QVERIFY(doubleType); + QCOMPARE(doubleType->cppSignature(), QString("double")); + QVERIFY(doubleType->isPrimitive()); + QVERIFY(doubleType->typeEntry()->isCppPrimitive()); + + const AbstractMetaType* realType = funcReal->arguments().first()->type(); + QVERIFY(realType); + QCOMPARE(realType->cppSignature(), QString("real")); + QVERIFY(realType->isPrimitive()); + QVERIFY(realType->typeEntry()->isCppPrimitive()); +} + +QTEST_APPLESS_MAIN(TestNumericalTypedef) + +#include "testnumericaltypedef.moc" diff --git a/tests/testnumericaltypedef.h b/tests/testnumericaltypedef.h new file mode 100644 index 000000000..ee11e63e2 --- /dev/null +++ b/tests/testnumericaltypedef.h @@ -0,0 +1,36 @@ +/* +* This file is part of the API Extractor project. +* +* Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). +* +* Contact: PySide team +* +* 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 TESTNUMERICALTYPEDEF_H +#define TESTNUMERICALTYPEDEF_H + +#include + +class TestNumericalTypedef : public QObject +{ + Q_OBJECT + private slots: + void testNumericalTypedef(); +}; + +#endif -- cgit v1.2.3