From 1a989347e029e9f90b5c2c727243a02d1c1aa496 Mon Sep 17 00:00:00 2001 From: Marcelo Lira Date: Mon, 25 Jul 2011 14:37:48 -0300 Subject: Added a test for operator methods removal. --- tests/CMakeLists.txt | 1 + tests/testremoveoperatormethod.cpp | 115 +++++++++++++++++++++++++++++++++++++ tests/testremoveoperatormethod.h | 36 ++++++++++++ 3 files changed, 152 insertions(+) create mode 100644 tests/testremoveoperatormethod.cpp create mode 100644 tests/testremoveoperatormethod.h (limited to 'tests') diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index d2e84c601..ace8ab034 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -37,6 +37,7 @@ declare_test(testrefcounttag) declare_test(testreferencetopointer) declare_test(testremovefield) declare_test(testremoveimplconv) +declare_test(testremoveoperatormethod) declare_test(testresolvetype) declare_test(testreverseoperators) declare_test(testtemplates) diff --git a/tests/testremoveoperatormethod.cpp b/tests/testremoveoperatormethod.cpp new file mode 100644 index 000000000..35caea788 --- /dev/null +++ b/tests/testremoveoperatormethod.cpp @@ -0,0 +1,115 @@ +/* +* 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 "testremoveoperatormethod.h" +#include +#include "testutil.h" + +void TestRemoveOperatorMethod::testRemoveOperatorMethod() +{ + const char* cppCode ="\ + struct A {\ + A& operator>>(char&);\ + A& operator>>(char*);\ + A& operator>>(signed short&);\ + A& operator>>(unsigned short&);\ + A& operator>>(signed int&);\ + A& operator>>(unsigned int&);\ + A& operator>>(signed long&);\ + A& operator>>(unsigned long&);\ + A& operator>>(__int64&);\ + A& operator>>(unsigned __int64&);\ + A& operator>>(float&);\ + A& operator>>(double&);\ + A& operator>>(Char&);\ + A& operator>>(ByteArray&);\ + A& operator>>(String&);\ + };\ + struct Char {};\ + struct ByteArray {};\ + struct String {};\ + "; + const char* xmlCode = "\ + \ + \ + \ + \ + \ + \ + \ + \ + \ + \ + \ + \ + \ + \ + \ + \ + \ + \ + \ + \ + \ + \ + \ + \ + \ + \ + \ + \ + \ + \ + \ + "; + TestUtil t(cppCode, xmlCode, false); + AbstractMetaClassList classes = t.builder()->classes(); + AbstractMetaClass* classA = classes.findClass("A"); + QVERIFY(classA); + QCOMPARE(classA->functions().size(), 15); + QStringList removedSignatures; + removedSignatures.append("operator>>(char&)"); + removedSignatures.append("operator>>(char*)"); + removedSignatures.append("operator>>(signed short&)"); + removedSignatures.append("operator>>(unsigned short&)"); + removedSignatures.append("operator>>(signed int&)"); + removedSignatures.append("operator>>(unsigned int&)"); + removedSignatures.append("operator>>(signed long&)"); + removedSignatures.append("operator>>(unsigned long&)"); + removedSignatures.append("operator>>(__int64&)"); + removedSignatures.append("operator>>(unsigned __int64&)"); + removedSignatures.append("operator>>(float&)"); + removedSignatures.append("operator>>(double&)"); + removedSignatures.append("operator>>(Char&)"); + removedSignatures.append("operator>>(String&)"); + int notRemoved = classA->functions().size(); + foreach (const AbstractMetaFunction* f, classA->functions()) { + QCOMPARE(f->isModifiedRemoved(), bool(removedSignatures.contains(f->minimalSignature()))); + notRemoved -= int(f->isModifiedRemoved()); + } + QCOMPARE(notRemoved, 2); +} + +QTEST_APPLESS_MAIN(TestRemoveOperatorMethod) + +#include "testremoveoperatormethod.moc" diff --git a/tests/testremoveoperatormethod.h b/tests/testremoveoperatormethod.h new file mode 100644 index 000000000..1833ff11c --- /dev/null +++ b/tests/testremoveoperatormethod.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 TESTREMOVEOPERATORMETHOD_H +#define TESTREMOVEOPERATORMETHOD_H + +#include + +class TestRemoveOperatorMethod : public QObject +{ + Q_OBJECT + private slots: + void testRemoveOperatorMethod(); +}; + +#endif -- cgit v1.2.3