Salome HOME
updated copyright message
[modules/shaper.git] / src / ConstructionPlugin / Test / TestPointName.py
index 06e70e64fff8ba53639a188d5e688b6ccf6d394c..3f917c83dee08fb232a47f168c3b83ee2df80b42 100644 (file)
@@ -1,11 +1,43 @@
+# Copyright (C) 2014-2023  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
+#
+
 from ModelAPI import *
-p = ModelAPI_PluginManager.get()
-f = p.rootDocument().addFeature("Point")
-f_name = f.data().name()
-f.execute()
+from GeomDataAPI import *
+
+aSession = ModelAPI_Session.get()
+aDoc = aSession.moduleDocument()
+
+aSession.startOperation()
+aFeature = aDoc.addFeature("Point")
+aFeatureData = aFeature.data()
+assert(aFeatureData is not None)
+geomDataAPI_Point(aFeatureData.attribute("point3d")).setValue(0., 0., 0.)
+aFeatureData.string("creation_method").setValue("by_xyz")
+aFeatureName = aFeature.name()
+aFeature.execute()
+aSession.finishOperation()
+
+# with index "0" is Origin and then - all default constructions
+aFeature1 = aDoc.object("Construction", 7)
+aFeature1Name = aFeature1.data().name()
 
-doc = p.rootDocument()
-f1 = doc.object("Construction", 0)
-f1_name = f1.data().name()
+assert (aFeatureName == aFeature1Name)
 
-assert (f_name == f1_name)
+from salome.shaper import model
+assert(model.checkPythonDump())