From 73f6ac4faafed5c8c275ff01a22a53bfbc7fc515 Mon Sep 17 00:00:00 2001 From: Hugo Lima Date: Tue, 20 Oct 2009 10:08:26 -0200 Subject: Implemented a signature parser for the AddedFunction class. --- tests/CMakeLists.txt | 1 + tests/testaddfunction.cpp | 80 +++++++++++++++++++++++++++++++++++++++++++++++ tests/testaddfunction.h | 36 +++++++++++++++++++++ 3 files changed, 117 insertions(+) create mode 100644 tests/testaddfunction.cpp create mode 100644 tests/testaddfunction.h (limited to 'tests') diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index 43a4d51e3..a9d9ddc45 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -11,3 +11,4 @@ declare_test(testabstractmetaclass) declare_test(testabstractmetatype) declare_test(testenum) declare_test(testmodifydocumentation) +declare_test(testaddfunction) diff --git a/tests/testaddfunction.cpp b/tests/testaddfunction.cpp new file mode 100644 index 000000000..a47cd28af --- /dev/null +++ b/tests/testaddfunction.cpp @@ -0,0 +1,80 @@ +/* +* This file is part of the API Extractor project. +* +* Copyright (C) 2009 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 "testaddfunction.h" +#include +#include "testutil.h" + + +void TestAddFunction::testParsingFuncNameAndConstness() +{ + const char sig1[] = "func(type1, const type2, const type3* const)"; + AddedFunction f1(sig1, "void"); + QCOMPARE(f1.name(), QString("func")); + AddedFunction::TypeInfo retval = f1.returnType(); + QCOMPARE(retval.name, QString("void")); + QCOMPARE(retval.indirections, 0); + QCOMPARE(retval.isConst, false); + QCOMPARE(retval.isRef, false); + + const char sig2[] = " _fu__nc_ ( type1, const type2, const Abc * > * *, const type3* const ) const "; + AddedFunction f2(sig2, "const Abc * > * *"); + QCOMPARE(f2.name(), QString("_fu__nc_")); + retval = f2.returnType(); + QCOMPARE(retval.name, QString("Abc * >")); + QCOMPARE(retval.indirections, 2); + QCOMPARE(retval.isConst, true); + QCOMPARE(retval.isRef, false); + QList< AddedFunction::TypeInfo > args = f2.arguments(); + QCOMPARE(args.count(), 4); + retval = args[2]; + QCOMPARE(retval.name, QString("Abc * >")); + QCOMPARE(retval.indirections, 2); + QCOMPARE(retval.isConst, true); + QCOMPARE(retval.isRef, false); + + +} + +void TestAddFunction::testAddFunction() +{ +#if 0 + const char cppCode[] = "struct A { void a(); };"; + const char xmlCode[] = "\ + \ + \ + \ + \ + \ + "; + TestUtil t(cppCode, xmlCode); + AbstractMetaClassList classes = t.builder()->classes(); + AbstractMetaClass* classA = classes.findClass("A"); + QVERIFY(classA); + QCOMPARE(classA->functions().count(), 2); // default ctor and the added function +#endif +} + +QTEST_APPLESS_MAIN(TestAddFunction) + +#include "testaddfunction.moc" diff --git a/tests/testaddfunction.h b/tests/testaddfunction.h new file mode 100644 index 000000000..7fe07d6a4 --- /dev/null +++ b/tests/testaddfunction.h @@ -0,0 +1,36 @@ +/* +* This file is part of the API Extractor project. +* +* Copyright (C) 2009 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 TESTADDFUNCTION_H +#define TESTADDFUNCTION_H +#include + +class TestAddFunction : public QObject +{ + Q_OBJECT +private slots: + void testParsingFuncNameAndConstness(); + void testAddFunction(); +}; + +#endif \ No newline at end of file -- cgit v1.2.3