]> SALOME platform Git repositories - tools/paravisaddons_common.git/blob - src/ContactReader/Test/24319_withcomment.py
Salome HOME
[EDF24319] : extension of RCO file reader / get rid off comments starting by # at...
[tools/paravisaddons_common.git] / src / ContactReader / Test / 24319_withcomment.py
1 # Copyright (C) 2021  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
20 __doc__ = """ non regression test of EDF24319
21 resultante_cdth.rco -> 24319_no_comment.rco
22 resultante_cdth.resu -> 24319_with_comments.rco
23 """
24
25 from paraview.simple import *
26
27 def MyAssert(b):
28   if not b:
29     raise RuntimeError("Oooops : Assertion failed !")
30
31
32 cr_without_comment = ContactReader(registrationName='WithoutComment', FileName='24319_no_comment.rco')
33 cr_with_comments = ContactReader(registrationName='WithComments', FileName='24319_with_comments.rco')
34 cr_without_comment.UpdatePipeline()
35 cr_with_comments.UpdatePipeline()
36
37 polydata_without_comment = servermanager.Fetch(cr_without_comment)
38 polydata_with_comments = servermanager.Fetch(cr_with_comments)
39 MyAssert(polydata_without_comment.GetNumberOfCells() == polydata_with_comments.GetNumberOfCells())
40 MyAssert(polydata_without_comment.GetNumberOfPoints() == polydata_with_comments.GetNumberOfPoints())