Salome HOME
0022071: EDF 2497 PARAVIS : Porting of VISU tests for PARAVIS
[modules/paravis.git] / test / VisuPrs / bugs / C8.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/bugs2/C8 case
21
22 from paravistest import tablesdir
23 from presentations import *
24 import paravis
25 import pvsimple
26
27 # 1. Import table from file
28 file_path = tablesdir + "tables_test.xls"
29
30 print 'Import tables_test.xls ....',
31 file_path = tablesdir + "tables_test.xls"
32 table_reader = pvsimple.TableReader(FileName=file_path)
33 table_reader.UpdatePipeline()
34 if table_reader is None:
35     print "FAILED"
36 else:
37     print "OK"
38
39 # 2. Show curves
40 cur_view = pvsimple.GetRenderView()
41 if cur_view:
42     pvsimple.Delete(cur_view)
43
44 xy_view = pvsimple.CreateXYPlotView()
45 xy_view.ChartTitle = "The viewer for Curves from the Table"
46
47
48 print 'Get available tables .....'
49 available_tables = table_reader.GetPropertyValue("AvailableTables")
50 if (available_tables is None) or (len(available_tables) == 0):
51     print "FAILED"
52 else:
53     print available_tables
54
55 for table in available_tables:
56     table_reader.TableNumber = available_tables.GetData().index(table)
57
58     xy_rep = pvsimple.Show()
59     xy_rep.AttributeType = 'Row Data'
60     xy_rep.UseIndexForXAxis = 0
61     xy_rep.SeriesVisibility = ['0', '0']
62     
63     pvsimple.Render()
64
65
66