Salome HOME
859f0076372822e9d67e35cc1f4a509d834e01b0
[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 void ShowShape(const TopoDS_Shape& theShape, int theMode, int& i);
42   static bool AssertImages( QString& theMessage );
43   static QColor GetColor(int i);
44
45   static Handle_Aspect_ColorScale showColorScale( bool );
46
47   static void select( int theViewX, int theViewY );
48
49   static bool areScriptsEqual( const QString& theBaseName,
50                                bool isExpectedUtf8,
51                                bool isActualUtf8,
52                                int theLinesToOmit,
53                                QString& theMsg );
54
55 private:
56   static OCCViewer_ViewManager* myViewManager;
57   static OCCViewer_ViewWindow* myViewWindow;
58   static QString myKey;
59 };
60
61 #define CPPUNIT_ASSERT_IMAGES                              \
62   {                                                        \
63     QString aMessage;                                      \
64     if( !TestViewer::AssertImages( aMessage ) )            \
65     {                                                      \
66       std::string aMessageStl = aMessage.toStdString();    \
67       CPPUNIT_FAIL( aMessageStl.c_str() );                 \
68     }                                                      \
69   }                                                        \
70
71 #define CPPUNIT_ASSERT_SCRIPTS_EQUAL( theBaseName,         \
72                                       isExpectedUtf8,      \
73                                       isActualUtf8,        \
74                                       theLinesToOmit )     \
75   {                                                        \
76     QString aMsg;                                          \
77     if( !TestViewer::areScriptsEqual(                      \
78           theBaseName, isExpectedUtf8,                     \
79           isActualUtf8, theLinesToOmit, aMsg ) )           \
80     {                                                      \
81       std::string aStlMsg = "Scripts are not equal: " +    \
82         aMsg.toStdString();                                \
83       CPPUNIT_FAIL( aStlMsg );                             \
84     }                                                      \
85   }                                                        \
86                                                            \
87