aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorMarcelo Lira <marcelo.lira@openbossa.org>2009-10-26 20:24:24 -0300
committerMarcelo Lira <marcelo.lira@openbossa.org>2009-10-26 20:24:24 -0300
commit4329d974ec98b74b74358718cf17055a00672e2b (patch)
tree1b17e8b5f30afc15b78f5f962ed6aa44b7d911de /tests
parenta7880bedd92bfed75908c055eae641610f6f6ca2 (diff)
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.
Diffstat (limited to 'tests')
-rw-r--r--tests/CMakeLists.txt1
-rw-r--r--tests/testconversionruletag.cpp57
-rw-r--r--tests/testconversionruletag.h35
3 files changed, 93 insertions, 0 deletions
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 <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 "testconversionruletag.h"
+#include <QtTest/QTest>
+#include "testutil.h"
+#include <QFile>
+#include <QTemporaryFile>
+
+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 = "\
+ <typesystem package=\"Foo\">\
+ <value-type name='A'>\
+ <conversion-rule file='"+ file.fileName() +"' />\
+ </value-type>\
+ </typesystem>";
+ 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 <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 TESTCONVERSIONRULE_H
+#define TESTCONVERSIONRULE_H
+#include <QObject>
+
+class TestConversionRuleTag : public QObject
+{
+ Q_OBJECT
+private slots:
+ void testConversionRuleTag();
+};
+
+#endif \ No newline at end of file