sl@0: // Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // sl@0: sl@0: /** sl@0: @file sl@0: @test sl@0: @internalComponent sl@0: */ sl@0: sl@0: #include "t_wservgenericpluginstepload.h" sl@0: #include sl@0: #include //KNullUidValue sl@0: #include sl@0: #include sl@0: sl@0: const TPoint KWinPos(0,0); sl@0: const TSize KWinSize(100,100); sl@0: const TRect KWinRect(KWinPos,KWinSize); sl@0: const TRect KEllipseRect(TPoint(10,10), TSize(50,50)); sl@0: sl@0: _LIT(KDefaultPluginBmp, "Z:\\wstest\\genericplugin\\defaultplugin.mbm"); sl@0: _LIT(KTestPluginBmp, "Z:\\wstest\\genericplugin\\testplugin.mbm"); sl@0: _LIT(KTWServGenericPluginStepTestId,"testid"); sl@0: sl@0: /** sl@0: Constructor of CT_WServGenericpluginStepLoad sl@0: */ sl@0: CT_WServGenericpluginStepLoad::CT_WServGenericpluginStepLoad() sl@0: { sl@0: SetTestStepName(KT_WServGenericpluginStepLoad); sl@0: } sl@0: sl@0: /** sl@0: Destructor of CT_WServGenericpluginStepLoad sl@0: */ sl@0: CT_WServGenericpluginStepLoad::~CT_WServGenericpluginStepLoad() sl@0: { sl@0: delete iGc; sl@0: delete iScreen; sl@0: delete iScreen1; sl@0: delete iDefaultPluginBmp; sl@0: delete iTestPluginBmp; sl@0: iWinGroup.Close(); sl@0: iWinGroup1.Close(); sl@0: iWsSession.Flush(); sl@0: iWsSession.Close(); sl@0: } sl@0: sl@0: /** sl@0: Checks if message is logged in the log file. sl@0: @param aMsg The message to be checked. sl@0: @return ETrue if the message is found in the log file, otherwise EFalse. sl@0: */ sl@0: TInt CT_WServGenericpluginStepLoad::CheckLogL(TDesC8& aMsg) sl@0: { sl@0: RFs fs; sl@0: CleanupClosePushL(fs); sl@0: User::LeaveIfError(fs.Connect()); sl@0: sl@0: RFile logFile; sl@0: CleanupClosePushL(logFile); sl@0: sl@0: TInt ret = logFile.Open(fs, KLogFileName, EFileShareAny|EFileRead); sl@0: if (ret == KErrNone) sl@0: { sl@0: TInt fileSize; sl@0: User::LeaveIfError(logFile.Size(fileSize)); sl@0: sl@0: HBufC8* buf = HBufC8::NewLC(fileSize); sl@0: TPtr8 ptr(buf->Des()); sl@0: ret = logFile.Read(ptr); sl@0: if (ret == KErrNone) sl@0: { sl@0: ret = ptr.Find(aMsg); sl@0: if (ret != KErrNotFound) sl@0: { sl@0: ret = EMsgFound; sl@0: } sl@0: else sl@0: { sl@0: ret = EMsgNotFound; sl@0: } sl@0: } sl@0: CleanupStack::PopAndDestroy(buf); sl@0: } sl@0: else if (ret == KErrNotFound) sl@0: { sl@0: ret = EFileNotExist; sl@0: } sl@0: CleanupStack::PopAndDestroy(&logFile); sl@0: CleanupStack::PopAndDestroy(&fs); sl@0: return ret; sl@0: } sl@0: sl@0: /** sl@0: Overrides test step preamble. sl@0: */ sl@0: enum TVerdict CT_WServGenericpluginStepLoad::doTestStepPreambleL() sl@0: { sl@0: TVerdict ret = CTestStep::doTestStepPreambleL(); sl@0: if ( !GetIntFromConfig( ConfigSection(), KTWServGenericPluginStepTestId, iTestId )) sl@0: { sl@0: User::Leave(KErrNotFound); sl@0: } sl@0: else sl@0: { sl@0: iDisplayMode = EColor64K; sl@0: User::LeaveIfError(iWsSession.Connect()); sl@0: sl@0: iScreen = new (ELeave) CWsScreenDevice(iWsSession); sl@0: User::LeaveIfError(iScreen->Construct()); sl@0: iWinGroup = RWindowGroup(iWsSession); sl@0: User::LeaveIfError(iWinGroup.Construct(KNullWsHandle, iScreen)); sl@0: iWinGroup.AutoForeground(ETrue); sl@0: iGc = new (ELeave) CWindowGc(iScreen); sl@0: User::LeaveIfError(iGc->Construct()); sl@0: sl@0: iScreen1 = new (ELeave) CWsScreenDevice(iWsSession); sl@0: User::LeaveIfError(iScreen1->Construct(1)); sl@0: iWinGroup1 = RWindowGroup(iWsSession); sl@0: User::LeaveIfError(iWinGroup1.Construct(KNullWsHandle, iScreen1) ); sl@0: iWinGroup1.AutoForeground(ETrue); sl@0: sl@0: iDefaultPluginBmp = new(ELeave) CFbsBitmap; sl@0: User::LeaveIfError(iDefaultPluginBmp->Load(KDefaultPluginBmp)); sl@0: iTestPluginBmp = new(ELeave) CFbsBitmap; sl@0: User::LeaveIfError(iTestPluginBmp->Load(KTestPluginBmp)); sl@0: iWsSession.Flush(); sl@0: } sl@0: return ret; sl@0: } sl@0: sl@0: /** sl@0: Overrides test step prostamble. sl@0: */ sl@0: enum TVerdict CT_WServGenericpluginStepLoad::doTestStepPostambleL() sl@0: { sl@0: return TestStepResult(); sl@0: } sl@0: sl@0: /** sl@0: Starts test step sl@0: @return TVerdict pass / fail sl@0: */ sl@0: enum TVerdict CT_WServGenericpluginStepLoad::doTestStepL() sl@0: { sl@0: __UHEAP_MARK; sl@0: RWindow win; sl@0: CleanupClosePushL(win); sl@0: CreateRWindowL(iWinGroup, win, KWinPos, KRgbBlue, KWinSize); sl@0: DrawShape(win); sl@0: sl@0: RWindow win1; sl@0: CleanupClosePushL(win1); sl@0: CreateRWindowL(iWinGroup1, win1, KWinPos, KRgbBlue, KWinSize); sl@0: DrawShape(win1); sl@0: sl@0: switch( iTestId ) sl@0: { sl@0: case 1: sl@0: INFO_PRINTF1(_L("Testing Control of CWsPlugin loading from WSINI.INI...")); sl@0: GraphicsWservGenericpluginLoad1L(); sl@0: break; sl@0: case 2: sl@0: INFO_PRINTF1(_L("Testing that plugins can be specified on a per-screen basis through WSINI.INI file...")); sl@0: GraphicsWservGenericpluginLoad2L(); sl@0: break; sl@0: case 3: sl@0: INFO_PRINTF1(_L("Testing Integer and string attributes in WSINI.INI file can be read from CWsPlugin...")); sl@0: GraphicsWservGenericpluginLoad3L(); sl@0: break; sl@0: case 4: sl@0: INFO_PRINTF1(_L("Testing CWsPlugin can gain information about closing windows using MWsWindow interface...")); sl@0: GraphicsWservGenericpluginLoad4L(); sl@0: break; sl@0: case 5: sl@0: INFO_PRINTF1(_L("Testing CWsPlugin can obtain instance of another CWPlugin...")); sl@0: GraphicsWservGenericpluginLoad5L(); sl@0: break; sl@0: default: sl@0: break; sl@0: } sl@0: CleanupStack::PopAndDestroy(2,&win); sl@0: sl@0: __UHEAP_MARKEND; sl@0: return TestStepResult(); sl@0: } sl@0: sl@0: /** sl@0: Creates a RWindow sl@0: @param aWinGroup The window group object sl@0: @param aWin The window object sl@0: @param aPos The Position of the window sl@0: @param aBkgdColor The background color of the window sl@0: @param aSize The size of the window sl@0: @param aHandle The handle of the window sl@0: */ sl@0: void CT_WServGenericpluginStepLoad::CreateRWindowL(const RWindowGroup& aWinGroup, sl@0: RWindow& aWin, sl@0: const TPoint& aPos, sl@0: const TRgb& aBkgdColor, sl@0: const TSize& aWinSize, sl@0: const TUint32 aHandle) sl@0: { sl@0: aWin = RWindow( iWsSession ); sl@0: CleanupClosePushL( aWin ); sl@0: User::LeaveIfError( aWin.Construct( aWinGroup, aHandle ) ); sl@0: CleanupStack::Pop(&aWin); sl@0: aWin.SetRequiredDisplayMode(iDisplayMode); sl@0: aWin.SetExtent(aPos, aWinSize); sl@0: aWin.SetBackgroundColor( aBkgdColor ); sl@0: aWin.Activate(); sl@0: aWin.SetVisible( ETrue ); sl@0: } sl@0: sl@0: /** sl@0: Draw an ellipse to the window and fade the window. sl@0: @param aWin The window object sl@0: */ sl@0: void CT_WServGenericpluginStepLoad::DrawShape(RWindow& aWin) sl@0: { sl@0: TUint8 white = 255; sl@0: TUint8 black = 128; sl@0: sl@0: iGc->Activate(aWin); sl@0: iGc->SetBrushStyle(CGraphicsContext::ESolidBrush); sl@0: iGc->SetBrushColor(KRgbWhite); sl@0: iGc->DrawEllipse(KEllipseRect); sl@0: iWsSession.Flush(); sl@0: User::After(KDelay); sl@0: sl@0: aWin.SetFaded(ETrue,RWindowTreeNode::EFadeWindowOnly,black,white); sl@0: iWsSession.Flush(); sl@0: User::After(KDelay); sl@0: sl@0: iGc->Deactivate(); sl@0: } sl@0: sl@0: /** sl@0: Compare the window with the bitmap. sl@0: @param aScreen The screen device object sl@0: @param aBitmap The bitmap object for comparison sl@0: @return ETrue if the window and the bitmap is identified. Otherwise return EFalse. sl@0: */ sl@0: TBool CT_WServGenericpluginStepLoad::CompareDisplayL(CWsScreenDevice* aScreen, CFbsBitmap* aBitmap) sl@0: { sl@0: // Capture window display to bitmap sl@0: CFbsBitmap* screenBitmap = new(ELeave) CFbsBitmap(); sl@0: CleanupStack::PushL(screenBitmap); sl@0: User::LeaveIfError(screenBitmap->Create(KWinRect.Size(), iDisplayMode)); sl@0: User::LeaveIfError(aScreen->CopyScreenToBitmap(screenBitmap, KWinRect)); sl@0: sl@0: //Compare the window bitmap with the bitmap pass in for comparison sl@0: TBool ret = ETrue; sl@0: sl@0: const TReal KErrorLimit = 0.05; sl@0: sl@0: TInt mismatchedPixels = 0; sl@0: TRgb testWinPix = TRgb(0,0,0,0); sl@0: TRgb checkWinPix = TRgb(0,0,0,0); sl@0: for (TInt x = 0; x < KWinRect.Width(); x++) sl@0: { sl@0: for (TInt y = 0; y < KWinRect.Height(); y++) sl@0: { sl@0: screenBitmap->GetPixel(testWinPix, TPoint(x,y)); sl@0: aBitmap->GetPixel(checkWinPix, TPoint(x,y)); sl@0: sl@0: //check if there are differeces between test Window colors and check Window colors sl@0: if(((TReal)abs(testWinPix.Red() - checkWinPix.Red())/255) > KErrorLimit || sl@0: ((TReal)abs(testWinPix.Blue() - checkWinPix.Blue())/255) > KErrorLimit || sl@0: ((TReal)abs(testWinPix.Green() - checkWinPix.Green())/255) > KErrorLimit || sl@0: ((TReal)abs(testWinPix.Alpha() - checkWinPix.Alpha())/255) > KErrorLimit) sl@0: { sl@0: mismatchedPixels++; // -- Useful for debugging sl@0: ret = EFalse; sl@0: break; sl@0: } sl@0: } sl@0: } sl@0: sl@0: /* INFO_PRINTF2(_L("Number of different pixels: %i"), mismatchedPixels); */ // -- Useful for debugging sl@0: sl@0: sl@0: CleanupStack::PopAndDestroy(screenBitmap); sl@0: sl@0: sl@0: sl@0: return ret; sl@0: } sl@0: sl@0: /** sl@0: Calculate the portion of window displayed on the screen (absRect). sl@0: @param aAbsRect The size of the window displayed on the screen sl@0: @param aPos The origin of the window sl@0: @param aWinSize The size of the window sl@0: */ sl@0: void CT_WServGenericpluginStepLoad::CalcAbsRect(TSize& aAbsRect, const TPoint& aPos, const TSize& aWinSize) sl@0: { sl@0: if((aPos.iX + aWinSize.iWidth) > iScreen->SizeInPixels().iWidth) sl@0: { sl@0: aAbsRect.iWidth = iScreen->SizeInPixels().iWidth - aPos.iX; sl@0: } sl@0: else if(aPos.iX < 0) sl@0: { sl@0: aAbsRect.iWidth = aPos.iX + aWinSize.iWidth; sl@0: } sl@0: else sl@0: { sl@0: aAbsRect.iWidth = aWinSize.iWidth; sl@0: } sl@0: if((aPos.iY + aWinSize.iHeight) > iScreen->SizeInPixels().iHeight) sl@0: { sl@0: aAbsRect.iHeight = iScreen->SizeInPixels().iHeight - aPos.iY; sl@0: } sl@0: else if(aPos.iY < 0) sl@0: { sl@0: aAbsRect.iHeight = aPos.iY + aWinSize.iHeight; sl@0: } sl@0: else sl@0: { sl@0: aAbsRect.iHeight = aWinSize.iHeight; sl@0: } sl@0: } sl@0: sl@0: /** sl@0: @SYMTestCaseID graphics-wserv-1841-0001 sl@0: @SYMPREQ 1841 sl@0: @SYMTestCaseDesc Control of CWsPlugin loading from WSINI.INI sl@0: @SYMTestActions tests alternative fader specified by an ID and alternative sl@0: render stage specified by TYPE in wsini.ini file are loaded sl@0: @SYMTestStatus Implemented sl@0: @SYMTestPriority 2 sl@0: @SYMTestExpectedResults Alternative plugins are loaded as specified. sl@0: Window created in screen 0 is faded with custom fader and sl@0: two lines are drawn on the left top window by custom render stage. sl@0: @SYMTestType CT sl@0: */ sl@0: void CT_WServGenericpluginStepLoad::GraphicsWservGenericpluginLoad1L() sl@0: { sl@0: //Compare the window with the bitmap which uses test plugin. They are identical. sl@0: TEST(CompareDisplayL(iScreen, iTestPluginBmp)); sl@0: //Check the log file. Test fader and test render stage are created. sl@0: TBuf8<255> msg(_L8("TestMWsIniFile is created.")); sl@0: TEST(CheckLogL(msg) == EMsgFound); sl@0: msg = _L8("TestRenderStageFactory is created."); sl@0: TEST(CheckLogL(msg) == EMsgFound); sl@0: msg = _L8("TestRenderStage is created."); sl@0: TEST(CheckLogL(msg) == EMsgFound); sl@0: } sl@0: sl@0: /** sl@0: @SYMTestCaseID graphics-wserv-1841-0002 sl@0: @SYMPREQ 1841 sl@0: @SYMTestCaseDesc Test that plugins can be specified on a per-screen basis through WSINI.INI file sl@0: @SYMTestActions Create modified WSINI.INI file which specifies different fader and render stage sl@0: plugins to be used on screens 0 and 1. sl@0: @SYMTestStatus Implemented sl@0: @SYMTestPriority 2 sl@0: @SYMTestExpectedResults Both sets of plugins are loaded, and the correct plugin is used on each screen. sl@0: Windows created in different screen are faded with different color. sl@0: Windows in screen 0 have two lines drawn on left top window by custom render stage sl@0: while windows in screen 1 use standard render stage. sl@0: @SYMTestType CT sl@0: */ sl@0: void CT_WServGenericpluginStepLoad::GraphicsWservGenericpluginLoad2L() sl@0: { sl@0: //Test drawing in screen 0. testfader and testRenderStage are used. sl@0: //Compare the window with the bitmap which uses default plugin. sl@0: TEST(!CompareDisplayL(iScreen, iDefaultPluginBmp)); sl@0: //Compare the window with the bitmap which uses test plugins. sl@0: TEST(CompareDisplayL(iScreen, iTestPluginBmp)); sl@0: sl@0: //Test drawing in screen 1. testfader_data and testrenderstage_invalid are used. sl@0: //TestRenderStage_Invalid is not created because NULL is returned from CreateStageL. sl@0: sl@0: //Check the log file. sl@0: TBuf8<255> msg(_L8("TestMWsIniFile is created.")); sl@0: TEST(CheckLogL(msg) == EMsgFound); sl@0: msg = _L8("TestRenderStageFactory is created."); sl@0: TEST(CheckLogL(msg) == EMsgFound); sl@0: msg = _L8("TestRenderStage is created."); sl@0: TEST(CheckLogL(msg) == EMsgFound); sl@0: msg = _L8("TestRenderStage_invalid is created."); sl@0: TEST(CheckLogL(msg) == EMsgNotFound); sl@0: } sl@0: sl@0: /** sl@0: @SYMTestCaseID graphics-wserv-1841-0004 sl@0: @SYMPREQ 1841 sl@0: @SYMTestCaseDesc Integer and string attributes in WSINI.INI file can be read from CWsPlugin. sl@0: @SYMTestActions Create modified WSINI.INI file which specifies a test fader to be loaded to screen 0. sl@0: Specifies integer and string variables for default, custom, and screen sections sl@0: @SYMTestStatus Implemented sl@0: @SYMTestPriority 2 sl@0: @SYMTestExpectedResults Alternative plug-in is loaded as specified and attributes can be accessed from plug-in. sl@0: @SYMTestType CT sl@0: */ sl@0: void CT_WServGenericpluginStepLoad::GraphicsWservGenericpluginLoad3L() sl@0: { sl@0: //Check the log file. sl@0: TBuf8<255> msg; sl@0: msg = _L8("Screen Section has correct integer data"); sl@0: TEST(CheckLogL(msg) == EMsgFound); sl@0: msg = _L8("Screen Section has correct string data"); sl@0: TEST(CheckLogL(msg) == EMsgFound); sl@0: msg = _L8("Custom Section has correct integer data"); sl@0: TEST(CheckLogL(msg) == EMsgFound); sl@0: msg = _L8("Custom Section has correct string data"); sl@0: TEST(CheckLogL(msg) == EMsgFound); sl@0: msg = _L8("Default Section has correct integer data"); sl@0: TEST(CheckLogL(msg) == EMsgFound); sl@0: msg = _L8("Default Section has correct string data"); sl@0: TEST(CheckLogL(msg) == EMsgFound); sl@0: msg = _L8("Default Section does not have missing attribute"); sl@0: TEST(CheckLogL(msg) == EMsgFound); sl@0: msg = _L8("Screen Section does not have missing attribute"); sl@0: TEST(CheckLogL(msg) == EMsgFound); sl@0: msg = _L8("Custom Section does not have missing attribute"); sl@0: TEST(CheckLogL(msg) == EMsgFound); sl@0: msg = _L8("Default Section - Integer data retrieved with method for string attribute"); sl@0: TEST(CheckLogL(msg) == EMsgFound); sl@0: msg = _L8("Default Section - Could not access string attribute with method for integer attribute"); sl@0: TEST(CheckLogL(msg) == EMsgFound); sl@0: msg = _L8("Screen Section - Integer data retrieved with method for string attribute"); sl@0: TEST(CheckLogL(msg) == EMsgFound); sl@0: msg = _L8("Screen Section - Could not access string attribute with method for integer attribute"); sl@0: TEST(CheckLogL(msg) == EMsgFound); sl@0: msg = _L8("Custom Section - Integer data retrieved with method for string attribute"); sl@0: TEST(CheckLogL(msg) == EMsgFound); sl@0: msg = _L8("Custom Section - Could not access string attribute with method for integer attribute"); sl@0: TEST(CheckLogL(msg) == EMsgFound); sl@0: msg = _L8("Could not access variables because screen does not exist"); sl@0: TEST(CheckLogL(msg) == EMsgFound); sl@0: msg = _L8("Could not access variables because section does not exist"); sl@0: TEST(CheckLogL(msg) == EMsgFound); sl@0: } sl@0: sl@0: /** sl@0: @SYMTestCaseID graphics-wserv-1841-0005 sl@0: @SYMPREQ 1841 sl@0: @SYMTestCaseDesc CWsPlugin can gain information about closing windows using MWsWindow interface. sl@0: @SYMTestActions Create modified WSINI.INI file which specifies a test renderer to be loaded. sl@0: Register CWsPLugin as eventhandler receiving EWindowClosing events. sl@0: @SYMTestStatus Implemented sl@0: @SYMTestPriority 2 sl@0: @SYMTestExpectedResults Plugin can access information about closing windows through MWsWindow interface. sl@0: Windows with different size and position are created and closed in screen 0. sl@0: @SYMTestType CT sl@0: */ sl@0: void CT_WServGenericpluginStepLoad::GraphicsWservGenericpluginLoad4L() sl@0: { sl@0: const TUint32 KWin1WsHandle = 0xFFFFFFFC; sl@0: const TUint32 KWin2WsHandle = 0xFFFFFFFD; sl@0: const TUint32 KWin3WsHandle = 0xFFFFFFFE; sl@0: TPoint w1Point(50,240); sl@0: TPoint w2Point(580,100); sl@0: TPoint w3Point(25,100); sl@0: TSize w1Size(10,10); sl@0: TSize w2Size(150,70); sl@0: TSize w3Size(50,140); sl@0: sl@0: //Draw windows with different origins and sizes sl@0: RWindow win; sl@0: CleanupClosePushL(win); sl@0: CreateRWindowL(iWinGroup, win, w1Point, KRgbBlue, w1Size, KWin1WsHandle); sl@0: DrawShape(win); sl@0: CleanupStack::PopAndDestroy(&win); sl@0: sl@0: CleanupClosePushL(win); sl@0: CreateRWindowL(iWinGroup, win, w2Point, KRgbBlue, w2Size, KWin2WsHandle); sl@0: DrawShape(win); sl@0: CleanupStack::PopAndDestroy(&win); sl@0: sl@0: CleanupClosePushL(win); sl@0: CreateRWindowL(iWinGroup, win, w3Point, KRgbBlue, w3Size, KWin3WsHandle); sl@0: DrawShape(win); sl@0: CleanupStack::PopAndDestroy(&win); sl@0: sl@0: CleanupClosePushL(win); //create dummy 4th window to ensure window3 closing event has time to log info sl@0: CreateRWindowL(iWinGroup, win, w2Point, KRgbBlue, w2Size, KWin2WsHandle); sl@0: DrawShape(win); sl@0: CleanupStack::PopAndDestroy(&win); sl@0: sl@0: //Calculate AbsRect values sl@0: TSize absRect1; sl@0: TSize absRect2; sl@0: TSize absRect3; sl@0: CalcAbsRect(absRect1, w1Point, w1Size); sl@0: CalcAbsRect(absRect2, w2Point, w2Size); sl@0: CalcAbsRect(absRect3, w3Point, w3Size); sl@0: sl@0: TBuf8<255> msg; sl@0: //check log for window1 info sl@0: msg.Format(_L8("Closing Window Handle %d - Origin: %d, %d"), KWin1WsHandle, w1Point.iX, w1Point.iY); sl@0: TEST(CheckLogL(msg) == EMsgFound); sl@0: msg.Format(_L8("Closing Window Handle %d - AbsRec: Height %d, Width %d"), KWin1WsHandle, absRect1.iHeight, absRect1.iWidth); sl@0: TEST(CheckLogL(msg) == EMsgFound); sl@0: msg.Format(_L8("Closing Window Handle %d - Size: Height %d, Width %d"), KWin1WsHandle, w1Size.iHeight, w1Size.iWidth); sl@0: TEST(CheckLogL(msg) == EMsgFound); sl@0: //check log for window2 info sl@0: msg.Format(_L8("Closing Window Handle %d - Origin: %d, %d"), KWin2WsHandle, w2Point.iX, w2Point.iY); sl@0: TEST(CheckLogL(msg) == EMsgFound); sl@0: msg.Format(_L8("Closing Window Handle %d - AbsRec: Height %d, Width %d"), KWin2WsHandle, absRect2.iHeight, absRect2.iWidth); sl@0: TEST(CheckLogL(msg) == EMsgFound); sl@0: msg.Format(_L8("Closing Window Handle %d - Size: Height %d, Width %d"), KWin2WsHandle, w2Size.iHeight, w2Size.iWidth); sl@0: TEST(CheckLogL(msg) == EMsgFound); sl@0: //check log for window3 info sl@0: msg.Format(_L8("Closing Window Handle %d - Origin: %d, %d"), KWin3WsHandle, w3Point.iX, w3Point.iY); sl@0: TEST(CheckLogL(msg) == EMsgFound); sl@0: msg.Format(_L8("Closing Window Handle %d - AbsRec: Height %d, Width %d"), KWin3WsHandle, absRect3.iHeight, absRect3.iWidth); sl@0: TEST(CheckLogL(msg) == EMsgFound); sl@0: msg.Format(_L8("Closing Window Handle %d - Size: Height %d, Width %d"), KWin3WsHandle, w3Size.iHeight, w3Size.iWidth); sl@0: TEST(CheckLogL(msg) == EMsgFound); sl@0: } sl@0: sl@0: /** sl@0: @SYMTestCaseID graphics-wserv-1841-0006 sl@0: @SYMPREQ 1841 sl@0: @SYMTestCaseDesc CWsPlugin can obtain instance of another CWPlugin. sl@0: @SYMTestActions Create modified WSINI.INI file which specifies a test renderer, test fader, and service plug-in to be loaded. sl@0: Service plugin offers elementary service to other plug-ins. sl@0: @SYMTestStatus Implemented sl@0: @SYMTestPriority 2 sl@0: @SYMTestExpectedResults Test fader can access information set in service plugin by test renderer. sl@0: @SYMTestType CT sl@0: */ sl@0: void CT_WServGenericpluginStepLoad::GraphicsWservGenericpluginLoad5L() sl@0: { sl@0: //Check the log file. sl@0: TBuf8<255> msg; sl@0: msg = _L8("Fading parameters have been set."); sl@0: TEST(CheckLogL(msg) == EMsgFound); sl@0: msg = _L8("Returned fade color."); sl@0: TEST(CheckLogL(msg) == EMsgFound); sl@0: } sl@0: