First public contribution.
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>
24 // bitmap to load for comparison
25 #define MY_TEST_BITMAP _L("Z:\\WSTEST\\MYTEST.MBM")
27 const TUint32 ENullWsHandle=0xFFFFFFFF;
28 const TInt KErrTestExeFailure = -666;
30 // class to check if a shared CWsGraphic can be drawn correctly
31 class CWsGraphicShareBase : public CBase
34 CWsGraphicShareBase();
35 ~CWsGraphicShareBase();
37 void DoTestDrawGraphicCompareL(TPtrC aShare);
39 void Test(TInt aCondition);
46 RWindowGroup *iGroupWin;
47 CWsScreenDevice *iScreen;
51 CWsGraphicShareBase::CWsGraphicShareBase()
56 CWsGraphicShareBase::~CWsGraphicShareBase()
66 void CWsGraphicShareBase::ConstructL()
68 User::LeaveIfError(iWs.Connect());
69 iScreen=new(ELeave) CWsScreenDevice(iWs);
70 User::LeaveIfError(iScreen->Construct(iScreenNumber));
71 iGc=new(ELeave) CWindowGc(iScreen);
72 User::LeaveIfError(iGc->Construct());
73 iGroupWin=new(ELeave) RWindowGroup(iWs);
74 iGroupWin->Construct(1);
76 iWin=new(ELeave) RWindow(iWs);
77 iWin->Construct(*iGroupWin,ENullWsHandle);
78 iWin->SetRequiredDisplayMode(EColor256);
79 iWin->SetExtent(TPoint(0,0),iScreen->SizeInPixels());
86 // Checks that the shared graphic is drawn or not. This is done by creating a new graphic in this process
87 // which looks the same as the shared graphic. The new graphic is then drawn to the screen followed by an
88 // attempt to draw the shared graphic. The two graphics are then compared. In cases where the shared graphic
89 // should be drawn the two graphics should compare exactly. In cases where the shared graphic should not be
90 // drawn the comparison will fail.
92 void CWsGraphicShareBase::DoTestDrawGraphicCompareL(TPtrC aShare)
94 // UID of the shared graphic
95 TUid uid1 = {0x12000021};
96 TWsGraphicId twsGraphicId1(uid1);
98 _LIT8(KTestData,"HelloWorld");
103 TSize screenSize = iScreen->SizeInPixels();
104 User::LeaveIfError(bitmap1.Load(MY_TEST_BITMAP,0));
105 mask1.Create(bitmap1.SizeInPixels(),iScreen->DisplayMode());
107 CWsGraphicBitmap* bTest = CWsGraphicBitmap::NewL(&bitmap1,&mask1);
109 // divide the screen into two equal rectangles
110 TRect position1(0,0,screenSize.iWidth/2,screenSize.iHeight);
111 TRect position2(screenSize.iWidth/2,0,screenSize.iWidth,screenSize.iHeight);
113 // draw the new graphic and attempt to draw the shared graphic
114 iGc->Activate(*iWin);
117 iGc->Clear(position1);
118 iGc->Clear(position2);
120 iGc->DrawWsGraphic(bTest->Id(),position1,KTestData);
121 iGc->DrawWsGraphic(twsGraphicId1.Uid(),position2,KTestData);
128 // compare the graphic in both positions
129 if (aShare==_L("false"))
130 Test(!iScreen->RectCompare(position1,position2));
132 Test(iScreen->RectCompare(position1,position2));
137 // Failures are written to WSERV.log
138 void CWsGraphicShareBase::Test(TInt aCondition)
143 _LIT(Fail,"AUTO Failed in WsGraphics Test : DrawSharedGraphic");
147 RProcess().Terminate(KErrTestExeFailure); // terminate this process immediately. Expect TWsGraph test step (TAutoServer.exe) to capture this
153 // read the argument from the command line of whether the graphic should be shared or not
154 TBuf<256> commandLine;
155 User::CommandLine(commandLine);
156 TLex lex(commandLine);
157 TPtrC toShare = lex.NextToken();
159 CActiveScheduler* activeScheduler=new(ELeave) CActiveScheduler;
160 CActiveScheduler::Install(activeScheduler);
161 CleanupStack::PushL(activeScheduler);
163 CWsGraphicShareBase testBase;
164 testBase.ConstructL();
166 testBase.DoTestDrawGraphicCompareL(toShare);
168 CleanupStack::PopAndDestroy(activeScheduler);
171 GLDEF_C TInt E32Main()
173 CTrapCleanup* cleanUpStack=CTrapCleanup::New();
174 if(cleanUpStack==NULL)