Salome HOME
Merge branch 'V7_main' of ssh://git.salome-platform.org/modules/paravis into V7_main
[modules/paravis.git] / test / VisuPrs / bugs / D1.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/bugs3/D1 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/D1")
31
32 # 1. Import of the "Bug829_resu_mode.med" file at first time
33 med_file_path = datadir + "Bug829_resu_mode.med"
34 my_paravis.ImportFile(med_file_path)
35 med_reader1 = pvsimple.GetActiveSource()
36 if med_reader1 is None:
37     raise RuntimeError, "Bug829_resu_mode.med was not imported!!!"
38
39 # 2. Creation of a set of "DeformedShape and ScalarMap" presentations, based on time stamps of "MODES_DEPL" field
40 errors=0
41 sizes=[]
42
43 for i in range(1,11):
44     presentation = DeformedShapeAndScalarMapOnField(med_reader1, EntityType.NODE, "MODES_DEPL", i)
45     if presentation is None : 
46         raise RuntimeError, "Presentation is None!!!"
47
48     pic_path = os.path.join(picturedir, "npal19999_1_time_stamp_" + str(i) + "." + pictureext)
49     process_prs_for_test(presentation, pvsimple.GetRenderView(), pic_path)
50
51     sizes.append(os.path.getsize(pic_path))
52
53 if abs(max(sizes)-min(sizes)) > 0.01*max(sizes):
54     print "WARNING!!! Pictures have different sizes!!!"
55     errors += 1
56     for i in range(1,11):
57         picture_name = "npal19999_1_time_stamp_" + str(i) + "." + pictureext
58         print "Picture: " + picture_name + "; size: " + str(sizes[i-1]) 
59     raise RuntimeError
60
61 # 3. Import of the "Bug829_resu_mode.med" file at second time
62 my_paravis.ImportFile(med_file_path)
63 med_reader2 = pvsimple.GetActiveSource()
64 if med_reader2 is None:
65     raise RuntimeError, "Bug829_resu_mode.med was not imported second time!!!"
66
67 # 4. Creation of a set of "DeformedShape and ScalarMap" presentations, based on time stamps of "MODES_DEPL" field
68 errors = 0
69 sizes=[]
70
71 for i in range(1,11):
72     presentation = DeformedShapeAndScalarMapOnField(med_reader2, EntityType.NODE, "MODES_DEPL", 11-i)
73     if presentation is None : 
74         raise RuntimeError, "Presentation is None!!!"
75
76     pic_path = os.path.join(picturedir, "npal19999_2_time_stamp_" + str(i) + "." + pictureext)
77     process_prs_for_test(presentation, pvsimple.GetRenderView(), pic_path)
78
79     sizes.append(os.path.getsize(pic_path))
80
81 if abs(max(sizes)-min(sizes)) > 0.01*max(sizes):
82     print "WARNING!!! Pictures have different sizes!!!"
83     errors += 1
84     for i in range(1,11):
85         picture_name = "npal19999_2_time_stamp_" + str(i) + "." + pictureext
86         print "Picture: " + picture_name + "; size: " + str(sizes[i-1]) 
87     raise RuntimeError