TestXDisplay.cpp

Go to the documentation of this file.
00001 
00002 //
00003 // This source file is a part of ParCompMark
00004 // Parallel Compositing Benchmark Framework
00005 //
00006 // for latest info see http://parcompmark.sourceforge.net
00007 
00008 //
00009 // Copyright (C) 2006 IT2 ParCompMark Dev. Team
00010 // 
00011 // This program is free software; you can redistribute it and/or
00012 // modify it under the terms of the GNU General Public License
00013 // as published by the Free Software Foundation; either version 2
00014 // of the License, or (at your option) any later version.
00015 // 
00016 // This program is distributed in the hope that it will be useful,
00017 // but WITHOUT ANY WARRANTY; without even the implied warranty of
00018 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
00019 // GNU General Public License for more details.
00020 // 
00021 // You should have received a copy of the GNU General Public License
00022 // along with this program; if not, write to the Free Software
00023 // Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
00024 
00027 
00028 #include "../include/TestXDisplay.h"
00029 #include "../../include/PCMFileSystemManager.h"
00030 #include "../../include/PCMStringConverter.h"
00031 
00032 namespace ParCompMarkTest
00033 {
00034 
00035   void TestXDisplay::setUp()
00036   {
00037         std::string currentLogFile = "logs/TestXDisplay.log";
00038 
00039         if(Logger::getInstance() && Logger::getInstance()->getLogFileName() != currentLogFile)
00040          Logger::destroyInstance();
00041 
00042         if(!FileSystemManager::getInstance())
00043         {
00044          FileSystemManager::createInstance();
00045          FileSystemManager::getInstance()->setAppDirectory("./");
00046          FileSystemManager::getInstance()->initialize();
00047         }
00048 
00049         if(!Logger::getInstance())
00050         {
00051          Logger::createInstance();
00052          Logger::getInstance()->setLogFileName(currentLogFile);
00053          Logger::getInstance()->initialize();
00054         }
00055   }
00056 
00057  /*----------------------------------------------------------------------*/
00058 
00059   void TestXDisplay::tearDown()
00060   {
00061   }
00062 
00063  /*----------------------------------------------------------------------*/
00064 
00065   //
00066   // Constructor & destructor tests
00067   //
00068 
00069   void TestXDisplay::test_constructor_cstd__string()
00070   {
00071 
00072         /*
00073          * You have to verify the following:
00074          * 
00075          * Create an X display.
00076          */
00077 
00078         // Create display with default string
00079         XDisplay::Pointer d1(new XDisplay());
00080         d1.kill();
00081 
00082         // Create display with specified string
00083         XDisplay::Pointer d2(new XDisplay(":0.0"));
00084         d2.kill();
00085   }
00086 
00087  /*----------------------------------------------------------------------*/
00088 
00089   void TestXDisplay::test_destructor()
00090   {
00091         // Tested at constructor
00092   }
00093 
00094  /*----------------------------------------------------------------------*/
00095 
00096   //
00097   // Class method tests
00098   //
00099 
00100   void TestXDisplay::test_errorHandler_Display_p_XErrorEvent_p()
00101   {
00102 
00103         /*
00104          * You have to verify the following:
00105          * 
00106          * X error handler.
00107          */
00108 
00109         XDisplay::Pointer d(new XDisplay());
00110         CPPUNIT_ASSERT_NO_THROW(d->initialize());
00111 
00112         // Generate fake error message
00113         XErrorEvent errorEvent;
00114 
00115         errorEvent.type = 0;
00116         errorEvent.display = d->getDisplay();
00117         errorEvent.resourceid = 0;
00118         errorEvent.serial = 0;
00119         errorEvent.error_code = 0;
00120         errorEvent.request_code = 0;
00121         errorEvent.minor_code = 0;
00122 
00123         CPPUNIT_ASSERT_THROW(XDisplay::errorHandler(d->getDisplay(), &errorEvent), ParCompMark::Exception);
00124   }
00125 
00126  /*----------------------------------------------------------------------*/
00127 
00128   //
00129   // Method tests
00130   //
00131 
00132   void TestXDisplay::test_initialize()
00133   {
00134 
00135         /*
00136          * You have to verify the following:
00137          * 
00138          * Initialize X display.
00139          */
00140 
00141         // Create display with default string
00142         XDisplay::Pointer d(new XDisplay());
00143         CPPUNIT_ASSERT_NO_THROW(d->initialize());
00144 
00145         // Create display with uncorrect string
00146         XDisplay::Pointer derr(new XDisplay(":0.1234"));
00147         CPPUNIT_ASSERT_THROW(derr->initialize(), ParCompMark::Exception);
00148   }
00149 
00150  /*----------------------------------------------------------------------*/
00151 
00152   void TestXDisplay::test_finalize()
00153   {
00154 
00155         /*
00156          * You have to verify the following:
00157          * 
00158          * Finalize X display.
00159          */
00160 
00161         // Tested at initialize
00162   }
00163 
00164  /*----------------------------------------------------------------------*/
00165 
00166   void TestXDisplay::test_synchronize_cbool()
00167   {
00168 
00169         /*
00170          * You have to verify the following:
00171          * 
00172          * Flush the output buffer and then waits until all requests have been received and processed by the X server.
00173          */
00174 
00175         // Test flush
00176         {
00177          XDisplay::Pointer d(new XDisplay());
00178          CPPUNIT_ASSERT_NO_THROW(d->initialize());
00179          CPPUNIT_ASSERT_NO_THROW(d->synchronize());
00180         }
00181 
00182         // Test discard
00183         {
00184          XDisplay::Pointer d(new XDisplay());
00185          CPPUNIT_ASSERT_NO_THROW(d->initialize());
00186          CPPUNIT_ASSERT_NO_THROW(d->synchronize(true));
00187         }
00188   }
00189 
00190  /*----------------------------------------------------------------------*/
00191 
00192   void TestXDisplay::test_findBestVisual_cs32_cs32()
00193   {
00194 
00195         /*
00196          * You have to verify the following:
00197          * 
00198          * Examine all visuals to find the so-called best one. We prefer deepest RGBA buffer with depth, 
00199          * stencil and accum that has no caveats. This will only choose formats with a multisample that equals multisample.
00200          * 
00201          */
00202 
00203         XDisplay::Pointer d(new XDisplay());
00204         CPPUNIT_ASSERT_NO_THROW(d->initialize());
00205 
00206         int screen = DefaultScreen(d->getDisplay());
00207         int best_visual = -1;
00208 
00209         for(int fsaa = 8; fsaa > -1; fsaa--)
00210         {
00211          CPPUNIT_ASSERT_NO_THROW(best_visual = d->findBestVisual(screen, fsaa));
00212          if(best_visual == -1)
00213                 Logger::getInstance()->log(Logger::DEBUG,
00214                                          "FSAA " + StringConverter::toString(fsaa) + " is not supported.");
00215          else
00216                 Logger::getInstance()->log(Logger::DEBUG, "FSAA " + StringConverter::toString(fsaa) + " is supported.");
00217         }
00218   }
00219 
00220  /*----------------------------------------------------------------------*/
00221 
00222   void TestXDisplay::test_getVisualAttribs_XVisualInfo_p_VisualAttribs()
00223   {
00224 
00225         /*
00226          * You have to verify the following:
00227          * 
00228          * Get visual attributes for the specified visual info descriptor
00229          */
00230 
00231         XDisplay::Pointer d(new XDisplay());
00232         CPPUNIT_ASSERT_NO_THROW(d->initialize());
00233 
00234         XDisplay::VisualAttribs attribs;
00235         XVisualInfo theTemplate;
00236         XVisualInfo *visuals;
00237         int numVisuals;
00238         long mask;
00239 
00240         // get list of all visuals on this screen 
00241         theTemplate.screen = DefaultScreen(d->getDisplay());
00242         mask = VisualScreenMask;
00243         visuals = XGetVisualInfo(d->getDisplay(), mask, &theTemplate, &numVisuals);
00244         if(numVisuals == 0 || visuals == 0)
00245         {
00246          // something went wrong 
00247          if(visuals)
00248                 XFree(visuals);
00249          CPPUNIT_ASSERT_MESSAGE(false, "numVisuals == 0 || visuals == 0");
00250         }
00251 
00252         CPPUNIT_ASSERT_NO_THROW(d->getVisualAttribs(&visuals[0], attribs));
00253   }
00254 
00255  /*----------------------------------------------------------------------*/
00256 
00257   void TestXDisplay::test_initializeMT()
00258   {
00259 
00260         /*
00261          * You have to verify the following:
00262          * 
00263          * Initialize X multithreading, enable Xlib support for 
00264          * concurrent threads. This function must be the first Xlib function a 
00265          * multi-threaded program calls, and it must complete before any other 
00266          * Xlib call is made. (Internally called at the first XDisplay initialization.)
00267          */
00268 
00269         XDisplay::Pointer d(new XDisplay());
00270         CPPUNIT_ASSERT_NO_THROW(d->initialize());
00271 
00272         CPPUNIT_ASSERT_NO_THROW(d->initializeMT());
00273         CPPUNIT_ASSERT(XDisplay::mXMTInitialized);
00274   }
00275 
00276  /*----------------------------------------------------------------------*/
00277 
00278   // To register the suite we add:
00280   CPPUNIT_TEST_SUITE_REGISTRATION(TestXDisplay);
00281 }