Salome HOME
c2a1274b4ddbd8f263957675ef6745e8f5c64047
[modules/shaper.git] / src / PythonAPI / Test / TestPrimitivesBox.py
1 # Copyright (C) 2014-2021  CEA/DEN, EDF R&D
2 #
3 # This library is free software; you can redistribute it and/or
4 # modify it under the terms of the GNU Lesser General Public
5 # License as published by the Free Software Foundation; either
6 # version 2.1 of the License, or (at your option) any later version.
7 #
8 # This library is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 # Lesser General Public License for more details.
12 #
13 # You should have received a copy of the GNU Lesser General Public
14 # License along with this library; if not, write to the Free Software
15 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 #
17 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 #
19
20 import unittest
21
22 import ModelAPI
23
24 from salome.shaper import model
25
26 class PrimitivesAddBox(unittest.TestCase):
27
28     def setUp(self):
29         model.begin()
30         # Create part
31         partset = model.moduleDocument()
32         self.part = model.addPart(partset).document()
33         model.do()
34
35     def tearDown(self):
36         model.end()
37         model.reset()
38
39 #-----------------------------------------------------------------------------
40 # TestCases
41
42 class PrimitivesAddBoxTestCase(PrimitivesAddBox):
43
44     def test_add_box_by_dimensions(self):
45         box = model.addBox(self.part, 50, 20, 10)
46         model.do()
47         self.assertEqual(box.creationMethod().value(),"BoxByDimensions")
48         self.assertEqual(box.dx().value(),50)
49         self.assertEqual(box.dy().value(),20)
50         self.assertEqual(box.dz().value(),10)
51
52     def test_add_box_by_two_points(self):
53         point1 = model.addPoint(self.part,0,0,0).result()
54         point2 = model.addPoint(self.part,10,10,10).result()
55         box = model.addBox(self.part, point1, point2)
56         model.do()
57         self.assertEqual(box.creationMethod().value(),"BoxByTwoPoints")
58         self.assertEqual(box.firstPoint().context().shape().isVertex(),True)
59         self.assertEqual(box.secondPoint().context().shape().isVertex(),True)
60
61 if __name__ == "__main__":
62     test_program = unittest.main(exit=False)
63     assert test_program.result.wasSuccessful(), "Test failed"