Salome HOME
Update copyrights
[modules/shaper.git] / src / SketchPlugin / Test / TestConstraintHorizontalValidator.py
index ff225fbc46f6bcdb31ee375d815dead28c0db003..7417476d269dd86d7b16aaee58ba8affad2ea55f 100644 (file)
@@ -1,3 +1,22 @@
+# Copyright (C) 2017-2019  CEA/DEN, EDF R&D
+#
+# This library is free software; you can redistribute it and/or
+# modify it under the terms of the GNU Lesser General Public
+# License as published by the Free Software Foundation; either
+# version 2.1 of the License, or (at your option) any later version.
+#
+# This library 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 library; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
+#
+# See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
+#
+
 """
     TestConstraintHorizontalValidator.py
     It tests validation of horizontal and vertical segments in H and V constraints to avoid
@@ -22,17 +41,10 @@ Part_1_doc = Part_1.document()
 #=========================================================================
 Sketch_1 = model.addSketch(Part_1_doc, model.defaultPlane("XOZ"))
 SketchLine_1 = Sketch_1.addLine(20, 20, 40, 80)
-SketchLine_1.setName("SketchLine_1")
-SketchLine_1.result().setName("SketchLine_1")
 SketchLine_2 = Sketch_1.addLine(40, 80, 60, 40)
-SketchLine_2.setName("SketchLine_2")
-SketchLine_2.result().setName("SketchLine_2")
 SketchConstraintCoincidence_1 = Sketch_1.setCoincident(SketchLine_1.endPoint(), SketchLine_2.startPoint())
-SketchConstraintCoincidence_1.setName("SketchConstraintCoincidence_2")
 SketchConstraintHorizontal_1 = Sketch_1.setHorizontal(SketchLine_1.result())
 SketchConstraintVertical_1 = Sketch_1.setVertical(SketchLine_1.result())
-SketchConstraintHorizontal_1.setName("SketchConstraintHorizontal_1")
-SketchConstraintVertical_1.setName("SketchConstraintVertical_1")
 model.do()
 #=========================================================================
 # Checking that sketch and constraints become invalid when to one line
@@ -40,7 +52,7 @@ model.do()
 #=========================================================================
 aFactory = ModelAPI_Session.get().validators()
 assert(aFactory.validate(Sketch_1.feature()))
-assert(Sketch_1.feature().error() == "Sketch objects are not defined")
+assert(Sketch_1.feature().error() != '')
 #=========================================================================
 # Remove duplicated Vertical constraints
 #=========================================================================
@@ -54,4 +66,4 @@ model.do()
 assert(aFactory.validate(Sketch_1.feature()))
 assert(Sketch_1.feature().error() == '')
 
-#assert(model.checkPythonDump())
+assert(model.checkPythonDump())