Salome HOME
ace69cbe7a2012fd63f5e4a8dd2ba6c045f74436
[modules/shaper.git] / src / ParametersPlugin / Test / TestParameterDelete.py
1 # Copyright (C) 2018-2023  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 from salome.shaper import model
21 from ModelAPI import *
22 import math
23
24 def assertLineLength(theLine, theLength):
25     dx = theLine.startPoint().x() - theLine.endPoint().x()
26     dy = theLine.startPoint().y() - theLine.endPoint().y()
27     assert(math.fabs(dx**2 + dy**2 - theLength**2)  < 1.e-8), "Line length {} is not equal to expected {}".format(math.sqrt(dx**2 + dy**2), theLength)
28
29
30 model.begin()
31 partSet = model.moduleDocument()
32 Part_1 = model.addPart(partSet)
33 Part_1_doc = Part_1.document()
34 ParamLen = model.addParameter(Part_1_doc, "Len", "100")
35 Sketch_1 = model.addSketch(Part_1_doc, model.defaultPlane("XOY"))
36 SketchLine_1 = Sketch_1.addLine(0, -30, 100, -30)
37 SketchConstraintLength_1 = Sketch_1.setLength(SketchLine_1.result(), "Len")
38 model.do()
39
40 aLength = ParamLen.value()
41 assertLineLength(SketchLine_1, aLength)
42
43 # delete parameter
44 model.removeParameter(Part_1_doc, ParamLen)
45 model.do()
46
47 # move line and check the constraint is still here
48 SketchLine_1.startPoint().setValue(SketchLine_1.startPoint().x() + 10., SketchLine_1.startPoint().y())
49 model.do()
50 assertLineLength(SketchLine_1, aLength)
51
52 model.end()