Salome HOME
some fixes in tests
[modules/paravis.git] / test / VisuPrs / bugs / A2.py
1 # Copyright (C) 2010-2015  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 # This case corresponds to: /visu/bugs/A2 case
21
22 import sys
23 import os
24 import time
25 from paravistest import datadir, pictureext, get_picture_dir
26 from presentations import *
27 import pvsimple
28
29 picturedir = get_picture_dir("bugs/A2")
30
31 med_file_path = datadir + "carre_MIXTE_0000.med"
32 pic_path = os.path.join(picturedir, "A2." + pictureext)
33
34 print "BREAKPOINT_1"
35 # 1. Import MED file
36 print 'Importing "carre_MIXTE_0000.med"...',
37 pvsimple.OpenDataFile(med_file_path)
38 med_reader = pvsimple.GetActiveSource()
39
40 if med_reader is None:
41     print "FAILED"
42 else:
43     print "OK"
44
45 # 2. Create mesh
46 print "Creating MeshOnEntity..............",
47 mesh = MeshOnEntity(med_reader, "dom", EntityType.CELL)
48
49 if mesh is None:
50     print "FAILED"
51 else:
52     mesh.Representation = 'Surface With Edges'
53     print "OK"
54
55 # 3. Display mesh and make snapshot
56 view = pvsimple.GetRenderView()
57
58 display_only(mesh, view)
59 reset_view(view)
60
61 view.CameraViewUp = [0, 0, 1]
62 view.CameraPosition = [50,  180, 0]
63 view.CameraFocalPoint = [0.2, 0, 0.5]
64 view.CameraParallelScale = 0.1
65
66 #view.ResetCamera()
67
68 pvsimple.Render(view)
69
70 print "Picure file name is " + pic_path
71 pvs.WriteImage(pic_path, view=view, Magnification=1)
72 time.sleep(1)