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 - Internal Symbian test code sl@0: */ sl@0: sl@0: #include "tdrawresource.h" sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: sl@0: sl@0: __WS_CONSTRUCT_STEP__(DrawResource); sl@0: sl@0: sl@0: #if defined(__X86GCC__) sl@0: extern "C" TInt atexit(void (*function)(void)) sl@0: { sl@0: return KErrNone; sl@0: } sl@0: #endif sl@0: sl@0: // sl@0: // class CTestWsGraphicsContext sl@0: // sl@0: CTestWsGraphicsContext* CTestWsGraphicsContext::NewL(RDirectGdiImageTarget& aTarget) sl@0: { sl@0: CTestWsGraphicsContext* self = new(ELeave) CTestWsGraphicsContext; sl@0: CleanupStack::PushL(self); sl@0: self->ConstructL(aTarget); sl@0: CleanupStack::Pop(self); sl@0: return self; sl@0: } sl@0: sl@0: void CTestWsGraphicsContext::ConstructL(RDirectGdiImageTarget& aTarget) sl@0: { sl@0: CDirectGdiDriver* driver = CDirectGdiDriver::Static(); sl@0: User::LeaveIfNull(driver); sl@0: iContext = CDirectGdiContext::NewL(*driver); sl@0: TInt err = iContext->Activate(aTarget); sl@0: User::LeaveIfError(err); sl@0: } sl@0: sl@0: CTestWsGraphicsContext::~CTestWsGraphicsContext() sl@0: { sl@0: delete iContext; sl@0: } sl@0: sl@0: TAny* CTestWsGraphicsContext::ResolveObjectInterface(TUint aTypeId) sl@0: { sl@0: switch(aTypeId) sl@0: { sl@0: case MWsDrawableSourceProvider::EWsObjectInterfaceId: sl@0: return static_cast(this); sl@0: } sl@0: return NULL; sl@0: sl@0: } sl@0: sl@0: TInt CTestWsGraphicsContext::CreateDrawableSource(const TSgDrawableId& aDrawableId, TAny*& aSource) sl@0: { sl@0: TRAPD(err, DoCreateDrawableSourceL(aDrawableId, aSource)); sl@0: return err; sl@0: } sl@0: sl@0: void CTestWsGraphicsContext::DoCreateDrawableSourceL(const TSgDrawableId& aDrawableId, TAny*& aSource) sl@0: { sl@0: CDirectGdiDriver* driver = CDirectGdiDriver::Static(); sl@0: if (!driver) sl@0: { sl@0: User::Leave(KErrNotReady); sl@0: } sl@0: RDirectGdiDrawableSource* drawableSource = new(ELeave) RDirectGdiDrawableSource(*driver); sl@0: CleanupStack::PushL(drawableSource); sl@0: RSgDrawable drawable; sl@0: User::LeaveIfError(drawable.Open(aDrawableId, ESgDoNotRestrictUsage)); sl@0: CleanupClosePushL(drawable); sl@0: User::LeaveIfError(drawableSource->Create(drawable)); sl@0: CleanupStack::PopAndDestroy(); sl@0: CleanupStack::Pop(drawableSource); sl@0: aSource = drawableSource; sl@0: } sl@0: sl@0: void CTestWsGraphicsContext::CloseDrawableSource(TAny* aSource) sl@0: { sl@0: RDirectGdiDrawableSource* drawableSource = static_cast(aSource); sl@0: drawableSource->Close(); sl@0: delete drawableSource; sl@0: } sl@0: sl@0: void CTestWsGraphicsContext::DrawResource(const TAny* aSource, const TPoint& aPos, CWindowGc::TGraphicsRotation aRotation) sl@0: { sl@0: const RDirectGdiDrawableSource* drawableSource = static_cast(aSource); sl@0: iContext->DrawResource(aPos, *drawableSource, (DirectGdi::TGraphicsRotation)aRotation); sl@0: iPos = aPos; sl@0: iRotation = (DirectGdi::TGraphicsRotation)aRotation; sl@0: } sl@0: sl@0: void CTestWsGraphicsContext::DrawResource(const TAny* aSource, const TRect& aRect, CWindowGc::TGraphicsRotation aRotation) sl@0: { sl@0: const RDirectGdiDrawableSource* drawableSource = static_cast(aSource); sl@0: iContext->DrawResource(aRect, *drawableSource, (DirectGdi::TGraphicsRotation)aRotation); sl@0: iDestRect = aRect; sl@0: iRotation = (DirectGdi::TGraphicsRotation)aRotation; sl@0: } sl@0: sl@0: void CTestWsGraphicsContext::DrawResource(const TAny* aSource, const TRect& aRectDest, const TRect& aRectSrc, CWindowGc::TGraphicsRotation aRotation) sl@0: { sl@0: const RDirectGdiDrawableSource* drawableSource = static_cast(aSource); sl@0: iContext->DrawResource(aRectDest, *drawableSource, aRectSrc, (DirectGdi::TGraphicsRotation)aRotation); sl@0: iDestRect = aRectDest; sl@0: iSrcRect = aRectSrc; sl@0: iRotation = (DirectGdi::TGraphicsRotation)aRotation; sl@0: } sl@0: sl@0: void CTestWsGraphicsContext::DrawResource(const TAny* aSource, const TRect& aRect, const TDesC8& aParam) sl@0: { sl@0: const RDirectGdiDrawableSource* drawableSource = static_cast(aSource); sl@0: iContext->DrawResource(aRect, *drawableSource, aParam); sl@0: iDestRect = aRect; sl@0: } sl@0: sl@0: sl@0: void CTestWsGraphicsContext::Clear() sl@0: { sl@0: iContext->Clear(); sl@0: } sl@0: sl@0: // sl@0: // class CTDrawResource sl@0: // sl@0: sl@0: CTDrawResource::CTDrawResource(CTestStep* aStep) sl@0: : CTWsGraphicsBase(aStep) sl@0: { sl@0: } sl@0: sl@0: CTDrawResource::~CTDrawResource() sl@0: { sl@0: iWindow.Close(); sl@0: delete iRefBitmap; sl@0: delete iRotatedRefBitmap; sl@0: delete iScaledBitmap; sl@0: delete iScaledCroppedBitmap; sl@0: delete iCopyBitmap; sl@0: delete iBitmapWrongScreenNumber; sl@0: sl@0: delete iWsGrapicResolver; sl@0: delete iGraphicsCon; sl@0: sl@0: iWsDrawableSource.Close(); sl@0: iImage.Close(); sl@0: iImageTarget.Close(); sl@0: iImageCollection.Close(); sl@0: sl@0: CDirectGdiDriver* dGdiDriver = CDirectGdiDriver::Static(); sl@0: if(dGdiDriver) sl@0: { sl@0: dGdiDriver->Close(); sl@0: } sl@0: SgDriver::Close(); sl@0: } sl@0: sl@0: void CTDrawResource::ConstructL() sl@0: { sl@0: //Constrcut and setup window to be drawn to sl@0: iWindow = RWindow(TheClient->iWs); sl@0: User::LeaveIfError(iWindow.Construct(*TheClient->iGroup->GroupWin(),ENullWsHandle)); sl@0: TSize iWinSize=TSize(TheClient->iScreen->SizeInPixels()); sl@0: iWindow.SetExtent(TPoint(0,0),iWinSize); sl@0: iWindow.Activate(); sl@0: iWindow.BeginRedraw(); sl@0: iWindow.EndRedraw(); sl@0: sl@0: //Creates all reference and copy bitmaps required for all tests sl@0: CreateReferenceAndCopyBitmapsL(); sl@0: sl@0: TInt err = CDirectGdiDriver::Open(); sl@0: User::LeaveIfError(err); sl@0: err = SgDriver::Open(); sl@0: User::LeaveIfError(err); sl@0: sl@0: //create image target sl@0: CDirectGdiDriver* theDGdiDriver = CDirectGdiDriver::Static(); sl@0: if(!theDGdiDriver) sl@0: { sl@0: User::Leave(KErrNotReady); sl@0: } sl@0: TSgImageInfo info; sl@0: info.iUsage = ESgUsageDirectGdiTarget | ESgUsageDirectGdiSource | ESgUsageCompositionSource; sl@0: info.iPixelFormat = EUidPixelFormatRGB_565; sl@0: info.iSizeInPixels = TSize(200, 200); sl@0: info.iShareable = ETrue; sl@0: const TInt KImageCount = 1; sl@0: err = iImageCollection.Create(info, KImageCount); sl@0: User::LeaveIfError(err); sl@0: sl@0: err = iImageCollection.OpenImage(0, iImage); sl@0: User::LeaveIfError(err); sl@0: iImageTarget = RDirectGdiImageTarget(*theDGdiDriver); sl@0: err = iImageTarget.Create(iImage); sl@0: User::LeaveIfError(err); sl@0: sl@0: // construction of image source sl@0: RSgImage sgImage; sl@0: CreateSgImageFromBitmapL(sgImage); sl@0: CleanupClosePushL(sgImage); sl@0: iWsDrawableSource = RWsDrawableSource(TheClient->iWs); sl@0: User::LeaveIfError(iWsDrawableSource.Create(sgImage, TheClient->iScreen->GetScreenNumber())); sl@0: sl@0: //Create dummy MWsGraphicResolver - required RemoteGc testing sl@0: iWsGrapicResolver = new (ELeave) CWSGraphicsRes(); sl@0: sl@0: //Create dummy MWsGraphicsContext - required RemoteGc testing sl@0: iGraphicsCon = CTestWsGraphicsContext::NewL(iImageTarget); sl@0: sl@0: CleanupStack::PopAndDestroy(&sgImage); sl@0: } sl@0: sl@0: void CTDrawResource::RunTestCaseL(TInt aCurTestCase) sl@0: { sl@0: ((CTDrawResourceStep*)iStep)->SetTestStepID(KUnknownSYMTestCaseIDName); sl@0: switch(aCurTestCase) sl@0: { sl@0: case 1: sl@0: ((CTDrawResourceStep*)iStep)->SetTestStepID(_L("GRAPHICS-WSERV-DRAWRESOURCE-0001")); sl@0: INFO_PRINTF1(_L("DrawResourcePos Test")); sl@0: TestDrawResourcePos(); sl@0: break; sl@0: case 2: sl@0: ((CTDrawResourceStep*)iStep)->SetTestStepID(_L("GRAPHICS-WSERV-DRAWRESOURCE-0002")); sl@0: INFO_PRINTF1(_L("DrawResourceRect Test")); sl@0: TestDrawResourceRect(); sl@0: break; sl@0: case 3: sl@0: ((CTDrawResourceStep*)iStep)->SetTestStepID(_L("GRAPHICS-WSERV-DRAWRESOURCE-0003")); sl@0: INFO_PRINTF1(_L("DrawResourceScale Test")); sl@0: TestDrawResourceScale(); sl@0: break; sl@0: case 4: sl@0: ((CTDrawResourceStep*)iStep)->SetTestStepID(_L("GRAPHICS-WSERV-DRAWRESOURCE-0004")); sl@0: INFO_PRINTF1(_L("RWsDrawableSource Reference Counting Test")); sl@0: TestRWsDrawableSourceReferenceCountingL(); sl@0: break; sl@0: case 5: sl@0: ((CTDrawResourceStep*)iStep)->SetTestStepID(_L("GRAPHICS-WSERV-DRAWRESOURCE-0005")); sl@0: INFO_PRINTF1(_L("RemoteGcDrawResourcePos Test")); sl@0: TestRemoteGcDrawResourcePosL(); sl@0: break; sl@0: case 6: sl@0: ((CTDrawResourceStep*)iStep)->SetTestStepID(_L("GRAPHICS-WSERV-DRAWRESOURCE-0006")); sl@0: INFO_PRINTF1(_L("RemoteGcDrawResourceRect Test")); sl@0: TestRemoteGcDrawResourceRectL(); sl@0: break; sl@0: case 7: sl@0: ((CTDrawResourceStep*)iStep)->SetTestStepID(_L("GRAPHICS-WSERV-DRAWRESOURCE-0007")); sl@0: INFO_PRINTF1(_L("RemoteGcDrawResourceScale Test")); sl@0: TestRemoteGcDrawResourceScaleL(); sl@0: break; sl@0: case 8: sl@0: ((CTDrawResourceStep*)iStep)->SetTestStepID(_L("GRAPHICS-WSERV-DRAWRESOURCE-0008")); sl@0: INFO_PRINTF1(_L("DrawResourceScreens Test")); sl@0: TestDrawResourceScreensL(); sl@0: break; sl@0: case 9: sl@0: ((CTDrawResourceStep*)iStep)->SetTestStepID(_L("GRAPHICS-WSERV-TestCopyScreenToBitmapWithDifferentDisplayModes-0001")); sl@0: INFO_PRINTF1(_L("CopyScreenToBitmapWithDifferentDisplayModes Test\n")); sl@0: TestCopyScreenToBitmapWithDifferentDisplayModesL(); sl@0: break; sl@0: case 10: sl@0: ((CTDrawResourceStep*)iStep)->SetTestStepID(KNotATestSYMTestCaseIDName); sl@0: ((CTDrawResourceStep*)iStep)->CloseTMSGraphicsStep(); sl@0: INFO_PRINTF1(_L("Test complete\n")); sl@0: TestComplete(); sl@0: break; sl@0: } sl@0: ((CTDrawResourceStep*)iStep)->RecordTestResultL(); sl@0: } sl@0: sl@0: /** sl@0: @SYMTestCaseID GRAPHICS-WSERV-DRAWRESOURCE-0001 sl@0: @SYMPREQ PREQ2095 sl@0: @SYMTestPriority High sl@0: @SYMTestCaseDesc Draw RSgImage using DrawResource(const TPoint&, const RWsDrawableSource&, TGraphicsRotation) sl@0: @SYMTestActions Draw to position (0,0) with default rotation (none) sl@0: Draw to position (10,10) with 90 degrees rotation sl@0: @SYMTestExpectedResults Drawn images should match reference CFbsBitmap sl@0: */ sl@0: void CTDrawResource::TestDrawResourcePos() sl@0: { sl@0: // Draw to TPoint(0,0) with EGraphicsRotationNone sl@0: iWindow.BeginRedraw(); sl@0: TheGc->Activate(iWindow); sl@0: TheGc->Clear(); sl@0: MWsDrawResource* dr = static_cast(TheGc->Interface(KMWsDrawResourceInterfaceUid)); sl@0: TEST(dr != NULL); sl@0: dr->DrawResource(KDestPoint, iWsDrawableSource, CWindowGc::EGraphicsRotationNone); sl@0: TheGc->Deactivate(); sl@0: iWindow.EndRedraw(); sl@0: TheClient->iWs.Finish(); sl@0: TheClient->WaitForRedrawsToFinish(); sl@0: sl@0: //Copy the screen to the copy bitmap sl@0: TheClient->iScreen->CopyScreenToBitmap(iCopyBitmap, KCopyTestRect); sl@0: sl@0: //Compare the bitmaps sl@0: INFO_PRINTF1(_L("Draw to TPoint(0,0) with EGraphicsRotationNone")); sl@0: TBool compRes = CompareBitmapsByPixel(iCopyBitmap, iRefBitmap); sl@0: TEST(compRes); sl@0: sl@0: /*** Draw to position (10,10) with 90 degrees rotation ***/ sl@0: TPoint const KDestPoint2(10,10); sl@0: iWindow.BeginRedraw(); sl@0: TheGc->Activate(iWindow); sl@0: TheGc->Clear(); sl@0: dr->DrawResource(KDestPoint2, iWsDrawableSource, KTestRotation); sl@0: TheGc->Deactivate(); sl@0: iWindow.EndRedraw(); sl@0: TheClient->iWs.Finish(); sl@0: TheClient->WaitForRedrawsToFinish(); sl@0: sl@0: //Copy the screen to the copy bitmap sl@0: TheClient->iScreen->CopyScreenToBitmap(iCopyBitmap, TRect(KDestPoint2, KSourceSize)); sl@0: sl@0: //Compare the bitmaps sl@0: INFO_PRINTF1(_L("Draw to position (10,10) with 90 degrees rotation")); sl@0: compRes = CompareBitmapsByPixel(iCopyBitmap, iRotatedRefBitmap); sl@0: TEST(compRes); sl@0: } sl@0: sl@0: /** sl@0: @SYMTestCaseID GRAPHICS-WSERV-DRAWRESOURCE-0002 sl@0: @SYMPREQ PREQ2095 sl@0: @SYMTestPriority High sl@0: @SYMTestCaseDesc Draw RSgImage using DrawResource(const TRect& , const RWsDrawableSource&, TGraphicsRotation aRotation) sl@0: @SYMTestActions Draw to rect pos (10,10), rect size (60,60) with 90 degrees rotation sl@0: @SYMTestExpectedResults Drawn images should match the reference CFbsBitmap sl@0: */ sl@0: void CTDrawResource::TestDrawResourceRect() sl@0: { sl@0: //Use DrawResource sl@0: iWindow.BeginRedraw(); sl@0: TheGc->Activate(iWindow); sl@0: TheGc->Clear(); sl@0: MWsDrawResource* dr = static_cast(TheGc->Interface(KMWsDrawResourceInterfaceUid)); sl@0: TEST(dr != NULL); sl@0: dr->DrawResource(KDestRect, iWsDrawableSource, KTestRotation); sl@0: TheGc->Deactivate(); sl@0: iWindow.EndRedraw(); sl@0: TheClient->iWs.Finish(); sl@0: TheClient->WaitForRedrawsToFinish(); sl@0: sl@0: //Copy the screen to the copy bitmap sl@0: TheClient->iScreen->CopyScreenToBitmap(iCopyBitmap, KCopyTestRect); sl@0: sl@0: //Compare the bitmaps sl@0: INFO_PRINTF1(_L("Draw to rect pos (10,10), rect size (60,60) with 90 degrees rotation")); sl@0: TInt compRes = CompareBitmapsByPixel(iCopyBitmap, iScaledBitmap); sl@0: TEST(compRes); sl@0: } sl@0: sl@0: /** sl@0: @SYMTestCaseID GRAPHICS-WSERV-DRAWRESOURCE-0003 sl@0: @SYMPREQ PREQ2095 sl@0: @SYMTestPriority High sl@0: @SYMTestCaseDesc Draw RSgImage using DrawResource(const TRect& , const RWsDrawableSource&, const TRect&, TGraphicsRotation aRotation) sl@0: @SYMTestActions Draw the part of the source image (rect Pos (0,0), rect size(50,50)) sl@0: to rect pos(10,10), rect size(60,60) and and 90 degrees rotation sl@0: @SYMTestExpectedResults Drawn images should match the reference CFbsBitmap sl@0: */ sl@0: void CTDrawResource::TestDrawResourceScale() sl@0: { sl@0: //Use DrawResource sl@0: iWindow.BeginRedraw(); sl@0: TheGc->Activate(iWindow); sl@0: TheGc->Clear(); sl@0: MWsDrawResource* dr = static_cast(TheGc->Interface(KMWsDrawResourceInterfaceUid)); sl@0: TEST(dr != NULL); sl@0: dr->DrawResource(KDestRect, iWsDrawableSource, KSourceRect, KTestRotation); sl@0: TheGc->Deactivate(); sl@0: iWindow.EndRedraw(); sl@0: TheClient->iWs.Finish(); sl@0: TheClient->WaitForRedrawsToFinish(); sl@0: sl@0: //Copy the screen to the copy bitmap sl@0: TheClient->iScreen->CopyScreenToBitmap(iCopyBitmap, KCopyTestRect); sl@0: sl@0: //Compare the bitmaps sl@0: INFO_PRINTF1(_L("Draw the part of the source image to rect pos(10,10), rect size(60,60) and and 90 degrees rotation")); sl@0: TInt compRes = CompareBitmapsByPixel(iCopyBitmap, iScaledCroppedBitmap); sl@0: TEST(compRes); sl@0: } sl@0: sl@0: /** sl@0: @SYMTestCaseID GRAPHICS-WSERV-DRAWRESOURCE-0004 sl@0: @SYMPREQ PREQ2095 sl@0: @SYMTestPriority High sl@0: @SYMTestCaseDesc Draw RSgImage using DrawResource(const TPoint&, const RWsDrawableSource&, TGraphicsRotation) after closing the image source sl@0: @SYMTestActions Draw to position (0,0) with default rotation (none) after closing the image source sl@0: @SYMTestExpectedResults Drawn image should match reference CFbsBitmap sl@0: */ sl@0: void CTDrawResource::TestRWsDrawableSourceReferenceCountingL() sl@0: { sl@0: // construction of image source sl@0: RSgImage sgImage; sl@0: CreateSgImageFromBitmapL(sgImage); sl@0: CleanupClosePushL(sgImage); sl@0: RWsDrawableSource drawableSource(TheClient->iWs); sl@0: CleanupClosePushL(drawableSource); sl@0: User::LeaveIfError(drawableSource.Create(sgImage, TheClient->iScreen->GetScreenNumber())); sl@0: sl@0: //Draw using DrawResource sl@0: iWindow.BeginRedraw(); sl@0: TheGc->Activate(iWindow); sl@0: TheGc->Clear(); sl@0: MWsDrawResource* dr = static_cast(TheGc->Interface(KMWsDrawResourceInterfaceUid)); sl@0: TEST(dr != NULL); sl@0: dr->DrawResource(KDestPoint, drawableSource, CWindowGc::EGraphicsRotationNone); sl@0: TheGc->Deactivate(); sl@0: iWindow.EndRedraw(); sl@0: sl@0: //Close the image source but this should not stop the source from being drawn sl@0: drawableSource.Close(); sl@0: TheClient->iWs.Finish(); sl@0: TheClient->WaitForRedrawsToFinish(); sl@0: sl@0: //Copy the screen to the copy bitmap sl@0: TheClient->iScreen->CopyScreenToBitmap(iCopyBitmap, KCopyTestRect); sl@0: sl@0: //Compare the bitmaps sl@0: INFO_PRINTF1(_L("Draw to TPoint(0,0) with EGraphicsRotationNone")); sl@0: TBool compRes = CompareBitmapsByPixel(iCopyBitmap, iRefBitmap); sl@0: TEST(compRes); sl@0: sl@0: CleanupStack::PopAndDestroy(2, &sgImage); sl@0: } sl@0: sl@0: /** sl@0: @SYMTestCaseID GRAPHICS-WSERV-DRAWRESOURCE-0005 sl@0: @SYMPREQ PREQ2095 sl@0: @SYMTestPriority High sl@0: @SYMTestCaseDesc Draw RSgImage using RemotGc->DrawResource(const TPoint&, const RWsDrawableSource&, TGraphicsRotation) sl@0: @SYMTestActions Record the draw resource commands using CRemoteGc and play the recorded commands on a window using sl@0: Play(const TPoint&, const TRect&, RWsSession&, CWindowGc&) and then play the recorded commands using . sl@0: Play(const TPoint&, const TRect&, const MWsGraphicResolver&, MWsGraphicsContext&). sl@0: @SYMTestExpectedResults Drawn images should match reference CFbsBitmap and also values received by MWsGraphicsContext should sl@0: match what was originally sent to DrawResource. sl@0: */ sl@0: void CTDrawResource::TestRemoteGcDrawResourcePosL() sl@0: { sl@0: const TRect KRemotGcSourceRect(0, 0, iWindow.Size().iWidth, iWindow.Size().iHeight); sl@0: const TRegionFix<1> KClippingRegion(KRemotGcSourceRect); sl@0: CWindowGc::TGraphicsRotation testRotation= CWindowGc::EGraphicsRotationNone; sl@0: sl@0: //Create remote gc - required RemoteGc testing sl@0: CRemoteGc* remoteGc = CRemoteGc::NewL(TheClient->iScreen); sl@0: CleanupStack::PushL(remoteGc); sl@0: sl@0: //Record draw messages sl@0: remoteGc->ResetCommandBuffer(); sl@0: remoteGc->BeginDraw(KRemotGcSourceRect); sl@0: MWsDrawResource* dr = static_cast(remoteGc->Interface(KMWsDrawResourceInterfaceUid)); sl@0: TEST(dr != NULL); sl@0: dr->DrawResource(KDestPoint, iWsDrawableSource, CWindowGc::EGraphicsRotationNone); sl@0: remoteGc->EndDraw(); sl@0: sl@0: RWsGraphicMsgBuf msgBuf; sl@0: CleanupClosePushL(msgBuf); sl@0: //Externalize the captured commands from remote gc in to a buffer sl@0: remoteGc->ExternalizeL(msgBuf, ETrue); sl@0: //Create command buffer - required RemoteGc testing sl@0: CCommandBuffer* cmdBuffer = CCommandBuffer::NewL(); sl@0: CleanupStack::PushL(cmdBuffer); sl@0: //Internalize the buffer with captured commands (from CRemoteGC) in to CCommandBuffer sl@0: cmdBuffer->InternalizeL(msgBuf.Pckg()); sl@0: sl@0: // Play stored commands using Play(const TPoint&, const TRect&, RWsSession&, CWindowGc&) sl@0: remoteGc->ResetCommandBuffer(); sl@0: iWindow.Invalidate(); sl@0: iWindow.BeginRedraw(); sl@0: TheGc->Activate(iWindow); sl@0: TheGc->Clear(); sl@0: cmdBuffer->Play(KPlayOffset, &KClippingRegion, KRemotGcSourceRect, TheClient->iWs, *TheGc); sl@0: TheGc->Deactivate(); sl@0: iWindow.EndRedraw(); sl@0: TheClient->iWs.Finish(); sl@0: TheClient->WaitForRedrawsToFinish(); sl@0: sl@0: //Copy the screen to the copy bitmap sl@0: TheClient->iScreen->CopyScreenToBitmap(iCopyBitmap, KCopyTestRect); sl@0: sl@0: //Compare the bitmaps sl@0: INFO_PRINTF1(_L("Using Play(const TPoint&, const TRect&, RWsSession&, CWindowGc&)")); sl@0: TBool compRes = CompareBitmapsByPixel(iCopyBitmap, iRefBitmap); sl@0: TEST(compRes); sl@0: sl@0: // Play stored commands using Play(const TPoint&, const TRect&, const MWsGraphicResolver&, MWsGraphicsContext&) sl@0: remoteGc->ResetCommandBuffer(); sl@0: iWindow.Invalidate(); sl@0: iWindow.BeginRedraw(); sl@0: TheGc->Activate(iWindow); sl@0: TheGc->Clear(); sl@0: cmdBuffer->Play(KPlayOffset,&KClippingRegion,KRemotGcSourceRect,*iWsGrapicResolver,*iGraphicsCon); sl@0: TheGc->Deactivate(); sl@0: iWindow.EndRedraw(); sl@0: TheClient->iWs.Finish(); sl@0: sl@0: //Compare the values received by CTestWsGraphicsContext and the values sent to it sl@0: INFO_PRINTF1(_L("Using Play(const TPoint&, const TRect&, const MWsGraphicResolver&, MWsGraphicsContext&)")); sl@0: TBool valuesSame = EFalse; sl@0: CFbsBitmap* bmp; sl@0: BitmapLC(bmp); sl@0: compRes = CompareBitmapsByPixel(bmp, iRefBitmap); sl@0: CleanupStack::PopAndDestroy(bmp); sl@0: sl@0: if((iGraphicsCon->iPos == KDestPoint) && (compRes) sl@0: && (reinterpret_cast(iGraphicsCon->iRotation)==reinterpret_cast(testRotation))) sl@0: valuesSame = ETrue; sl@0: TEST(valuesSame); sl@0: CleanupStack::PopAndDestroy(3, remoteGc); sl@0: } sl@0: sl@0: /** sl@0: @SYMTestCaseID GRAPHICS-WSERV-DRAWRESOURCE-0006 sl@0: @SYMPREQ PREQ2095 sl@0: @SYMTestPriority High sl@0: @SYMTestCaseDesc Draw RSgImage using RemotGc->DrawResource(const TRect&, const RWsDrawableSource&, TGraphicsRotation) sl@0: @SYMTestActions Record the draw resource commands using CRemoteGc and play the recorded commands on a window using sl@0: Play(const TPoint&, const TRect&, RWsSession&, CWindowGc&) and then play the recorded commands using . sl@0: Play(const TPoint&, const TRect&, const MWsGraphicResolver&, MWsGraphicsContext&). sl@0: @SYMTestExpectedResults Drawn images should match reference CFbsBitmap and also values received by MWsGraphicsContext should sl@0: match what was originally sent to DrawResource. sl@0: */ sl@0: void CTDrawResource::TestRemoteGcDrawResourceRectL() sl@0: { sl@0: const TRect KRemotGcSourceRect(0, 0, iWindow.Size().iWidth, iWindow.Size().iHeight); sl@0: const TRegionFix<1> KClippingRegion(KRemotGcSourceRect); sl@0: sl@0: //Create remote gc - required RemoteGc testing sl@0: CRemoteGc* remoteGc = CRemoteGc::NewL(TheClient->iScreen); sl@0: CleanupStack::PushL(remoteGc); sl@0: sl@0: //Record draw messages sl@0: remoteGc->BeginDraw(KRemotGcSourceRect); sl@0: MWsDrawResource* dr = static_cast(remoteGc->Interface(KMWsDrawResourceInterfaceUid)); sl@0: TEST(dr != NULL); sl@0: dr->DrawResource(KDestRect, iWsDrawableSource, KTestRotation); sl@0: remoteGc->EndDraw(); sl@0: sl@0: RWsGraphicMsgBuf msgBuf; sl@0: CleanupClosePushL(msgBuf); sl@0: //Externalize the captured commands from remote gc in to a buffer sl@0: remoteGc->ExternalizeL(msgBuf, ETrue); sl@0: sl@0: //Create command buffer - required RemoteGc testing sl@0: CCommandBuffer* cmdBuffer = CCommandBuffer::NewL(); sl@0: CleanupStack::PushL(cmdBuffer); sl@0: //Internalize the buffer with captured commands (from CRemoteGC) in to CCommandBuffer sl@0: cmdBuffer->InternalizeL(msgBuf.Pckg()); sl@0: sl@0: // Play stored commands using Play(const TRect&, const TRect&, RWsSession&, CWindowGc&) sl@0: iWindow.Invalidate(); sl@0: iWindow.BeginRedraw(); sl@0: TheGc->Activate(iWindow); sl@0: TheGc->Clear(); sl@0: cmdBuffer->Play(KPlayOffset, &KClippingRegion, KRemotGcSourceRect, TheClient->iWs, *TheGc); sl@0: TheGc->Deactivate(); sl@0: iWindow.EndRedraw(); sl@0: TheClient->iWs.Finish(); sl@0: TheClient->WaitForRedrawsToFinish(); sl@0: sl@0: //Copy the screen to the copy bitmap sl@0: TheClient->iScreen->CopyScreenToBitmap(iCopyBitmap, KCopyTestRect); sl@0: sl@0: //Compare the bitmaps sl@0: INFO_PRINTF1(_L("Using Play(const TPoint&, const TRect&, RWsSession&, CWindowGc&)")); sl@0: TBool compRes = CompareBitmapsByPixel(iCopyBitmap, iScaledBitmap); sl@0: TEST(compRes); sl@0: sl@0: // Play stored commands using Play(const TPoint&, const TRect&, const MWsGraphicResolver&, MWsGraphicsContext&) sl@0: iWindow.Invalidate(); sl@0: iWindow.BeginRedraw(); sl@0: TheGc->Activate(iWindow); sl@0: TheGc->Clear(); sl@0: iGraphicsCon->Clear(); sl@0: cmdBuffer->Play(KPlayOffset,&KClippingRegion,KRemotGcSourceRect,*iWsGrapicResolver,*iGraphicsCon); sl@0: TheGc->Deactivate(); sl@0: iWindow.EndRedraw(); sl@0: TheClient->iWs.Finish(); sl@0: TheClient->WaitForRedrawsToFinish(); sl@0: sl@0: //Compare the values received by CTestWsGraphicsContext and the values sent to it sl@0: INFO_PRINTF1(_L("Using Play(const TPoint&, const TRect&, const MWsGraphicResolver&, MWsGraphicsContext&)")); sl@0: TBool valuesSame = EFalse; sl@0: sl@0: CFbsBitmap* bmp; sl@0: BitmapLC(bmp); sl@0: compRes = CompareBitmapsByPixel(bmp, iScaledBitmap); sl@0: CleanupStack::PopAndDestroy(bmp); sl@0: sl@0: if((iGraphicsCon->iDestRect == KDestRect) && (compRes) sl@0: && (reinterpret_cast(iGraphicsCon->iRotation)==reinterpret_cast(KTestRotation))) sl@0: valuesSame = ETrue; sl@0: TEST(valuesSame); sl@0: CleanupStack::PopAndDestroy(3, remoteGc); sl@0: } sl@0: sl@0: /** sl@0: @SYMTestCaseID GRAPHICS-WSERV-DRAWRESOURCE-0007 sl@0: @SYMPREQ PREQ2095 sl@0: @SYMTestPriority High sl@0: @SYMTestCaseDesc Draw RSgImage using RemotGc->DrawResource(const TRect&, const RWsDrawableSource&, const TRect&, TGraphicsRotation) sl@0: @SYMTestActions Record the draw resource commands using CRemoteGc and play the recorded commands on a window using sl@0: Play(const TPoint&, const TRect&, RWsSession&, CWindowGc&) and then play the recorded commands using . sl@0: Play(const TPoint&, const TRect&, const MWsGraphicResolver&, MWsGraphicsContext&). sl@0: @SYMTestExpectedResults Drawn images should match reference CFbsBitmap and also values received by MWsGraphicsContext should sl@0: match what was originally sent to DrawResource. sl@0: */ sl@0: void CTDrawResource::TestRemoteGcDrawResourceScaleL() sl@0: { sl@0: const TRect KRemotGcSourceRect(0, 0, iWindow.Size().iWidth, iWindow.Size().iHeight); sl@0: const TRegionFix<1> KClippingRegion(KRemotGcSourceRect); sl@0: sl@0: //Create remote gc - required RemoteGc testing sl@0: CRemoteGc* remoteGc = CRemoteGc::NewL(TheClient->iScreen); sl@0: CleanupStack::PushL(remoteGc); sl@0: sl@0: //Record draw messages sl@0: remoteGc->BeginDraw(KRemotGcSourceRect); sl@0: MWsDrawResource* dr = static_cast(remoteGc->Interface(KMWsDrawResourceInterfaceUid)); sl@0: TEST(dr != NULL); sl@0: dr->DrawResource(KDestRect, iWsDrawableSource, KSourceRect, KTestRotation); sl@0: remoteGc->EndDraw(); sl@0: sl@0: RWsGraphicMsgBuf msgBuf; sl@0: CleanupClosePushL(msgBuf); sl@0: //Externalize the captured commands from remote gc in to a buffer sl@0: remoteGc->ExternalizeL(msgBuf, ETrue); sl@0: sl@0: //Create command buffer - required RemoteGc testing sl@0: CCommandBuffer* cmdBuffer = CCommandBuffer::NewL(); sl@0: CleanupStack::PushL(cmdBuffer); sl@0: //Internalize the buffer with captured commands (from CRemoteGC) in to CCommandBuffer sl@0: cmdBuffer->InternalizeL(msgBuf.Pckg()); sl@0: sl@0: // Play the stored commands using Play(const TRect&, const TRect&, RWsSession&, CWindowGc&) sl@0: remoteGc->ResetCommandBuffer(); sl@0: iWindow.Invalidate(); sl@0: iWindow.BeginRedraw(); sl@0: TheGc->Activate(iWindow); sl@0: TheGc->Clear(); sl@0: cmdBuffer->Play(KPlayOffset, &KClippingRegion, KRemotGcSourceRect, TheClient->iWs, *TheGc); sl@0: TheGc->Deactivate(); sl@0: iWindow.EndRedraw(); sl@0: TheClient->iWs.Finish(); sl@0: TheClient->WaitForRedrawsToFinish(); sl@0: //Copy the screen to the copy bitmap sl@0: TheClient->iScreen->CopyScreenToBitmap(iCopyBitmap, KCopyTestRect); sl@0: sl@0: //Compare the bitmaps sl@0: INFO_PRINTF1(_L("Using Play(const TPoint&, const TRect&, RWsSession&, CWindowGc&)")); sl@0: TBool compRes = CompareBitmapsByPixel(iCopyBitmap, iScaledCroppedBitmap); sl@0: TEST(compRes); sl@0: sl@0: // Play the stored commands using Play(const TPoint&, const TRect&, const MWsGraphicResolver&, MWsGraphicsContext&) sl@0: iWindow.Invalidate(); sl@0: iWindow.BeginRedraw(); sl@0: TheGc->Activate(iWindow); sl@0: TheGc->Clear(); sl@0: iGraphicsCon->Clear(); sl@0: cmdBuffer->Play(KPlayOffset,&KClippingRegion,KRemotGcSourceRect,*iWsGrapicResolver,*iGraphicsCon); sl@0: TheGc->Deactivate(); sl@0: iWindow.EndRedraw(); sl@0: TheClient->iWs.Finish(); sl@0: TheClient->WaitForRedrawsToFinish(); sl@0: sl@0: //Compare the values received by CTestWsGraphicsContext and the values sent to it sl@0: INFO_PRINTF1(_L("Using Play(const TPoint&, const TRect&, const MWsGraphicResolver&, MWsGraphicsContext&)")); sl@0: TBool valuesSame = EFalse; sl@0: sl@0: CFbsBitmap* bmp; sl@0: BitmapLC(bmp); sl@0: compRes = CompareBitmapsByPixel(bmp, iScaledCroppedBitmap); sl@0: CleanupStack::PopAndDestroy(bmp); sl@0: sl@0: if((iGraphicsCon->iDestRect == KDestRect) && (compRes) && (iGraphicsCon->iSrcRect == KSourceRect) sl@0: && (reinterpret_cast(iGraphicsCon->iRotation)==reinterpret_cast(KTestRotation))) sl@0: valuesSame = ETrue; sl@0: TEST(valuesSame); sl@0: CleanupStack::PopAndDestroy(3, remoteGc); sl@0: } sl@0: sl@0: /** sl@0: @SYMTestCaseID GRAPHICS-WSERV-DRAWRESOURCE-0008 sl@0: @SYMPREQ PREQ2095 sl@0: @SYMTestPriority High sl@0: @SYMTestCaseDesc Negative testing. Draw graphics recourses which associated with different screens. sl@0: @SYMTestActions Open RWsDrawableSource associated with the screen which doesn’ exist. sl@0: Open RWsDrawableSource associated with the screen which exists but differes from drawing target. sl@0: Draw Rectangle and Resource to the screen via CWindowGc sl@0: Draw Rectangle and Resource to the screen via CRemoteGc sl@0: @SYMTestExpectedResults Opening drawable resource on the screen which doesn’t exist must fail with error code KErrArgument sl@0: Drawing primitives will result only rectangles be drawn as drawable recourses get associated with different screen sl@0: */ sl@0: void CTDrawResource::TestDrawResourceScreensL() sl@0: { sl@0: TInt numOfScreens = TheClient->iWs.NumberOfScreens(); sl@0: if(numOfScreens < 2) sl@0: { sl@0: INFO_PRINTF2(_L("This test case will be running if the number of available screens more than 1, current number is %d"), numOfScreens); sl@0: return; sl@0: } sl@0: TInt screenNumber = TheClient->iScreen->GetScreenNumber(); sl@0: TInt differentScreen = (screenNumber == 0) ? 1 : 0; sl@0: sl@0: RSgImage sgImage; sl@0: CreateSgImageFromBitmapL(sgImage); sl@0: CleanupClosePushL(sgImage); sl@0: sl@0: RWsDrawableSource drawableSource(TheClient->iWs); sl@0: TInt res = drawableSource.Create(sgImage, differentScreen + 200); //wrong screen number sl@0: TEST(res == KErrArgument); sl@0: sl@0: res = drawableSource.Create(iImage, differentScreen); sl@0: TEST(res == KErrNotSupported); //in order to succeed the image must be created with flag usage ESgUsageWindowGcSource sl@0: sl@0: TSgImageInfo info; sl@0: User::LeaveIfError(sgImage.GetInfo(info)); sl@0: sl@0: res = drawableSource.Create(sgImage, differentScreen); sl@0: if(res == KErrNotSupported) sl@0: { sl@0: INFO_PRINTF1(_L("The second screen is not supports drawable source. This test case terminates now.")); sl@0: CleanupStack::PopAndDestroy(&sgImage); sl@0: return; sl@0: } sl@0: TEST(res == KErrNone); sl@0: User::LeaveIfError(res); sl@0: CleanupClosePushL(drawableSource); sl@0: sl@0: iWindow.BeginRedraw(); sl@0: TheGc->Activate(iWindow); sl@0: TheGc->Clear(); sl@0: TheGc->SetBrushStyle(CFbsBitGc::ESolidBrush); sl@0: TheGc->SetPenStyle(CFbsBitGc::ENullPen); sl@0: TheGc->SetBrushColor(KRgbGreen); sl@0: TheGc->DrawRect(TRect(KDestPoint, info.iSizeInPixels)); sl@0: // Draw to TPoint(0,0) with EGraphicsRotationNone but to the different screen sl@0: MWsDrawResource* winDr = static_cast(TheGc->Interface(KMWsDrawResourceInterfaceUid)); sl@0: TEST(winDr != NULL); sl@0: winDr->DrawResource(KDestPoint, drawableSource, CWindowGc::EGraphicsRotationNone); sl@0: TheGc->Deactivate(); sl@0: iWindow.EndRedraw(); sl@0: TheClient->iWs.Finish(); sl@0: TheClient->WaitForRedrawsToFinish(); sl@0: sl@0: //Copy the screen to the copy bitmap sl@0: TheClient->iScreen->CopyScreenToBitmap(iCopyBitmap, KCopyTestRect); sl@0: sl@0: //Compare the bitmaps sl@0: INFO_PRINTF1(_L("Draw to TPoint(0,0) with EGraphicsRotationNone but to different screen")); sl@0: TBool compRes = CompareBitmapsByPixel(iCopyBitmap, iBitmapWrongScreenNumber); sl@0: TEST(compRes); sl@0: sl@0: //--------------------------- remoteGc sl@0: const TRect KRemotGcSourceRect(0, 0, iWindow.Size().iWidth, iWindow.Size().iHeight); sl@0: const TRegionFix<1> KClippingRegion(KRemotGcSourceRect); sl@0: sl@0: //Create remote gc - required RemoteGc testing sl@0: CRemoteGc* remoteGc = CRemoteGc::NewL(TheClient->iScreen); sl@0: CleanupStack::PushL(remoteGc); sl@0: sl@0: //Record draw messages sl@0: remoteGc->BeginDraw(KRemotGcSourceRect); sl@0: remoteGc->SetBrushStyle(CFbsBitGc::ESolidBrush); sl@0: remoteGc->SetPenStyle(CFbsBitGc::ENullPen); sl@0: remoteGc->SetBrushColor(KRgbGreen); sl@0: remoteGc->DrawRect(TRect(KDestPoint, info.iSizeInPixels)); sl@0: MWsDrawResource* remDr = static_cast(remoteGc->Interface(KMWsDrawResourceInterfaceUid)); sl@0: TEST(remDr != NULL); sl@0: remDr->DrawResource(KDestRect, drawableSource, CWindowGc::EGraphicsRotationNone); sl@0: remoteGc->EndDraw(); sl@0: sl@0: RWsGraphicMsgBuf msgBuf; sl@0: CleanupClosePushL(msgBuf); sl@0: //Externalize the captured commands from remote gc in to a buffer sl@0: remoteGc->ExternalizeL(msgBuf, ETrue); sl@0: sl@0: //Create command buffer - required RemoteGc testing sl@0: CCommandBuffer* cmdBuffer = CCommandBuffer::NewL(); sl@0: CleanupStack::PushL(cmdBuffer); sl@0: //Internalize the buffer with captured commands (from CRemoteGC) in to CCommandBuffer sl@0: cmdBuffer->InternalizeL(msgBuf.Pckg()); sl@0: sl@0: // Play stored commands using Play(const TRect&, const TRect&, RWsSession&, CWindowGc&) sl@0: iWindow.Invalidate(); sl@0: iWindow.BeginRedraw(); sl@0: TheGc->Activate(iWindow); sl@0: TheGc->Clear(); sl@0: cmdBuffer->Play(KPlayOffset, &KClippingRegion, KRemotGcSourceRect, TheClient->iWs, *TheGc); sl@0: TheGc->Deactivate(); sl@0: iWindow.EndRedraw(); sl@0: TheClient->iWs.Finish(); sl@0: TheClient->WaitForRedrawsToFinish(); sl@0: sl@0: //Copy the screen to the copy bitmap sl@0: TheClient->iScreen->CopyScreenToBitmap(iCopyBitmap, KCopyTestRect); sl@0: sl@0: INFO_PRINTF1(_L("Draw to TPoint(0,0) with EGraphicsRotationNone but to different screen")); sl@0: TBool compRes1 = CompareBitmapsByPixel(iCopyBitmap, iBitmapWrongScreenNumber); sl@0: TEST(compRes1); sl@0: sl@0: CleanupStack::PopAndDestroy(5, &sgImage); sl@0: } sl@0: sl@0: /** sl@0: @SYMTestCaseID GRAPHICS-WSERV-TestCopyScreenToBitmapWithDifferentDisplayModes-0001 sl@0: @SYMPREQ PREQ2095 sl@0: @SYMTestPriority High sl@0: @SYMTestCaseDesc Get bitmap and scanline from the screen. sl@0: @SYMTestActions Draw bitmap in various display modes to the screen. sl@0: Retrieve scan line and bitmap from the screen using standard WSERV API. sl@0: sl@0: @SYMTestExpectedResults Checks that obtained bitmap matches with the reference bitmap. sl@0: */ sl@0: void CTDrawResource::TestCopyScreenToBitmapWithDifferentDisplayModesL() sl@0: { sl@0: TDisplayMode mode = TheClient->iScreen->DisplayMode(); sl@0: INFO_PRINTF2(_L("Screen display mode %d"), mode); sl@0: CFbsBitmap* bitmap = NULL; sl@0: sl@0: TSize bitmapSize(163, 120); sl@0: CreateBitmapLC(bitmap, bitmapSize, mode); sl@0: sl@0: iWindow.BeginRedraw(); sl@0: TheGc->Activate(iWindow); sl@0: TheGc->SetBrushStyle(CWindowGc::ESolidBrush); sl@0: TheGc->SetBrushColor(KRgbYellow); sl@0: TheGc->Clear(); sl@0: const TPoint ptOffset(10, 15); sl@0: TheGc->BitBlt(KDestPoint + ptOffset, bitmap); sl@0: sl@0: TheGc->Deactivate(); sl@0: iWindow.EndRedraw(); sl@0: TheClient->iWs.Finish(); sl@0: TheClient->WaitForRedrawsToFinish(); sl@0: sl@0: const TInt length = bitmapSize.iWidth; sl@0: const TInt height = bitmapSize.iHeight; sl@0: const TInt buffersSize = length * 4; sl@0: TUint8 *screenData = (TUint8*) User::AllocL(buffersSize); sl@0: CleanupStack::PushL(screenData); sl@0: TUint8 *bitmapData = (TUint8*) User::AllocL(buffersSize); sl@0: CleanupStack::PushL(bitmapData); sl@0: TPtr8 ptrScreen (screenData, buffersSize, buffersSize); sl@0: TPtr8 ptrBitmap (bitmapData, buffersSize, buffersSize); sl@0: sl@0: //EGray mode uses dithering in BitGdi, wserv doesnt support this, thus skipping the first mode sl@0: for(TInt ii =2; ; ii++) sl@0: { sl@0: TDisplayMode dispMode = (TDisplayMode)ii; sl@0: if(dispMode >= EColorLast) sl@0: break; sl@0: if(dispMode == ERgb) sl@0: continue; sl@0: sl@0: INFO_PRINTF2(_L("Copy Screen to bitmap, destination mode %d"), dispMode); sl@0: sl@0: CFbsBitmap *bmp = new (ELeave) CFbsBitmap; sl@0: CleanupStack::PushL(bmp); sl@0: User::LeaveIfError(bmp->Create(bitmapSize, dispMode)); sl@0: TUidPixelFormat pixelFormat = SgUtils::DisplayModeToPixelFormat(dispMode); sl@0: const TInt minStride = SgUtils::MinDataStride(length, pixelFormat); sl@0: const TInt bitmapStride = bmp->DataStride(); sl@0: TEST(minStride <= bitmapStride); sl@0: sl@0: //Copy the screen to the copy bitmap sl@0: TRect rc = bitmapSize; sl@0: rc.Move(ptOffset); sl@0: TheClient->iScreen->CopyScreenToBitmap(bmp, rc); sl@0: CFbsBitmap *bmpRef = NULL; sl@0: CreateReferenceBitmapLC(bmpRef, bitmap, dispMode); sl@0: TEST(bmpRef->DisplayMode() == dispMode); sl@0: sl@0: //Compare the bitmaps sl@0: TBool compRes = CompareBitmapsByPixel(bmp, bmpRef); sl@0: TEST(compRes); sl@0: sl@0: for(TInt jj = 0; jj < height; jj++) sl@0: { sl@0: TPoint pt(0, jj); sl@0: TPoint ptScreen = pt + ptOffset; sl@0: sl@0: Mem::Fill(screenData, bitmapStride, 0xff); sl@0: Mem::Fill(bitmapData, bitmapStride, 0xff); sl@0: sl@0: TheClient->iScreen->GetScanLine(ptrScreen, ptScreen, length, dispMode); sl@0: bitmap->GetScanLine(ptrBitmap, pt, length, dispMode); sl@0: TInt length1 = ptrScreen.Length(); sl@0: sl@0: TInt res = Mem::Compare(screenData, length1, bitmapData, length1); sl@0: TEST(res == 0); sl@0: } sl@0: CleanupStack::PopAndDestroy(2, bmp); sl@0: }//screen modes; sl@0: sl@0: CleanupStack::PopAndDestroy(3, bitmap); sl@0: } sl@0: sl@0: //Helper function: Creates reference bitmap with specified display mode sl@0: void CTDrawResource::CreateReferenceBitmapLC(CFbsBitmap*& aBmpTarget, CFbsBitmap* aBmpSrc, TDisplayMode aDestMode) sl@0: { sl@0: TSize size = aBmpSrc->SizeInPixels(); sl@0: aBmpTarget = new (ELeave) CFbsBitmap; sl@0: CleanupStack::PushL(aBmpTarget); sl@0: User::LeaveIfError(aBmpTarget->Create(size, aDestMode)); sl@0: CFbsBitmapDevice *refBitmapDev = CFbsBitmapDevice::NewL(aBmpTarget); sl@0: CleanupStack::PushL(refBitmapDev); sl@0: CFbsBitGc *originalBitGc; sl@0: User::LeaveIfError(refBitmapDev->CreateContext(originalBitGc)); sl@0: CleanupStack::PushL(originalBitGc); sl@0: originalBitGc->BitBlt(TPoint(0,0), aBmpSrc); sl@0: CleanupStack::PopAndDestroy(2, refBitmapDev); sl@0: } sl@0: sl@0: //Helper function: Creates reference bitmap with specified display mode sl@0: void CTDrawResource::CreateBitmapLC(CFbsBitmap*& aBmpTarget, const TSize& aSize, TDisplayMode aDispMode) const sl@0: { sl@0: aBmpTarget = new (ELeave) CFbsBitmap; sl@0: CleanupStack::PushL(aBmpTarget); sl@0: User::LeaveIfError(aBmpTarget->Create(aSize, aDispMode)); sl@0: CFbsBitmapDevice *refBitmapDev = CFbsBitmapDevice::NewL(aBmpTarget); sl@0: CleanupStack::PushL(refBitmapDev); sl@0: CFbsBitGc *originalBitGc; sl@0: User::LeaveIfError(refBitmapDev->CreateContext(originalBitGc)); sl@0: CleanupStack::PushL(originalBitGc); sl@0: sl@0: TRect rect = TRect(aSize); sl@0: rect.Shrink(21, 15); sl@0: sl@0: originalBitGc->SetBrushStyle(CFbsBitGc::ESolidBrush); sl@0: originalBitGc->SetBrushColor(TRgb(0,150,150)); sl@0: originalBitGc->DrawRect(TRect(TPoint(0,0), TSize(aSize.iWidth, aSize.iHeight / 2))); sl@0: originalBitGc->SetBrushColor(TRgb(150,100,150)); sl@0: originalBitGc->DrawRect(TRect(TPoint(0,aSize.iHeight / 2), TSize(aSize.iWidth, aSize.iHeight))); sl@0: sl@0: originalBitGc->SetBrushColor(TRgb(0,0,128)); sl@0: originalBitGc->DrawRect(rect); sl@0: sl@0: sl@0: CleanupStack::PopAndDestroy(2, refBitmapDev); sl@0: } sl@0: sl@0: //Helper function: Creates a RSgImage from a bitmap sl@0: void CTDrawResource::CreateSgImageFromBitmapL(RSgImage& aSgImage) sl@0: { sl@0: TUint32* data = iRefBitmap->DataAddress(); sl@0: TInt stride = iRefBitmap->DataStride(); sl@0: TSize size = iRefBitmap->SizeInPixels(); sl@0: sl@0: TSgImageInfo info; sl@0: info.iSizeInPixels = size; sl@0: info.iScreenId = TheClient->iScreen->CurrentScreenMode(); sl@0: info.iShareable = ETrue; //must be shareable since wserv is in other process sl@0: info.iUsage = ESgUsageWindowGcSource; sl@0: info.iPixelFormat = SgUtils::DisplayModeToPixelFormat(iRefBitmap->DisplayMode()); sl@0: sl@0: User::LeaveIfError(aSgImage.Create(info, data, stride)); sl@0: } sl@0: sl@0: //Helper function: Creates all reference bitmaps required for all tests sl@0: void CTDrawResource::CreateReferenceAndCopyBitmapsL() sl@0: { sl@0: //Create reference bitmap sl@0: iRefBitmap = new (ELeave) CFbsBitmap(); sl@0: User::LeaveIfError(iRefBitmap->Create(TSize(160,120),EColor64K)); sl@0: sl@0: //Setup to draw to original reference bitmap sl@0: CFbsBitmapDevice *refBitmapDev = CFbsBitmapDevice::NewL(iRefBitmap); sl@0: CleanupStack::PushL(refBitmapDev); sl@0: CFbsBitGc *originalBitGc; sl@0: User::LeaveIfError(refBitmapDev->CreateContext(originalBitGc)); sl@0: CleanupStack::PushL(originalBitGc); sl@0: sl@0: //Draw to reference bitmap sl@0: originalBitGc->SetBrushStyle(CFbsBitGc::ESolidBrush); sl@0: originalBitGc->SetBrushColor(TRgb(0,150,150)); sl@0: originalBitGc->DrawRect(TRect(TPoint(0,0), TSize(160,60))); sl@0: originalBitGc->SetBrushColor(TRgb(150,100,150)); sl@0: originalBitGc->DrawRect(TRect(TPoint(0,60), TSize(160,60))); sl@0: sl@0: //create a rotated version of the reference bitmap sl@0: iRotatedRefBitmap = new (ELeave) CFbsBitmap(); sl@0: User::LeaveIfError(iRotatedRefBitmap->Create(TSize(120,160),EColor64K)); sl@0: sl@0: //Setup to draw to rotated reference bitmap sl@0: CFbsBitmapDevice *rotRefBitmapDev = CFbsBitmapDevice::NewL(iRotatedRefBitmap); sl@0: CleanupStack::PushL(rotRefBitmapDev); sl@0: CFbsBitGc *rotatedBitGc; sl@0: User::LeaveIfError(rotRefBitmapDev->CreateContext(rotatedBitGc)); sl@0: CleanupStack::PushL(rotatedBitGc); sl@0: sl@0: //Draw to rotated reference bitmap sl@0: rotatedBitGc->SetBrushStyle(CFbsBitGc::ESolidBrush); sl@0: rotatedBitGc->SetBrushColor(TRgb(0,150,150)); sl@0: rotatedBitGc->DrawRect(TRect(TPoint(60,0), TSize(60,160))); sl@0: rotatedBitGc->SetBrushColor(TRgb(150,100,150)); sl@0: rotatedBitGc->DrawRect(TRect(TPoint(0,0), TSize(60,160))); sl@0: sl@0: //Prepare a scaled version of the rotated reference bitmap to later compare against sl@0: iScaledBitmap = new (ELeave) CFbsBitmap(); sl@0: User::LeaveIfError(iScaledBitmap->Create(TSize(160,120),EColor64K)); sl@0: //Setup to draw to bitmap sl@0: CFbsBitmapDevice *scaledBitDev = CFbsBitmapDevice::NewL(iScaledBitmap); sl@0: CleanupStack::PushL(scaledBitDev); sl@0: CFbsBitGc *scaledBitGc; sl@0: User::LeaveIfError(scaledBitDev->CreateContext(scaledBitGc)); sl@0: CleanupStack::PushL(scaledBitGc); sl@0: //Draw the rotated reference bitmap scaled sl@0: scaledBitGc->DrawBitmap(KDestRect, iRotatedRefBitmap); sl@0: sl@0: //Prepare a scaled version of the rotated reference bitmap to later compare against sl@0: iScaledCroppedBitmap = new (ELeave) CFbsBitmap(); sl@0: User::LeaveIfError(iScaledCroppedBitmap->Create(TSize(160,120),EColor64K)); sl@0: sl@0: //Setup to draw to bitmap sl@0: CFbsBitmapDevice *scaledCroppedBitDev = CFbsBitmapDevice::NewL(iScaledCroppedBitmap); sl@0: CleanupStack::PushL(scaledCroppedBitDev); sl@0: CFbsBitGc *scaledCroppedBitGc; sl@0: User::LeaveIfError(scaledCroppedBitDev->CreateContext(scaledCroppedBitGc)); sl@0: CleanupStack::PushL(scaledCroppedBitGc); sl@0: sl@0: //Draw the rotated reference bitmap scaled sl@0: TInt width = iRotatedRefBitmap->SizeInPixels().iWidth; sl@0: TInt height = iRotatedRefBitmap->SizeInPixels().iHeight; sl@0: sl@0: TRect rectSrc; sl@0: rectSrc.iTl.iX= width - KSourceRect.Height(); sl@0: rectSrc.iTl.iY= 0; sl@0: rectSrc.iBr.iX= width; sl@0: rectSrc.iBr.iY= KSourceRect.Width(); sl@0: sl@0: scaledCroppedBitGc->DrawBitmap(KDestRect, iRotatedRefBitmap, rectSrc); sl@0: sl@0: //Prepare bitmap for testing drawable which opened with different screen number sl@0: iBitmapWrongScreenNumber = new (ELeave) CFbsBitmap(); sl@0: User::LeaveIfError(iBitmapWrongScreenNumber->Create(TSize(160,120),EColor64K)); sl@0: //Setup to draw to bitmap sl@0: CFbsBitmapDevice *wrongScreenNumberBitDev = CFbsBitmapDevice::NewL(iBitmapWrongScreenNumber); sl@0: CleanupStack::PushL(wrongScreenNumberBitDev); sl@0: CFbsBitGc *wrongScreenNumberBitGc; sl@0: User::LeaveIfError(wrongScreenNumberBitDev->CreateContext(wrongScreenNumberBitGc)); sl@0: CleanupStack::PushL(wrongScreenNumberBitGc); sl@0: //Draw the rotated reference bitmap scaled sl@0: wrongScreenNumberBitGc->SetBrushColor(KRgbGreen); sl@0: wrongScreenNumberBitGc->SetBrushStyle(CFbsBitGc::ESolidBrush); sl@0: wrongScreenNumberBitGc->SetPenStyle(CFbsBitGc::ENullPen); sl@0: wrongScreenNumberBitGc->DrawRect(TRect(0, 0, 160, 120)); // sl@0: sl@0: //Create a bitmap to copy to with the same display mode as the reference bitmap sl@0: iCopyBitmap = new (ELeave) CFbsBitmap(); sl@0: User::LeaveIfError(iCopyBitmap->Create(TSize(640,240),EColor64K)); sl@0: sl@0: CleanupStack::PopAndDestroy(10, refBitmapDev); sl@0: } sl@0: sl@0: //Helper function: This function compares two bitmaps on a pixel by pixel basis */ sl@0: TBool CTDrawResource::CompareBitmapsByPixel(CFbsBitmap* aCandidateBitmap, CFbsBitmap* aReferenceBitmap) sl@0: { sl@0: TBool result = ETrue; sl@0: sl@0: TSize candidateSize = aCandidateBitmap->SizeInPixels(); sl@0: TSize referenceSize = aReferenceBitmap->SizeInPixels(); sl@0: sl@0: TInt mismatchedPixels = 0; sl@0: sl@0: TRgb nativePixel; sl@0: TRgb referencePixel; sl@0: for (TInt x = 0; x < referenceSize.iWidth; x++) sl@0: { sl@0: for (TInt y = 0; y < referenceSize.iHeight; y++) sl@0: { sl@0: TPoint point(x,y); sl@0: nativePixel = TRgb(0,0,0,0); sl@0: referencePixel = TRgb(0,0,0,0); sl@0: aCandidateBitmap->GetPixel(nativePixel, point); sl@0: aReferenceBitmap->GetPixel(referencePixel, point); sl@0: sl@0: if (nativePixel != referencePixel) sl@0: { sl@0: mismatchedPixels++; sl@0: result = EFalse; sl@0: } sl@0: } sl@0: } sl@0: sl@0: INFO_PRINTF2(_L("Number of different pixels: %i"), mismatchedPixels); sl@0: return result; sl@0: } sl@0: //Helper function: This function extracts content of the image associated with the image target and copies it into bitmap sl@0: void CTDrawResource::BitmapLC(CFbsBitmap*& aBmp) sl@0: { sl@0: aBmp = new(ELeave) CFbsBitmap; sl@0: CleanupStack::PushL(aBmp); sl@0: sl@0: TSgImageInfo info; sl@0: TInt res = iImage.GetInfo(info); sl@0: User::LeaveIfError(res); sl@0: sl@0: res = aBmp ->Create(info.iSizeInPixels, SgUtils::PixelFormatToDisplayMode(info.iPixelFormat)); sl@0: User::LeaveIfError(res); sl@0: TUint32* dataAddressDest = aBmp->DataAddress(); sl@0: sl@0: RSgImage image; sl@0: info.iUsage = ESgUsageNone; sl@0: info.iCpuAccess = ESgCpuAccessReadOnly; sl@0: res = image.Create(info, iImage); sl@0: User::LeaveIfError(res); sl@0: CleanupClosePushL(image); sl@0: const TAny* dataAddress = NULL; sl@0: TInt dataStride; sl@0: res = image.MapReadOnly(dataAddress, dataStride); sl@0: User::LeaveIfError(res); sl@0: Mem::Copy(dataAddressDest, dataAddress, dataStride * info.iSizeInPixels.iHeight); sl@0: image.Unmap(); sl@0: CleanupStack::PopAndDestroy(&image); sl@0: }