]> SALOME platform Git repositories - modules/shaper.git/commitdiff
Salome HOME
Test OK
authorGérald NICOLAS <gerald.nicolas@edf.fr>
Tue, 29 Jun 2021 14:38:53 +0000 (16:38 +0200)
committerGérald NICOLAS <gerald.nicolas@edf.fr>
Tue, 29 Jun 2021 14:38:53 +0000 (16:38 +0200)
src/PythonAddons/Test/TestpipeNetwork.py
src/PythonAddons/macros/pipeNetwork/feature.py

index c4e507cbdc6fb5e37ee197bd00e9cd07bcc65578..2d2dc3fe336e2c4c72915753bf991584b5d347a2 100755 (executable)
 #
 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
 #
-__revision__ = "V01.02"
+"""Test de la création du réseau de tuyaux"""
 
-from salome.shaper import model
-from salome.shaper import geom
-from ModelAPI import *
+__revision__ = "V01.03"
 
 import os
 
+from ModelAPI import *
+
 aSession = ModelAPI_Session.get()
 
 def getFilePath(fileName):
+    """Le fichier décrivant le réseau"""
     path = os.path.join(os.getenv("SHAPER_ROOT_DIR"), "bin", "salome", "macros", "pipeNetwork")
     return os.path.join(path, fileName)
 
@@ -46,4 +47,6 @@ aFile = anImportFeature.string(aFieldName)
 aFile.setValue(theFile)
 aSession.finishOperation()
 
-assert(model.checkPythonDump())
+assert(aPart.size("Construction") == 21), "Wrong number of construction: {}".format(aPart.size("Construction"))
+
+assert(aPart.size("Folders") == 1), "Wrong number of folders: {}".format(aPart.size("Folders"))
index 828fcad77ebab64d03045a81bab186385b69fb49..27123a99f1fbfde015b2e2732261f195d9fadacb 100755 (executable)
@@ -22,7 +22,7 @@
 Author: Nathalie Gore
 """
 
-__revision__ = "V02.03"
+__revision__ = "V02.04"
 
 from salome.shaper import model
 import ModelAPI
@@ -501,7 +501,7 @@ class pipeNetwork(model.Feature):
                 print("========================= Création des paths =========================")
                 for key, value in self.connectivities.items():
                     if self._verbose:
-                      print("================================================================================= key = ", key, value['chainage'], value['fillet'])
+                        print("================================================================================= key = ", key, value['chainage'], value['fillet'])
                     # recherche des noeuds fillets
                     value["paths"] = list()
                     value["isPipe"] = list()
@@ -579,7 +579,6 @@ class pipeNetwork(model.Feature):
                 fuse.execute(True)
                 self.lfeatures.append(fuse)
                 fuse.result().setName(nameRes)
-                print (dir(fuse))
                 self.folder = model.addFolder(part, self.lfeatures[0], self.lfeatures[-1])
                 self.folder.setName(nameRes)