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
|
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# This file is part of the Shiboken Python Bindings Generator project.
#
# Copyright (C) 2013 Digia Plc 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 case for inplicit converting C++ numeric types.'''
import unittest
import sys
import sample
from py3kcompat import IS_PY3K, l, long
if IS_PY3K:
sys.maxint = sys.maxsize
class NumericTester(unittest.TestCase):
'''Helper class for numeric comparison testing'''
def check_value(self, source, expected, callback, desired_type=None):
result = callback(source)
self.assertEqual(result, expected)
if desired_type:
self.assertEqual(type(result), desired_type)
class FloatImplicitConvert(NumericTester):
'''Test case for implicit converting C++ numeric types.'''
def testFloatAsInt(self):
'''Float as Int'''
self.check_value(3.14, 3, sample.acceptInt, int)
self.assertRaises(OverflowError, sample.acceptInt, sys.maxint + 400)
def testFloatAsLong(self):
'''Float as Long'''
#C++ longs are python ints for us
self.check_value(3.14, 3, sample.acceptLong, int)
self.assertRaises(OverflowError, sample.acceptLong, sys.maxint + 400)
def testFloatAsUInt(self):
'''Float as unsigned Int'''
self.check_value(3.14, 3, sample.acceptUInt, long)
self.assertRaises(OverflowError, sample.acceptUInt, -3.14)
def testFloatAsULong(self):
'''Float as unsigned Long'''
#FIXME Breaking with SystemError "bad argument to internal function"
self.check_value(3.14, 3, sample.acceptULong, long)
self.assertRaises(OverflowError, sample.acceptULong, -3.14)
def testFloatAsDouble(self):
'''Float as double'''
self.check_value(3.14, 3.14, sample.acceptDouble, float)
class IntImplicitConvert(NumericTester):
'''Test case for implicit converting C++ numeric types.'''
def testIntAsInt(self):
'''Int as Int'''
self.check_value(3, 3, sample.acceptInt, int)
def testIntAsLong(self):
'''Int as Long'''
self.check_value(3, 3, sample.acceptLong, int)
# sys.maxint goes here as CPython implements int as a C long
self.check_value(sys.maxint, sys.maxint, sample.acceptLong, int)
self.check_value(-sys.maxint - 1, -sys.maxint - 1, sample.acceptLong, int)
def testIntAsUInt(self):
'''Int as unsigned Int'''
self.check_value(3, 3, sample.acceptUInt, long)
self.assertRaises(OverflowError, sample.acceptUInt, -3)
def testIntAsULong(self):
'''Int as unsigned Long'''
self.check_value(3, 3, sample.acceptULong, long)
self.assertRaises(OverflowError, sample.acceptULong, -3)
def testFloatAsDouble(self):
'''Float as double'''
self.check_value(3.14, 3.14, sample.acceptDouble, float)
class LongImplicitConvert(NumericTester):
'''Test case for implicit converting C++ numeric types.'''
def testLongAsInt(self):
'''Long as Int'''
self.check_value(l(24224), 24224, sample.acceptInt, int)
self.assertRaises(OverflowError, sample.acceptInt, sys.maxint + 20)
def testLongAsLong(self):
'''Long as Long'''
self.check_value(l(2405), 2405, sample.acceptLong, int)
self.assertRaises(OverflowError, sample.acceptLong, sys.maxint + 20)
def testLongAsUInt(self):
'''Long as unsigned Int'''
self.check_value(l(260), 260, sample.acceptUInt, long)
self.assertRaises(OverflowError, sample.acceptUInt, -42)
def testLongAsULong(self):
'''Long as unsigned Long'''
self.check_value(l(128), 128, sample.acceptULong, long)
self.assertRaises(OverflowError, sample.acceptULong, l(-334))
def testLongAsDouble(self):
'''Float as double'''
self.check_value(l(42), 42, sample.acceptDouble, float)
if __name__ == '__main__':
unittest.main()
|