Salome HOME
refs #1332: first automatic test on profiles dialog size
[modules/hydro.git] / src / HYDRO_tests / test_HYDROGUI_ProfilesDlg.cxx
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 #undef HYDROGUI_EXPORTS
20
21 #include <test_HYDROGUI_ProfilesDlg.h>
22 #include <HYDROGUI_ProfileDlg.h>
23 #include <TestViewer.h>
24 #include <QApplication>
25 #include <QTest>
26
27 #define CPPUNIT_ASSERT_WIDGET( theWidget, theCase )                           \
28   {                                                                           \
29     QPixmap aPixmap = QPixmap::grabWindow( theWidget->winId() );              \
30     QImage anImage = aPixmap.toImage();                                       \
31     QString aMessage;                                                         \
32     if( !TestViewer::AssertImages( aMessage, &anImage, theCase, false ) )     \
33     {                                                                         \
34       TestViewer::showColorScale( false );                                    \
35       std::string aMessageStl = aMessage.toStdString();                       \
36       CPPUNIT_FAIL( aMessageStl.c_str() );                                    \
37     }                                                                         \
38   }                                                                           \
39
40
41 void test_HYDROGUI_ProfilesDlg::test_default_size()
42 {
43   HYDROGUI_ProfileDlg* dlg = new HYDROGUI_ProfileDlg( 0, "test" );
44   dlg->resize( 320, 640 );
45   dlg->show();
46   QTest::qWaitForWindowExposed( dlg );
47
48   CPPUNIT_ASSERT_WIDGET( dlg, "profiles_dlg_presentation" );
49
50   dlg->deleteLater();
51   qApp->processEvents();
52 }