Salome HOME
refs #1327: debug of automatic tests
[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                     int theUIANb = 10, int theVIANb = 10);
46   static void show( const TopoDS_Shape& theShape, int theMode, bool isFitAll, const char* theKey,
47                     int theUIANb = 10, int theVIANb = 10);
48   static bool AssertImages( QString& theMessage, const QImage* = 0, const char* theCase = 0 );
49   static QColor GetColor(int i);
50
51   static Handle(AIS_ColorScale) colorScale();
52   static void showColorScale( bool );
53   static bool ColorScaleIsDisplayed();
54
55   static void select( int theViewX, int theViewY );
56
57   static bool areScriptsEqual( const QString& theBaseName,
58                                bool isExpectedUtf8,
59                                bool isActualUtf8,
60                                int theLinesToOmit,
61                                QString& theMsg );
62
63   static void setKey( const QString& );
64
65 private:
66   static OCCViewer_ViewManager* myViewManager;
67   static OCCViewer_ViewWindow* myViewWindow;
68   static QString myKey;
69 };
70
71 #define CPPUNIT_ASSERT_IMAGES                              \
72   {                                                        \
73     QString aMessage;                                      \
74     if( !TestViewer::AssertImages( aMessage ) )            \
75     {                                                      \
76       TestViewer::showColorScale( false );                 \
77       std::string aMessageStl = aMessage.toStdString();    \
78       CPPUNIT_FAIL( aMessageStl.c_str() );                 \
79     }                                                      \
80   }                                                        \
81
82 #define CPPUNIT_ASSERT_IMAGES2( theImage, theCase )        \
83   {                                                        \
84     QString aMessage;                                      \
85     if( !TestViewer::AssertImages( aMessage, theImage, theCase ) ) \
86     {                                                      \
87       TestViewer::showColorScale( false );                 \
88       std::string aMessageStl = aMessage.toStdString();    \
89       CPPUNIT_FAIL( aMessageStl.c_str() );                 \
90     }                                                      \
91   }                                                        \
92
93 #define CPPUNIT_ASSERT_SCRIPTS_EQUAL( theBaseName,         \
94                                       isExpectedUtf8,      \
95                                       isActualUtf8,        \
96                                       theLinesToOmit )     \
97   {                                                        \
98     QString aMsg;                                          \
99     if( !TestViewer::areScriptsEqual(                      \
100           theBaseName, isExpectedUtf8,                     \
101           isActualUtf8, theLinesToOmit, aMsg ) )           \
102     {                                                      \
103       std::string aStlMsg = "Scripts are not equal: " +    \
104         aMsg.toStdString();                                \
105       CPPUNIT_FAIL( aStlMsg );                             \
106     }                                                      \
107   }                                                        \
108                                                            \
109