From f9b26870ddaaeaf98b77c55269ea1ccfbee04783 Mon Sep 17 00:00:00 2001 From: karadaniz Date: Wed, 22 May 2024 13:48:16 +0200 Subject: [PATCH] [#spns_40523] add test to check if MESH groups are retreived correctly --- src/MEDLoader/Swig/MEDWriterTest1.py.txt | 64 ++++++++++++++++++++++++ 1 file changed, 64 insertions(+) create mode 100644 src/MEDLoader/Swig/MEDWriterTest1.py.txt diff --git a/src/MEDLoader/Swig/MEDWriterTest1.py.txt b/src/MEDLoader/Swig/MEDWriterTest1.py.txt new file mode 100644 index 000000000..6593a2e4b --- /dev/null +++ b/src/MEDLoader/Swig/MEDWriterTest1.py.txt @@ -0,0 +1,64 @@ +# -*- coding: iso-8859-1 -*- +# Copyright (C) 2007-2024 CEA, EDF +# +# 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 +# +# Author : Anthony Geay (CEA/DEN) + +from MEDLoader import * +import unittest +from MEDLoaderDataForTest import MEDLoaderDataForTest,WriteInTmpDir + + +class MEDWriterTest1(unittest.TestCase): + @WriteInTmpDir + def testMesh1D(self): + # setup + mesh=MEDLoaderDataForTest.build1DMesh_1(); + mesh.checkConsistencyLight(); + + meshMEDFile = MEDFileUMesh() + meshMEDFile.setMeshAtLevel(0,mesh) + # create groups + grp0 = DataArrayInt([0,1]) + grp0.setName("grp0") + grp1 = DataArrayInt([0,1,2]) + grp1.setName("grp1") + grp2 = DataArrayInt([1,2,3]) + grp2.setName("grp2") + meshMEDFile.setGroupsAtLevel(0,[grp0,grp1,grp2]) + + ms=MEDFileMeshes() + ms.pushMesh(meshMEDFile) + + medFileData = MEDFileData() + medFileData.setMeshes(ms) + + tmpMeshWriter = MeshFormatWriter() + tmpMeshWriter.setMeshFileName("Meshfile") + tmpMeshWriter.setMEDFileDS(medFileData) + + + # meshMEDFile.write("/tmp/Mesh2.med",2) + # # Read MEDFile and test equality + # meshMEDFileRead = MEDFileMesh.New("/tmp/Mesh2.med") + # # assert groups + # self.assertEqual(meshMEDFileRead.getGroupArr(0,"grp0").getValues(), [0,1]); + + +if __name__ == '__main__': + unittest.main() \ No newline at end of file -- 2.39.2