Example #1
0
 def testConversionInBothDirections(self):
     '''Test converting a list from Python to C++ and back again.'''
     lu = ListUser()
     lst = [3, 5, 7]
     lu.setList(lst)
     result = lu.getList()
     self.assertEqual(result, lst)
Example #2
0
 def testConversionInBothDirections(self):
     '''Test converting a list from Python to C++ and back again.'''
     lu = ListUser()
     lst = [3, 5, 7]
     lu.setList(lst)
     result = lu.getList()
     self.assertEqual(result, lst)
Example #3
0
 def testConversionInBothDirectionsWithSimilarContainer(self):
     '''Test converting a tuple, instead of the expected list, from Python to C++ and back again.'''
     lu = ListUser()
     lst = (3, 5, 7)
     lu.setList(lst)
     result = lu.getList()
     self.assertNotEqual(result, lst)
     self.assertEqual(result, list(lst))
Example #4
0
 def testConversionInBothDirectionsWithSimilarContainer(self):
     '''Test converting a tuple, instead of the expected list, from Python to C++ and back again.'''
     lu = ListUser()
     lst = (3, 5, 7)
     lu.setList(lst)
     result = lu.getList()
     self.assertNotEqual(result, lst)
     self.assertEqual(result, list(lst))
Example #5
0
 def testConversionOfListOfObjectsPassedAsArgument(self):
     '''Calls method with a Python list of wrapped objects to be converted to a C++ list.'''
     mult = 3
     pts0 = (Point(1.0, 2.0), Point(3.3, 4.4), Point(5, 6))
     pts1 = (Point(1.0, 2.0), Point(3.3, 4.4), Point(5, 6))
     ListUser.multiplyPointList(pts1, mult)
     for pt0, pt1 in zip(pts0, pts1):
         self.assertEqual(pt0.x() * mult, pt1.x())
         self.assertEqual(pt0.y() * mult, pt1.y())
Example #6
0
 def testConversionOfListOfObjectsPassedAsArgument(self):
     '''Calls method with a Python list of wrapped objects to be converted to a C++ list.'''
     mult = 3
     pts0 = (Point(1.0, 2.0), Point(3.3, 4.4), Point(5, 6))
     pts1 = (Point(1.0, 2.0), Point(3.3, 4.4), Point(5, 6))
     ListUser.multiplyPointList(pts1, mult)
     for pt0, pt1 in zip(pts0, pts1):
         self.assertEqual(pt0.x() * mult, pt1.x())
         self.assertEqual(pt0.y() * mult, pt1.y())
Example #7
0
 def testPrimitiveConversionInsideContainer(self):
     '''Test primitive type conversion inside conversible std::list container.'''
     cpx0 = complex(1.2, 3.4)
     cpx1 = complex(5.6, 7.8)
     lst = ListUser.createComplexList(cpx0, cpx1)
     self.assertEqual(type(lst), list)
     for item in lst:
         self.assertEqual(type(item), complex)
     self.assertEqual(lst, [cpx0, cpx1])
Example #8
0
 def testPrimitiveConversionInsideContainer(self):
     '''Test primitive type conversion inside conversible std::list container.'''
     cpx0 = complex(1.2, 3.4)
     cpx1 = complex(5.6, 7.8)
     lst = ListUser.createComplexList(cpx0, cpx1)
     self.assertEqual(type(lst), list)
     for item in lst:
         self.assertEqual(type(item), complex)
     self.assertEqual(lst, [cpx0, cpx1])
Example #9
0
 def testSumListFloats(self):
     '''Test method that sums a list of float values.'''
     lu = ListUser()
     lst = [3.3, 4.4, 5.5]
     result = lu.sumList(lst)
     self.assertEqual(result, sum(lst))
Example #10
0
 def testSumListIntegers(self):
     '''Test method that sums a list of integer values.'''
     lu = ListUser()
     lst = [3, 5, 7]
     result = lu.sumList(lst)
     self.assertEqual(result, sum(lst))
Example #11
0
 def __init__(self):
     ListUser.__init__(self)
     self.create_list_called = False
Example #12
0
 def testOverloadMethodReceivingRelatedContainerTypes(self):
     self.assertEqual(ListUser.ListOfPointF, ListUser.listOfPoints([PointF()]))
     self.assertEqual(ListUser.ListOfPoint, ListUser.listOfPoints([Point()]))
Example #13
0
 def testSumListFloats(self):
     '''Test method that sums a list of float values.'''
     lu = ListUser()
     lst = [3.3, 4.4, 5.5]
     result = lu.sumList(lst)
     self.assertEqual(result, sum(lst))
Example #14
0
 def testSumListIntegers(self):
     '''Test method that sums a list of integer values.'''
     lu = ListUser()
     lst = [3, 5, 7]
     result = lu.sumList(lst)
     self.assertEqual(result, sum(lst))
Example #15
0
 def __init__(self):
     ListUser.__init__(self)
     self.create_list_called = False
Example #16
0
 def testOverloadMethodReceivingRelatedContainerTypes(self):
     self.assertEqual(ListUser.ListOfPointF, ListUser.listOfPoints([PointF()]))
     self.assertEqual(ListUser.ListOfPoint, ListUser.listOfPoints([Point()]))