Salome HOME
Initial merge of branch 'BR_HYDRO_IMPS_2016' into BR_PORTING_OCCT_7
[modules/hydro.git] / src / HYDRO_tests / TestViewer.h
1 // Copyright (C) 2014-2015  EDF-R&D
2 // This library is free software; you can redistribute it and/or
3 // modify it under the terms of the GNU Lesser General Public
4 // License as published by the Free Software Foundation; either
5 // version 2.1 of the License, or (at your option) any later version.
6 //
7 // This library is distributed in the hope that it will be useful,
8 // but WITHOUT ANY WARRANTY; without even the implied warranty of
9 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
10 // Lesser General Public License for more details.
11 //
12 // You should have received a copy of the GNU Lesser General Public
13 // License along with this library; if not, write to the Free Software
14 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
15 //
16 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
17 //
18
19 #pragma once
20
21 #include <AIS_InteractiveContext.hxx>
22
23 class OCCViewer_ViewManager;
24 class OCCViewer_Viewer;
25 class OCCViewer_ViewWindow;
26 class TopoDS_Shape;
27 class QString;
28 class QColor;
29 class QImage;
30 class AIS_InteractiveObject;
31 class AIS_ColorScale;
32
33 class TestViewer
34 {
35 public:
36   static OCCViewer_ViewManager* viewManager();
37   static OCCViewer_Viewer* viewer();
38   static OCCViewer_ViewWindow* viewWindow();
39   static Handle(AIS_InteractiveContext) context();
40
41   static void eraseAll( bool isUpdate );
42   static void show( const Handle(AIS_InteractiveObject)& theObject,
43                     int theMode, int theSelectionMode, bool isFitAll, const char* theKey );
44   static void show( const TopoDS_Shape& theShape, int theMode, bool isFitAll, const QColor& theColor );
45   static void show( const TopoDS_Shape& theShape, int theMode, bool isFitAll, const char* theKey );
46   static bool AssertImages( QString& theMessage, const QImage* = 0, const char* theCase = 0 );
47   static QColor GetColor(int i);
48
49   static Handle(AIS_ColorScale) colorScale();
50   static void showColorScale( bool );
51   static bool ColorScaleIsDisplayed();
52
53   static void select( int theViewX, int theViewY );
54
55   static bool areScriptsEqual( const QString& theBaseName,
56                                bool isExpectedUtf8,
57                                bool isActualUtf8,
58                                int theLinesToOmit,
59                                QString& theMsg );
60
61 private:
62   static OCCViewer_ViewManager* myViewManager;
63   static OCCViewer_ViewWindow* myViewWindow;
64   static QString myKey;
65 };
66
67 #define CPPUNIT_ASSERT_IMAGES                              \
68   {                                                        \
69     QString aMessage;                                      \
70     if( !TestViewer::AssertImages( aMessage ) )            \
71     {                                                      \
72       TestViewer::showColorScale( false );                 \
73       std::string aMessageStl = aMessage.toStdString();    \
74       CPPUNIT_FAIL( aMessageStl.c_str() );                 \
75     }                                                      \
76   }                                                        \
77
78 #define CPPUNIT_ASSERT_IMAGES2( theImage, theCase )        \
79   {                                                        \
80     QString aMessage;                                      \
81     if( !TestViewer::AssertImages( aMessage, theImage, theCase ) ) \
82     {                                                      \
83       TestViewer::showColorScale( false );                 \
84       std::string aMessageStl = aMessage.toStdString();    \
85       CPPUNIT_FAIL( aMessageStl.c_str() );                 \
86     }                                                      \
87   }                                                        \
88
89 #define CPPUNIT_ASSERT_SCRIPTS_EQUAL( theBaseName,         \
90                                       isExpectedUtf8,      \
91                                       isActualUtf8,        \
92                                       theLinesToOmit )     \
93   {                                                        \
94     QString aMsg;                                          \
95     if( !TestViewer::areScriptsEqual(                      \
96           theBaseName, isExpectedUtf8,                     \
97           isActualUtf8, theLinesToOmit, aMsg ) )           \
98     {                                                      \
99       std::string aStlMsg = "Scripts are not equal: " +    \
100         aMsg.toStdString();                                \
101       CPPUNIT_FAIL( aStlMsg );                             \
102     }                                                      \
103   }                                                        \
104                                                            \
105