1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243
|
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# This file is part of the Shiboken Python Bindings Generator 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 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 modified virtual methods.'''
import unittest
from sample import VirtualMethods, Str
class ExtendedVirtualMethods(VirtualMethods):
def __init__(self):
VirtualMethods.__init__(self)
self.name_called = False
self.sum0_called = False
self.sum1_called = False
self.sum2_called = False
self.sum3_called = False
self.sum4_called = False
self.sumThree_called = False
self.callMe_called = 0
self.multiplier = 12345
def sum0(self, a0, a1, a2):
self.sum0_called = True
return VirtualMethods.sumThree(self, a0, a1, a2) * self.multiplier
def sumThree(self, a0, a1, a2):
self.sumThree_called = True
return VirtualMethods.sumThree(self, a0, a1, a2) * self.multiplier
def sum1(self, a0, a1, a2):
self.sum1_called = True
return VirtualMethods.sum1(self, a0, a1, a2) * self.multiplier
def sum2(self, a0, a1):
self.sum2_called = True
return VirtualMethods.sum2(self, a0, a1) * self.multiplier
def sum3(self, a0, a1):
self.sum3_called = True
return VirtualMethods.sum3(self, a0, a1) * self.multiplier
def sum4(self, a0, a1):
self.sum4_called = True
return VirtualMethods.sum4(self, a0, a1) * self.multiplier
def name(self):
self.name_called = True
return Str('ExtendedVirtualMethods')
def callMe(self):
self.callMe_called += 1
def getMargins(self):
return tuple([m*2 for m in VirtualMethods.getMargins(self)])
class VirtualMethodsTest(unittest.TestCase):
'''Test case for modified virtual methods.'''
def setUp(self):
self.vm = VirtualMethods()
self.evm = ExtendedVirtualMethods()
def tearDown(self):
del self.vm
del self.evm
def testModifiedVirtualMethod0(self):
'''Renamed virtual method.'''
a0, a1, a2 = 2, 3, 5
result0 = self.vm.callSum0(a0, a1, a2)
result1 = self.vm.sumThree(a0, a1, a2)
self.assertEqual(result0, a0 + a1 + a2)
self.assertEqual(result0, result1)
self.assertRaises(AttributeError, getattr, self.vm, 'sum0')
def testReimplementedModifiedVirtualMethod0(self):
'''Override of a renamed virtual method.'''
a0, a1, a2 = 2, 3, 5
result0 = self.vm.callSum0(a0, a1, a2)
result1 = self.vm.sumThree(a0, a1, a2)
result2 = self.evm.callSum0(a0, a1, a2)
self.assertEqual(result0, result1)
self.assertEqual(result0 * self.evm.multiplier, result2)
self.assert_(self.evm.sumThree_called)
self.assertFalse(self.evm.sum0_called)
def testModifiedVirtualMethod1(self):
'''Virtual method with three arguments and the last one
changed to have the default value set to 1000.'''
a0, a1, a2 = 2, 3, 5
result0 = self.vm.sum1(a0, a1)
self.assertEqual(result0, a0 + a1 + 1000)
result1 = self.vm.sum1(a0, a1, a2)
result2 = self.vm.callSum1(a0, a1, a2)
self.assertEqual(result1, result2)
def testReimplementedModifiedVirtualMethod1(self):
'''Override of the virtual method with three arguments and
the last one changed to have the default value set to 1000.'''
a0, a1 = 2, 3
result0 = self.vm.sum1(a0, a1)
result1 = self.evm.callSum1(a0, a1, 1000)
self.assertEqual(result0 * self.evm.multiplier, result1)
self.assert_(self.evm.sum1_called)
def testModifiedVirtualMethod2(self):
'''Virtual method originally with three arguments, the last
one was removed and the default value set to 2000.'''
a0, a1 = 1, 2
result0 = self.vm.sum2(a0, a1)
self.assertEqual(result0, a0 + a1 + 2000)
result1 = self.vm.sum2(a0, a1)
result2 = self.vm.callSum2(a0, a1, 2000)
self.assertEqual(result1, result2)
self.assertRaises(TypeError, self.vm.sum2, 1, 2, 3)
def testReimplementedModifiedVirtualMethod2(self):
'''Override of the virtual method originally with three arguments,
the last one was removed and the default value set to 2000.'''
a0, a1 = 1, 2
ignored = 54321
result0 = self.vm.sum2(a0, a1)
result1 = self.evm.callSum2(a0, a1, ignored)
self.assertEqual(result0 * self.evm.multiplier, result1)
self.assert_(self.evm.sum2_called)
def testModifiedVirtualMethod3(self):
'''Virtual method originally with three arguments have the second
one removed and replaced by custom code that replaces it by the sum
of the first and the last arguments.'''
a0, a1 = 1, 2
result0 = self.vm.sum3(a0, a1)
self.assertEqual(result0, a0 + (a0 + a1) + a1)
result1 = self.vm.callSum3(a0, 10, a1)
self.assertNotEqual(result0, result1)
result2 = self.vm.callSum3(a0, a0 + a1, a1)
self.assertEqual(result0, result2)
self.assertRaises(TypeError, self.vm.sum3, 1, 2, 3)
def testReimplementedModifiedVirtualMethod3(self):
'''Override of the virtual method originally with three arguments
have the second one removed and replaced by custom code that
replaces it by the sum of the first and the last arguments.'''
a0, a1 = 1, 2
ignored = 54321
result0 = self.vm.sum3(a0, a1)
result1 = self.evm.callSum3(a0, ignored, a1)
self.assertEqual(result0 * self.evm.multiplier, result1)
self.assert_(self.evm.sum3_called)
def testModifiedVirtualMethod4(self):
'''Virtual method originally with three arguments, the
last one was removed and the default value set to 3000.'''
a0, a1 = 1, 2
default_value = 3000
result0 = self.vm.sum4(a0, a1)
self.assertEqual(result0, a0 + default_value + a1)
removed_arg_value = 100
result1 = self.vm.callSum4(a0, removed_arg_value, a1)
self.assertEqual(result1, a0 + removed_arg_value + a1)
self.assertRaises(TypeError, self.vm.sum4, 1, 2, 3)
def testReimplementedModifiedVirtualMethod4(self):
'''Override of the virtual method originally with three arguments,
the last one was removed and the default value set to 3000.
The method was modified with code injection on the binding override
(the one that receives calls from C++ with the original signature
and forwards it to Python overrides) that subtracts the value of the
second argument (removed in Python) from the value of the first
before sending them to Python.'''
a0, a1 = 1, 2
removed_arg_value = 2011
default_value = 3000
result = self.evm.callSum4(a0, removed_arg_value, a1)
self.assertEqual(result, (a0 - removed_arg_value + a1 + default_value) * self.evm.multiplier)
self.assert_(self.evm.sum4_called)
def testOverridenMethodResultModification(self):
'''Injected code modifies the result of a call to a virtual
method overridden in Python.'''
orig_name = self.vm.callName()
self.assertEqual(orig_name, 'VirtualMethods')
name = self.evm.callName()
self.assertEqual(name, 'PimpedExtendedVirtualMethods')
self.assertEqual(name, Str('PimpedExtendedVirtualMethods'))
self.assert_(self.evm.name_called)
def testInjectCodeCallsPythonVirtualMethodOverride(self):
'''When injected code calls the Python override by itself
no code for the method call should be generated.'''
self.evm.callCallMe()
self.assertEqual(self.evm.callMe_called, 1)
def testAllArgumentsRemoved(self):
values = (10, 20, 30, 40)
self.vm.setMargins(*values)
self.assertEquals(self.vm.getMargins(), values)
def testAllArgumentsRemovedCallVirtual(self):
values = (10, 20, 30, 40)
self.vm.setMargins(*values)
self.assertEquals(self.vm.callGetMargins(), values)
def testExtendedAllArgumentsRemoved(self):
values = (10, 20, 30, 40)
self.evm.setMargins(*values)
double = tuple([m*2 for m in values])
self.assertEquals(self.evm.getMargins(), double)
def testExtendedAllArgumentsRemovedCallVirtual(self):
values = (10, 20, 30, 40)
self.evm.setMargins(*values)
double = tuple([m*2 for m in values])
self.assertEquals(self.evm.callGetMargins(), double)
if __name__ == '__main__':
unittest.main()
|