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