Salome HOME
ce566bb4821fcb19ca6bb5ced80dc92b99e075fc
[modules/paravis.git] / test / VisuPrs / dump_study / A4.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/dump_study/A4 case
21
22 from paravistest import datadir, delete_with_inputs
23 from presentations import *
24 from pvsimple import *
25
26 settings = {"Offset": [0.0001, 0.0002, 0], "ScalarMode": ("Component", 1), "Position": [0.1, 0.2], "Size": [0.15, 0.25], "Discretize": 1, "NbColors": 44, "NbLabels": 22, "Title": "My presentation"}
27
28 # 1. TimeStamps.med import
29 file_path = datadir + "TimeStamps.med"
30 OpenDataFile(file_path)
31 med_reader = GetActiveSource()
32 if med_reader is None :
33     raise RuntimeError, "TimeStamps.med wasn't imported..."
34
35 # 2. GaussPoints creation
36 med_field = "pression"
37
38 gausspoints = GaussPointsOnField(med_reader, EntityType.CELL, med_field, 1)
39
40 # apply settings
41 gausspoints.Position = settings["Offset"]
42 gausspoints.LookupTable.VectorMode = settings["ScalarMode"][0]
43 gausspoints.LookupTable.VectorComponent =  settings["ScalarMode"][1]
44 gausspoints.LookupTable.Discretize = settings["Discretize"]
45 gausspoints.LookupTable.NumberOfTableValues = settings["NbColors"]
46
47 bar = get_bar()
48 bar.Position = settings["Position"]
49 bar.Position2 = settings["Size"]
50 bar.NumberOfLabels = settings["NbLabels"]
51 bar.Title = settings["Title"]
52
53 # 3. Dump Study
54 path_to_save = os.path.join(os.getenv("HOME"), "GaussPoints.py")
55 SaveTrace( path_to_save )
56
57 # 4. Delete the created objects, recreate the view
58 delete_with_inputs(gausspoints)
59 Delete(GetActiveView())
60 view = CreateRenderView()
61
62 # 5. Execution of the created script
63 execfile(path_to_save)
64
65 # 6. Checking of the settings done before dump
66 recreated_bar = view.Representations[0]
67 recreated_gausspoints = view.Representations[1]
68
69 errors = 0
70 tolerance = 1e-05
71
72 # Offset
73 offset = recreated_gausspoints.Position
74 for i in range(len(settings["Offset"])):
75     if abs(offset[i] - settings["Offset"][i]) > tolerance:
76         print "ERROR!!! Offset value with ", i, " index is incorrect: ", offset[i], " instead of ", settings["Offset"][i]
77         errors += 1
78
79 # Scalar mode
80 vector_mode = recreated_gausspoints.LookupTable.VectorMode
81 vector_component = recreated_gausspoints.LookupTable.VectorComponent
82
83 if vector_mode != settings["ScalarMode"][0]:
84     print "ERROR!!! Vector mode value is incorrect: ",  vector_mode, " instead of ", settings["ScalarMode"][0]
85     errors += 1
86 if vector_component != settings["ScalarMode"][1]:
87     print "ERROR!!! Vector component value is incorrect: ",  vector_component, " instead of ", settings["ScalarMode"][1]
88     errors += 1
89
90 # Position of scalar bar
91 pos_x = recreated_bar.Position[0]
92 pos_y = recreated_bar.Position[1]
93
94 if abs(pos_x - settings["Position"][0]) > tolerance:
95     print "ERROR!!! X coordinate of position of scalar bar is incorrect: ",  pos_x, " instead of ", settings["Position"][0]
96     errors += 1
97 if abs(pos_y - settings["Position"][1]) > tolerance:
98     print "ERROR!!! Y coordinate of position of scalar bar is incorrect: ",  pos_y, " instead of ", settings["Position"][1]
99     errors += 1
100
101 # Size of scalar bar
102 width  = recreated_bar.Position2[0]
103 height = recreated_bar.Position2[1]
104
105 if abs(width - settings["Size"][0]) > tolerance:
106     print "ERROR!!! Width of scalar bar is incorrect: ",  width, " instead of ", settings["Size"][0]
107     errors += 1
108 if abs(height - settings["Size"][1]) > tolerance:
109     print "ERROR!!! Height of scalar bar is incorrect: ",  height, " instead of ", settings["Size"][1]
110     errors += 1
111
112 # Discretize
113 discretize = recreated_gausspoints.LookupTable.Discretize
114 if discretize != settings["Discretize"]:
115     print "ERROR!!! Discretize property is incorrect: ",  discretize, " instead of ", settings["Discretize"]
116     errors += 1
117
118 # Number of colors
119 nb_colors = recreated_gausspoints.LookupTable.NumberOfTableValues
120 if nb_colors != settings["NbColors"]:
121     print "ERROR!!! Number of colors of scalar bar is incorrect: ",  nb_colors, " instead of ", settings["NbColors"]
122     errors += 1
123
124 # Number of labels
125 nb_labels = recreated_bar.NumberOfLabels
126 if nb_labels != settings["NbLabels"]:
127     print "ERROR!!! Number of labels of scalar bar is incorrect: ",  nb_labels, " instead of ", settings["NbLabels"]
128     errors += 1
129
130 # Title
131 title = recreated_bar.Title
132 if title != settings["Title"]:
133     print "ERROR!!! Title of presentation is incorrect: ",  title, " instead of ", settings["Title"]
134     errors += 1
135
136 if errors > 0:
137     raise RuntimeError, "There is(are) some error(s) was(were) found... For more info see ERRORs above..."