Salome HOME
Merge branch 'origin/abn/newpy_pv4-1'
[modules/paravis.git] / test / VisuPrs / bugs / A6.py
1 # Copyright (C) 2010-2013  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.
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 # This case corresponds to: /visu/bugs/A6 case
21
22 import sys
23 import os
24 from paravistest import datadir, pictureext, get_picture_dir
25 from presentations import *
26 import paravis
27 import pvsimple
28
29 my_paravis = paravis.myParavis
30 picturedir = get_picture_dir(sys.argv[1], "bugs/A6")
31
32 med_file_path = datadir + "fra.med"
33
34 # 1. Import MED file
35 print 'Importing "fra.med"....',
36 my_paravis.ImportFile(med_file_path)
37 med_reader = pvsimple.GetActiveSource()
38
39 if med_reader is None:
40     raise RuntimeError, "Error"
41 else:
42     print "OK"
43
44 # 2. Create mesh
45 mesh_names = get_mesh_names(med_reader)
46 for mesh_name in mesh_names:
47     print "Mesh name: ", mesh_name
48     mesh = MeshOnEntity(med_reader, mesh_name, EntityType.CELL)
49     if mesh is None:
50         raise RuntimeError, "Error"
51
52     mesh.Representation = 'Wireframe'
53         
54     pic_path = os.path.join(picturedir, mesh_name + "_Cell." + pictureext)
55     pic_path = re.sub("\s+","_", pic_path)
56     print "Save picture ", pic_path
57     process_prs_for_test(mesh, pvsimple.GetRenderView(), pic_path)
58     
59