os/graphics/windowing/windowserver/test/t_genericplugin/src/t_wservgenericpluginstepload.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 // Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
     2 // All rights reserved.
     3 // This component and the accompanying materials are made available
     4 // under the terms of "Eclipse Public License v1.0"
     5 // which accompanies this distribution, and is available
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 //
    15 
    16 /**
    17  @file
    18  @test
    19  @internalComponent
    20 */
    21 
    22 #include "t_wservgenericpluginstepload.h"
    23 #include <tefunit.h>
    24 #include <e32const.h>	//KNullUidValue
    25 #include <gdi.h>
    26 #include <stdlib.h>
    27 
    28 const TPoint KWinPos(0,0);
    29 const TSize KWinSize(100,100);
    30 const TRect KWinRect(KWinPos,KWinSize);
    31 const TRect KEllipseRect(TPoint(10,10), TSize(50,50));
    32 
    33 _LIT(KDefaultPluginBmp, "Z:\\wstest\\genericplugin\\defaultplugin.mbm");
    34 _LIT(KTestPluginBmp, "Z:\\wstest\\genericplugin\\testplugin.mbm");
    35 _LIT(KTWServGenericPluginStepTestId,"testid");
    36 
    37 /**
    38 Constructor of CT_WServGenericpluginStepLoad
    39 */
    40 CT_WServGenericpluginStepLoad::CT_WServGenericpluginStepLoad()
    41 	{
    42 	SetTestStepName(KT_WServGenericpluginStepLoad);
    43 	}
    44 
    45 /**
    46 Destructor of CT_WServGenericpluginStepLoad
    47 */
    48 CT_WServGenericpluginStepLoad::~CT_WServGenericpluginStepLoad()
    49 	{
    50 	delete iGc;
    51 	delete iScreen;
    52 	delete iScreen1;
    53 	delete iDefaultPluginBmp;
    54 	delete iTestPluginBmp;
    55 	iWinGroup.Close();
    56 	iWinGroup1.Close();
    57 	iWsSession.Flush();
    58 	iWsSession.Close();
    59 	}
    60 
    61 /**
    62 Checks if message is logged in the log file.
    63 @param	aMsg The message to be checked.
    64 @return ETrue if the message is found in the log file, otherwise EFalse.
    65 */
    66 TInt CT_WServGenericpluginStepLoad::CheckLogL(TDesC8& aMsg)
    67 	{
    68 	RFs fs;
    69 	CleanupClosePushL(fs);
    70 	User::LeaveIfError(fs.Connect());
    71 	
    72 	RFile logFile;
    73 	CleanupClosePushL(logFile);
    74 
    75 	TInt ret = logFile.Open(fs, KLogFileName, EFileShareAny|EFileRead);
    76 	if (ret == KErrNone)
    77 		{
    78 		TInt fileSize;
    79     	User::LeaveIfError(logFile.Size(fileSize));
    80 
    81 		HBufC8* buf = HBufC8::NewLC(fileSize);
    82 		TPtr8 ptr(buf->Des());
    83 		ret = logFile.Read(ptr);
    84 		if (ret == KErrNone)
    85 			{
    86 			ret = ptr.Find(aMsg);
    87 			if (ret != KErrNotFound)
    88 				{
    89 				ret = EMsgFound;
    90 				}
    91 			else
    92 				{
    93 				ret = EMsgNotFound;
    94 				}		
    95 			}
    96 		CleanupStack::PopAndDestroy(buf);	
    97 		}
    98 	else if (ret == KErrNotFound)
    99 		{
   100 		ret = EFileNotExist;
   101 		}
   102 	CleanupStack::PopAndDestroy(&logFile);
   103 	CleanupStack::PopAndDestroy(&fs);
   104 	return ret;
   105 	}
   106 
   107 /**
   108 Overrides test step preamble.
   109 */
   110 enum TVerdict CT_WServGenericpluginStepLoad::doTestStepPreambleL()
   111 	{
   112 	TVerdict ret = CTestStep::doTestStepPreambleL();
   113 	if ( !GetIntFromConfig( ConfigSection(), KTWServGenericPluginStepTestId, iTestId ))
   114 		{
   115 		User::Leave(KErrNotFound);
   116 		}
   117 	else
   118 		{
   119 		iDisplayMode = EColor64K;
   120 		User::LeaveIfError(iWsSession.Connect());
   121 
   122 		iScreen = new (ELeave) CWsScreenDevice(iWsSession);
   123 		User::LeaveIfError(iScreen->Construct());
   124 		iWinGroup = RWindowGroup(iWsSession);
   125 		User::LeaveIfError(iWinGroup.Construct(KNullWsHandle, iScreen));
   126 		iWinGroup.AutoForeground(ETrue);
   127 		iGc = new (ELeave) CWindowGc(iScreen);
   128 		User::LeaveIfError(iGc->Construct());
   129 
   130 		iScreen1 = new (ELeave) CWsScreenDevice(iWsSession);
   131 		User::LeaveIfError(iScreen1->Construct(1));
   132 		iWinGroup1 = RWindowGroup(iWsSession);
   133 		User::LeaveIfError(iWinGroup1.Construct(KNullWsHandle, iScreen1) );
   134 		iWinGroup1.AutoForeground(ETrue);
   135 	
   136 		iDefaultPluginBmp = new(ELeave) CFbsBitmap;
   137 		User::LeaveIfError(iDefaultPluginBmp->Load(KDefaultPluginBmp));
   138 		iTestPluginBmp = new(ELeave) CFbsBitmap;
   139 		User::LeaveIfError(iTestPluginBmp->Load(KTestPluginBmp));
   140 		iWsSession.Flush();
   141 		}
   142 	return ret;
   143 	}
   144 
   145 /**
   146 Overrides test step prostamble.
   147 */
   148 enum TVerdict CT_WServGenericpluginStepLoad::doTestStepPostambleL()
   149 	{
   150 	return TestStepResult();
   151 	}
   152 
   153 /**
   154 Starts test step
   155 @return TVerdict pass / fail
   156 */
   157 enum TVerdict CT_WServGenericpluginStepLoad::doTestStepL()
   158 	{
   159 	__UHEAP_MARK;
   160 	RWindow win;
   161 	CleanupClosePushL(win);
   162 	CreateRWindowL(iWinGroup, win, KWinPos, KRgbBlue, KWinSize);
   163 	DrawShape(win);
   164 	
   165 	RWindow win1;
   166 	CleanupClosePushL(win1);
   167 	CreateRWindowL(iWinGroup1, win1, KWinPos, KRgbBlue, KWinSize);
   168 	DrawShape(win1);
   169 	
   170 	switch( iTestId )
   171 		{
   172 		case 1:
   173 			INFO_PRINTF1(_L("Testing Control of CWsPlugin loading from WSINI.INI..."));
   174 			GraphicsWservGenericpluginLoad1L();
   175 			break;
   176 		case 2:	
   177 			INFO_PRINTF1(_L("Testing that plugins can be specified on a per-screen basis through WSINI.INI file..."));
   178 			GraphicsWservGenericpluginLoad2L();
   179 			break;
   180 		case 3:	
   181 			INFO_PRINTF1(_L("Testing Integer and string attributes in WSINI.INI file can be read from CWsPlugin..."));
   182 			GraphicsWservGenericpluginLoad3L();
   183 			break;
   184 		case 4:
   185 			INFO_PRINTF1(_L("Testing CWsPlugin can gain information about closing windows using MWsWindow interface..."));
   186 			GraphicsWservGenericpluginLoad4L();
   187 			break;
   188 		case 5:	
   189 			INFO_PRINTF1(_L("Testing CWsPlugin can obtain instance of another CWPlugin..."));
   190 			GraphicsWservGenericpluginLoad5L();
   191 			break;
   192 		default:
   193 			break;	
   194 		}
   195 	CleanupStack::PopAndDestroy(2,&win);
   196 
   197 	__UHEAP_MARKEND;
   198 	return TestStepResult();
   199 	}
   200 
   201 /**
   202 Creates a RWindow
   203 @param aWinGroup The window group object
   204 @param aWin	The window object
   205 @param aPos	The Position of the window
   206 @param aBkgdColor The background color of the window
   207 @param aSize The size of the window
   208 @param aHandle The handle of the window
   209 */
   210 void CT_WServGenericpluginStepLoad::CreateRWindowL(const RWindowGroup& aWinGroup, 
   211 												   RWindow& aWin, 
   212 												   const TPoint& aPos, 
   213 												   const TRgb& aBkgdColor, 
   214 												   const TSize& aWinSize,
   215 												   const TUint32 aHandle)
   216 	{
   217 	aWin = RWindow( iWsSession );
   218 	CleanupClosePushL( aWin );
   219 	User::LeaveIfError( aWin.Construct( aWinGroup, aHandle ) );
   220 	CleanupStack::Pop(&aWin);
   221 	aWin.SetRequiredDisplayMode(iDisplayMode);
   222 	aWin.SetExtent(aPos, aWinSize);
   223 	aWin.SetBackgroundColor( aBkgdColor );
   224 	aWin.Activate();
   225 	aWin.SetVisible( ETrue );
   226 	}
   227 
   228 /**
   229 Draw an ellipse to the window and fade the window.
   230 @param aWin The window object
   231 */
   232 void CT_WServGenericpluginStepLoad::DrawShape(RWindow& aWin)
   233 	{
   234 	TUint8 white = 255;
   235 	TUint8 black = 128;
   236 	
   237 	iGc->Activate(aWin);
   238 	iGc->SetBrushStyle(CGraphicsContext::ESolidBrush);
   239 	iGc->SetBrushColor(KRgbWhite);
   240 	iGc->DrawEllipse(KEllipseRect);
   241 	iWsSession.Flush();	
   242 	User::After(KDelay);
   243 	
   244 	aWin.SetFaded(ETrue,RWindowTreeNode::EFadeWindowOnly,black,white);
   245 	iWsSession.Flush();	
   246 	User::After(KDelay);
   247 
   248 	iGc->Deactivate();
   249 	}
   250 
   251 /**
   252 Compare the window with the bitmap.
   253 @param aScreen The screen device object
   254 @param aBitmap The bitmap object for comparison
   255 @return ETrue if the window and the bitmap is identified. Otherwise return EFalse.
   256 */
   257 TBool CT_WServGenericpluginStepLoad::CompareDisplayL(CWsScreenDevice* aScreen, CFbsBitmap* aBitmap)
   258 	{
   259 	// Capture window display to bitmap
   260 	CFbsBitmap* screenBitmap = new(ELeave) CFbsBitmap();
   261 	CleanupStack::PushL(screenBitmap);
   262 	User::LeaveIfError(screenBitmap->Create(KWinRect.Size(), iDisplayMode));
   263 	User::LeaveIfError(aScreen->CopyScreenToBitmap(screenBitmap, KWinRect));	
   264 	
   265 	//Compare the window bitmap with the bitmap pass in for comparison
   266 	TBool ret = ETrue;
   267 	
   268 	const TReal KErrorLimit = 0.05;
   269 	
   270 	TInt mismatchedPixels = 0;
   271 	TRgb testWinPix = TRgb(0,0,0,0);
   272 	TRgb checkWinPix = TRgb(0,0,0,0);
   273 	for (TInt x = 0; x < KWinRect.Width(); x++)
   274 		{
   275 		for (TInt y = 0; y < KWinRect.Height(); y++)
   276 			{
   277 			screenBitmap->GetPixel(testWinPix, TPoint(x,y));
   278 			aBitmap->GetPixel(checkWinPix, TPoint(x,y));
   279 			
   280 			//check if there are differeces between test Window colors and check Window colors
   281 			if(((TReal)abs(testWinPix.Red() - checkWinPix.Red())/255) > KErrorLimit || 
   282 					((TReal)abs(testWinPix.Blue() - checkWinPix.Blue())/255) > KErrorLimit || 
   283 					((TReal)abs(testWinPix.Green() - checkWinPix.Green())/255) > KErrorLimit || 
   284 					((TReal)abs(testWinPix.Alpha() - checkWinPix.Alpha())/255) > KErrorLimit)
   285 				{
   286 				mismatchedPixels++;  // -- Useful for debugging
   287 				ret = EFalse;
   288 				break;
   289 				}
   290 			}
   291 		}
   292 	
   293 	/* INFO_PRINTF2(_L("Number of different pixels: %i"), mismatchedPixels); */ // -- Useful for debugging
   294 	
   295 
   296 	CleanupStack::PopAndDestroy(screenBitmap);	
   297 	
   298 	
   299 	
   300 	return ret;
   301 	}
   302 
   303 /**
   304 Calculate the portion of window displayed on the screen (absRect).
   305 @param aAbsRect The size of the window displayed on the screen
   306 @param aPos The origin of the window
   307 @param aWinSize The size of the window
   308 */
   309 void CT_WServGenericpluginStepLoad::CalcAbsRect(TSize& aAbsRect, const TPoint& aPos, const TSize& aWinSize)
   310 	{
   311 	if((aPos.iX + aWinSize.iWidth) > iScreen->SizeInPixels().iWidth)
   312 		{
   313 		aAbsRect.iWidth = iScreen->SizeInPixels().iWidth - aPos.iX;
   314 		}	
   315 	else if(aPos.iX < 0)
   316 		{
   317 		aAbsRect.iWidth = aPos.iX + aWinSize.iWidth;
   318 		}
   319 	else
   320 		{
   321 		aAbsRect.iWidth = aWinSize.iWidth;
   322 		}
   323 	if((aPos.iY + aWinSize.iHeight) > iScreen->SizeInPixels().iHeight)
   324 		{
   325 		aAbsRect.iHeight = iScreen->SizeInPixels().iHeight - aPos.iY;
   326 		}
   327 	else if(aPos.iY < 0)
   328 		{
   329 		aAbsRect.iHeight = aPos.iY + aWinSize.iHeight;
   330 		}
   331 	else
   332 		{
   333 		aAbsRect.iHeight = aWinSize.iHeight;
   334 		}
   335 	}
   336 
   337 /**
   338 @SYMTestCaseID			graphics-wserv-1841-0001
   339 @SYMPREQ				1841
   340 @SYMTestCaseDesc		Control of CWsPlugin loading from WSINI.INI			
   341 @SYMTestActions			tests alternative fader specified by an ID and alternative 
   342 						render stage specified by TYPE in wsini.ini file are loaded
   343 @SYMTestStatus			Implemented
   344 @SYMTestPriority		2
   345 @SYMTestExpectedResults	Alternative plugins are loaded as specified.
   346 						Window created in screen 0 is faded with custom fader and 
   347 						two lines are drawn on the left top window by custom render stage.
   348 @SYMTestType			CT
   349 */	
   350 void CT_WServGenericpluginStepLoad::GraphicsWservGenericpluginLoad1L()
   351 	{
   352 	//Compare the window with the bitmap which uses test plugin. They are identical.
   353 	TEST(CompareDisplayL(iScreen, iTestPluginBmp));
   354 	//Check the log file. Test fader and test render stage are created.
   355 	TBuf8<255> msg(_L8("TestMWsIniFile is created."));
   356 	TEST(CheckLogL(msg) == EMsgFound);
   357 	msg = _L8("TestRenderStageFactory is created.");
   358 	TEST(CheckLogL(msg) == EMsgFound);
   359 	msg = _L8("TestRenderStage is created.");
   360 	TEST(CheckLogL(msg) == EMsgFound);
   361 	}
   362 
   363 /**
   364 @SYMTestCaseID			graphics-wserv-1841-0002
   365 @SYMPREQ				1841
   366 @SYMTestCaseDesc		Test that plugins can be specified on a per-screen basis through WSINI.INI file
   367 @SYMTestActions			Create modified WSINI.INI file which specifies different fader and render stage
   368 						plugins to be used on screens 0 and 1.
   369 @SYMTestStatus			Implemented
   370 @SYMTestPriority		2
   371 @SYMTestExpectedResults	Both sets of plugins are loaded, and the correct plugin is used on each screen.
   372 						Windows created in different screen are faded with different color.
   373 						Windows in screen 0 have two lines drawn on left top window by custom render stage 
   374 						while windows in screen 1 use standard render stage.
   375 @SYMTestType			CT
   376 */
   377 void CT_WServGenericpluginStepLoad::GraphicsWservGenericpluginLoad2L()
   378 	{
   379 	//Test drawing in screen 0. testfader and testRenderStage are used.
   380 	//Compare the window with the bitmap which uses default plugin.
   381 	TEST(!CompareDisplayL(iScreen, iDefaultPluginBmp));
   382 	//Compare the window with the bitmap which uses test plugins.
   383 	TEST(CompareDisplayL(iScreen, iTestPluginBmp));
   384 
   385 	//Test drawing in screen 1. testfader_data and testrenderstage_invalid are used.
   386 	//TestRenderStage_Invalid is not created because NULL is returned from CreateStageL.
   387 	
   388 	//Check the log file. 
   389 	TBuf8<255> msg(_L8("TestMWsIniFile is created."));
   390 	TEST(CheckLogL(msg) == EMsgFound);
   391 	msg = _L8("TestRenderStageFactory is created.");
   392 	TEST(CheckLogL(msg) == EMsgFound);
   393 	msg = _L8("TestRenderStage is created.");
   394 	TEST(CheckLogL(msg) == EMsgFound);
   395 	msg = _L8("TestRenderStage_invalid is created.");
   396 	TEST(CheckLogL(msg) == EMsgNotFound);
   397 	}
   398 
   399 /**
   400 @SYMTestCaseID			graphics-wserv-1841-0004
   401 @SYMPREQ				1841
   402 @SYMTestCaseDesc		Integer and string attributes in WSINI.INI file can be read from CWsPlugin. 			
   403 @SYMTestActions			Create modified WSINI.INI file which specifies a test fader to be loaded to screen 0.
   404 						Specifies integer and string variables for default, custom, and screen sections
   405 @SYMTestStatus			Implemented
   406 @SYMTestPriority		2
   407 @SYMTestExpectedResults	Alternative plug-in is loaded as specified and attributes can be accessed from plug-in.
   408 @SYMTestType			CT
   409 */	
   410 void CT_WServGenericpluginStepLoad::GraphicsWservGenericpluginLoad3L()
   411 	{
   412 	//Check the log file.
   413 	TBuf8<255> msg;
   414 	msg = _L8("Screen Section has correct integer data");
   415 	TEST(CheckLogL(msg) == EMsgFound);
   416 	msg = _L8("Screen Section has correct string data");
   417 	TEST(CheckLogL(msg) == EMsgFound);
   418 	msg = _L8("Custom Section has correct integer data");
   419 	TEST(CheckLogL(msg) == EMsgFound);
   420 	msg = _L8("Custom Section has correct string data");
   421 	TEST(CheckLogL(msg) == EMsgFound);
   422 	msg = _L8("Default Section has correct integer data");
   423 	TEST(CheckLogL(msg) == EMsgFound);
   424 	msg = _L8("Default Section has correct string data");
   425 	TEST(CheckLogL(msg) == EMsgFound);
   426 	msg = _L8("Default Section does not have missing attribute");
   427 	TEST(CheckLogL(msg) == EMsgFound);
   428 	msg = _L8("Screen Section does not have missing attribute");
   429 	TEST(CheckLogL(msg) == EMsgFound);
   430 	msg = _L8("Custom Section does not have missing attribute");
   431 	TEST(CheckLogL(msg) == EMsgFound);
   432 	msg = _L8("Default Section - Integer data retrieved with method for string attribute");
   433 	TEST(CheckLogL(msg) == EMsgFound);
   434 	msg = _L8("Default Section - Could not access string attribute with method for integer attribute");
   435 	TEST(CheckLogL(msg) == EMsgFound);
   436 	msg = _L8("Screen Section - Integer data retrieved with method for string attribute");
   437 	TEST(CheckLogL(msg) == EMsgFound);
   438 	msg = _L8("Screen Section - Could not access string attribute with method for integer attribute");
   439 	TEST(CheckLogL(msg) == EMsgFound);
   440 	msg = _L8("Custom Section - Integer data retrieved with method for string attribute");
   441 	TEST(CheckLogL(msg) == EMsgFound);
   442 	msg = _L8("Custom Section - Could not access string attribute with method for integer attribute");
   443 	TEST(CheckLogL(msg) == EMsgFound);
   444 	msg = _L8("Could not access variables because screen does not exist");
   445 	TEST(CheckLogL(msg) == EMsgFound);
   446 	msg = _L8("Could not access variables because section does not exist");
   447 	TEST(CheckLogL(msg) == EMsgFound);
   448 	}
   449 
   450 /**
   451 @SYMTestCaseID			graphics-wserv-1841-0005
   452 @SYMPREQ				1841
   453 @SYMTestCaseDesc		CWsPlugin can gain information about closing windows using MWsWindow interface.
   454 @SYMTestActions			Create modified WSINI.INI file which specifies a test renderer to be loaded.
   455 						Register CWsPLugin as eventhandler receiving EWindowClosing events.
   456 @SYMTestStatus			Implemented
   457 @SYMTestPriority		2
   458 @SYMTestExpectedResults	Plugin can access information about closing windows through MWsWindow interface.
   459 						Windows with different size and position are created and closed in screen 0.
   460 @SYMTestType			CT
   461 */	
   462 void CT_WServGenericpluginStepLoad::GraphicsWservGenericpluginLoad4L()
   463 	{
   464 	const TUint32 KWin1WsHandle = 0xFFFFFFFC;
   465 	const TUint32 KWin2WsHandle = 0xFFFFFFFD;
   466 	const TUint32 KWin3WsHandle = 0xFFFFFFFE;
   467 	TPoint w1Point(50,240);
   468 	TPoint w2Point(580,100);
   469 	TPoint w3Point(25,100);
   470 	TSize w1Size(10,10);
   471 	TSize w2Size(150,70);
   472 	TSize w3Size(50,140);
   473 		
   474 	//Draw windows with different origins and sizes	
   475 	RWindow win;	
   476 	CleanupClosePushL(win);
   477 	CreateRWindowL(iWinGroup, win, w1Point, KRgbBlue, w1Size, KWin1WsHandle);
   478 	DrawShape(win);
   479 	CleanupStack::PopAndDestroy(&win);
   480 	
   481 	CleanupClosePushL(win);
   482 	CreateRWindowL(iWinGroup, win, w2Point, KRgbBlue, w2Size, KWin2WsHandle);
   483 	DrawShape(win);
   484 	CleanupStack::PopAndDestroy(&win);
   485 	
   486 	CleanupClosePushL(win);
   487 	CreateRWindowL(iWinGroup, win, w3Point, KRgbBlue, w3Size, KWin3WsHandle);
   488 	DrawShape(win);
   489 	CleanupStack::PopAndDestroy(&win);
   490 	
   491 	CleanupClosePushL(win); //create dummy 4th window to ensure window3 closing event has time to log info
   492 	CreateRWindowL(iWinGroup, win, w2Point, KRgbBlue, w2Size, KWin2WsHandle);
   493 	DrawShape(win);
   494 	CleanupStack::PopAndDestroy(&win);
   495 	
   496 	//Calculate AbsRect values
   497 	TSize absRect1;
   498 	TSize absRect2;
   499 	TSize absRect3;
   500 	CalcAbsRect(absRect1, w1Point, w1Size);	
   501 	CalcAbsRect(absRect2, w2Point, w2Size);	
   502 	CalcAbsRect(absRect3, w3Point, w3Size);
   503 	
   504 	TBuf8<255> msg;
   505 	//check log for window1 info
   506 	msg.Format(_L8("Closing Window Handle %d - Origin: %d, %d"), KWin1WsHandle, w1Point.iX, w1Point.iY);
   507 	TEST(CheckLogL(msg) == EMsgFound);
   508 	msg.Format(_L8("Closing Window Handle %d - AbsRec: Height %d, Width %d"), KWin1WsHandle, absRect1.iHeight, absRect1.iWidth);
   509 	TEST(CheckLogL(msg) == EMsgFound);
   510 	msg.Format(_L8("Closing Window Handle %d - Size: Height %d, Width %d"), KWin1WsHandle, w1Size.iHeight, w1Size.iWidth);
   511 	TEST(CheckLogL(msg) == EMsgFound);
   512 	//check log for window2 info
   513 	msg.Format(_L8("Closing Window Handle %d - Origin: %d, %d"), KWin2WsHandle, w2Point.iX, w2Point.iY);
   514 	TEST(CheckLogL(msg) == EMsgFound);
   515 	msg.Format(_L8("Closing Window Handle %d - AbsRec: Height %d, Width %d"), KWin2WsHandle, absRect2.iHeight, absRect2.iWidth);
   516 	TEST(CheckLogL(msg) == EMsgFound);
   517 	msg.Format(_L8("Closing Window Handle %d - Size: Height %d, Width %d"), KWin2WsHandle, w2Size.iHeight, w2Size.iWidth);
   518 	TEST(CheckLogL(msg) == EMsgFound);
   519 	//check log for window3 info
   520 	msg.Format(_L8("Closing Window Handle %d - Origin: %d, %d"), KWin3WsHandle, w3Point.iX, w3Point.iY);
   521 	TEST(CheckLogL(msg) == EMsgFound);
   522 	msg.Format(_L8("Closing Window Handle %d - AbsRec: Height %d, Width %d"), KWin3WsHandle, absRect3.iHeight, absRect3.iWidth);
   523 	TEST(CheckLogL(msg) == EMsgFound);
   524 	msg.Format(_L8("Closing Window Handle %d - Size: Height %d, Width %d"), KWin3WsHandle, w3Size.iHeight, w3Size.iWidth);
   525 	TEST(CheckLogL(msg) == EMsgFound);
   526 	}
   527 
   528 /**
   529 @SYMTestCaseID			graphics-wserv-1841-0006
   530 @SYMPREQ				1841
   531 @SYMTestCaseDesc		CWsPlugin can obtain instance of another CWPlugin.
   532 @SYMTestActions			Create modified WSINI.INI file which specifies a test renderer, test fader, and service plug-in to be loaded.
   533 						Service plugin offers elementary service to other plug-ins.
   534 @SYMTestStatus			Implemented
   535 @SYMTestPriority		2
   536 @SYMTestExpectedResults	Test fader can access information set in service plugin by test renderer.
   537 @SYMTestType			CT
   538 */
   539 void CT_WServGenericpluginStepLoad::GraphicsWservGenericpluginLoad5L()
   540 	{
   541 	//Check the log file.
   542 	TBuf8<255> msg;
   543 	msg = _L8("Fading parameters have been set.");	
   544 	TEST(CheckLogL(msg) == EMsgFound);
   545 	msg = _L8("Returned fade color.");	
   546 	TEST(CheckLogL(msg) == EMsgFound);
   547 	}
   548