From 4329d974ec98b74b74358718cf17055a00672e2b Mon Sep 17 00:00:00 2001 From: Marcelo Lira Date: Mon, 26 Oct 2009 20:24:24 -0300 Subject: conversion-rule tag now works inside value-type and object-type tags. To access the conversion rule, use the new method TypeEntry->conversionRule NOTE: this commit is a modification of code produced by Hugo Parente. --- tests/CMakeLists.txt | 1 + tests/testconversionruletag.cpp | 57 +++++++++++++++++++++++++++++++++++++++++ tests/testconversionruletag.h | 35 +++++++++++++++++++++++++ 3 files changed, 93 insertions(+) create mode 100644 tests/testconversionruletag.cpp create mode 100644 tests/testconversionruletag.h (limited to 'tests') diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index a9d9ddc45..6304c2433 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -12,3 +12,4 @@ declare_test(testabstractmetatype) declare_test(testenum) declare_test(testmodifydocumentation) declare_test(testaddfunction) +declare_test(testconversionruletag) diff --git a/tests/testconversionruletag.cpp b/tests/testconversionruletag.cpp new file mode 100644 index 000000000..609a806bd --- /dev/null +++ b/tests/testconversionruletag.cpp @@ -0,0 +1,57 @@ +/* +* 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 "testconversionruletag.h" +#include +#include "testutil.h" +#include +#include + +void TestConversionRuleTag::testConversionRuleTag() +{ + // temp file used later + const char conversionData[] = "Hi! I'm a conversion rule."; + QTemporaryFile file; + file.open(); + QCOMPARE(file.write(conversionData), qint64(sizeof(conversionData)-1)); + file.close(); + + const char cppCode[] = "struct A {};"; + QString xmlCode = "\ + \ + \ + \ + \ + "; + TestUtil t(cppCode, xmlCode.toLocal8Bit().data()); + AbstractMetaClassList classes = t.builder()->classes(); + AbstractMetaClass* classA = classes.findClass("A"); + QVERIFY(classA); + const ComplexTypeEntry* typeEntry = classA->typeEntry(); + QVERIFY(typeEntry->hasConversionRule()); + QCOMPARE(typeEntry->conversionRule(), QString(conversionData)); +} + +QTEST_APPLESS_MAIN(TestConversionRuleTag) + +#include "testconversionruletag.moc" diff --git a/tests/testconversionruletag.h b/tests/testconversionruletag.h new file mode 100644 index 000000000..afab68889 --- /dev/null +++ b/tests/testconversionruletag.h @@ -0,0 +1,35 @@ +/* +* 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 TESTCONVERSIONRULE_H +#define TESTCONVERSIONRULE_H +#include + +class TestConversionRuleTag : public QObject +{ + Q_OBJECT +private slots: + void testConversionRuleTag(); +}; + +#endif \ No newline at end of file -- cgit v1.2.3