Salome HOME
6817a7f64691102c78ccc2c9ecb2b00b80e00ac1
[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 class OCCViewer_ViewManager;
22 class OCCViewer_Viewer;
23 class OCCViewer_ViewWindow;
24 class TopoDS_Shape;
25 class QString;
26 class QColor;
27 class Handle_AIS_InteractiveObject;
28 class Handle_Aspect_ColorScale;
29
30 class TestViewer
31 {
32 public:
33   static OCCViewer_ViewManager* viewManager();
34   static OCCViewer_Viewer* viewer();
35   static OCCViewer_ViewWindow* viewWindow();
36
37   static void show( const Handle_AIS_InteractiveObject& theObject,
38                     int theMode, int theSelectionMode, bool isFitAll, const char* theKey );
39   static void show( const TopoDS_Shape& theShape, int theMode, bool isFitAll, const QColor& theColor );
40   static void show( const TopoDS_Shape& theShape, int theMode, bool isFitAll, const char* theKey );
41   static bool AssertImages( QString& theMessage );
42   static QColor GetColor(int i);
43
44   static Handle_Aspect_ColorScale showColorScale( bool );
45
46   static void select( int theViewX, int theViewY );
47
48   static bool areScriptsEqual( const QString& theBaseName,
49                                bool isExpectedUtf8,
50                                bool isActualUtf8,
51                                int theLinesToOmit );
52
53 private:
54   static OCCViewer_ViewManager* myViewManager;
55   static OCCViewer_ViewWindow* myViewWindow;
56   static QString myKey;
57 };
58
59 #define CPPUNIT_ASSERT_IMAGES                              \
60   {                                                        \
61     QString aMessage;                                      \
62     if( !TestViewer::AssertImages( aMessage ) )            \
63     {                                                      \
64       std::string aMessageStl = aMessage.toStdString();    \
65       CPPUNIT_FAIL( aMessageStl.c_str() );                 \
66     }                                                      \
67   }                                                        \
68
69 #define CPPUNIT_ASSERT_SCRIPTS_EQUAL( theBaseName,         \
70                                       isExpectedUtf8,      \
71                                       isActualUtf8,        \
72                                       theLinesToOmit )     \
73   if( !TestViewer::areScriptsEqual( theBaseName,           \
74                                     isExpectedUtf8,        \
75                                     isActualUtf8,          \
76                                     theLinesToOmit ) )     \
77     CPPUNIT_FAIL( "Scripts are not equal" );               \
78
79