Salome HOME
b9a5194428e19738b24d4af50491d3162cb26c76
[modules/shaper.git] / src / PythonAddons / Test / TestpipeNetwork_2par2.py
1 # Copyright (C) 2014-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 """Test de la création du réseau de tuyaux - Description des lignes par paquets de 2 noeuds"""
20
21 __revision__ = "V02.01"
22
23 import os
24
25 from ModelAPI import *
26
27 aSession = ModelAPI_Session.get()
28
29 def getFilePath(fileName):
30     """Le fichier décrivant le réseau"""
31     path = os.path.join(os.getenv("SHAPER_ROOT_DIR"), "bin", "salome", "macros", "pipeNetwork")
32     return os.path.join(path, fileName)
33
34 theFile = getFilePath("pipeNetwork_2par2.txt")
35
36 aSession.startOperation("Create part for pipe network")
37 aPartFeature = aSession.moduleDocument().addFeature("Part")
38 aSession.finishOperation()
39 aPart = aSession.activeDocument()
40
41 aSession.startOperation("Import file")
42 aFeatureKind = "pipeNetwork"
43 anImportFeature = aPart.addFeature(aFeatureKind)
44 aFieldName = "file_path"
45 aFile = anImportFeature.string(aFieldName)
46 aFile.setValue(theFile)
47 aSession.finishOperation()
48
49 assert(aPart.size("Construction") == 42), "Right number of construction: {}".format(aPart.size("Construction"))
50
51 assert(aPart.size("Folders") == 1), "Right number of folders: {}".format(aPart.size("Folders"))