aboutsummaryrefslogtreecommitdiffstats
path: root/tests/samplebinding
diff options
context:
space:
mode:
authorHugo Lima <hugo.lima@openbossa.org>2010-02-03 16:11:34 -0200
committerHugo Lima <hugo.lima@openbossa.org>2010-02-03 16:37:15 -0200
commitdfa2689d3868fe37f7142367fbcea426f3772dbd (patch)
tree6193db27edc2d0eae148c277be24f1b61ceb4ed2 /tests/samplebinding
parent7b6b5aebc499c79c59f7fd7f3124037991ab555c (diff)
Fix issue triggerd when an code injection on constructor tries to use
the object being constructed before it was fully constructed. For this use case, use inject-code with position=end.
Diffstat (limited to 'tests/samplebinding')
-rw-r--r--tests/samplebinding/typesystem_sample.xml11
-rwxr-xr-xtests/samplebinding/useraddedctor_test.py40
2 files changed, 50 insertions, 1 deletions
diff --git a/tests/samplebinding/typesystem_sample.xml b/tests/samplebinding/typesystem_sample.xml
index a19eb6194..32e29742d 100644
--- a/tests/samplebinding/typesystem_sample.xml
+++ b/tests/samplebinding/typesystem_sample.xml
@@ -725,7 +725,16 @@
</value-type>
<value-type name="Time"/>
- <value-type name="Size"/>
+ <value-type name="Size">
+ <add-function signature="Size(const char*)">
+ <inject-code class="target" position="beginning">
+ %0 = new %TYPE();
+ </inject-code>
+ <inject-code class="target" position="end">
+ Shiboken::AutoDecRef result(PyObject_CallMethod(%PYSELF, "setHeight", "i", 2));
+ </inject-code>
+ </add-function>
+ </value-type>
<value-type name="MapUser"/>
<value-type name="PairUser"/>
<value-type name="ListUser"/>
diff --git a/tests/samplebinding/useraddedctor_test.py b/tests/samplebinding/useraddedctor_test.py
new file mode 100755
index 000000000..90ac6531c
--- /dev/null
+++ b/tests/samplebinding/useraddedctor_test.py
@@ -0,0 +1,40 @@
+#!/usr/bin/env python
+# -*- coding: utf-8 -*-
+#
+# This file is part of the Shiboken Python Bindings Generator project.
+#
+# Copyright (C) 2010 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 Lesser General Public License
+# version 2.1 as published by the Free Software Foundation. Please
+# review the following information to ensure the GNU Lesser General
+# Public License version 2.1 requirements will be met:
+# http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
+# #
+# 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
+# Lesser General Public License for more details.
+#
+# You should have received a copy of the GNU Lesser 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
+
+'''Test cases for user added constructors'''
+
+import unittest
+from sample import *
+
+class PointTest(unittest.TestCase):
+ def testUsingSelfOnCtor(self):
+ # This is a user added ctor and no errors should happen!
+ s = Size("oi")
+ self.assertEqual(s.height(), 2)
+
+if __name__ == '__main__':
+ unittest.main()
+