TestXDisplay.cpp
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
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
00067
00068
00069 void TestXDisplay::test_constructor_cstd__string()
00070 {
00071
00072
00073
00074
00075
00076
00077
00078
00079 XDisplay::Pointer d1(new XDisplay());
00080 d1.kill();
00081
00082
00083 XDisplay::Pointer d2(new XDisplay(":0.0"));
00084 d2.kill();
00085 }
00086
00087
00088
00089 void TestXDisplay::test_destructor()
00090 {
00091
00092 }
00093
00094
00095
00096
00097
00098
00099
00100 void TestXDisplay::test_errorHandler_Display_p_XErrorEvent_p()
00101 {
00102
00103
00104
00105
00106
00107
00108
00109 XDisplay::Pointer d(new XDisplay());
00110 CPPUNIT_ASSERT_NO_THROW(d->initialize());
00111
00112
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
00130
00131
00132 void TestXDisplay::test_initialize()
00133 {
00134
00135
00136
00137
00138
00139
00140
00141
00142 XDisplay::Pointer d(new XDisplay());
00143 CPPUNIT_ASSERT_NO_THROW(d->initialize());
00144
00145
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
00157
00158
00159
00160
00161
00162 }
00163
00164
00165
00166 void TestXDisplay::test_synchronize_cbool()
00167 {
00168
00169
00170
00171
00172
00173
00174
00175
00176 {
00177 XDisplay::Pointer d(new XDisplay());
00178 CPPUNIT_ASSERT_NO_THROW(d->initialize());
00179 CPPUNIT_ASSERT_NO_THROW(d->synchronize());
00180 }
00181
00182
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
00197
00198
00199
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
00227
00228
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
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
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
00262
00263
00264
00265
00266
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
00280 CPPUNIT_TEST_SUITE_REGISTRATION(TestXDisplay);
00281 }