sl@0
|
1 |
// Copyright (c) 1995-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
// All rights reserved.
|
sl@0
|
3 |
// This component and the accompanying materials are made available
|
sl@0
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
sl@0
|
5 |
// which accompanies this distribution, and is available
|
sl@0
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
//
|
sl@0
|
8 |
// Initial Contributors:
|
sl@0
|
9 |
// Nokia Corporation - initial contribution.
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// Contributors:
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// Description:
|
sl@0
|
14 |
//
|
sl@0
|
15 |
|
sl@0
|
16 |
/**
|
sl@0
|
17 |
@file
|
sl@0
|
18 |
@test
|
sl@0
|
19 |
@internalComponent - Internal Symbian test code
|
sl@0
|
20 |
*/
|
sl@0
|
21 |
|
sl@0
|
22 |
#include <w32stdgraphic.h>
|
sl@0
|
23 |
#include <imageconversion.h>
|
sl@0
|
24 |
#include "testbase.h"
|
sl@0
|
25 |
#include "testbase.h"
|
sl@0
|
26 |
|
sl@0
|
27 |
// Bitmap to load for tests
|
sl@0
|
28 |
#define MY_TEST_BITMAP _L("Z:\\WSTEST\\MYTEST.MBM")
|
sl@0
|
29 |
|
sl@0
|
30 |
// Animation to load for tests
|
sl@0
|
31 |
_LIT(KSymBallFile, "Z:\\WSTEST\\symball.gif");
|
sl@0
|
32 |
|
sl@0
|
33 |
// Executables for different sharing of graphic tests
|
sl@0
|
34 |
_LIT(KTestExe1, "TWSGRAPHICSHARETEST.exe");
|
sl@0
|
35 |
_LIT(KTestExe2, "TWSGRAPHICSHAREGLOBALTEST.exe");
|
sl@0
|
36 |
_LIT(KTestExe3, "TWSGRAPHICUNSHAREGLOBALTEST.exe");
|
sl@0
|
37 |
_LIT(KTestExe4, "TWSGRAPHICSHARESECURETEST.exe");
|
sl@0
|
38 |
_LIT(KTestExe5, "TWSGRAPHICUNSHARESECURETEST.exe");
|
sl@0
|
39 |
|
sl@0
|
40 |
// Graphic is shared or not in executeable
|
sl@0
|
41 |
_LIT(KShare, " true");
|
sl@0
|
42 |
_LIT(KNoShare, " false");
|
sl@0
|
43 |
|
sl@0
|
44 |
TUid KUidTestAnimation = {0x87654321};
|
sl@0
|
45 |
const TInt KDummyGraphicId = 99;
|
sl@0
|
46 |
const TInt KMaxLogLength = 256;
|
sl@0
|
47 |
const TInt KAnimationRunTime = 5000000; // 5 seconds max time to run a single animation loop
|
sl@0
|
48 |
|
sl@0
|
49 |
// Animation loader
|
sl@0
|
50 |
class CIclLoader: public CActive
|
sl@0
|
51 |
{
|
sl@0
|
52 |
public:
|
sl@0
|
53 |
CIclLoader();
|
sl@0
|
54 |
~CIclLoader();
|
sl@0
|
55 |
void ConstructL(const TDesC& aFileName, TBool aUseUID, TBool aReplace);
|
sl@0
|
56 |
const TWsGraphicId GetId();
|
sl@0
|
57 |
inline TInt FrameCount() const {return iTotalFrames;};
|
sl@0
|
58 |
inline TBool Ok() const {return !iFailed;};
|
sl@0
|
59 |
protected:
|
sl@0
|
60 |
void RunL();
|
sl@0
|
61 |
TInt RunError(TInt aError);
|
sl@0
|
62 |
void DoCancel();
|
sl@0
|
63 |
private:
|
sl@0
|
64 |
void TestL(TInt aCondition);
|
sl@0
|
65 |
CImageDecoder* iDecoder;
|
sl@0
|
66 |
CWsGraphicBitmapAnimation* iTestAnimation;
|
sl@0
|
67 |
TLogMessageText iTestLog;
|
sl@0
|
68 |
TBool iUseUID;
|
sl@0
|
69 |
TBool iReplace;
|
sl@0
|
70 |
RPointerArray<CWsGraphicBitmapAnimation::CFrame> iFrames;
|
sl@0
|
71 |
TInt iTotalFrames;
|
sl@0
|
72 |
void NextL();
|
sl@0
|
73 |
RFs iFs;
|
sl@0
|
74 |
TBool iFailed;
|
sl@0
|
75 |
};
|
sl@0
|
76 |
|
sl@0
|
77 |
CIclLoader::CIclLoader():
|
sl@0
|
78 |
CActive(CActive::EPriorityLow)
|
sl@0
|
79 |
{
|
sl@0
|
80 |
CActiveScheduler::Add(this);
|
sl@0
|
81 |
}
|
sl@0
|
82 |
|
sl@0
|
83 |
CIclLoader::~CIclLoader()
|
sl@0
|
84 |
{
|
sl@0
|
85 |
if (iTestAnimation)
|
sl@0
|
86 |
{
|
sl@0
|
87 |
delete iTestAnimation;
|
sl@0
|
88 |
iTestAnimation = NULL;
|
sl@0
|
89 |
}
|
sl@0
|
90 |
if (iDecoder)
|
sl@0
|
91 |
{
|
sl@0
|
92 |
delete iDecoder;
|
sl@0
|
93 |
iDecoder = NULL;
|
sl@0
|
94 |
}
|
sl@0
|
95 |
iFrames.ResetAndDestroy();
|
sl@0
|
96 |
iFs.Close();
|
sl@0
|
97 |
}
|
sl@0
|
98 |
|
sl@0
|
99 |
const TWsGraphicId CIclLoader::GetId()
|
sl@0
|
100 |
{
|
sl@0
|
101 |
if (iTestAnimation)
|
sl@0
|
102 |
{
|
sl@0
|
103 |
return iTestAnimation->Id();
|
sl@0
|
104 |
}
|
sl@0
|
105 |
else
|
sl@0
|
106 |
{
|
sl@0
|
107 |
TWsGraphicId id(KDummyGraphicId);
|
sl@0
|
108 |
return id;
|
sl@0
|
109 |
}
|
sl@0
|
110 |
}
|
sl@0
|
111 |
|
sl@0
|
112 |
void CIclLoader::TestL(TInt aCondition)
|
sl@0
|
113 |
{
|
sl@0
|
114 |
if(!aCondition)
|
sl@0
|
115 |
{
|
sl@0
|
116 |
RWsSession rWs;
|
sl@0
|
117 |
User::LeaveIfError(rWs.Connect());
|
sl@0
|
118 |
TBuf<KMaxLogLength> buf;
|
sl@0
|
119 |
_LIT(Fail,"AUTO Failed in WsGraphics Test : CIclLoader");
|
sl@0
|
120 |
buf.Append(Fail);
|
sl@0
|
121 |
buf.Append(iTestLog);
|
sl@0
|
122 |
rWs.LogMessage(buf);
|
sl@0
|
123 |
rWs.Flush();
|
sl@0
|
124 |
rWs.Close();
|
sl@0
|
125 |
User::Leave(KErrGeneral);
|
sl@0
|
126 |
}
|
sl@0
|
127 |
}
|
sl@0
|
128 |
|
sl@0
|
129 |
void CIclLoader::ConstructL(const TDesC& aFileName, TBool aUseUID,TBool aReplace)
|
sl@0
|
130 |
{
|
sl@0
|
131 |
iUseUID = aUseUID;
|
sl@0
|
132 |
iReplace = aReplace;
|
sl@0
|
133 |
|
sl@0
|
134 |
User::LeaveIfError(iFs.Connect());
|
sl@0
|
135 |
|
sl@0
|
136 |
iDecoder = CImageDecoder::FileNewL(iFs,aFileName);
|
sl@0
|
137 |
if(!iDecoder->IsImageHeaderProcessingComplete())
|
sl@0
|
138 |
{
|
sl@0
|
139 |
User::Leave(KErrGeneral);
|
sl@0
|
140 |
}
|
sl@0
|
141 |
NextL();
|
sl@0
|
142 |
}
|
sl@0
|
143 |
|
sl@0
|
144 |
void CIclLoader::NextL()
|
sl@0
|
145 |
{
|
sl@0
|
146 |
// Load a frame from the animation
|
sl@0
|
147 |
if (iDecoder && (iDecoder->FrameCount() > iFrames.Count()))
|
sl@0
|
148 |
{
|
sl@0
|
149 |
const TFrameInfo& info = iDecoder->FrameInfo(iFrames.Count());
|
sl@0
|
150 |
CWsGraphicBitmapAnimation::CFrame* frame = CWsGraphicBitmapAnimation::CFrame::NewL();
|
sl@0
|
151 |
CleanupStack::PushL(frame);
|
sl@0
|
152 |
iFrames.AppendL(frame);
|
sl@0
|
153 |
CleanupStack::Pop(frame);
|
sl@0
|
154 |
frame->SetFrameInfo(info);
|
sl@0
|
155 |
TFrameInfo copiedInfo = frame->FrameInfo();
|
sl@0
|
156 |
TestL(info.iFlags==copiedInfo.iFlags);
|
sl@0
|
157 |
|
sl@0
|
158 |
TSize bmpSize(info.iFrameCoordsInPixels.Size());
|
sl@0
|
159 |
CFbsBitmap* bitmap = new(ELeave) CFbsBitmap;
|
sl@0
|
160 |
frame->SetBitmap(bitmap); //takes ownership
|
sl@0
|
161 |
User::LeaveIfError(bitmap->Create(bmpSize,info.iFrameDisplayMode));
|
sl@0
|
162 |
|
sl@0
|
163 |
TDisplayMode maskDispMode;
|
sl@0
|
164 |
CFbsBitmap* mask = new(ELeave) CFbsBitmap;
|
sl@0
|
165 |
frame->SetMask(mask); //takes ownership
|
sl@0
|
166 |
if((TFrameInfo::EAlphaChannel|TFrameInfo::ETransparencyPossible) & info.iFlags)
|
sl@0
|
167 |
{
|
sl@0
|
168 |
maskDispMode = EGray256;
|
sl@0
|
169 |
}
|
sl@0
|
170 |
else
|
sl@0
|
171 |
{
|
sl@0
|
172 |
maskDispMode = EGray2;
|
sl@0
|
173 |
}
|
sl@0
|
174 |
|
sl@0
|
175 |
User::LeaveIfError(mask->Create(info.iFrameCoordsInPixels.Size(),maskDispMode));
|
sl@0
|
176 |
iDecoder->Convert(&iStatus,*bitmap,*mask,iFrames.Count()-1);
|
sl@0
|
177 |
|
sl@0
|
178 |
SetActive();
|
sl@0
|
179 |
}
|
sl@0
|
180 |
|
sl@0
|
181 |
// if a frame loaded
|
sl@0
|
182 |
else if(iFrames.Count())
|
sl@0
|
183 |
{
|
sl@0
|
184 |
_LIT_SECURE_ID(KTestSecId,0x12345678);
|
sl@0
|
185 |
|
sl@0
|
186 |
// The extra code around the NewL is checking that no heap failures occur when
|
sl@0
|
187 |
// creating the CWsGraphicBitmapAnimation
|
sl@0
|
188 |
TInt failRate = 1;
|
sl@0
|
189 |
const TInt KMaxIteration = 1000;
|
sl@0
|
190 |
for (;failRate < KMaxIteration; failRate++)
|
sl@0
|
191 |
{
|
sl@0
|
192 |
__UHEAP_RESET;
|
sl@0
|
193 |
__UHEAP_SETFAIL(RHeap::EDeterministic,failRate);
|
sl@0
|
194 |
__UHEAP_MARK;
|
sl@0
|
195 |
|
sl@0
|
196 |
TInt err = KErrGeneral;
|
sl@0
|
197 |
if (iUseUID)
|
sl@0
|
198 |
{// creating animation using UID
|
sl@0
|
199 |
TRAP(err, iTestAnimation = CWsGraphicBitmapAnimation::NewL(KUidTestAnimation,iFrames.Array()););
|
sl@0
|
200 |
}
|
sl@0
|
201 |
else
|
sl@0
|
202 |
{// creating using transient ID allocated by wserv
|
sl@0
|
203 |
TRAP(err, iTestAnimation = CWsGraphicBitmapAnimation::NewL(iFrames.Array()););
|
sl@0
|
204 |
}
|
sl@0
|
205 |
|
sl@0
|
206 |
TestL((err==KErrNone || err==KErrNoMemory));
|
sl@0
|
207 |
|
sl@0
|
208 |
if (err != KErrNone)
|
sl@0
|
209 |
{
|
sl@0
|
210 |
__UHEAP_MARKEND;
|
sl@0
|
211 |
TestL(iTestAnimation == NULL);
|
sl@0
|
212 |
}
|
sl@0
|
213 |
else
|
sl@0
|
214 |
{
|
sl@0
|
215 |
break;
|
sl@0
|
216 |
}
|
sl@0
|
217 |
}
|
sl@0
|
218 |
__UHEAP_RESET;
|
sl@0
|
219 |
TestL(iTestAnimation != NULL);
|
sl@0
|
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)
|
sl@0
|
221 |
RDebug::Printf("TWSGraphicTest.CPP: Heapfailure loop completed after %d allocs.", failRate-1);
|
sl@0
|
222 |
|
sl@0
|
223 |
// if testing that a created animation can be replaced
|
sl@0
|
224 |
if (iReplace)
|
sl@0
|
225 |
{
|
sl@0
|
226 |
// replace the animation just created with another
|
sl@0
|
227 |
TWsGraphicId testId = iTestAnimation->Id();
|
sl@0
|
228 |
TInt testInt = testId.Id();
|
sl@0
|
229 |
|
sl@0
|
230 |
CWsGraphicBitmapAnimation* testReplacement = CWsGraphicBitmapAnimation::NewL(testId,iFrames.Array());
|
sl@0
|
231 |
|
sl@0
|
232 |
delete iTestAnimation;
|
sl@0
|
233 |
|
sl@0
|
234 |
iTestAnimation = testReplacement;
|
sl@0
|
235 |
|
sl@0
|
236 |
TestL(iTestAnimation->Id().Id()==testInt);
|
sl@0
|
237 |
}
|
sl@0
|
238 |
|
sl@0
|
239 |
delete iDecoder;
|
sl@0
|
240 |
iDecoder = NULL;
|
sl@0
|
241 |
iTotalFrames = iFrames.Count();
|
sl@0
|
242 |
iFrames.ResetAndDestroy();
|
sl@0
|
243 |
|
sl@0
|
244 |
// test that the animation methods can be used without error
|
sl@0
|
245 |
TestL(iTestAnimation->ShareGlobally()==KErrNone);
|
sl@0
|
246 |
TestL(iTestAnimation->UnShareGlobally()==KErrNone);
|
sl@0
|
247 |
TestL(iTestAnimation->Share(KTestSecId)==KErrNone);
|
sl@0
|
248 |
TestL(iTestAnimation->UnShare(KTestSecId)==KErrNone);
|
sl@0
|
249 |
TestL(iTestAnimation->UnShare(KTestSecId)==KErrNotFound);
|
sl@0
|
250 |
}
|
sl@0
|
251 |
}
|
sl@0
|
252 |
|
sl@0
|
253 |
void CIclLoader::RunL()
|
sl@0
|
254 |
{
|
sl@0
|
255 |
if (iStatus == KErrNone)
|
sl@0
|
256 |
{
|
sl@0
|
257 |
NextL();
|
sl@0
|
258 |
}
|
sl@0
|
259 |
else
|
sl@0
|
260 |
{
|
sl@0
|
261 |
TestL(EFalse); // kill the test
|
sl@0
|
262 |
}
|
sl@0
|
263 |
}
|
sl@0
|
264 |
|
sl@0
|
265 |
TInt CIclLoader::RunError(TInt aError)
|
sl@0
|
266 |
{
|
sl@0
|
267 |
RDebug::Printf("CIclLoader::RunError, aError %d", aError);
|
sl@0
|
268 |
iFailed = ETrue;
|
sl@0
|
269 |
return KErrNone;
|
sl@0
|
270 |
}
|
sl@0
|
271 |
|
sl@0
|
272 |
void CIclLoader::DoCancel()
|
sl@0
|
273 |
{
|
sl@0
|
274 |
if(iDecoder)
|
sl@0
|
275 |
{
|
sl@0
|
276 |
iDecoder->Cancel();
|
sl@0
|
277 |
}
|
sl@0
|
278 |
}
|
sl@0
|
279 |
|
sl@0
|
280 |
// Class for testing CWsGraphics
|
sl@0
|
281 |
class CActiveWait;
|
sl@0
|
282 |
class CRedrawAO;
|
sl@0
|
283 |
class CWsGraphicBase : public CBase
|
sl@0
|
284 |
{
|
sl@0
|
285 |
public:
|
sl@0
|
286 |
CWsGraphicBase();
|
sl@0
|
287 |
CWsGraphicBase(TInt aScreenNumber);
|
sl@0
|
288 |
~CWsGraphicBase();
|
sl@0
|
289 |
void ConstructL();
|
sl@0
|
290 |
void DoTestL(TInt aTestNo);
|
sl@0
|
291 |
void RedrawMe(TRect aRedrawRect, TInt aFrame);
|
sl@0
|
292 |
|
sl@0
|
293 |
enum TTestCases
|
sl@0
|
294 |
{
|
sl@0
|
295 |
ETestCreateGraphicUID,
|
sl@0
|
296 |
ETestCreateGraphicID,
|
sl@0
|
297 |
ETestUpdateGraphic,
|
sl@0
|
298 |
ETestDeleteGraphic,
|
sl@0
|
299 |
ETestDrawInvalideBitmapID,
|
sl@0
|
300 |
ETestDrawGraphic,
|
sl@0
|
301 |
ETestDrawGraphicID,
|
sl@0
|
302 |
ETestDrawGraphicCompare,
|
sl@0
|
303 |
ETestDrawGraphicSessionHandle,
|
sl@0
|
304 |
ETestDrawAnimatedGraphicUID,
|
sl@0
|
305 |
ETestDrawAnimatedGraphicID,
|
sl@0
|
306 |
ETestCreateMsgGraphicMsgBuf,
|
sl@0
|
307 |
ETestDrawReplaceGraphicID,
|
sl@0
|
308 |
ETestDrawInvalidAnimationID,
|
sl@0
|
309 |
ETestDrawSharedGraphic,
|
sl@0
|
310 |
// additional cases to be added here, before ETestMaxNumberOfTests
|
sl@0
|
311 |
ETestMaxNumberOfTests
|
sl@0
|
312 |
};
|
sl@0
|
313 |
|
sl@0
|
314 |
private :
|
sl@0
|
315 |
void PrepGc();
|
sl@0
|
316 |
void RetireGc();
|
sl@0
|
317 |
void RunAnimation(TInt aFrameCount);
|
sl@0
|
318 |
void LaunchNewProcessL(const TDesC& aExecutable, TBool aShare);
|
sl@0
|
319 |
inline void TestForIdenticalBitmaps(){Test(iScreen->RectCompare(iPosition1,iPosition2));};
|
sl@0
|
320 |
inline void TestForDifferentBitmaps(){Test(!iScreen->RectCompare(iPosition1,iPosition2));};
|
sl@0
|
321 |
void Test(TInt aCondition);
|
sl@0
|
322 |
void DoTestCreateGraphicUidL();
|
sl@0
|
323 |
void DoTestCreateGraphicIdL();
|
sl@0
|
324 |
void DoTestUpdateGraphicL();
|
sl@0
|
325 |
void DoTestDrawSharedGraphicL();
|
sl@0
|
326 |
void DoTestDeleteGraphicL();
|
sl@0
|
327 |
void DoTestDrawGraphicL();
|
sl@0
|
328 |
void DoTestDrawGraphicIDL();
|
sl@0
|
329 |
void DoTestDrawGraphicCompareL();
|
sl@0
|
330 |
void DoTestDrawAnimatedGraphicUIDL();
|
sl@0
|
331 |
void DoTestDrawAnimatedGraphicIDL();
|
sl@0
|
332 |
void DoTestDrawGraphicSessionHandleL();
|
sl@0
|
333 |
void DoTestCreateMsgGraphicMsgBufL();
|
sl@0
|
334 |
void DoTestDrawReplaceGraphicIDL();
|
sl@0
|
335 |
void DoTestDrawInvalidBitmapIDL();
|
sl@0
|
336 |
void DoTestDrawInvalidAnimationIDL();
|
sl@0
|
337 |
private :
|
sl@0
|
338 |
TInt iScreenNumber;
|
sl@0
|
339 |
CWindowGc *iGc;
|
sl@0
|
340 |
RWsSession iWs;
|
sl@0
|
341 |
RWindowGroup *iGroupWin;
|
sl@0
|
342 |
CWsScreenDevice *iScreen;
|
sl@0
|
343 |
RWindow *iWin;
|
sl@0
|
344 |
TLogMessageText iTestLog;
|
sl@0
|
345 |
TRect iPosition1;
|
sl@0
|
346 |
TRect iPosition2;
|
sl@0
|
347 |
CActiveWait* iTimer;
|
sl@0
|
348 |
CRedrawAO* iRedrawListener;
|
sl@0
|
349 |
TWsGraphicId iAnimId;
|
sl@0
|
350 |
TWsGraphicAnimation iAnimData;
|
sl@0
|
351 |
};
|
sl@0
|
352 |
|
sl@0
|
353 |
//
|
sl@0
|
354 |
// class CRedrawAO
|
sl@0
|
355 |
// request & listen for redraw events from wserv
|
sl@0
|
356 |
// if a redraw event is received, notify the observing class
|
sl@0
|
357 |
//
|
sl@0
|
358 |
class CRedrawAO : public CActive
|
sl@0
|
359 |
{
|
sl@0
|
360 |
public:
|
sl@0
|
361 |
static CRedrawAO* NewL(RWsSession* aWs);
|
sl@0
|
362 |
~CRedrawAO();
|
sl@0
|
363 |
// from CActive:
|
sl@0
|
364 |
void RunL();
|
sl@0
|
365 |
void DoCancel();
|
sl@0
|
366 |
TInt RunError(TInt aError);
|
sl@0
|
367 |
void RequestRedraw();
|
sl@0
|
368 |
inline void SetFrameCount(TInt aCount){iFrameCount = aCount;};
|
sl@0
|
369 |
inline TInt GetFrameCount() const {return iFrameCount;};
|
sl@0
|
370 |
private:
|
sl@0
|
371 |
CRedrawAO(RWsSession* aWs);
|
sl@0
|
372 |
void ConstructL();
|
sl@0
|
373 |
private:
|
sl@0
|
374 |
RWsSession* iWs;
|
sl@0
|
375 |
TInt iFrameCount;
|
sl@0
|
376 |
};
|
sl@0
|
377 |
|
sl@0
|
378 |
CRedrawAO* CRedrawAO::NewL(RWsSession* aWs)
|
sl@0
|
379 |
{
|
sl@0
|
380 |
CRedrawAO* self = new (ELeave) CRedrawAO(aWs);
|
sl@0
|
381 |
CleanupStack::PushL(self);
|
sl@0
|
382 |
self->ConstructL();
|
sl@0
|
383 |
CleanupStack::Pop(self);
|
sl@0
|
384 |
return self;
|
sl@0
|
385 |
}
|
sl@0
|
386 |
|
sl@0
|
387 |
CRedrawAO::CRedrawAO(RWsSession* aWs):
|
sl@0
|
388 |
CActive(CActive::EPriorityHigh), iWs(aWs)
|
sl@0
|
389 |
{
|
sl@0
|
390 |
CActiveScheduler::Add(this);
|
sl@0
|
391 |
}
|
sl@0
|
392 |
|
sl@0
|
393 |
CRedrawAO::~CRedrawAO()
|
sl@0
|
394 |
{
|
sl@0
|
395 |
// cleanup
|
sl@0
|
396 |
Cancel();
|
sl@0
|
397 |
}
|
sl@0
|
398 |
|
sl@0
|
399 |
void CRedrawAO::ConstructL()
|
sl@0
|
400 |
{
|
sl@0
|
401 |
// nothing to construct
|
sl@0
|
402 |
}
|
sl@0
|
403 |
|
sl@0
|
404 |
void CRedrawAO::RunL()
|
sl@0
|
405 |
{
|
sl@0
|
406 |
// leave if status is not ok. RunError will process this result
|
sl@0
|
407 |
User::LeaveIfError(iStatus.Int());
|
sl@0
|
408 |
TWsRedrawEvent redraw;
|
sl@0
|
409 |
iWs->GetRedraw(redraw);
|
sl@0
|
410 |
TUint redrawHandle = redraw.Handle();
|
sl@0
|
411 |
if (redrawHandle == ENullWsHandle)
|
sl@0
|
412 |
{
|
sl@0
|
413 |
User::Leave(KErrBadHandle); // sanity check the client handle isn't a dummy
|
sl@0
|
414 |
}
|
sl@0
|
415 |
else if (redrawHandle)
|
sl@0
|
416 |
{
|
sl@0
|
417 |
--iFrameCount;
|
sl@0
|
418 |
(reinterpret_cast<CWsGraphicBase *>(redrawHandle))->RedrawMe(redraw.Rect(), iFrameCount); // handle the redraw signal
|
sl@0
|
419 |
}
|
sl@0
|
420 |
|
sl@0
|
421 |
if (iFrameCount > 0)
|
sl@0
|
422 |
{
|
sl@0
|
423 |
RequestRedraw();
|
sl@0
|
424 |
}
|
sl@0
|
425 |
}
|
sl@0
|
426 |
|
sl@0
|
427 |
TInt CRedrawAO::RunError(TInt aError)
|
sl@0
|
428 |
{
|
sl@0
|
429 |
if (aError != KErrBadHandle)
|
sl@0
|
430 |
{
|
sl@0
|
431 |
RequestRedraw();
|
sl@0
|
432 |
}
|
sl@0
|
433 |
return KErrNone;
|
sl@0
|
434 |
}
|
sl@0
|
435 |
|
sl@0
|
436 |
void CRedrawAO::DoCancel()
|
sl@0
|
437 |
{
|
sl@0
|
438 |
// kill all outstanding asynch. wserv requests
|
sl@0
|
439 |
iWs->RedrawReadyCancel();
|
sl@0
|
440 |
iFrameCount = KErrNone;
|
sl@0
|
441 |
}
|
sl@0
|
442 |
|
sl@0
|
443 |
void CRedrawAO::RequestRedraw()
|
sl@0
|
444 |
{
|
sl@0
|
445 |
if (!IsActive())
|
sl@0
|
446 |
{
|
sl@0
|
447 |
iWs->RedrawReady(&iStatus);
|
sl@0
|
448 |
SetActive();
|
sl@0
|
449 |
}
|
sl@0
|
450 |
}
|
sl@0
|
451 |
|
sl@0
|
452 |
//
|
sl@0
|
453 |
|
sl@0
|
454 |
class CActiveWait : public CActive
|
sl@0
|
455 |
{
|
sl@0
|
456 |
public:
|
sl@0
|
457 |
static CActiveWait* NewL();
|
sl@0
|
458 |
~CActiveWait();
|
sl@0
|
459 |
void Wait(TInt aDelay);
|
sl@0
|
460 |
// From CActive:
|
sl@0
|
461 |
void RunL();
|
sl@0
|
462 |
void DoCancel();
|
sl@0
|
463 |
TInt RunError(TInt aError);
|
sl@0
|
464 |
protected:
|
sl@0
|
465 |
CActiveWait();
|
sl@0
|
466 |
void ConstructL();
|
sl@0
|
467 |
protected:
|
sl@0
|
468 |
RTimer iTimer;
|
sl@0
|
469 |
TTime iFromTime;
|
sl@0
|
470 |
};
|
sl@0
|
471 |
|
sl@0
|
472 |
CActiveWait* CActiveWait::NewL()
|
sl@0
|
473 |
{
|
sl@0
|
474 |
CActiveWait* self = new (ELeave) CActiveWait;
|
sl@0
|
475 |
CleanupStack::PushL(self);
|
sl@0
|
476 |
self->ConstructL();
|
sl@0
|
477 |
CleanupStack::Pop(self);
|
sl@0
|
478 |
return self;
|
sl@0
|
479 |
}
|
sl@0
|
480 |
|
sl@0
|
481 |
void CActiveWait::ConstructL()
|
sl@0
|
482 |
{
|
sl@0
|
483 |
User::LeaveIfError(iTimer.CreateLocal());
|
sl@0
|
484 |
CActiveScheduler::Add(this);
|
sl@0
|
485 |
}
|
sl@0
|
486 |
|
sl@0
|
487 |
CActiveWait::CActiveWait() : CActive(CActive::EPriorityStandard)
|
sl@0
|
488 |
{
|
sl@0
|
489 |
iFromTime.HomeTime();
|
sl@0
|
490 |
}
|
sl@0
|
491 |
|
sl@0
|
492 |
CActiveWait::~CActiveWait()
|
sl@0
|
493 |
{
|
sl@0
|
494 |
Cancel();
|
sl@0
|
495 |
iTimer.Close();
|
sl@0
|
496 |
}
|
sl@0
|
497 |
|
sl@0
|
498 |
void CActiveWait::DoCancel()
|
sl@0
|
499 |
{
|
sl@0
|
500 |
iTimer.Cancel();
|
sl@0
|
501 |
CActiveScheduler::Stop();
|
sl@0
|
502 |
}
|
sl@0
|
503 |
|
sl@0
|
504 |
void CActiveWait::RunL()
|
sl@0
|
505 |
{
|
sl@0
|
506 |
CActiveScheduler::Stop();
|
sl@0
|
507 |
}
|
sl@0
|
508 |
|
sl@0
|
509 |
TInt CActiveWait::RunError(TInt aError)
|
sl@0
|
510 |
{
|
sl@0
|
511 |
return aError; // exists so a break point can be placed on it.
|
sl@0
|
512 |
}
|
sl@0
|
513 |
|
sl@0
|
514 |
void CActiveWait::Wait(TInt aDelay)
|
sl@0
|
515 |
|
sl@0
|
516 |
|
sl@0
|
517 |
{
|
sl@0
|
518 |
iTimer.After(iStatus, aDelay);
|
sl@0
|
519 |
SetActive();
|
sl@0
|
520 |
CActiveScheduler::Start();
|
sl@0
|
521 |
}
|
sl@0
|
522 |
|
sl@0
|
523 |
//
|
sl@0
|
524 |
|
sl@0
|
525 |
CWsGraphicBase::CWsGraphicBase(TInt aScreenNumber) : iScreenNumber(aScreenNumber), iAnimId(KDummyGraphicId)
|
sl@0
|
526 |
{
|
sl@0
|
527 |
}
|
sl@0
|
528 |
|
sl@0
|
529 |
CWsGraphicBase::~CWsGraphicBase()
|
sl@0
|
530 |
{
|
sl@0
|
531 |
iWin->Close();
|
sl@0
|
532 |
delete iWin;
|
sl@0
|
533 |
delete iScreen;
|
sl@0
|
534 |
delete iGc;
|
sl@0
|
535 |
delete iGroupWin;
|
sl@0
|
536 |
iWs.Close();
|
sl@0
|
537 |
if (iTimer)
|
sl@0
|
538 |
{
|
sl@0
|
539 |
delete iTimer;
|
sl@0
|
540 |
iTimer = NULL;
|
sl@0
|
541 |
}
|
sl@0
|
542 |
if (iRedrawListener)
|
sl@0
|
543 |
{
|
sl@0
|
544 |
delete iRedrawListener;
|
sl@0
|
545 |
iRedrawListener = NULL;
|
sl@0
|
546 |
}
|
sl@0
|
547 |
}
|
sl@0
|
548 |
|
sl@0
|
549 |
void CWsGraphicBase::ConstructL()
|
sl@0
|
550 |
{
|
sl@0
|
551 |
User::LeaveIfError(iWs.Connect());
|
sl@0
|
552 |
iScreen=new(ELeave) CWsScreenDevice(iWs);
|
sl@0
|
553 |
User::LeaveIfError(iScreen->Construct(iScreenNumber));
|
sl@0
|
554 |
|
sl@0
|
555 |
TSize screenSize = iScreen->SizeInPixels();
|
sl@0
|
556 |
iPosition1.SetRect(0,0,screenSize.iWidth/2,screenSize.iHeight);
|
sl@0
|
557 |
iPosition2.SetRect(screenSize.iWidth/2,0,screenSize.iWidth,screenSize.iHeight);
|
sl@0
|
558 |
|
sl@0
|
559 |
iTimer = CActiveWait::NewL();
|
sl@0
|
560 |
iRedrawListener = CRedrawAO::NewL(&iWs);
|
sl@0
|
561 |
|
sl@0
|
562 |
iGc=new(ELeave) CWindowGc(iScreen);
|
sl@0
|
563 |
User::LeaveIfError(iGc->Construct());
|
sl@0
|
564 |
iGroupWin=new(ELeave) RWindowGroup(iWs);
|
sl@0
|
565 |
iGroupWin->Construct(1);
|
sl@0
|
566 |
|
sl@0
|
567 |
iWin=new(ELeave) RWindow(iWs);
|
sl@0
|
568 |
iWin->Construct(*iGroupWin, (TUint32)this);
|
sl@0
|
569 |
iWin->EnableRedrawStore(EFalse); // disable the redraw store for these tests
|
sl@0
|
570 |
iWin->SetRequiredDisplayMode(EColor256);
|
sl@0
|
571 |
iWin->SetExtent(TPoint(0,0),iScreen->SizeInPixels());
|
sl@0
|
572 |
iWin->Activate();
|
sl@0
|
573 |
iWin->BeginRedraw();
|
sl@0
|
574 |
iWin->EndRedraw();
|
sl@0
|
575 |
iWs.Flush();
|
sl@0
|
576 |
}
|
sl@0
|
577 |
|
sl@0
|
578 |
// To test whether sharing of graphics works a new process has to be launched.
|
sl@0
|
579 |
// The argument is set whether the graphic should be shared or not.
|
sl@0
|
580 |
void CWsGraphicBase::LaunchNewProcessL(const TDesC& aExecutable, TBool aShare)
|
sl@0
|
581 |
{
|
sl@0
|
582 |
TBuf<128> args;
|
sl@0
|
583 |
RProcess pr;
|
sl@0
|
584 |
TRequestStatus status;
|
sl@0
|
585 |
|
sl@0
|
586 |
if (aShare)
|
sl@0
|
587 |
{
|
sl@0
|
588 |
args.Append(KShare);
|
sl@0
|
589 |
}
|
sl@0
|
590 |
else
|
sl@0
|
591 |
{
|
sl@0
|
592 |
args.Append(KNoShare);
|
sl@0
|
593 |
}
|
sl@0
|
594 |
|
sl@0
|
595 |
User::LeaveIfError(pr.Create(aExecutable,args));
|
sl@0
|
596 |
pr.Logon(status);
|
sl@0
|
597 |
pr.Resume();
|
sl@0
|
598 |
User::WaitForRequest(status);
|
sl@0
|
599 |
pr.Close();
|
sl@0
|
600 |
|
sl@0
|
601 |
if (status != KErrNone)
|
sl@0
|
602 |
{
|
sl@0
|
603 |
User::Leave(status.Int());
|
sl@0
|
604 |
}
|
sl@0
|
605 |
}
|
sl@0
|
606 |
|
sl@0
|
607 |
//
|
sl@0
|
608 |
// CWsGraphicBase::PrepGc
|
sl@0
|
609 |
// activate a gc & clear the two rects
|
sl@0
|
610 |
//
|
sl@0
|
611 |
void CWsGraphicBase::PrepGc()
|
sl@0
|
612 |
{
|
sl@0
|
613 |
iGc->Activate(*iWin);
|
sl@0
|
614 |
iWin->Invalidate();
|
sl@0
|
615 |
iWin->BeginRedraw();
|
sl@0
|
616 |
iGc->Clear(iPosition1);
|
sl@0
|
617 |
iGc->Clear(iPosition2);
|
sl@0
|
618 |
iWs.Flush();
|
sl@0
|
619 |
}
|
sl@0
|
620 |
|
sl@0
|
621 |
//
|
sl@0
|
622 |
// CWsGraphicBase::RetireGc
|
sl@0
|
623 |
// deactivate a gc & flush any outstanding RWindow requests
|
sl@0
|
624 |
void CWsGraphicBase::RetireGc()
|
sl@0
|
625 |
{
|
sl@0
|
626 |
iGc->Deactivate();
|
sl@0
|
627 |
iWin->EndRedraw();
|
sl@0
|
628 |
iWs.Flush();
|
sl@0
|
629 |
}
|
sl@0
|
630 |
|
sl@0
|
631 |
//
|
sl@0
|
632 |
// CWsGraphicBase::RedrawMe
|
sl@0
|
633 |
// called from the redraw listener AO, triggered by a redraw event
|
sl@0
|
634 |
// Invalidates the area requiring a redraw &
|
sl@0
|
635 |
// initiates a redraw of the CWsGraphicBitmapAnimation's window
|
sl@0
|
636 |
//
|
sl@0
|
637 |
void CWsGraphicBase::RedrawMe(TRect aRedrawRect, TInt aFrame)
|
sl@0
|
638 |
{
|
sl@0
|
639 |
// do draw with next frame
|
sl@0
|
640 |
if (iAnimData.IsPlaying())
|
sl@0
|
641 |
{
|
sl@0
|
642 |
iGc->Activate(*iWin);
|
sl@0
|
643 |
iWin->Invalidate(aRedrawRect);
|
sl@0
|
644 |
iWin->BeginRedraw();
|
sl@0
|
645 |
iWs.Flush();
|
sl@0
|
646 |
iGc->DrawWsGraphic(iAnimId,iPosition1,iAnimData.Pckg());
|
sl@0
|
647 |
iGc->Deactivate();
|
sl@0
|
648 |
iWin->EndRedraw();
|
sl@0
|
649 |
iWs.Flush();
|
sl@0
|
650 |
|
sl@0
|
651 |
// check for last frame
|
sl@0
|
652 |
if (aFrame == 0)
|
sl@0
|
653 |
{
|
sl@0
|
654 |
iTimer->Cancel();
|
sl@0
|
655 |
}
|
sl@0
|
656 |
}
|
sl@0
|
657 |
}
|
sl@0
|
658 |
|
sl@0
|
659 |
/**
|
sl@0
|
660 |
@SYMTestCaseID GRAPHICS-WSERV-0001
|
sl@0
|
661 |
|
sl@0
|
662 |
@SYMPREQ PREQ1246
|
sl@0
|
663 |
|
sl@0
|
664 |
@SYMTestCaseDesc Create Globally and Locally Shared Graphic Bitmaps from UIDs.
|
sl@0
|
665 |
|
sl@0
|
666 |
@SYMTestPriority High
|
sl@0
|
667 |
|
sl@0
|
668 |
@SYMTestStatus Implemented
|
sl@0
|
669 |
|
sl@0
|
670 |
@SYMTestActions First test that TWsGraphicIds can be created from UIDs. Then create CWsGraphicBitmap objects through
|
sl@0
|
671 |
CWsGraphicBitmap::NewL, passing a UID from a TWsGraphicId. Two different objects are created
|
sl@0
|
672 |
1. Globally shared available to all applications
|
sl@0
|
673 |
2. Locally shared available to selected clients
|
sl@0
|
674 |
|
sl@0
|
675 |
@SYMTestExpectedResults The CWsGraphicBitmap objects are created and no errors are reported.
|
sl@0
|
676 |
*/
|
sl@0
|
677 |
void CWsGraphicBase::DoTestCreateGraphicUidL()
|
sl@0
|
678 |
{
|
sl@0
|
679 |
iTestLog.Append(_L("CreateGraphicUid"));
|
sl@0
|
680 |
|
sl@0
|
681 |
_LIT_SECURE_ID(KTestSecId,0x12345678);
|
sl@0
|
682 |
|
sl@0
|
683 |
// Test the creation of TWsGraphicIds from UIDs
|
sl@0
|
684 |
TUid uid1 = {0x10000001};
|
sl@0
|
685 |
TUid uid2 = {0x10000002};
|
sl@0
|
686 |
|
sl@0
|
687 |
TWsGraphicId twsGraphicId1(uid1);
|
sl@0
|
688 |
Test(twsGraphicId1.Uid()==uid1);
|
sl@0
|
689 |
|
sl@0
|
690 |
TWsGraphicId twsGraphicId2(uid2);
|
sl@0
|
691 |
Test(twsGraphicId2.Uid()==uid2);
|
sl@0
|
692 |
|
sl@0
|
693 |
TWsGraphicId twsGraphicId3(twsGraphicId2);
|
sl@0
|
694 |
Test(twsGraphicId3.Uid()==uid2);
|
sl@0
|
695 |
|
sl@0
|
696 |
TWsGraphicId twsGraphicId4(1);
|
sl@0
|
697 |
twsGraphicId4.Set(uid1);
|
sl@0
|
698 |
Test(twsGraphicId4.Uid()==uid1);
|
sl@0
|
699 |
|
sl@0
|
700 |
// Create globally shared CWsGraphicBitmap
|
sl@0
|
701 |
CFbsBitmap bitmap1;
|
sl@0
|
702 |
CFbsBitmap mask1;
|
sl@0
|
703 |
|
sl@0
|
704 |
TSize screenSize = iScreen->SizeInPixels();
|
sl@0
|
705 |
bitmap1.Create(screenSize,iScreen->DisplayMode());
|
sl@0
|
706 |
mask1.Create(bitmap1.SizeInPixels(),iScreen->DisplayMode());
|
sl@0
|
707 |
|
sl@0
|
708 |
CWsGraphicBitmap* bTest = CWsGraphicBitmap::NewL(twsGraphicId1.Uid(), &bitmap1,&mask1);
|
sl@0
|
709 |
Test(bTest->IsActive());
|
sl@0
|
710 |
|
sl@0
|
711 |
TWsGraphicId tid1 = bTest->Id();
|
sl@0
|
712 |
Test(tid1.Uid()==uid1);
|
sl@0
|
713 |
|
sl@0
|
714 |
Test(bTest->ShareGlobally()==KErrNone);
|
sl@0
|
715 |
|
sl@0
|
716 |
// Create local shared CWsGraphicBitmap
|
sl@0
|
717 |
CFbsBitmap bitmap2;
|
sl@0
|
718 |
CFbsBitmap mask2;
|
sl@0
|
719 |
|
sl@0
|
720 |
bitmap2.Create(screenSize,iScreen->DisplayMode());
|
sl@0
|
721 |
mask2.Create(bitmap2.SizeInPixels(),iScreen->DisplayMode());
|
sl@0
|
722 |
|
sl@0
|
723 |
CWsGraphicBitmap* bTest2 = CWsGraphicBitmap::NewL(twsGraphicId2.Uid(), &bitmap2,&mask2);
|
sl@0
|
724 |
|
sl@0
|
725 |
TWsGraphicId tid2 = bTest2->Id();
|
sl@0
|
726 |
Test(tid2.Uid()==uid2);
|
sl@0
|
727 |
|
sl@0
|
728 |
Test(bTest2->Share(KTestSecId)==KErrNone);
|
sl@0
|
729 |
|
sl@0
|
730 |
// Test the unsharing of the CWsGraphicBitmaps
|
sl@0
|
731 |
Test(bTest->UnShareGlobally()==KErrNone);
|
sl@0
|
732 |
Test(bTest2->UnShare(KTestSecId)==KErrNone);
|
sl@0
|
733 |
Test(bTest2->UnShare(KTestSecId)==KErrNotFound);
|
sl@0
|
734 |
|
sl@0
|
735 |
delete bTest;
|
sl@0
|
736 |
delete bTest2;
|
sl@0
|
737 |
}
|
sl@0
|
738 |
|
sl@0
|
739 |
/**
|
sl@0
|
740 |
@SYMTestCaseID GRAPHICS-WSERV-0002
|
sl@0
|
741 |
|
sl@0
|
742 |
@SYMPREQ PREQ1246
|
sl@0
|
743 |
|
sl@0
|
744 |
@SYMTestCaseDesc Create Globally and Locally Shared Graphic Bitmaps.
|
sl@0
|
745 |
|
sl@0
|
746 |
@SYMTestPriority High
|
sl@0
|
747 |
|
sl@0
|
748 |
@SYMTestStatus Implemented
|
sl@0
|
749 |
|
sl@0
|
750 |
@SYMTestActions First test that TWsGraphicIds can be created from IDs. Then create CWsGraphicBitmap objects through
|
sl@0
|
751 |
CWsGraphicBitmap::NewL. Two different objects are created
|
sl@0
|
752 |
1. Globally shared available to all applications
|
sl@0
|
753 |
2. Locally shared available to selected clients
|
sl@0
|
754 |
|
sl@0
|
755 |
@SYMTestExpectedResults The CWsGraphicBitmap objects are created and no errors are reported.
|
sl@0
|
756 |
*/
|
sl@0
|
757 |
void CWsGraphicBase::DoTestCreateGraphicIdL()
|
sl@0
|
758 |
{
|
sl@0
|
759 |
iTestLog.Append(_L("CreateGraphicId"));
|
sl@0
|
760 |
|
sl@0
|
761 |
_LIT_SECURE_ID(KTestSecId,0x12345678);
|
sl@0
|
762 |
|
sl@0
|
763 |
// Test creating TWsGraphicIds from ids first
|
sl@0
|
764 |
TUid uid1 = {0x10000001};
|
sl@0
|
765 |
|
sl@0
|
766 |
TWsGraphicId twsGraphicId1(uid1);
|
sl@0
|
767 |
|
sl@0
|
768 |
twsGraphicId1.Set(9);
|
sl@0
|
769 |
Test(twsGraphicId1.Id()==9);
|
sl@0
|
770 |
|
sl@0
|
771 |
TWsGraphicId twsGraphicId2(twsGraphicId1);
|
sl@0
|
772 |
Test(twsGraphicId2.Id()==9);
|
sl@0
|
773 |
|
sl@0
|
774 |
TWsGraphicId twsGraphicId3(7);
|
sl@0
|
775 |
Test(twsGraphicId3.Id()==7);
|
sl@0
|
776 |
|
sl@0
|
777 |
// Create globally shared CWsGraphicBitmap
|
sl@0
|
778 |
CFbsBitmap bitmap1;
|
sl@0
|
779 |
CFbsBitmap mask1;
|
sl@0
|
780 |
|
sl@0
|
781 |
TSize screenSize = iScreen->SizeInPixels();
|
sl@0
|
782 |
bitmap1.Create(screenSize,iScreen->DisplayMode());
|
sl@0
|
783 |
mask1.Create(bitmap1.SizeInPixels(),iScreen->DisplayMode());
|
sl@0
|
784 |
|
sl@0
|
785 |
CWsGraphicBitmap* bTest = CWsGraphicBitmap::NewL(&bitmap1,&mask1);
|
sl@0
|
786 |
Test(bTest->IsActive());
|
sl@0
|
787 |
|
sl@0
|
788 |
TWsGraphicId tid1 = bTest->Id();
|
sl@0
|
789 |
|
sl@0
|
790 |
Test(bTest->ShareGlobally()==KErrNone);
|
sl@0
|
791 |
|
sl@0
|
792 |
// Create local shared CWsGraphicBitmap
|
sl@0
|
793 |
CFbsBitmap bitmap2;
|
sl@0
|
794 |
CFbsBitmap mask2;
|
sl@0
|
795 |
|
sl@0
|
796 |
bitmap2.Create(screenSize,iScreen->DisplayMode());
|
sl@0
|
797 |
mask2.Create(bitmap2.SizeInPixels(),iScreen->DisplayMode());
|
sl@0
|
798 |
|
sl@0
|
799 |
CWsGraphicBitmap* bTest2 = CWsGraphicBitmap::NewL(&bitmap2,&mask2);
|
sl@0
|
800 |
|
sl@0
|
801 |
TWsGraphicId tid2 = bTest2->Id();
|
sl@0
|
802 |
|
sl@0
|
803 |
Test(bTest2->Share(KTestSecId)==KErrNone);
|
sl@0
|
804 |
|
sl@0
|
805 |
// Test the unsharing of the CWsGraphicBitmaps
|
sl@0
|
806 |
Test(bTest->UnShareGlobally()==KErrNone);
|
sl@0
|
807 |
Test(bTest2->UnShare(KTestSecId)==KErrNone);
|
sl@0
|
808 |
Test(bTest2->UnShare(KTestSecId)==KErrNotFound);
|
sl@0
|
809 |
|
sl@0
|
810 |
delete bTest2;
|
sl@0
|
811 |
delete bTest;
|
sl@0
|
812 |
}
|
sl@0
|
813 |
|
sl@0
|
814 |
/**
|
sl@0
|
815 |
@SYMTestCaseID GRAPHICS-WSERV-0003
|
sl@0
|
816 |
|
sl@0
|
817 |
@SYMPREQ PREQ1246
|
sl@0
|
818 |
|
sl@0
|
819 |
@SYMTestCaseDesc Update an existing graphic bitmap with new data.
|
sl@0
|
820 |
|
sl@0
|
821 |
@SYMTestPriority High
|
sl@0
|
822 |
|
sl@0
|
823 |
@SYMTestStatus Implemented
|
sl@0
|
824 |
|
sl@0
|
825 |
@SYMTestActions The test calls CWsGraphicBitmap::NewL method with new data passed to the CWsGraphicBitmap object.
|
sl@0
|
826 |
|
sl@0
|
827 |
|
sl@0
|
828 |
@SYMTestExpectedResults The CWsGraphicBitmap object is updated with no errors reported.
|
sl@0
|
829 |
*/
|
sl@0
|
830 |
void CWsGraphicBase::DoTestUpdateGraphicL()
|
sl@0
|
831 |
{
|
sl@0
|
832 |
iTestLog.Append(_L("UpdateGraphic"));
|
sl@0
|
833 |
|
sl@0
|
834 |
CFbsBitmap bitmap1;
|
sl@0
|
835 |
CFbsBitmap mask1;
|
sl@0
|
836 |
CFbsBitmap bitmap2;
|
sl@0
|
837 |
CFbsBitmap mask2;
|
sl@0
|
838 |
|
sl@0
|
839 |
TSize screenSize = iScreen->SizeInPixels();
|
sl@0
|
840 |
bitmap1.Create(screenSize,iScreen->DisplayMode());
|
sl@0
|
841 |
mask1.Create(bitmap1.SizeInPixels(),iScreen->DisplayMode());
|
sl@0
|
842 |
|
sl@0
|
843 |
CWsGraphic* bTest = CWsGraphicBitmap::NewL(&bitmap1,&mask1);
|
sl@0
|
844 |
|
sl@0
|
845 |
bitmap2.Create(screenSize,iScreen->DisplayMode());
|
sl@0
|
846 |
mask2.Create(bitmap2.SizeInPixels(),iScreen->DisplayMode());
|
sl@0
|
847 |
|
sl@0
|
848 |
TWsGraphicId tid1 = bTest->Id();
|
sl@0
|
849 |
TInt testInt = tid1.Id();
|
sl@0
|
850 |
|
sl@0
|
851 |
CWsGraphic* testReplacement = CWsGraphicBitmap::NewL(tid1, &bitmap2,&mask2);
|
sl@0
|
852 |
|
sl@0
|
853 |
delete bTest;
|
sl@0
|
854 |
bTest = testReplacement;
|
sl@0
|
855 |
|
sl@0
|
856 |
Test(bTest->Id().Id()==testInt);
|
sl@0
|
857 |
|
sl@0
|
858 |
delete bTest;
|
sl@0
|
859 |
}
|
sl@0
|
860 |
|
sl@0
|
861 |
|
sl@0
|
862 |
|
sl@0
|
863 |
/**
|
sl@0
|
864 |
@SYMTestCaseID GRAPHICS-WSERV-0004
|
sl@0
|
865 |
|
sl@0
|
866 |
@SYMPREQ PREQ1246
|
sl@0
|
867 |
|
sl@0
|
868 |
@SYMTestCaseDesc Try to delete an existing graphic.
|
sl@0
|
869 |
|
sl@0
|
870 |
@SYMTestPriority High
|
sl@0
|
871 |
|
sl@0
|
872 |
@SYMTestStatus Implemented
|
sl@0
|
873 |
|
sl@0
|
874 |
@SYMTestActions The test app calls CWsGraphic::Destroy() method,
|
sl@0
|
875 |
|
sl@0
|
876 |
@SYMTestExpectedResults The CWsGraphicBitmap object is removed from the Window Server with no
|
sl@0
|
877 |
errors reported
|
sl@0
|
878 |
*/
|
sl@0
|
879 |
void CWsGraphicBase::DoTestDeleteGraphicL()
|
sl@0
|
880 |
{
|
sl@0
|
881 |
iTestLog.Append(_L("DeleteGraphic"));
|
sl@0
|
882 |
|
sl@0
|
883 |
CFbsBitmap bitmap1;
|
sl@0
|
884 |
CFbsBitmap mask1;
|
sl@0
|
885 |
|
sl@0
|
886 |
TSize screenSize = iScreen->SizeInPixels();
|
sl@0
|
887 |
bitmap1.Create(screenSize,iScreen->DisplayMode());
|
sl@0
|
888 |
mask1.Create(bitmap1.SizeInPixels(),iScreen->DisplayMode());
|
sl@0
|
889 |
|
sl@0
|
890 |
CWsGraphic* bTest = CWsGraphicBitmap::NewL(&bitmap1,&mask1);
|
sl@0
|
891 |
|
sl@0
|
892 |
bTest->Destroy();
|
sl@0
|
893 |
|
sl@0
|
894 |
Test(!bTest->IsActive());
|
sl@0
|
895 |
|
sl@0
|
896 |
delete bTest;
|
sl@0
|
897 |
}
|
sl@0
|
898 |
|
sl@0
|
899 |
/**
|
sl@0
|
900 |
@SYMTestCaseID GRAPHICS-WSERV-0005
|
sl@0
|
901 |
|
sl@0
|
902 |
@SYMPREQ PREQ1246
|
sl@0
|
903 |
|
sl@0
|
904 |
@SYMTestCaseDesc Check a bitmap is not drawn if the bitmap and mask it uses are invalid
|
sl@0
|
905 |
|
sl@0
|
906 |
@SYMTestPriority High
|
sl@0
|
907 |
|
sl@0
|
908 |
@SYMTestStatus Implemented
|
sl@0
|
909 |
|
sl@0
|
910 |
@SYMTestActions The test app creates a valid and invalid bitmap and attempts to draw them
|
sl@0
|
911 |
|
sl@0
|
912 |
@SYMTestExpectedResults The valid bitmap is drawn but the invalid bitmap is not drawn
|
sl@0
|
913 |
*/
|
sl@0
|
914 |
void CWsGraphicBase::DoTestDrawInvalidBitmapIDL()
|
sl@0
|
915 |
{
|
sl@0
|
916 |
iTestLog.Append(_L("DrawInvalidBitmapID"));
|
sl@0
|
917 |
|
sl@0
|
918 |
CFbsBitmap bitmap1;
|
sl@0
|
919 |
CFbsBitmap mask1;
|
sl@0
|
920 |
CFbsBitmap *bitmap2 = NULL;
|
sl@0
|
921 |
CFbsBitmap *mask2 = NULL;
|
sl@0
|
922 |
|
sl@0
|
923 |
User::LeaveIfError(bitmap1.Load(MY_TEST_BITMAP,0));
|
sl@0
|
924 |
mask1.Create(bitmap1.SizeInPixels(),iScreen->DisplayMode());
|
sl@0
|
925 |
|
sl@0
|
926 |
// valid bitmap
|
sl@0
|
927 |
CWsGraphicBitmap* bTest = CWsGraphicBitmap::NewL(&bitmap1,&mask1);
|
sl@0
|
928 |
|
sl@0
|
929 |
// invalid bitmap
|
sl@0
|
930 |
CWsGraphicBitmap* bTest2 = CWsGraphicBitmap::NewL(bitmap2,mask2);
|
sl@0
|
931 |
|
sl@0
|
932 |
PrepGc();
|
sl@0
|
933 |
iGc->DrawWsGraphic(bTest->Id(),iPosition1);
|
sl@0
|
934 |
iGc->DrawWsGraphic(bTest2->Id(),iPosition2);
|
sl@0
|
935 |
RetireGc();
|
sl@0
|
936 |
|
sl@0
|
937 |
// compare the graphic in both positions, should only be graphic in position 1
|
sl@0
|
938 |
TestForDifferentBitmaps();
|
sl@0
|
939 |
|
sl@0
|
940 |
delete bTest2;
|
sl@0
|
941 |
delete bTest;
|
sl@0
|
942 |
}
|
sl@0
|
943 |
|
sl@0
|
944 |
/**
|
sl@0
|
945 |
@SYMTestCaseID GRAPHICS-WSERV-0006
|
sl@0
|
946 |
|
sl@0
|
947 |
@SYMPREQ PREQ1246
|
sl@0
|
948 |
|
sl@0
|
949 |
@SYMTestCaseDesc Draw a graphic within a rectangle on the screen, then try to draw with a non-existant graphic
|
sl@0
|
950 |
|
sl@0
|
951 |
@SYMTestPriority High
|
sl@0
|
952 |
|
sl@0
|
953 |
@SYMTestStatus Implemented
|
sl@0
|
954 |
|
sl@0
|
955 |
@SYMTestActions The test app calls CWindowGC::DrawWsGraphic() method using the TWGraphicId object, to draw within a rectangle on the screen
|
sl@0
|
956 |
|
sl@0
|
957 |
@SYMTestExpectedResults The graphic is drawn on the screen with no errors reported. Drawing with a non-existant graphic causes
|
sl@0
|
958 |
nothing to be drawn and no error reported
|
sl@0
|
959 |
*/
|
sl@0
|
960 |
void CWsGraphicBase::DoTestDrawGraphicL()
|
sl@0
|
961 |
{
|
sl@0
|
962 |
iTestLog.Append(_L("DrawGraphic"));
|
sl@0
|
963 |
|
sl@0
|
964 |
_LIT8(KTestData,"HelloWorld");
|
sl@0
|
965 |
|
sl@0
|
966 |
CFbsBitmap bitmap1;
|
sl@0
|
967 |
CFbsBitmap mask1;
|
sl@0
|
968 |
|
sl@0
|
969 |
User::LeaveIfError(bitmap1.Load(MY_TEST_BITMAP,0));
|
sl@0
|
970 |
mask1.Create(bitmap1.SizeInPixels(),iScreen->DisplayMode());
|
sl@0
|
971 |
|
sl@0
|
972 |
CWsGraphicBitmap* bTest = CWsGraphicBitmap::NewL(&bitmap1,&mask1);
|
sl@0
|
973 |
|
sl@0
|
974 |
PrepGc();
|
sl@0
|
975 |
iGc->DrawWsGraphic(bTest->Id(),iPosition1,KTestData);
|
sl@0
|
976 |
TWsGraphicId twsGraphicId1(KDummyGraphicId); // create unrecognised wsbitmap id & attempt to draw it
|
sl@0
|
977 |
iGc->DrawWsGraphic(twsGraphicId1,iPosition2,KTestData);
|
sl@0
|
978 |
RetireGc();
|
sl@0
|
979 |
|
sl@0
|
980 |
// compare the graphic in both positions, should only be graphic in position 1
|
sl@0
|
981 |
TestForDifferentBitmaps();
|
sl@0
|
982 |
|
sl@0
|
983 |
delete bTest;
|
sl@0
|
984 |
}
|
sl@0
|
985 |
|
sl@0
|
986 |
/**
|
sl@0
|
987 |
@SYMTestCaseID GRAPHICS-WSERV-0007
|
sl@0
|
988 |
|
sl@0
|
989 |
@SYMPREQ PREQ1246
|
sl@0
|
990 |
|
sl@0
|
991 |
@SYMTestCaseDesc Draw a graphic using a transient ID within a rectangle on the screen
|
sl@0
|
992 |
|
sl@0
|
993 |
@SYMTestPriority High
|
sl@0
|
994 |
|
sl@0
|
995 |
@SYMTestStatus Implemented
|
sl@0
|
996 |
|
sl@0
|
997 |
@SYMTestActions The test app calls CWindowGC::DrawWsGraphic() using a TWsGraphic object, to draw within
|
sl@0
|
998 |
a rectangle on the screen
|
sl@0
|
999 |
|
sl@0
|
1000 |
@SYMTestExpectedResults The graphic is drawn.
|
sl@0
|
1001 |
*/
|
sl@0
|
1002 |
void CWsGraphicBase::DoTestDrawGraphicIDL()
|
sl@0
|
1003 |
{
|
sl@0
|
1004 |
iTestLog.Append(_L("DrawGraphicID"));
|
sl@0
|
1005 |
|
sl@0
|
1006 |
CFbsBitmap bitmap1;
|
sl@0
|
1007 |
CFbsBitmap mask1;
|
sl@0
|
1008 |
|
sl@0
|
1009 |
User::LeaveIfError(bitmap1.Load(MY_TEST_BITMAP,0));
|
sl@0
|
1010 |
mask1.Create(bitmap1.SizeInPixels(),iScreen->DisplayMode());
|
sl@0
|
1011 |
|
sl@0
|
1012 |
CWsGraphicBitmap* bTest = CWsGraphicBitmap::NewL(&bitmap1,&mask1);
|
sl@0
|
1013 |
|
sl@0
|
1014 |
PrepGc();
|
sl@0
|
1015 |
iGc->DrawWsGraphic(bTest->Id(),iPosition1);
|
sl@0
|
1016 |
RetireGc();
|
sl@0
|
1017 |
|
sl@0
|
1018 |
// compare the graphic in both positions, should only be graphic in position 1
|
sl@0
|
1019 |
TestForDifferentBitmaps();
|
sl@0
|
1020 |
|
sl@0
|
1021 |
delete bTest;
|
sl@0
|
1022 |
}
|
sl@0
|
1023 |
|
sl@0
|
1024 |
|
sl@0
|
1025 |
|
sl@0
|
1026 |
/**
|
sl@0
|
1027 |
@SYMTestCaseID GRAPHICS-WSERV-0008
|
sl@0
|
1028 |
|
sl@0
|
1029 |
@SYMPREQ PREQ1246
|
sl@0
|
1030 |
|
sl@0
|
1031 |
@SYMTestCaseDesc Draw a graphic in two different rectangles on the screen and compare them
|
sl@0
|
1032 |
|
sl@0
|
1033 |
@SYMTestPriority High
|
sl@0
|
1034 |
|
sl@0
|
1035 |
@SYMTestStatus Implemented
|
sl@0
|
1036 |
|
sl@0
|
1037 |
@SYMTestActions The test app calls CWindowGC::DrawWsGraphic() using the TWsGraphic object, to draw a known bitmap
|
sl@0
|
1038 |
rectangle on the screen twice in different places. The bitmaps are then compared.
|
sl@0
|
1039 |
|
sl@0
|
1040 |
@SYMTestExpectedResults The two bitmaps are identical
|
sl@0
|
1041 |
*/
|
sl@0
|
1042 |
void CWsGraphicBase::DoTestDrawGraphicCompareL()
|
sl@0
|
1043 |
{
|
sl@0
|
1044 |
iTestLog.Append(_L("DrawGraphicCompare"));
|
sl@0
|
1045 |
|
sl@0
|
1046 |
_LIT8(KTestData,"HelloWorld");
|
sl@0
|
1047 |
|
sl@0
|
1048 |
CFbsBitmap bitmap1;
|
sl@0
|
1049 |
CFbsBitmap mask1;
|
sl@0
|
1050 |
|
sl@0
|
1051 |
CFbsBitmap bitmap2;
|
sl@0
|
1052 |
CFbsBitmap mask2;
|
sl@0
|
1053 |
|
sl@0
|
1054 |
User::LeaveIfError(bitmap1.Load(MY_TEST_BITMAP,0));
|
sl@0
|
1055 |
mask1.Create(bitmap1.SizeInPixels(),iScreen->DisplayMode());
|
sl@0
|
1056 |
|
sl@0
|
1057 |
User::LeaveIfError(bitmap2.Load(MY_TEST_BITMAP,0));
|
sl@0
|
1058 |
mask2.Create(bitmap2.SizeInPixels(),iScreen->DisplayMode());
|
sl@0
|
1059 |
|
sl@0
|
1060 |
CWsGraphicBitmap* bTest = CWsGraphicBitmap::NewL(&bitmap1,&mask1);
|
sl@0
|
1061 |
CWsGraphicBitmap* bTest2 = CWsGraphicBitmap::NewL(&bitmap2,&mask2);
|
sl@0
|
1062 |
|
sl@0
|
1063 |
PrepGc();
|
sl@0
|
1064 |
//draw the graphic in the two different rectangles
|
sl@0
|
1065 |
iGc->DrawWsGraphic(bTest->Id(),iPosition1,KTestData);
|
sl@0
|
1066 |
iGc->DrawWsGraphic(bTest2->Id(),iPosition2,KTestData);
|
sl@0
|
1067 |
RetireGc();
|
sl@0
|
1068 |
|
sl@0
|
1069 |
// compare the graphic in both positions. Contents of each rect should be identical
|
sl@0
|
1070 |
TestForIdenticalBitmaps();
|
sl@0
|
1071 |
|
sl@0
|
1072 |
delete bTest2;
|
sl@0
|
1073 |
delete bTest;
|
sl@0
|
1074 |
}
|
sl@0
|
1075 |
|
sl@0
|
1076 |
/**
|
sl@0
|
1077 |
@SYMTestCaseID GRAPHICS-WSERV-0009
|
sl@0
|
1078 |
|
sl@0
|
1079 |
@SYMPREQ PREQ1246
|
sl@0
|
1080 |
|
sl@0
|
1081 |
@SYMTestCaseDesc Draw a global and local graphic in two different rectangles on the screen and compare them
|
sl@0
|
1082 |
|
sl@0
|
1083 |
@SYMTestPriority High
|
sl@0
|
1084 |
|
sl@0
|
1085 |
@SYMTestStatus Implemented
|
sl@0
|
1086 |
|
sl@0
|
1087 |
@SYMTestActions The test app calls CWindowGC::DrawGraphic() using the TWsGraphic object, to draw a known
|
sl@0
|
1088 |
global and local bitmap rectangle on the screen twice in different places. The bitmaps are then compared.
|
sl@0
|
1089 |
|
sl@0
|
1090 |
@SYMTestExpectedResults The two bitmaps are identical
|
sl@0
|
1091 |
*/
|
sl@0
|
1092 |
void CWsGraphicBase::DoTestDrawGraphicSessionHandleL()
|
sl@0
|
1093 |
{
|
sl@0
|
1094 |
iTestLog.Append(_L("DrawGraphicSessionHandle"));
|
sl@0
|
1095 |
_LIT_SECURE_ID(KTestSecId,0x12345678);
|
sl@0
|
1096 |
|
sl@0
|
1097 |
// test TWsGraphicControlState first
|
sl@0
|
1098 |
_LIT8(KTestData,"HelloWorld");
|
sl@0
|
1099 |
|
sl@0
|
1100 |
CFbsBitmap bitmap1;
|
sl@0
|
1101 |
CFbsBitmap mask1;
|
sl@0
|
1102 |
|
sl@0
|
1103 |
CFbsBitmap bitmap2;
|
sl@0
|
1104 |
CFbsBitmap mask2;
|
sl@0
|
1105 |
|
sl@0
|
1106 |
User::LeaveIfError(bitmap1.Load(MY_TEST_BITMAP,0));
|
sl@0
|
1107 |
mask1.Create(bitmap1.SizeInPixels(),iScreen->DisplayMode());
|
sl@0
|
1108 |
|
sl@0
|
1109 |
User::LeaveIfError(bitmap2.Load(MY_TEST_BITMAP,0));
|
sl@0
|
1110 |
mask2.Create(bitmap2.SizeInPixels(),iScreen->DisplayMode());
|
sl@0
|
1111 |
|
sl@0
|
1112 |
CWsGraphicBitmap* bTest = CWsGraphicBitmap::NewL(&bitmap1,&mask1);
|
sl@0
|
1113 |
CWsGraphicBitmap* bTest2 = CWsGraphicBitmap::NewL(&bitmap2,&mask2);
|
sl@0
|
1114 |
|
sl@0
|
1115 |
Test(bTest->ShareGlobally()==KErrNone);
|
sl@0
|
1116 |
Test(bTest2->Share(KTestSecId)==KErrNone);
|
sl@0
|
1117 |
|
sl@0
|
1118 |
PrepGc();
|
sl@0
|
1119 |
iGc->DrawWsGraphic(bTest->Id(),iPosition1,KTestData);
|
sl@0
|
1120 |
iGc->DrawWsGraphic(bTest2->Id(),iPosition2,KTestData);
|
sl@0
|
1121 |
RetireGc();
|
sl@0
|
1122 |
|
sl@0
|
1123 |
// compare the graphic in both positions. Contents of each rect should be identical
|
sl@0
|
1124 |
TestForIdenticalBitmaps();
|
sl@0
|
1125 |
|
sl@0
|
1126 |
delete bTest2;
|
sl@0
|
1127 |
delete bTest;
|
sl@0
|
1128 |
}
|
sl@0
|
1129 |
|
sl@0
|
1130 |
/**
|
sl@0
|
1131 |
@SYMTestCaseID GRAPHICS-WSERV-0010
|
sl@0
|
1132 |
|
sl@0
|
1133 |
@SYMPREQ PREQ1246
|
sl@0
|
1134 |
|
sl@0
|
1135 |
@SYMTestCaseDesc Check an animation can be constructed using a UID, manipulated and then drawn
|
sl@0
|
1136 |
|
sl@0
|
1137 |
@SYMTestPriority High
|
sl@0
|
1138 |
|
sl@0
|
1139 |
@SYMTestStatus Implemented
|
sl@0
|
1140 |
|
sl@0
|
1141 |
@SYMTestActions The test app creates CWsGraphicBitmapAnimation object via a UID and then draws the object to the screen
|
sl@0
|
1142 |
|
sl@0
|
1143 |
@SYMTestExpectedResults The object is drawn
|
sl@0
|
1144 |
*/
|
sl@0
|
1145 |
void CWsGraphicBase::DoTestDrawAnimatedGraphicUIDL()
|
sl@0
|
1146 |
{
|
sl@0
|
1147 |
iTestLog.Append(_L("DrawAnimatedGraphicUID"));
|
sl@0
|
1148 |
|
sl@0
|
1149 |
// test TWsGraphicAnimation first
|
sl@0
|
1150 |
iAnimData.Play(EFalse);
|
sl@0
|
1151 |
|
sl@0
|
1152 |
// load the animation via a UID
|
sl@0
|
1153 |
CIclLoader* iclLoader;
|
sl@0
|
1154 |
iclLoader = new(ELeave) CIclLoader();
|
sl@0
|
1155 |
iclLoader->ConstructL(KSymBallFile,ETrue,EFalse); // this is actually an asynchronous operation, so we give it a chance to execute below
|
sl@0
|
1156 |
|
sl@0
|
1157 |
while (iclLoader->Ok() && iclLoader->GetId().Id() == KDummyGraphicId)
|
sl@0
|
1158 |
{
|
sl@0
|
1159 |
iTimer->Wait(1000);
|
sl@0
|
1160 |
}
|
sl@0
|
1161 |
|
sl@0
|
1162 |
Test(iclLoader->Ok()); // fail test if iclLoder experienced problems
|
sl@0
|
1163 |
|
sl@0
|
1164 |
iAnimId = iclLoader->GetId();
|
sl@0
|
1165 |
|
sl@0
|
1166 |
// animation is ready to be drawn. draw to the 1st position only
|
sl@0
|
1167 |
PrepGc();
|
sl@0
|
1168 |
iGc->DrawWsGraphic(iAnimId,iPosition1,iAnimData.Pckg());
|
sl@0
|
1169 |
RetireGc();
|
sl@0
|
1170 |
|
sl@0
|
1171 |
// run the animation
|
sl@0
|
1172 |
RunAnimation(iclLoader->FrameCount());
|
sl@0
|
1173 |
|
sl@0
|
1174 |
// compare the graphic in both positions.
|
sl@0
|
1175 |
TestForDifferentBitmaps();
|
sl@0
|
1176 |
|
sl@0
|
1177 |
iTimer->Cancel();
|
sl@0
|
1178 |
iclLoader->Cancel();
|
sl@0
|
1179 |
delete iclLoader;
|
sl@0
|
1180 |
}
|
sl@0
|
1181 |
|
sl@0
|
1182 |
/**
|
sl@0
|
1183 |
@SYMTestCaseID GRAPHICS-WSERV-0011
|
sl@0
|
1184 |
|
sl@0
|
1185 |
@SYMPREQ PREQ1246
|
sl@0
|
1186 |
|
sl@0
|
1187 |
@SYMTestCaseDesc Check an animation can be constructed using an ID, manipulated and then drawn
|
sl@0
|
1188 |
|
sl@0
|
1189 |
@SYMTestPriority High
|
sl@0
|
1190 |
|
sl@0
|
1191 |
@SYMTestStatus Implemented
|
sl@0
|
1192 |
|
sl@0
|
1193 |
@SYMTestActions The test app creates CWsGraphicBitmapAnimation object via an ID and then draws the object to the screen
|
sl@0
|
1194 |
|
sl@0
|
1195 |
@SYMTestExpectedResults The object is drawn
|
sl@0
|
1196 |
*/
|
sl@0
|
1197 |
void CWsGraphicBase::DoTestDrawAnimatedGraphicIDL()
|
sl@0
|
1198 |
{
|
sl@0
|
1199 |
iTestLog.Append(_L("DrawAnimatedGraphicID"));
|
sl@0
|
1200 |
iAnimData.Play(ETrue);
|
sl@0
|
1201 |
iAnimData.Play(ETrue);
|
sl@0
|
1202 |
Test(iAnimData.Loops());
|
sl@0
|
1203 |
iAnimData.Pause();
|
sl@0
|
1204 |
Test(!iAnimData.IsPlaying());
|
sl@0
|
1205 |
Test(iAnimData.IsPaused());
|
sl@0
|
1206 |
iAnimData.Pause();
|
sl@0
|
1207 |
Test(iAnimData.Loops());
|
sl@0
|
1208 |
iAnimData.Play(EFalse);
|
sl@0
|
1209 |
Test(!iAnimData.Loops());
|
sl@0
|
1210 |
Test(!iAnimData.IsStopping());
|
sl@0
|
1211 |
Test(!iAnimData.IsStopped());
|
sl@0
|
1212 |
|
sl@0
|
1213 |
// load the animation via an ID
|
sl@0
|
1214 |
CIclLoader* iclLoader;
|
sl@0
|
1215 |
iclLoader = new(ELeave) CIclLoader();
|
sl@0
|
1216 |
iclLoader->ConstructL(KSymBallFile,EFalse,EFalse);
|
sl@0
|
1217 |
|
sl@0
|
1218 |
while (iclLoader->GetId().Id() == KDummyGraphicId)
|
sl@0
|
1219 |
{
|
sl@0
|
1220 |
iTimer->Wait(1000);
|
sl@0
|
1221 |
}
|
sl@0
|
1222 |
iAnimId = iclLoader->GetId();
|
sl@0
|
1223 |
|
sl@0
|
1224 |
PrepGc();
|
sl@0
|
1225 |
iGc->DrawWsGraphic(iAnimId,iPosition1,iAnimData.Pckg());
|
sl@0
|
1226 |
RetireGc();
|
sl@0
|
1227 |
|
sl@0
|
1228 |
// run the animation
|
sl@0
|
1229 |
RunAnimation(iclLoader->FrameCount());
|
sl@0
|
1230 |
|
sl@0
|
1231 |
// compare the graphic in both positions
|
sl@0
|
1232 |
TestForDifferentBitmaps();
|
sl@0
|
1233 |
|
sl@0
|
1234 |
iAnimData.Stop(ETrue);
|
sl@0
|
1235 |
Test(iAnimData.IsStopped());
|
sl@0
|
1236 |
iAnimData.Pause();
|
sl@0
|
1237 |
iAnimData.Play(EFalse);
|
sl@0
|
1238 |
iAnimData.Stop(EFalse);
|
sl@0
|
1239 |
Test(!iAnimData.IsStopped());
|
sl@0
|
1240 |
|
sl@0
|
1241 |
iTimer->Cancel();
|
sl@0
|
1242 |
iclLoader->Cancel();
|
sl@0
|
1243 |
delete iclLoader;
|
sl@0
|
1244 |
}
|
sl@0
|
1245 |
|
sl@0
|
1246 |
/**
|
sl@0
|
1247 |
@SYMTestCaseID GRAPHICS-WSERV-0012
|
sl@0
|
1248 |
|
sl@0
|
1249 |
@SYMPREQ PREQ1246
|
sl@0
|
1250 |
|
sl@0
|
1251 |
@SYMTestCaseDesc Check an animation can be constructed and then replaced, manipulated and then drawn
|
sl@0
|
1252 |
|
sl@0
|
1253 |
@SYMTestPriority High
|
sl@0
|
1254 |
|
sl@0
|
1255 |
@SYMTestStatus Implemented
|
sl@0
|
1256 |
|
sl@0
|
1257 |
@SYMTestActions The test app creates CWsGraphicBitmapAnimation object, the replaces it, and then draws the object
|
sl@0
|
1258 |
to the screen
|
sl@0
|
1259 |
|
sl@0
|
1260 |
@SYMTestExpectedResults The object is drawn
|
sl@0
|
1261 |
*/
|
sl@0
|
1262 |
void CWsGraphicBase::DoTestDrawReplaceGraphicIDL()
|
sl@0
|
1263 |
{
|
sl@0
|
1264 |
// test TWsGraphicControlStateTimed first
|
sl@0
|
1265 |
iTestLog.Append(_L("DrawAnimatedGraphicID"));
|
sl@0
|
1266 |
_LIT8(KTestData,"HelloWorld");
|
sl@0
|
1267 |
iAnimData.Stop(ETrue);
|
sl@0
|
1268 |
|
sl@0
|
1269 |
// load and replace the animation
|
sl@0
|
1270 |
CIclLoader* iclLoader;
|
sl@0
|
1271 |
iclLoader = new(ELeave) CIclLoader();
|
sl@0
|
1272 |
iclLoader->ConstructL(KSymBallFile,false,true);
|
sl@0
|
1273 |
|
sl@0
|
1274 |
while (iclLoader->GetId().Id() == KDummyGraphicId)
|
sl@0
|
1275 |
{
|
sl@0
|
1276 |
iTimer->Wait(1000);
|
sl@0
|
1277 |
}
|
sl@0
|
1278 |
iAnimId = iclLoader->GetId();
|
sl@0
|
1279 |
|
sl@0
|
1280 |
// draw the animation in two positions
|
sl@0
|
1281 |
PrepGc();
|
sl@0
|
1282 |
iGc->DrawWsGraphic(iAnimId,iPosition1,KTestData);
|
sl@0
|
1283 |
RetireGc();
|
sl@0
|
1284 |
|
sl@0
|
1285 |
// run the animation
|
sl@0
|
1286 |
RunAnimation(iclLoader->FrameCount());
|
sl@0
|
1287 |
|
sl@0
|
1288 |
// compare the graphic in both positions
|
sl@0
|
1289 |
// Expect identical, as the command buffer used in position1 animation is invalid, therefore never drawn
|
sl@0
|
1290 |
TestForIdenticalBitmaps();
|
sl@0
|
1291 |
|
sl@0
|
1292 |
iTimer->Cancel();
|
sl@0
|
1293 |
iclLoader->Cancel();
|
sl@0
|
1294 |
delete iclLoader;
|
sl@0
|
1295 |
}
|
sl@0
|
1296 |
|
sl@0
|
1297 |
/**
|
sl@0
|
1298 |
@SYMTestCaseID GRAPHICS-WSERV-0013
|
sl@0
|
1299 |
|
sl@0
|
1300 |
@SYMPREQ PREQ1246
|
sl@0
|
1301 |
|
sl@0
|
1302 |
@SYMTestCaseDesc Check the creation and manipulation of an RWsGraphicMsgBuf object
|
sl@0
|
1303 |
|
sl@0
|
1304 |
@SYMTestPriority High
|
sl@0
|
1305 |
|
sl@0
|
1306 |
@SYMTestStatus Implemented
|
sl@0
|
1307 |
|
sl@0
|
1308 |
@SYMTestActions Creates and manipulates an RWsGraphicMsgBuf object
|
sl@0
|
1309 |
|
sl@0
|
1310 |
@SYMTestExpectedResults RWsGraphicMsgBuf functions correctly
|
sl@0
|
1311 |
*/
|
sl@0
|
1312 |
void CWsGraphicBase::DoTestCreateMsgGraphicMsgBufL()
|
sl@0
|
1313 |
{
|
sl@0
|
1314 |
iTestLog.Append(_L("CreateMsgGraphicMsgBuf"));
|
sl@0
|
1315 |
|
sl@0
|
1316 |
_LIT(KNebraska,"Nebraska");
|
sl@0
|
1317 |
_LIT8(KTesting,"Testing");
|
sl@0
|
1318 |
RWsGraphicMsgBuf msgBuf;
|
sl@0
|
1319 |
msgBuf.CleanupClosePushL();
|
sl@0
|
1320 |
msgBuf.Append(TUid::Uid(0x12345670),KTesting());
|
sl@0
|
1321 |
msgBuf.Append(TUid::Uid(0x12345671),KNebraska());
|
sl@0
|
1322 |
msgBuf.Append(TUid::Uid(0x12345670),KTesting());
|
sl@0
|
1323 |
|
sl@0
|
1324 |
Test(TUid::Uid(0x12345670)==msgBuf.TypeId(0));
|
sl@0
|
1325 |
|
sl@0
|
1326 |
msgBuf.Remove(0);
|
sl@0
|
1327 |
const TInt count = msgBuf.Count();
|
sl@0
|
1328 |
Test(count == 2);
|
sl@0
|
1329 |
|
sl@0
|
1330 |
iAnimData.Play(ETrue);
|
sl@0
|
1331 |
msgBuf.Append(iAnimData);
|
sl@0
|
1332 |
Test(msgBuf.Count() == 3);
|
sl@0
|
1333 |
|
sl@0
|
1334 |
CleanupStack::Pop();
|
sl@0
|
1335 |
|
sl@0
|
1336 |
// load the animation via a UID
|
sl@0
|
1337 |
CIclLoader* iclLoader;
|
sl@0
|
1338 |
iclLoader = new(ELeave) CIclLoader();
|
sl@0
|
1339 |
iclLoader->ConstructL(KSymBallFile,true,false);
|
sl@0
|
1340 |
|
sl@0
|
1341 |
while (iclLoader->GetId().Id() == KDummyGraphicId)
|
sl@0
|
1342 |
{
|
sl@0
|
1343 |
iTimer->Wait(1000);
|
sl@0
|
1344 |
}
|
sl@0
|
1345 |
iAnimId = iclLoader->GetId();
|
sl@0
|
1346 |
|
sl@0
|
1347 |
PrepGc();
|
sl@0
|
1348 |
iGc->DrawWsGraphic(iAnimId,iPosition1,msgBuf.Pckg());
|
sl@0
|
1349 |
RetireGc();
|
sl@0
|
1350 |
|
sl@0
|
1351 |
// run the animation
|
sl@0
|
1352 |
RunAnimation(iclLoader->FrameCount());
|
sl@0
|
1353 |
|
sl@0
|
1354 |
// compare the graphic in both positions
|
sl@0
|
1355 |
TestForDifferentBitmaps();
|
sl@0
|
1356 |
|
sl@0
|
1357 |
iTimer->Cancel();
|
sl@0
|
1358 |
iclLoader->Cancel();
|
sl@0
|
1359 |
delete iclLoader;
|
sl@0
|
1360 |
msgBuf.Close();
|
sl@0
|
1361 |
}
|
sl@0
|
1362 |
|
sl@0
|
1363 |
|
sl@0
|
1364 |
|
sl@0
|
1365 |
/**
|
sl@0
|
1366 |
@SYMTestCaseID GRAPHICS-WSERV-0014
|
sl@0
|
1367 |
|
sl@0
|
1368 |
@SYMPREQ PREQ1246
|
sl@0
|
1369 |
|
sl@0
|
1370 |
@SYMTestCaseDesc Check an animation is not drawn if the command buffer it uses is invalid
|
sl@0
|
1371 |
|
sl@0
|
1372 |
@SYMTestPriority High
|
sl@0
|
1373 |
|
sl@0
|
1374 |
@SYMTestStatus Implemented
|
sl@0
|
1375 |
|
sl@0
|
1376 |
@SYMTestActions The test app creates CWsGraphicBitmapAnimation object then draws the animation using
|
sl@0
|
1377 |
a valid and invalid command buffer
|
sl@0
|
1378 |
|
sl@0
|
1379 |
@SYMTestExpectedResults The animation is drawn while using the valid command buffer but not drawn
|
sl@0
|
1380 |
when the command buffer is invalid
|
sl@0
|
1381 |
*/
|
sl@0
|
1382 |
void CWsGraphicBase::DoTestDrawInvalidAnimationIDL()
|
sl@0
|
1383 |
{
|
sl@0
|
1384 |
// test TWsGraphicControlStateTimed first, a valid command buffer
|
sl@0
|
1385 |
iTestLog.Append(_L("DrawInvalidAnimationID"));
|
sl@0
|
1386 |
iAnimData.Play(ETrue);
|
sl@0
|
1387 |
|
sl@0
|
1388 |
// invalid command buffer
|
sl@0
|
1389 |
_LIT8(KTestData2,"12345678");
|
sl@0
|
1390 |
|
sl@0
|
1391 |
// load and replace the animation
|
sl@0
|
1392 |
CIclLoader* iclLoader;
|
sl@0
|
1393 |
iclLoader = new(ELeave) CIclLoader();
|
sl@0
|
1394 |
iclLoader->ConstructL(KSymBallFile,false,false);
|
sl@0
|
1395 |
|
sl@0
|
1396 |
while (iclLoader->GetId().Id() == KDummyGraphicId)
|
sl@0
|
1397 |
{
|
sl@0
|
1398 |
iTimer->Wait(1000);
|
sl@0
|
1399 |
}
|
sl@0
|
1400 |
iAnimId = iclLoader->GetId();
|
sl@0
|
1401 |
|
sl@0
|
1402 |
PrepGc();
|
sl@0
|
1403 |
iGc->DrawWsGraphic(iAnimId,iPosition1,iAnimData.Pckg());
|
sl@0
|
1404 |
iGc->DrawWsGraphic(iAnimId,iPosition2,KTestData2);
|
sl@0
|
1405 |
RetireGc();
|
sl@0
|
1406 |
|
sl@0
|
1407 |
// run the animation
|
sl@0
|
1408 |
RunAnimation(iclLoader->FrameCount());
|
sl@0
|
1409 |
|
sl@0
|
1410 |
// compare the graphic in both positions
|
sl@0
|
1411 |
TestForDifferentBitmaps();
|
sl@0
|
1412 |
|
sl@0
|
1413 |
iAnimData.Stop(ETrue);
|
sl@0
|
1414 |
iTimer->Cancel();
|
sl@0
|
1415 |
iclLoader->Cancel();
|
sl@0
|
1416 |
delete iclLoader;
|
sl@0
|
1417 |
}
|
sl@0
|
1418 |
|
sl@0
|
1419 |
/**
|
sl@0
|
1420 |
@SYMTestCaseID GRAPHICS-WSERV-0015
|
sl@0
|
1421 |
|
sl@0
|
1422 |
@SYMPREQ PREQ1246
|
sl@0
|
1423 |
|
sl@0
|
1424 |
@SYMTestCaseDesc Check the sharing of graphics with other clients.
|
sl@0
|
1425 |
|
sl@0
|
1426 |
@SYMTestPriority High
|
sl@0
|
1427 |
|
sl@0
|
1428 |
@SYMTestStatus Implemented
|
sl@0
|
1429 |
|
sl@0
|
1430 |
@SYMTestActions The test app creates CWsGraphicBitmap object an then tests the sharing of the object with
|
sl@0
|
1431 |
different clients
|
sl@0
|
1432 |
|
sl@0
|
1433 |
@SYMTestExpectedResults The CWsGraphicBitmap object is shared correctly
|
sl@0
|
1434 |
*/
|
sl@0
|
1435 |
void CWsGraphicBase::DoTestDrawSharedGraphicL()
|
sl@0
|
1436 |
{
|
sl@0
|
1437 |
iTestLog.Append(_L("DrawSharedGraphic"));
|
sl@0
|
1438 |
_LIT_SECURE_ID(KTestSecId,0x10003a4b);
|
sl@0
|
1439 |
|
sl@0
|
1440 |
TUid uid1 = {0x12000021};
|
sl@0
|
1441 |
TWsGraphicId twsGraphicId1(uid1);
|
sl@0
|
1442 |
|
sl@0
|
1443 |
CFbsBitmap bitmap1;
|
sl@0
|
1444 |
CFbsBitmap mask1;
|
sl@0
|
1445 |
|
sl@0
|
1446 |
User::LeaveIfError(bitmap1.Load(MY_TEST_BITMAP,0));
|
sl@0
|
1447 |
mask1.Create(bitmap1.SizeInPixels(),iScreen->DisplayMode());
|
sl@0
|
1448 |
|
sl@0
|
1449 |
CWsGraphicBitmap* bTest = CWsGraphicBitmap::NewL(twsGraphicId1.Uid(), &bitmap1,&mask1);
|
sl@0
|
1450 |
|
sl@0
|
1451 |
// Try to draw the graphic in an client. Should fail as graphic is not shared
|
sl@0
|
1452 |
TRAPD(err, LaunchNewProcessL(KTestExe1, EFalse));
|
sl@0
|
1453 |
Test(err == KErrNone);
|
sl@0
|
1454 |
|
sl@0
|
1455 |
// Share the graphic globally and try to draw the graphic in an client. Should pass
|
sl@0
|
1456 |
Test(bTest->ShareGlobally()==KErrNone);
|
sl@0
|
1457 |
TRAP(err, LaunchNewProcessL(KTestExe2, ETrue));
|
sl@0
|
1458 |
Test(err == KErrNone);
|
sl@0
|
1459 |
|
sl@0
|
1460 |
// Unshare the graphic globally and try to draw the graphic in an client. Should fail
|
sl@0
|
1461 |
Test(bTest->UnShareGlobally()==KErrNone);
|
sl@0
|
1462 |
TRAP(err, LaunchNewProcessL(KTestExe3, EFalse));
|
sl@0
|
1463 |
Test(err == KErrNone);
|
sl@0
|
1464 |
|
sl@0
|
1465 |
// Share the graphic to a client and try to draw the graphic in the client. Should pass
|
sl@0
|
1466 |
Test(bTest->Share(KTestSecId)==KErrNone);
|
sl@0
|
1467 |
TRAP(err, LaunchNewProcessL(KTestExe4, ETrue));
|
sl@0
|
1468 |
Test(err == KErrNone);
|
sl@0
|
1469 |
|
sl@0
|
1470 |
// Unshare the graphic to a client and try to draw the graphic in the client. Should fail
|
sl@0
|
1471 |
Test(bTest->UnShare(KTestSecId)==KErrNone);
|
sl@0
|
1472 |
TRAP(err, LaunchNewProcessL(KTestExe5, EFalse));
|
sl@0
|
1473 |
Test(err == KErrNone);
|
sl@0
|
1474 |
|
sl@0
|
1475 |
delete bTest;
|
sl@0
|
1476 |
}
|
sl@0
|
1477 |
|
sl@0
|
1478 |
|
sl@0
|
1479 |
void CWsGraphicBase::DoTestL(TInt aTestNo)
|
sl@0
|
1480 |
{
|
sl@0
|
1481 |
switch (aTestNo)
|
sl@0
|
1482 |
{
|
sl@0
|
1483 |
case ETestCreateGraphicUID:
|
sl@0
|
1484 |
DoTestCreateGraphicUidL();
|
sl@0
|
1485 |
break;
|
sl@0
|
1486 |
case ETestCreateGraphicID:
|
sl@0
|
1487 |
DoTestCreateGraphicIdL();
|
sl@0
|
1488 |
break;
|
sl@0
|
1489 |
case ETestUpdateGraphic:
|
sl@0
|
1490 |
DoTestUpdateGraphicL();
|
sl@0
|
1491 |
break;
|
sl@0
|
1492 |
case ETestDeleteGraphic:
|
sl@0
|
1493 |
DoTestDeleteGraphicL();
|
sl@0
|
1494 |
break;
|
sl@0
|
1495 |
case ETestDrawInvalideBitmapID:
|
sl@0
|
1496 |
DoTestDrawInvalidBitmapIDL();
|
sl@0
|
1497 |
break;
|
sl@0
|
1498 |
case ETestDrawGraphic:
|
sl@0
|
1499 |
DoTestDrawGraphicL();
|
sl@0
|
1500 |
break;
|
sl@0
|
1501 |
case ETestDrawGraphicID:
|
sl@0
|
1502 |
DoTestDrawGraphicIDL();
|
sl@0
|
1503 |
break;
|
sl@0
|
1504 |
case ETestDrawGraphicCompare:
|
sl@0
|
1505 |
DoTestDrawGraphicCompareL();
|
sl@0
|
1506 |
break;
|
sl@0
|
1507 |
case ETestDrawGraphicSessionHandle:
|
sl@0
|
1508 |
DoTestDrawGraphicSessionHandleL();
|
sl@0
|
1509 |
break;
|
sl@0
|
1510 |
#ifdef _DEBUG
|
sl@0
|
1511 |
// These tests require debug-only API to simulate OOM. Running
|
sl@0
|
1512 |
// the tests in non-debug environments invalidates the tests.
|
sl@0
|
1513 |
case ETestDrawAnimatedGraphicUID:
|
sl@0
|
1514 |
DoTestDrawAnimatedGraphicUIDL();
|
sl@0
|
1515 |
break;
|
sl@0
|
1516 |
case ETestDrawAnimatedGraphicID:
|
sl@0
|
1517 |
DoTestDrawAnimatedGraphicIDL();
|
sl@0
|
1518 |
break;
|
sl@0
|
1519 |
case ETestCreateMsgGraphicMsgBuf:
|
sl@0
|
1520 |
DoTestCreateMsgGraphicMsgBufL();
|
sl@0
|
1521 |
break;
|
sl@0
|
1522 |
case ETestDrawReplaceGraphicID:
|
sl@0
|
1523 |
DoTestDrawReplaceGraphicIDL();
|
sl@0
|
1524 |
break;
|
sl@0
|
1525 |
case ETestDrawInvalidAnimationID:
|
sl@0
|
1526 |
DoTestDrawInvalidAnimationIDL();
|
sl@0
|
1527 |
break;
|
sl@0
|
1528 |
#endif
|
sl@0
|
1529 |
case ETestDrawSharedGraphic:
|
sl@0
|
1530 |
DoTestDrawSharedGraphicL();
|
sl@0
|
1531 |
break;
|
sl@0
|
1532 |
}
|
sl@0
|
1533 |
RDebug::Print(iTestLog);
|
sl@0
|
1534 |
iTestLog.Delete(0,256);
|
sl@0
|
1535 |
}
|
sl@0
|
1536 |
|
sl@0
|
1537 |
// writes out to WSERV.log if error
|
sl@0
|
1538 |
void CWsGraphicBase::Test(TInt aCondition)
|
sl@0
|
1539 |
{
|
sl@0
|
1540 |
if(!aCondition)
|
sl@0
|
1541 |
{
|
sl@0
|
1542 |
TBuf<KMaxLogLength> buf;
|
sl@0
|
1543 |
_LIT(Fail,"AUTO Failed in WsGraphics Test : ");
|
sl@0
|
1544 |
buf.Append(Fail);
|
sl@0
|
1545 |
buf.Append(iTestLog);
|
sl@0
|
1546 |
RDebug::Print(buf);
|
sl@0
|
1547 |
RProcess().Terminate(KErrGeneral);
|
sl@0
|
1548 |
}
|
sl@0
|
1549 |
}
|
sl@0
|
1550 |
|
sl@0
|
1551 |
//
|
sl@0
|
1552 |
// CWsGraphicBase::RunAnimation
|
sl@0
|
1553 |
// Redraw event listener is launched & the
|
sl@0
|
1554 |
// animation is given a total of KAnimationRunTime (25 seconds) to run a single loop
|
sl@0
|
1555 |
//
|
sl@0
|
1556 |
void CWsGraphicBase::RunAnimation(TInt aFrameCount)
|
sl@0
|
1557 |
{
|
sl@0
|
1558 |
--aFrameCount; // account for the fact the initial frame is already displayed
|
sl@0
|
1559 |
iRedrawListener->SetFrameCount(aFrameCount);
|
sl@0
|
1560 |
iRedrawListener->RequestRedraw();
|
sl@0
|
1561 |
iTimer->Wait(KAnimationRunTime);
|
sl@0
|
1562 |
if (iAnimData.IsPlaying())
|
sl@0
|
1563 |
{
|
sl@0
|
1564 |
iAnimData.Stop(ETrue);
|
sl@0
|
1565 |
}
|
sl@0
|
1566 |
iRedrawListener->Cancel();
|
sl@0
|
1567 |
iAnimData.Stop(EFalse);
|
sl@0
|
1568 |
Test(iRedrawListener->GetFrameCount() == 0); // ensure the animation ran through until last frame
|
sl@0
|
1569 |
}
|
sl@0
|
1570 |
|
sl@0
|
1571 |
void MainL()
|
sl@0
|
1572 |
{
|
sl@0
|
1573 |
TInt testCount = KErrNone;
|
sl@0
|
1574 |
|
sl@0
|
1575 |
//Read the argument from the command line for current screen number
|
sl@0
|
1576 |
TBuf<256> commandLine;
|
sl@0
|
1577 |
User::CommandLine(commandLine);
|
sl@0
|
1578 |
TLex lex(commandLine);
|
sl@0
|
1579 |
lex.NextToken();
|
sl@0
|
1580 |
lex.SkipSpace();
|
sl@0
|
1581 |
TInt screenNumber=(TInt)lex.Get();
|
sl@0
|
1582 |
|
sl@0
|
1583 |
CActiveScheduler* activeScheduler=new(ELeave) CActiveScheduler;
|
sl@0
|
1584 |
CActiveScheduler::Install(activeScheduler);
|
sl@0
|
1585 |
CleanupStack::PushL(activeScheduler);
|
sl@0
|
1586 |
|
sl@0
|
1587 |
CWsGraphicBase testBase(screenNumber);
|
sl@0
|
1588 |
testBase.ConstructL();
|
sl@0
|
1589 |
|
sl@0
|
1590 |
// run through all the tests
|
sl@0
|
1591 |
while (testCount < CWsGraphicBase::ETestMaxNumberOfTests)
|
sl@0
|
1592 |
{
|
sl@0
|
1593 |
testBase.DoTestL(testCount);
|
sl@0
|
1594 |
testCount++;
|
sl@0
|
1595 |
}
|
sl@0
|
1596 |
|
sl@0
|
1597 |
CleanupStack::PopAndDestroy(activeScheduler);
|
sl@0
|
1598 |
}
|
sl@0
|
1599 |
|
sl@0
|
1600 |
GLDEF_C TInt E32Main()
|
sl@0
|
1601 |
{
|
sl@0
|
1602 |
CTrapCleanup* cleanUpStack=CTrapCleanup::New();
|
sl@0
|
1603 |
if(cleanUpStack==NULL)
|
sl@0
|
1604 |
{
|
sl@0
|
1605 |
return KErrNoMemory;
|
sl@0
|
1606 |
}
|
sl@0
|
1607 |
TRAPD(err, MainL());
|
sl@0
|
1608 |
delete cleanUpStack;
|
sl@0
|
1609 |
return(err);
|
sl@0
|
1610 |
}
|