Update contrib.
1 // Copyright (c) 1995-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.
19 @internalComponent - Internal Symbian test code
22 #include <w32stdgraphic.h>
23 #include <imageconversion.h>
27 // Bitmap to load for tests
28 #define MY_TEST_BITMAP _L("Z:\\WSTEST\\MYTEST.MBM")
30 // Animation to load for tests
31 _LIT(KSymBallFile, "Z:\\WSTEST\\symball.gif");
33 // Executables for different sharing of graphic tests
34 _LIT(KTestExe1, "TWSGRAPHICSHARETEST.exe");
35 _LIT(KTestExe2, "TWSGRAPHICSHAREGLOBALTEST.exe");
36 _LIT(KTestExe3, "TWSGRAPHICUNSHAREGLOBALTEST.exe");
37 _LIT(KTestExe4, "TWSGRAPHICSHARESECURETEST.exe");
38 _LIT(KTestExe5, "TWSGRAPHICUNSHARESECURETEST.exe");
40 // Graphic is shared or not in executeable
41 _LIT(KShare, " true");
42 _LIT(KNoShare, " false");
44 TUid KUidTestAnimation = {0x87654321};
45 const TInt KDummyGraphicId = 99;
46 const TInt KMaxLogLength = 256;
47 const TInt KAnimationRunTime = 5000000; // 5 seconds max time to run a single animation loop
50 class CIclLoader: public CActive
55 void ConstructL(const TDesC& aFileName, TBool aUseUID, TBool aReplace);
56 const TWsGraphicId GetId();
57 inline TInt FrameCount() const {return iTotalFrames;};
58 inline TBool Ok() const {return !iFailed;};
61 TInt RunError(TInt aError);
64 void TestL(TInt aCondition);
65 CImageDecoder* iDecoder;
66 CWsGraphicBitmapAnimation* iTestAnimation;
67 TLogMessageText iTestLog;
70 RPointerArray<CWsGraphicBitmapAnimation::CFrame> iFrames;
77 CIclLoader::CIclLoader():
78 CActive(CActive::EPriorityLow)
80 CActiveScheduler::Add(this);
83 CIclLoader::~CIclLoader()
87 delete iTestAnimation;
88 iTestAnimation = NULL;
95 iFrames.ResetAndDestroy();
99 const TWsGraphicId CIclLoader::GetId()
103 return iTestAnimation->Id();
107 TWsGraphicId id(KDummyGraphicId);
112 void CIclLoader::TestL(TInt aCondition)
117 User::LeaveIfError(rWs.Connect());
118 TBuf<KMaxLogLength> buf;
119 _LIT(Fail,"AUTO Failed in WsGraphics Test : CIclLoader");
121 buf.Append(iTestLog);
125 User::Leave(KErrGeneral);
129 void CIclLoader::ConstructL(const TDesC& aFileName, TBool aUseUID,TBool aReplace)
134 User::LeaveIfError(iFs.Connect());
136 iDecoder = CImageDecoder::FileNewL(iFs,aFileName);
137 if(!iDecoder->IsImageHeaderProcessingComplete())
139 User::Leave(KErrGeneral);
144 void CIclLoader::NextL()
146 // Load a frame from the animation
147 if (iDecoder && (iDecoder->FrameCount() > iFrames.Count()))
149 const TFrameInfo& info = iDecoder->FrameInfo(iFrames.Count());
150 CWsGraphicBitmapAnimation::CFrame* frame = CWsGraphicBitmapAnimation::CFrame::NewL();
151 CleanupStack::PushL(frame);
152 iFrames.AppendL(frame);
153 CleanupStack::Pop(frame);
154 frame->SetFrameInfo(info);
155 TFrameInfo copiedInfo = frame->FrameInfo();
156 TestL(info.iFlags==copiedInfo.iFlags);
158 TSize bmpSize(info.iFrameCoordsInPixels.Size());
159 CFbsBitmap* bitmap = new(ELeave) CFbsBitmap;
160 frame->SetBitmap(bitmap); //takes ownership
161 User::LeaveIfError(bitmap->Create(bmpSize,info.iFrameDisplayMode));
163 TDisplayMode maskDispMode;
164 CFbsBitmap* mask = new(ELeave) CFbsBitmap;
165 frame->SetMask(mask); //takes ownership
166 if((TFrameInfo::EAlphaChannel|TFrameInfo::ETransparencyPossible) & info.iFlags)
168 maskDispMode = EGray256;
172 maskDispMode = EGray2;
175 User::LeaveIfError(mask->Create(info.iFrameCoordsInPixels.Size(),maskDispMode));
176 iDecoder->Convert(&iStatus,*bitmap,*mask,iFrames.Count()-1);
182 else if(iFrames.Count())
184 _LIT_SECURE_ID(KTestSecId,0x12345678);
186 // The extra code around the NewL is checking that no heap failures occur when
187 // creating the CWsGraphicBitmapAnimation
189 const TInt KMaxIteration = 1000;
190 for (;failRate < KMaxIteration; failRate++)
193 __UHEAP_SETFAIL(RHeap::EDeterministic,failRate);
196 TInt err = KErrGeneral;
198 {// creating animation using UID
199 TRAP(err, iTestAnimation = CWsGraphicBitmapAnimation::NewL(KUidTestAnimation,iFrames.Array()););
202 {// creating using transient ID allocated by wserv
203 TRAP(err, iTestAnimation = CWsGraphicBitmapAnimation::NewL(iFrames.Array()););
206 TestL((err==KErrNone || err==KErrNoMemory));
211 TestL(iTestAnimation == NULL);
219 TestL(iTestAnimation != NULL);
220 TestL(failRate > 1); //Ensure the udeb version of euser.dll is available (i.e. that the rom was build with the -D_DEBUG option)
221 RDebug::Printf("TWSGraphicTest.CPP: Heapfailure loop completed after %d allocs.", failRate-1);
223 // if testing that a created animation can be replaced
226 // replace the animation just created with another
227 TWsGraphicId testId = iTestAnimation->Id();
228 TInt testInt = testId.Id();
230 CWsGraphicBitmapAnimation* testReplacement = CWsGraphicBitmapAnimation::NewL(testId,iFrames.Array());
232 delete iTestAnimation;
234 iTestAnimation = testReplacement;
236 TestL(iTestAnimation->Id().Id()==testInt);
241 iTotalFrames = iFrames.Count();
242 iFrames.ResetAndDestroy();
244 // test that the animation methods can be used without error
245 TestL(iTestAnimation->ShareGlobally()==KErrNone);
246 TestL(iTestAnimation->UnShareGlobally()==KErrNone);
247 TestL(iTestAnimation->Share(KTestSecId)==KErrNone);
248 TestL(iTestAnimation->UnShare(KTestSecId)==KErrNone);
249 TestL(iTestAnimation->UnShare(KTestSecId)==KErrNotFound);
253 void CIclLoader::RunL()
255 if (iStatus == KErrNone)
261 TestL(EFalse); // kill the test
265 TInt CIclLoader::RunError(TInt aError)
267 RDebug::Printf("CIclLoader::RunError, aError %d", aError);
272 void CIclLoader::DoCancel()
280 // Class for testing CWsGraphics
283 class CWsGraphicBase : public CBase
287 CWsGraphicBase(TInt aScreenNumber);
290 void DoTestL(TInt aTestNo);
291 void RedrawMe(TRect aRedrawRect, TInt aFrame);
295 ETestCreateGraphicUID,
296 ETestCreateGraphicID,
299 ETestDrawInvalideBitmapID,
302 ETestDrawGraphicCompare,
303 ETestDrawGraphicSessionHandle,
304 ETestDrawAnimatedGraphicUID,
305 ETestDrawAnimatedGraphicID,
306 ETestCreateMsgGraphicMsgBuf,
307 ETestDrawReplaceGraphicID,
308 ETestDrawInvalidAnimationID,
309 ETestDrawSharedGraphic,
310 // additional cases to be added here, before ETestMaxNumberOfTests
311 ETestMaxNumberOfTests
317 void RunAnimation(TInt aFrameCount);
318 void LaunchNewProcessL(const TDesC& aExecutable, TBool aShare);
319 inline void TestForIdenticalBitmaps(){Test(iScreen->RectCompare(iPosition1,iPosition2));};
320 inline void TestForDifferentBitmaps(){Test(!iScreen->RectCompare(iPosition1,iPosition2));};
321 void Test(TInt aCondition);
322 void DoTestCreateGraphicUidL();
323 void DoTestCreateGraphicIdL();
324 void DoTestUpdateGraphicL();
325 void DoTestDrawSharedGraphicL();
326 void DoTestDeleteGraphicL();
327 void DoTestDrawGraphicL();
328 void DoTestDrawGraphicIDL();
329 void DoTestDrawGraphicCompareL();
330 void DoTestDrawAnimatedGraphicUIDL();
331 void DoTestDrawAnimatedGraphicIDL();
332 void DoTestDrawGraphicSessionHandleL();
333 void DoTestCreateMsgGraphicMsgBufL();
334 void DoTestDrawReplaceGraphicIDL();
335 void DoTestDrawInvalidBitmapIDL();
336 void DoTestDrawInvalidAnimationIDL();
341 RWindowGroup *iGroupWin;
342 CWsScreenDevice *iScreen;
344 TLogMessageText iTestLog;
348 CRedrawAO* iRedrawListener;
349 TWsGraphicId iAnimId;
350 TWsGraphicAnimation iAnimData;
355 // request & listen for redraw events from wserv
356 // if a redraw event is received, notify the observing class
358 class CRedrawAO : public CActive
361 static CRedrawAO* NewL(RWsSession* aWs);
366 TInt RunError(TInt aError);
367 void RequestRedraw();
368 inline void SetFrameCount(TInt aCount){iFrameCount = aCount;};
369 inline TInt GetFrameCount() const {return iFrameCount;};
371 CRedrawAO(RWsSession* aWs);
378 CRedrawAO* CRedrawAO::NewL(RWsSession* aWs)
380 CRedrawAO* self = new (ELeave) CRedrawAO(aWs);
381 CleanupStack::PushL(self);
383 CleanupStack::Pop(self);
387 CRedrawAO::CRedrawAO(RWsSession* aWs):
388 CActive(CActive::EPriorityHigh), iWs(aWs)
390 CActiveScheduler::Add(this);
393 CRedrawAO::~CRedrawAO()
399 void CRedrawAO::ConstructL()
401 // nothing to construct
404 void CRedrawAO::RunL()
406 // leave if status is not ok. RunError will process this result
407 User::LeaveIfError(iStatus.Int());
408 TWsRedrawEvent redraw;
409 iWs->GetRedraw(redraw);
410 TUint redrawHandle = redraw.Handle();
411 if (redrawHandle == ENullWsHandle)
413 User::Leave(KErrBadHandle); // sanity check the client handle isn't a dummy
415 else if (redrawHandle)
418 (reinterpret_cast<CWsGraphicBase *>(redrawHandle))->RedrawMe(redraw.Rect(), iFrameCount); // handle the redraw signal
427 TInt CRedrawAO::RunError(TInt aError)
429 if (aError != KErrBadHandle)
436 void CRedrawAO::DoCancel()
438 // kill all outstanding asynch. wserv requests
439 iWs->RedrawReadyCancel();
440 iFrameCount = KErrNone;
443 void CRedrawAO::RequestRedraw()
447 iWs->RedrawReady(&iStatus);
454 class CActiveWait : public CActive
457 static CActiveWait* NewL();
459 void Wait(TInt aDelay);
463 TInt RunError(TInt aError);
472 CActiveWait* CActiveWait::NewL()
474 CActiveWait* self = new (ELeave) CActiveWait;
475 CleanupStack::PushL(self);
477 CleanupStack::Pop(self);
481 void CActiveWait::ConstructL()
483 User::LeaveIfError(iTimer.CreateLocal());
484 CActiveScheduler::Add(this);
487 CActiveWait::CActiveWait() : CActive(CActive::EPriorityStandard)
489 iFromTime.HomeTime();
492 CActiveWait::~CActiveWait()
498 void CActiveWait::DoCancel()
501 CActiveScheduler::Stop();
504 void CActiveWait::RunL()
506 CActiveScheduler::Stop();
509 TInt CActiveWait::RunError(TInt aError)
511 return aError; // exists so a break point can be placed on it.
514 void CActiveWait::Wait(TInt aDelay)
518 iTimer.After(iStatus, aDelay);
520 CActiveScheduler::Start();
525 CWsGraphicBase::CWsGraphicBase(TInt aScreenNumber) : iScreenNumber(aScreenNumber), iAnimId(KDummyGraphicId)
529 CWsGraphicBase::~CWsGraphicBase()
544 delete iRedrawListener;
545 iRedrawListener = NULL;
549 void CWsGraphicBase::ConstructL()
551 User::LeaveIfError(iWs.Connect());
552 iScreen=new(ELeave) CWsScreenDevice(iWs);
553 User::LeaveIfError(iScreen->Construct(iScreenNumber));
555 TSize screenSize = iScreen->SizeInPixels();
556 iPosition1.SetRect(0,0,screenSize.iWidth/2,screenSize.iHeight);
557 iPosition2.SetRect(screenSize.iWidth/2,0,screenSize.iWidth,screenSize.iHeight);
559 iTimer = CActiveWait::NewL();
560 iRedrawListener = CRedrawAO::NewL(&iWs);
562 iGc=new(ELeave) CWindowGc(iScreen);
563 User::LeaveIfError(iGc->Construct());
564 iGroupWin=new(ELeave) RWindowGroup(iWs);
565 iGroupWin->Construct(1);
567 iWin=new(ELeave) RWindow(iWs);
568 iWin->Construct(*iGroupWin, (TUint32)this);
569 iWin->EnableRedrawStore(EFalse); // disable the redraw store for these tests
570 iWin->SetRequiredDisplayMode(EColor256);
571 iWin->SetExtent(TPoint(0,0),iScreen->SizeInPixels());
578 // To test whether sharing of graphics works a new process has to be launched.
579 // The argument is set whether the graphic should be shared or not.
580 void CWsGraphicBase::LaunchNewProcessL(const TDesC& aExecutable, TBool aShare)
584 TRequestStatus status;
592 args.Append(KNoShare);
595 User::LeaveIfError(pr.Create(aExecutable,args));
598 User::WaitForRequest(status);
601 if (status != KErrNone)
603 User::Leave(status.Int());
608 // CWsGraphicBase::PrepGc
609 // activate a gc & clear the two rects
611 void CWsGraphicBase::PrepGc()
613 iGc->Activate(*iWin);
616 iGc->Clear(iPosition1);
617 iGc->Clear(iPosition2);
622 // CWsGraphicBase::RetireGc
623 // deactivate a gc & flush any outstanding RWindow requests
624 void CWsGraphicBase::RetireGc()
632 // CWsGraphicBase::RedrawMe
633 // called from the redraw listener AO, triggered by a redraw event
634 // Invalidates the area requiring a redraw &
635 // initiates a redraw of the CWsGraphicBitmapAnimation's window
637 void CWsGraphicBase::RedrawMe(TRect aRedrawRect, TInt aFrame)
639 // do draw with next frame
640 if (iAnimData.IsPlaying())
642 iGc->Activate(*iWin);
643 iWin->Invalidate(aRedrawRect);
646 iGc->DrawWsGraphic(iAnimId,iPosition1,iAnimData.Pckg());
651 // check for last frame
660 @SYMTestCaseID GRAPHICS-WSERV-0001
664 @SYMTestCaseDesc Create Globally and Locally Shared Graphic Bitmaps from UIDs.
666 @SYMTestPriority High
668 @SYMTestStatus Implemented
670 @SYMTestActions First test that TWsGraphicIds can be created from UIDs. Then create CWsGraphicBitmap objects through
671 CWsGraphicBitmap::NewL, passing a UID from a TWsGraphicId. Two different objects are created
672 1. Globally shared available to all applications
673 2. Locally shared available to selected clients
675 @SYMTestExpectedResults The CWsGraphicBitmap objects are created and no errors are reported.
677 void CWsGraphicBase::DoTestCreateGraphicUidL()
679 iTestLog.Append(_L("CreateGraphicUid"));
681 _LIT_SECURE_ID(KTestSecId,0x12345678);
683 // Test the creation of TWsGraphicIds from UIDs
684 TUid uid1 = {0x10000001};
685 TUid uid2 = {0x10000002};
687 TWsGraphicId twsGraphicId1(uid1);
688 Test(twsGraphicId1.Uid()==uid1);
690 TWsGraphicId twsGraphicId2(uid2);
691 Test(twsGraphicId2.Uid()==uid2);
693 TWsGraphicId twsGraphicId3(twsGraphicId2);
694 Test(twsGraphicId3.Uid()==uid2);
696 TWsGraphicId twsGraphicId4(1);
697 twsGraphicId4.Set(uid1);
698 Test(twsGraphicId4.Uid()==uid1);
700 // Create globally shared CWsGraphicBitmap
704 TSize screenSize = iScreen->SizeInPixels();
705 bitmap1.Create(screenSize,iScreen->DisplayMode());
706 mask1.Create(bitmap1.SizeInPixels(),iScreen->DisplayMode());
708 CWsGraphicBitmap* bTest = CWsGraphicBitmap::NewL(twsGraphicId1.Uid(), &bitmap1,&mask1);
709 Test(bTest->IsActive());
711 TWsGraphicId tid1 = bTest->Id();
712 Test(tid1.Uid()==uid1);
714 Test(bTest->ShareGlobally()==KErrNone);
716 // Create local shared CWsGraphicBitmap
720 bitmap2.Create(screenSize,iScreen->DisplayMode());
721 mask2.Create(bitmap2.SizeInPixels(),iScreen->DisplayMode());
723 CWsGraphicBitmap* bTest2 = CWsGraphicBitmap::NewL(twsGraphicId2.Uid(), &bitmap2,&mask2);
725 TWsGraphicId tid2 = bTest2->Id();
726 Test(tid2.Uid()==uid2);
728 Test(bTest2->Share(KTestSecId)==KErrNone);
730 // Test the unsharing of the CWsGraphicBitmaps
731 Test(bTest->UnShareGlobally()==KErrNone);
732 Test(bTest2->UnShare(KTestSecId)==KErrNone);
733 Test(bTest2->UnShare(KTestSecId)==KErrNotFound);
740 @SYMTestCaseID GRAPHICS-WSERV-0002
744 @SYMTestCaseDesc Create Globally and Locally Shared Graphic Bitmaps.
746 @SYMTestPriority High
748 @SYMTestStatus Implemented
750 @SYMTestActions First test that TWsGraphicIds can be created from IDs. Then create CWsGraphicBitmap objects through
751 CWsGraphicBitmap::NewL. Two different objects are created
752 1. Globally shared available to all applications
753 2. Locally shared available to selected clients
755 @SYMTestExpectedResults The CWsGraphicBitmap objects are created and no errors are reported.
757 void CWsGraphicBase::DoTestCreateGraphicIdL()
759 iTestLog.Append(_L("CreateGraphicId"));
761 _LIT_SECURE_ID(KTestSecId,0x12345678);
763 // Test creating TWsGraphicIds from ids first
764 TUid uid1 = {0x10000001};
766 TWsGraphicId twsGraphicId1(uid1);
768 twsGraphicId1.Set(9);
769 Test(twsGraphicId1.Id()==9);
771 TWsGraphicId twsGraphicId2(twsGraphicId1);
772 Test(twsGraphicId2.Id()==9);
774 TWsGraphicId twsGraphicId3(7);
775 Test(twsGraphicId3.Id()==7);
777 // Create globally shared CWsGraphicBitmap
781 TSize screenSize = iScreen->SizeInPixels();
782 bitmap1.Create(screenSize,iScreen->DisplayMode());
783 mask1.Create(bitmap1.SizeInPixels(),iScreen->DisplayMode());
785 CWsGraphicBitmap* bTest = CWsGraphicBitmap::NewL(&bitmap1,&mask1);
786 Test(bTest->IsActive());
788 TWsGraphicId tid1 = bTest->Id();
790 Test(bTest->ShareGlobally()==KErrNone);
792 // Create local shared CWsGraphicBitmap
796 bitmap2.Create(screenSize,iScreen->DisplayMode());
797 mask2.Create(bitmap2.SizeInPixels(),iScreen->DisplayMode());
799 CWsGraphicBitmap* bTest2 = CWsGraphicBitmap::NewL(&bitmap2,&mask2);
801 TWsGraphicId tid2 = bTest2->Id();
803 Test(bTest2->Share(KTestSecId)==KErrNone);
805 // Test the unsharing of the CWsGraphicBitmaps
806 Test(bTest->UnShareGlobally()==KErrNone);
807 Test(bTest2->UnShare(KTestSecId)==KErrNone);
808 Test(bTest2->UnShare(KTestSecId)==KErrNotFound);
815 @SYMTestCaseID GRAPHICS-WSERV-0003
819 @SYMTestCaseDesc Update an existing graphic bitmap with new data.
821 @SYMTestPriority High
823 @SYMTestStatus Implemented
825 @SYMTestActions The test calls CWsGraphicBitmap::NewL method with new data passed to the CWsGraphicBitmap object.
828 @SYMTestExpectedResults The CWsGraphicBitmap object is updated with no errors reported.
830 void CWsGraphicBase::DoTestUpdateGraphicL()
832 iTestLog.Append(_L("UpdateGraphic"));
839 TSize screenSize = iScreen->SizeInPixels();
840 bitmap1.Create(screenSize,iScreen->DisplayMode());
841 mask1.Create(bitmap1.SizeInPixels(),iScreen->DisplayMode());
843 CWsGraphic* bTest = CWsGraphicBitmap::NewL(&bitmap1,&mask1);
845 bitmap2.Create(screenSize,iScreen->DisplayMode());
846 mask2.Create(bitmap2.SizeInPixels(),iScreen->DisplayMode());
848 TWsGraphicId tid1 = bTest->Id();
849 TInt testInt = tid1.Id();
851 CWsGraphic* testReplacement = CWsGraphicBitmap::NewL(tid1, &bitmap2,&mask2);
854 bTest = testReplacement;
856 Test(bTest->Id().Id()==testInt);
864 @SYMTestCaseID GRAPHICS-WSERV-0004
868 @SYMTestCaseDesc Try to delete an existing graphic.
870 @SYMTestPriority High
872 @SYMTestStatus Implemented
874 @SYMTestActions The test app calls CWsGraphic::Destroy() method,
876 @SYMTestExpectedResults The CWsGraphicBitmap object is removed from the Window Server with no
879 void CWsGraphicBase::DoTestDeleteGraphicL()
881 iTestLog.Append(_L("DeleteGraphic"));
886 TSize screenSize = iScreen->SizeInPixels();
887 bitmap1.Create(screenSize,iScreen->DisplayMode());
888 mask1.Create(bitmap1.SizeInPixels(),iScreen->DisplayMode());
890 CWsGraphic* bTest = CWsGraphicBitmap::NewL(&bitmap1,&mask1);
894 Test(!bTest->IsActive());
900 @SYMTestCaseID GRAPHICS-WSERV-0005
904 @SYMTestCaseDesc Check a bitmap is not drawn if the bitmap and mask it uses are invalid
906 @SYMTestPriority High
908 @SYMTestStatus Implemented
910 @SYMTestActions The test app creates a valid and invalid bitmap and attempts to draw them
912 @SYMTestExpectedResults The valid bitmap is drawn but the invalid bitmap is not drawn
914 void CWsGraphicBase::DoTestDrawInvalidBitmapIDL()
916 iTestLog.Append(_L("DrawInvalidBitmapID"));
920 CFbsBitmap *bitmap2 = NULL;
921 CFbsBitmap *mask2 = NULL;
923 User::LeaveIfError(bitmap1.Load(MY_TEST_BITMAP,0));
924 mask1.Create(bitmap1.SizeInPixels(),iScreen->DisplayMode());
927 CWsGraphicBitmap* bTest = CWsGraphicBitmap::NewL(&bitmap1,&mask1);
930 CWsGraphicBitmap* bTest2 = CWsGraphicBitmap::NewL(bitmap2,mask2);
933 iGc->DrawWsGraphic(bTest->Id(),iPosition1);
934 iGc->DrawWsGraphic(bTest2->Id(),iPosition2);
937 // compare the graphic in both positions, should only be graphic in position 1
938 TestForDifferentBitmaps();
945 @SYMTestCaseID GRAPHICS-WSERV-0006
949 @SYMTestCaseDesc Draw a graphic within a rectangle on the screen, then try to draw with a non-existant graphic
951 @SYMTestPriority High
953 @SYMTestStatus Implemented
955 @SYMTestActions The test app calls CWindowGC::DrawWsGraphic() method using the TWGraphicId object, to draw within a rectangle on the screen
957 @SYMTestExpectedResults The graphic is drawn on the screen with no errors reported. Drawing with a non-existant graphic causes
958 nothing to be drawn and no error reported
960 void CWsGraphicBase::DoTestDrawGraphicL()
962 iTestLog.Append(_L("DrawGraphic"));
964 _LIT8(KTestData,"HelloWorld");
969 User::LeaveIfError(bitmap1.Load(MY_TEST_BITMAP,0));
970 mask1.Create(bitmap1.SizeInPixels(),iScreen->DisplayMode());
972 CWsGraphicBitmap* bTest = CWsGraphicBitmap::NewL(&bitmap1,&mask1);
975 iGc->DrawWsGraphic(bTest->Id(),iPosition1,KTestData);
976 TWsGraphicId twsGraphicId1(KDummyGraphicId); // create unrecognised wsbitmap id & attempt to draw it
977 iGc->DrawWsGraphic(twsGraphicId1,iPosition2,KTestData);
980 // compare the graphic in both positions, should only be graphic in position 1
981 TestForDifferentBitmaps();
987 @SYMTestCaseID GRAPHICS-WSERV-0007
991 @SYMTestCaseDesc Draw a graphic using a transient ID within a rectangle on the screen
993 @SYMTestPriority High
995 @SYMTestStatus Implemented
997 @SYMTestActions The test app calls CWindowGC::DrawWsGraphic() using a TWsGraphic object, to draw within
998 a rectangle on the screen
1000 @SYMTestExpectedResults The graphic is drawn.
1002 void CWsGraphicBase::DoTestDrawGraphicIDL()
1004 iTestLog.Append(_L("DrawGraphicID"));
1009 User::LeaveIfError(bitmap1.Load(MY_TEST_BITMAP,0));
1010 mask1.Create(bitmap1.SizeInPixels(),iScreen->DisplayMode());
1012 CWsGraphicBitmap* bTest = CWsGraphicBitmap::NewL(&bitmap1,&mask1);
1015 iGc->DrawWsGraphic(bTest->Id(),iPosition1);
1018 // compare the graphic in both positions, should only be graphic in position 1
1019 TestForDifferentBitmaps();
1027 @SYMTestCaseID GRAPHICS-WSERV-0008
1031 @SYMTestCaseDesc Draw a graphic in two different rectangles on the screen and compare them
1033 @SYMTestPriority High
1035 @SYMTestStatus Implemented
1037 @SYMTestActions The test app calls CWindowGC::DrawWsGraphic() using the TWsGraphic object, to draw a known bitmap
1038 rectangle on the screen twice in different places. The bitmaps are then compared.
1040 @SYMTestExpectedResults The two bitmaps are identical
1042 void CWsGraphicBase::DoTestDrawGraphicCompareL()
1044 iTestLog.Append(_L("DrawGraphicCompare"));
1046 _LIT8(KTestData,"HelloWorld");
1054 User::LeaveIfError(bitmap1.Load(MY_TEST_BITMAP,0));
1055 mask1.Create(bitmap1.SizeInPixels(),iScreen->DisplayMode());
1057 User::LeaveIfError(bitmap2.Load(MY_TEST_BITMAP,0));
1058 mask2.Create(bitmap2.SizeInPixels(),iScreen->DisplayMode());
1060 CWsGraphicBitmap* bTest = CWsGraphicBitmap::NewL(&bitmap1,&mask1);
1061 CWsGraphicBitmap* bTest2 = CWsGraphicBitmap::NewL(&bitmap2,&mask2);
1064 //draw the graphic in the two different rectangles
1065 iGc->DrawWsGraphic(bTest->Id(),iPosition1,KTestData);
1066 iGc->DrawWsGraphic(bTest2->Id(),iPosition2,KTestData);
1069 // compare the graphic in both positions. Contents of each rect should be identical
1070 TestForIdenticalBitmaps();
1077 @SYMTestCaseID GRAPHICS-WSERV-0009
1081 @SYMTestCaseDesc Draw a global and local graphic in two different rectangles on the screen and compare them
1083 @SYMTestPriority High
1085 @SYMTestStatus Implemented
1087 @SYMTestActions The test app calls CWindowGC::DrawGraphic() using the TWsGraphic object, to draw a known
1088 global and local bitmap rectangle on the screen twice in different places. The bitmaps are then compared.
1090 @SYMTestExpectedResults The two bitmaps are identical
1092 void CWsGraphicBase::DoTestDrawGraphicSessionHandleL()
1094 iTestLog.Append(_L("DrawGraphicSessionHandle"));
1095 _LIT_SECURE_ID(KTestSecId,0x12345678);
1097 // test TWsGraphicControlState first
1098 _LIT8(KTestData,"HelloWorld");
1106 User::LeaveIfError(bitmap1.Load(MY_TEST_BITMAP,0));
1107 mask1.Create(bitmap1.SizeInPixels(),iScreen->DisplayMode());
1109 User::LeaveIfError(bitmap2.Load(MY_TEST_BITMAP,0));
1110 mask2.Create(bitmap2.SizeInPixels(),iScreen->DisplayMode());
1112 CWsGraphicBitmap* bTest = CWsGraphicBitmap::NewL(&bitmap1,&mask1);
1113 CWsGraphicBitmap* bTest2 = CWsGraphicBitmap::NewL(&bitmap2,&mask2);
1115 Test(bTest->ShareGlobally()==KErrNone);
1116 Test(bTest2->Share(KTestSecId)==KErrNone);
1119 iGc->DrawWsGraphic(bTest->Id(),iPosition1,KTestData);
1120 iGc->DrawWsGraphic(bTest2->Id(),iPosition2,KTestData);
1123 // compare the graphic in both positions. Contents of each rect should be identical
1124 TestForIdenticalBitmaps();
1131 @SYMTestCaseID GRAPHICS-WSERV-0010
1135 @SYMTestCaseDesc Check an animation can be constructed using a UID, manipulated and then drawn
1137 @SYMTestPriority High
1139 @SYMTestStatus Implemented
1141 @SYMTestActions The test app creates CWsGraphicBitmapAnimation object via a UID and then draws the object to the screen
1143 @SYMTestExpectedResults The object is drawn
1145 void CWsGraphicBase::DoTestDrawAnimatedGraphicUIDL()
1147 iTestLog.Append(_L("DrawAnimatedGraphicUID"));
1149 // test TWsGraphicAnimation first
1150 iAnimData.Play(EFalse);
1152 // load the animation via a UID
1153 CIclLoader* iclLoader;
1154 iclLoader = new(ELeave) CIclLoader();
1155 iclLoader->ConstructL(KSymBallFile,ETrue,EFalse); // this is actually an asynchronous operation, so we give it a chance to execute below
1157 while (iclLoader->Ok() && iclLoader->GetId().Id() == KDummyGraphicId)
1162 Test(iclLoader->Ok()); // fail test if iclLoder experienced problems
1164 iAnimId = iclLoader->GetId();
1166 // animation is ready to be drawn. draw to the 1st position only
1168 iGc->DrawWsGraphic(iAnimId,iPosition1,iAnimData.Pckg());
1171 // run the animation
1172 RunAnimation(iclLoader->FrameCount());
1174 // compare the graphic in both positions.
1175 TestForDifferentBitmaps();
1178 iclLoader->Cancel();
1183 @SYMTestCaseID GRAPHICS-WSERV-0011
1187 @SYMTestCaseDesc Check an animation can be constructed using an ID, manipulated and then drawn
1189 @SYMTestPriority High
1191 @SYMTestStatus Implemented
1193 @SYMTestActions The test app creates CWsGraphicBitmapAnimation object via an ID and then draws the object to the screen
1195 @SYMTestExpectedResults The object is drawn
1197 void CWsGraphicBase::DoTestDrawAnimatedGraphicIDL()
1199 iTestLog.Append(_L("DrawAnimatedGraphicID"));
1200 iAnimData.Play(ETrue);
1201 iAnimData.Play(ETrue);
1202 Test(iAnimData.Loops());
1204 Test(!iAnimData.IsPlaying());
1205 Test(iAnimData.IsPaused());
1207 Test(iAnimData.Loops());
1208 iAnimData.Play(EFalse);
1209 Test(!iAnimData.Loops());
1210 Test(!iAnimData.IsStopping());
1211 Test(!iAnimData.IsStopped());
1213 // load the animation via an ID
1214 CIclLoader* iclLoader;
1215 iclLoader = new(ELeave) CIclLoader();
1216 iclLoader->ConstructL(KSymBallFile,EFalse,EFalse);
1218 while (iclLoader->GetId().Id() == KDummyGraphicId)
1222 iAnimId = iclLoader->GetId();
1225 iGc->DrawWsGraphic(iAnimId,iPosition1,iAnimData.Pckg());
1228 // run the animation
1229 RunAnimation(iclLoader->FrameCount());
1231 // compare the graphic in both positions
1232 TestForDifferentBitmaps();
1234 iAnimData.Stop(ETrue);
1235 Test(iAnimData.IsStopped());
1237 iAnimData.Play(EFalse);
1238 iAnimData.Stop(EFalse);
1239 Test(!iAnimData.IsStopped());
1242 iclLoader->Cancel();
1247 @SYMTestCaseID GRAPHICS-WSERV-0012
1251 @SYMTestCaseDesc Check an animation can be constructed and then replaced, manipulated and then drawn
1253 @SYMTestPriority High
1255 @SYMTestStatus Implemented
1257 @SYMTestActions The test app creates CWsGraphicBitmapAnimation object, the replaces it, and then draws the object
1260 @SYMTestExpectedResults The object is drawn
1262 void CWsGraphicBase::DoTestDrawReplaceGraphicIDL()
1264 // test TWsGraphicControlStateTimed first
1265 iTestLog.Append(_L("DrawAnimatedGraphicID"));
1266 _LIT8(KTestData,"HelloWorld");
1267 iAnimData.Stop(ETrue);
1269 // load and replace the animation
1270 CIclLoader* iclLoader;
1271 iclLoader = new(ELeave) CIclLoader();
1272 iclLoader->ConstructL(KSymBallFile,false,true);
1274 while (iclLoader->GetId().Id() == KDummyGraphicId)
1278 iAnimId = iclLoader->GetId();
1280 // draw the animation in two positions
1282 iGc->DrawWsGraphic(iAnimId,iPosition1,KTestData);
1285 // run the animation
1286 RunAnimation(iclLoader->FrameCount());
1288 // compare the graphic in both positions
1289 // Expect identical, as the command buffer used in position1 animation is invalid, therefore never drawn
1290 TestForIdenticalBitmaps();
1293 iclLoader->Cancel();
1298 @SYMTestCaseID GRAPHICS-WSERV-0013
1302 @SYMTestCaseDesc Check the creation and manipulation of an RWsGraphicMsgBuf object
1304 @SYMTestPriority High
1306 @SYMTestStatus Implemented
1308 @SYMTestActions Creates and manipulates an RWsGraphicMsgBuf object
1310 @SYMTestExpectedResults RWsGraphicMsgBuf functions correctly
1312 void CWsGraphicBase::DoTestCreateMsgGraphicMsgBufL()
1314 iTestLog.Append(_L("CreateMsgGraphicMsgBuf"));
1316 _LIT(KNebraska,"Nebraska");
1317 _LIT8(KTesting,"Testing");
1318 RWsGraphicMsgBuf msgBuf;
1319 msgBuf.CleanupClosePushL();
1320 msgBuf.Append(TUid::Uid(0x12345670),KTesting());
1321 msgBuf.Append(TUid::Uid(0x12345671),KNebraska());
1322 msgBuf.Append(TUid::Uid(0x12345670),KTesting());
1324 Test(TUid::Uid(0x12345670)==msgBuf.TypeId(0));
1327 const TInt count = msgBuf.Count();
1330 iAnimData.Play(ETrue);
1331 msgBuf.Append(iAnimData);
1332 Test(msgBuf.Count() == 3);
1334 CleanupStack::Pop();
1336 // load the animation via a UID
1337 CIclLoader* iclLoader;
1338 iclLoader = new(ELeave) CIclLoader();
1339 iclLoader->ConstructL(KSymBallFile,true,false);
1341 while (iclLoader->GetId().Id() == KDummyGraphicId)
1345 iAnimId = iclLoader->GetId();
1348 iGc->DrawWsGraphic(iAnimId,iPosition1,msgBuf.Pckg());
1351 // run the animation
1352 RunAnimation(iclLoader->FrameCount());
1354 // compare the graphic in both positions
1355 TestForDifferentBitmaps();
1358 iclLoader->Cancel();
1366 @SYMTestCaseID GRAPHICS-WSERV-0014
1370 @SYMTestCaseDesc Check an animation is not drawn if the command buffer it uses is invalid
1372 @SYMTestPriority High
1374 @SYMTestStatus Implemented
1376 @SYMTestActions The test app creates CWsGraphicBitmapAnimation object then draws the animation using
1377 a valid and invalid command buffer
1379 @SYMTestExpectedResults The animation is drawn while using the valid command buffer but not drawn
1380 when the command buffer is invalid
1382 void CWsGraphicBase::DoTestDrawInvalidAnimationIDL()
1384 // test TWsGraphicControlStateTimed first, a valid command buffer
1385 iTestLog.Append(_L("DrawInvalidAnimationID"));
1386 iAnimData.Play(ETrue);
1388 // invalid command buffer
1389 _LIT8(KTestData2,"12345678");
1391 // load and replace the animation
1392 CIclLoader* iclLoader;
1393 iclLoader = new(ELeave) CIclLoader();
1394 iclLoader->ConstructL(KSymBallFile,false,false);
1396 while (iclLoader->GetId().Id() == KDummyGraphicId)
1400 iAnimId = iclLoader->GetId();
1403 iGc->DrawWsGraphic(iAnimId,iPosition1,iAnimData.Pckg());
1404 iGc->DrawWsGraphic(iAnimId,iPosition2,KTestData2);
1407 // run the animation
1408 RunAnimation(iclLoader->FrameCount());
1410 // compare the graphic in both positions
1411 TestForDifferentBitmaps();
1413 iAnimData.Stop(ETrue);
1415 iclLoader->Cancel();
1420 @SYMTestCaseID GRAPHICS-WSERV-0015
1424 @SYMTestCaseDesc Check the sharing of graphics with other clients.
1426 @SYMTestPriority High
1428 @SYMTestStatus Implemented
1430 @SYMTestActions The test app creates CWsGraphicBitmap object an then tests the sharing of the object with
1433 @SYMTestExpectedResults The CWsGraphicBitmap object is shared correctly
1435 void CWsGraphicBase::DoTestDrawSharedGraphicL()
1437 iTestLog.Append(_L("DrawSharedGraphic"));
1438 _LIT_SECURE_ID(KTestSecId,0x10003a4b);
1440 TUid uid1 = {0x12000021};
1441 TWsGraphicId twsGraphicId1(uid1);
1446 User::LeaveIfError(bitmap1.Load(MY_TEST_BITMAP,0));
1447 mask1.Create(bitmap1.SizeInPixels(),iScreen->DisplayMode());
1449 CWsGraphicBitmap* bTest = CWsGraphicBitmap::NewL(twsGraphicId1.Uid(), &bitmap1,&mask1);
1451 // Try to draw the graphic in an client. Should fail as graphic is not shared
1452 TRAPD(err, LaunchNewProcessL(KTestExe1, EFalse));
1453 Test(err == KErrNone);
1455 // Share the graphic globally and try to draw the graphic in an client. Should pass
1456 Test(bTest->ShareGlobally()==KErrNone);
1457 TRAP(err, LaunchNewProcessL(KTestExe2, ETrue));
1458 Test(err == KErrNone);
1460 // Unshare the graphic globally and try to draw the graphic in an client. Should fail
1461 Test(bTest->UnShareGlobally()==KErrNone);
1462 TRAP(err, LaunchNewProcessL(KTestExe3, EFalse));
1463 Test(err == KErrNone);
1465 // Share the graphic to a client and try to draw the graphic in the client. Should pass
1466 Test(bTest->Share(KTestSecId)==KErrNone);
1467 TRAP(err, LaunchNewProcessL(KTestExe4, ETrue));
1468 Test(err == KErrNone);
1470 // Unshare the graphic to a client and try to draw the graphic in the client. Should fail
1471 Test(bTest->UnShare(KTestSecId)==KErrNone);
1472 TRAP(err, LaunchNewProcessL(KTestExe5, EFalse));
1473 Test(err == KErrNone);
1479 void CWsGraphicBase::DoTestL(TInt aTestNo)
1483 case ETestCreateGraphicUID:
1484 DoTestCreateGraphicUidL();
1486 case ETestCreateGraphicID:
1487 DoTestCreateGraphicIdL();
1489 case ETestUpdateGraphic:
1490 DoTestUpdateGraphicL();
1492 case ETestDeleteGraphic:
1493 DoTestDeleteGraphicL();
1495 case ETestDrawInvalideBitmapID:
1496 DoTestDrawInvalidBitmapIDL();
1498 case ETestDrawGraphic:
1499 DoTestDrawGraphicL();
1501 case ETestDrawGraphicID:
1502 DoTestDrawGraphicIDL();
1504 case ETestDrawGraphicCompare:
1505 DoTestDrawGraphicCompareL();
1507 case ETestDrawGraphicSessionHandle:
1508 DoTestDrawGraphicSessionHandleL();
1511 // These tests require debug-only API to simulate OOM. Running
1512 // the tests in non-debug environments invalidates the tests.
1513 case ETestDrawAnimatedGraphicUID:
1514 DoTestDrawAnimatedGraphicUIDL();
1516 case ETestDrawAnimatedGraphicID:
1517 DoTestDrawAnimatedGraphicIDL();
1519 case ETestCreateMsgGraphicMsgBuf:
1520 DoTestCreateMsgGraphicMsgBufL();
1522 case ETestDrawReplaceGraphicID:
1523 DoTestDrawReplaceGraphicIDL();
1525 case ETestDrawInvalidAnimationID:
1526 DoTestDrawInvalidAnimationIDL();
1529 case ETestDrawSharedGraphic:
1530 DoTestDrawSharedGraphicL();
1533 RDebug::Print(iTestLog);
1534 iTestLog.Delete(0,256);
1537 // writes out to WSERV.log if error
1538 void CWsGraphicBase::Test(TInt aCondition)
1542 TBuf<KMaxLogLength> buf;
1543 _LIT(Fail,"AUTO Failed in WsGraphics Test : ");
1545 buf.Append(iTestLog);
1547 RProcess().Terminate(KErrGeneral);
1552 // CWsGraphicBase::RunAnimation
1553 // Redraw event listener is launched & the
1554 // animation is given a total of KAnimationRunTime (25 seconds) to run a single loop
1556 void CWsGraphicBase::RunAnimation(TInt aFrameCount)
1558 --aFrameCount; // account for the fact the initial frame is already displayed
1559 iRedrawListener->SetFrameCount(aFrameCount);
1560 iRedrawListener->RequestRedraw();
1561 iTimer->Wait(KAnimationRunTime);
1562 if (iAnimData.IsPlaying())
1564 iAnimData.Stop(ETrue);
1566 iRedrawListener->Cancel();
1567 iAnimData.Stop(EFalse);
1568 Test(iRedrawListener->GetFrameCount() == 0); // ensure the animation ran through until last frame
1573 TInt testCount = KErrNone;
1575 //Read the argument from the command line for current screen number
1576 TBuf<256> commandLine;
1577 User::CommandLine(commandLine);
1578 TLex lex(commandLine);
1581 TInt screenNumber=(TInt)lex.Get();
1583 CActiveScheduler* activeScheduler=new(ELeave) CActiveScheduler;
1584 CActiveScheduler::Install(activeScheduler);
1585 CleanupStack::PushL(activeScheduler);
1587 CWsGraphicBase testBase(screenNumber);
1588 testBase.ConstructL();
1590 // run through all the tests
1591 while (testCount < CWsGraphicBase::ETestMaxNumberOfTests)
1593 testBase.DoTestL(testCount);
1597 CleanupStack::PopAndDestroy(activeScheduler);
1600 GLDEF_C TInt E32Main()
1602 CTrapCleanup* cleanUpStack=CTrapCleanup::New();
1603 if(cleanUpStack==NULL)
1605 return KErrNoMemory;
1607 TRAPD(err, MainL());
1608 delete cleanUpStack;