Salome HOME
Merge branch 'V7_dev'
[modules/paravis.git] / test / VisuPrs / dump_study / B4.py
1 # Copyright (C) 2010-2016  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/B4 case
21
22 import paravistest
23 from presentations import *
24 from pvsimple import *
25 from paravistest import save_trace
26 from paraview import smtrace
27
28 config = smtrace.start_trace()
29 config.SetFullyTraceSupplementalProxies(True)
30 config.SetPropertiesToTraceOnCreate(config.RECORD_ALL_PROPERTIES)
31
32
33 # 1. Table creation
34 title = "My Table"
35 errors = 0
36
37 table_title = "My Table"
38
39 # define script for table creation
40 table_script = """
41 import math
42
43
44 # Get table output
45 table = self.GetTableOutput()
46
47 # Create first column
48 col1 = vtk.vtkIntArray()
49 col1.SetName('First Column')
50 col1.InsertNextValue(1)
51 col1.InsertNextValue(4)
52 table.AddColumn(col1)
53
54 # Create second column
55 col2 = vtk.vtkDoubleArray()
56 col2.SetName('Second Column')
57 col2.InsertNextValue(2)
58 col2.InsertNextValue(5)
59 table.AddColumn(col2)
60
61 # Create third column
62 col3 = vtk.vtkDoubleArray()
63 col3.SetName('Third Column')
64 col3.InsertNextValue(3)
65 col3.InsertNextValue(6)
66 table.AddColumn(col3)
67 """
68
69 # creating programmable source for the table
70 table = ProgrammableSource()
71 table.OutputDataSetType = 'vtkTable'
72 table.Script = table_script
73 RenameSource(title, table)
74 table.UpdatePipeline()
75
76 orig_script = table.Script
77
78 # 2. Dump Study
79 text  = smtrace.stop_trace()
80 path_to_save = os.path.join(os.getenv("HOME"), "table.py")
81 save_trace( path_to_save, text )
82
83 # 3. Delete the table
84 Delete(table)
85
86 # 4. Execution of the created script
87 execfile(path_to_save)
88
89 # 5. Check the restored table
90 table = FindSource(title)
91 if table is None:
92     raise RuntimeError, "There is no table in the study (must be created by executed python script)!!!"
93
94 if table.Script != orig_script:
95     print "ERROR!!! The script value is incorrect:"
96     print table.Script
97     errors += 1
98
99 if errors > 0:
100     raise RuntimeError, "There is(are) some error(s) was(were) found... For more info see ERRORs above..."