os/graphics/windowing/windowserver/test/t_genericplugin/src/t_wservgenericpluginstepload.cpp
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".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
22 #include "t_wservgenericpluginstepload.h"
24 #include <e32const.h> //KNullUidValue
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));
33 _LIT(KDefaultPluginBmp, "Z:\\wstest\\genericplugin\\defaultplugin.mbm");
34 _LIT(KTestPluginBmp, "Z:\\wstest\\genericplugin\\testplugin.mbm");
35 _LIT(KTWServGenericPluginStepTestId,"testid");
38 Constructor of CT_WServGenericpluginStepLoad
40 CT_WServGenericpluginStepLoad::CT_WServGenericpluginStepLoad()
42 SetTestStepName(KT_WServGenericpluginStepLoad);
46 Destructor of CT_WServGenericpluginStepLoad
48 CT_WServGenericpluginStepLoad::~CT_WServGenericpluginStepLoad()
53 delete iDefaultPluginBmp;
54 delete iTestPluginBmp;
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.
66 TInt CT_WServGenericpluginStepLoad::CheckLogL(TDesC8& aMsg)
69 CleanupClosePushL(fs);
70 User::LeaveIfError(fs.Connect());
73 CleanupClosePushL(logFile);
75 TInt ret = logFile.Open(fs, KLogFileName, EFileShareAny|EFileRead);
79 User::LeaveIfError(logFile.Size(fileSize));
81 HBufC8* buf = HBufC8::NewLC(fileSize);
82 TPtr8 ptr(buf->Des());
83 ret = logFile.Read(ptr);
87 if (ret != KErrNotFound)
96 CleanupStack::PopAndDestroy(buf);
98 else if (ret == KErrNotFound)
102 CleanupStack::PopAndDestroy(&logFile);
103 CleanupStack::PopAndDestroy(&fs);
108 Overrides test step preamble.
110 enum TVerdict CT_WServGenericpluginStepLoad::doTestStepPreambleL()
112 TVerdict ret = CTestStep::doTestStepPreambleL();
113 if ( !GetIntFromConfig( ConfigSection(), KTWServGenericPluginStepTestId, iTestId ))
115 User::Leave(KErrNotFound);
119 iDisplayMode = EColor64K;
120 User::LeaveIfError(iWsSession.Connect());
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());
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);
136 iDefaultPluginBmp = new(ELeave) CFbsBitmap;
137 User::LeaveIfError(iDefaultPluginBmp->Load(KDefaultPluginBmp));
138 iTestPluginBmp = new(ELeave) CFbsBitmap;
139 User::LeaveIfError(iTestPluginBmp->Load(KTestPluginBmp));
146 Overrides test step prostamble.
148 enum TVerdict CT_WServGenericpluginStepLoad::doTestStepPostambleL()
150 return TestStepResult();
155 @return TVerdict pass / fail
157 enum TVerdict CT_WServGenericpluginStepLoad::doTestStepL()
161 CleanupClosePushL(win);
162 CreateRWindowL(iWinGroup, win, KWinPos, KRgbBlue, KWinSize);
166 CleanupClosePushL(win1);
167 CreateRWindowL(iWinGroup1, win1, KWinPos, KRgbBlue, KWinSize);
173 INFO_PRINTF1(_L("Testing Control of CWsPlugin loading from WSINI.INI..."));
174 GraphicsWservGenericpluginLoad1L();
177 INFO_PRINTF1(_L("Testing that plugins can be specified on a per-screen basis through WSINI.INI file..."));
178 GraphicsWservGenericpluginLoad2L();
181 INFO_PRINTF1(_L("Testing Integer and string attributes in WSINI.INI file can be read from CWsPlugin..."));
182 GraphicsWservGenericpluginLoad3L();
185 INFO_PRINTF1(_L("Testing CWsPlugin can gain information about closing windows using MWsWindow interface..."));
186 GraphicsWservGenericpluginLoad4L();
189 INFO_PRINTF1(_L("Testing CWsPlugin can obtain instance of another CWPlugin..."));
190 GraphicsWservGenericpluginLoad5L();
195 CleanupStack::PopAndDestroy(2,&win);
198 return TestStepResult();
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
210 void CT_WServGenericpluginStepLoad::CreateRWindowL(const RWindowGroup& aWinGroup,
213 const TRgb& aBkgdColor,
214 const TSize& aWinSize,
215 const TUint32 aHandle)
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 );
225 aWin.SetVisible( ETrue );
229 Draw an ellipse to the window and fade the window.
230 @param aWin The window object
232 void CT_WServGenericpluginStepLoad::DrawShape(RWindow& aWin)
238 iGc->SetBrushStyle(CGraphicsContext::ESolidBrush);
239 iGc->SetBrushColor(KRgbWhite);
240 iGc->DrawEllipse(KEllipseRect);
244 aWin.SetFaded(ETrue,RWindowTreeNode::EFadeWindowOnly,black,white);
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.
257 TBool CT_WServGenericpluginStepLoad::CompareDisplayL(CWsScreenDevice* aScreen, CFbsBitmap* aBitmap)
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));
265 //Compare the window bitmap with the bitmap pass in for comparison
268 const TReal KErrorLimit = 0.05;
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++)
275 for (TInt y = 0; y < KWinRect.Height(); y++)
277 screenBitmap->GetPixel(testWinPix, TPoint(x,y));
278 aBitmap->GetPixel(checkWinPix, TPoint(x,y));
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)
286 mismatchedPixels++; // -- Useful for debugging
293 /* INFO_PRINTF2(_L("Number of different pixels: %i"), mismatchedPixels); */ // -- Useful for debugging
296 CleanupStack::PopAndDestroy(screenBitmap);
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
309 void CT_WServGenericpluginStepLoad::CalcAbsRect(TSize& aAbsRect, const TPoint& aPos, const TSize& aWinSize)
311 if((aPos.iX + aWinSize.iWidth) > iScreen->SizeInPixels().iWidth)
313 aAbsRect.iWidth = iScreen->SizeInPixels().iWidth - aPos.iX;
317 aAbsRect.iWidth = aPos.iX + aWinSize.iWidth;
321 aAbsRect.iWidth = aWinSize.iWidth;
323 if((aPos.iY + aWinSize.iHeight) > iScreen->SizeInPixels().iHeight)
325 aAbsRect.iHeight = iScreen->SizeInPixels().iHeight - aPos.iY;
329 aAbsRect.iHeight = aPos.iY + aWinSize.iHeight;
333 aAbsRect.iHeight = aWinSize.iHeight;
338 @SYMTestCaseID graphics-wserv-1841-0001
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
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.
350 void CT_WServGenericpluginStepLoad::GraphicsWservGenericpluginLoad1L()
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);
364 @SYMTestCaseID graphics-wserv-1841-0002
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
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.
377 void CT_WServGenericpluginStepLoad::GraphicsWservGenericpluginLoad2L()
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));
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.
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);
400 @SYMTestCaseID graphics-wserv-1841-0004
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
407 @SYMTestExpectedResults Alternative plug-in is loaded as specified and attributes can be accessed from plug-in.
410 void CT_WServGenericpluginStepLoad::GraphicsWservGenericpluginLoad3L()
412 //Check the log file.
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);
451 @SYMTestCaseID graphics-wserv-1841-0005
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
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.
462 void CT_WServGenericpluginStepLoad::GraphicsWservGenericpluginLoad4L()
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);
471 TSize w2Size(150,70);
472 TSize w3Size(50,140);
474 //Draw windows with different origins and sizes
476 CleanupClosePushL(win);
477 CreateRWindowL(iWinGroup, win, w1Point, KRgbBlue, w1Size, KWin1WsHandle);
479 CleanupStack::PopAndDestroy(&win);
481 CleanupClosePushL(win);
482 CreateRWindowL(iWinGroup, win, w2Point, KRgbBlue, w2Size, KWin2WsHandle);
484 CleanupStack::PopAndDestroy(&win);
486 CleanupClosePushL(win);
487 CreateRWindowL(iWinGroup, win, w3Point, KRgbBlue, w3Size, KWin3WsHandle);
489 CleanupStack::PopAndDestroy(&win);
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);
494 CleanupStack::PopAndDestroy(&win);
496 //Calculate AbsRect values
500 CalcAbsRect(absRect1, w1Point, w1Size);
501 CalcAbsRect(absRect2, w2Point, w2Size);
502 CalcAbsRect(absRect3, w3Point, w3Size);
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);
529 @SYMTestCaseID graphics-wserv-1841-0006
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
536 @SYMTestExpectedResults Test fader can access information set in service plugin by test renderer.
539 void CT_WServGenericpluginStepLoad::GraphicsWservGenericpluginLoad5L()
541 //Check the log file.
543 msg = _L8("Fading parameters have been set.");
544 TEST(CheckLogL(msg) == EMsgFound);
545 msg = _L8("Returned fade color.");
546 TEST(CheckLogL(msg) == EMsgFound);