Salome HOME
Merge branch 'akl/tests_update'
[modules/paravis.git] / test / VisuPrs / bugs / C7.py
1 # Copyright (C) 2010-2014  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/C7 case
21
22 import os
23 import sys
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 os.environ["PARAVIS_TEST_PICS"] = sys.argv[1]
31 picturedir = get_picture_dir("bugs/C7")
32
33 # 1. Import MED file
34 med_file_path = datadir + "Bug583-Quadratique.resu.med"
35
36 print 'Importing "Bug583-Quadratique.resu.med"....',
37 my_paravis.ImportFile(med_file_path)
38 med_reader = pvsimple.GetActiveSource()
39
40 if med_reader is None:
41     raise RuntimeError, "File wasn't imported!!!"
42 else:
43     print "OK"
44
45 # 2. Creation of GaussPoints presentations
46 mesh_name = "MAIL"
47 field_names = ["RESU_EQUI_ELNO_SIGM", "RESU_SIEF_ELGA_DEPL", "RESU_SIEF_ELNO_ELGA", "RESU_SIGM_ELNO_DEPL"]
48
49 view = pvsimple.GetRenderView()
50
51 print "BREAKPOINT_1"
52 error = 0
53
54 for field in field_names:
55     print "Creation of the GaussPoints presentation.. Field: ", field, "; Iteration: 1"
56     presentation = GaussPointsOnField1(med_reader, EntityType.CELL, field, 1)
57     if presentation is None:
58         print "ERROR!!! GaussPoints presentation wasn't created for the ", field, " field!!!"
59         error += 1
60     else:
61         pic_path = os.path.join(picturedir, "GaussPoints_" + mesh_name + "_" + field + "." + pictureext)
62         process_prs_for_test(presentation, view, pic_path)
63
64 if not error:
65     print "BREAKPOINT_2"
66 else:
67     raise RuntimeError, "There are some errors were occured... For more info see ERRORs above..."