Update contrib.
1 // Copyright (c) 2008-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.
23 #include "teflogextensions.h"
24 #include "globalsettings.h"
25 #include "CWsGceCscBase.h"
27 #include <bitdrawinterfaceid.h>
28 #include <imageconversion.h>
29 #include <test/tefunit.h>
32 CWsGceCscBase::CWsGceCscBase():
38 CWsGceCscBase::~CWsGceCscBase()
41 TearDownFromDeleteL(); //This mechanism is not entirely clean to use.
44 void CWsGceCscBase::SetupL()
47 iRed.SetInternal(0xFFFF0000);
48 iGreen.SetInternal(0xFF00FF00);
49 iBlue.SetInternal(0xFF0000FF);
50 iCyan.SetInternal(0xFF00FFFF);
51 iMagenta.SetInternal(0xFFFF00FF);
52 iYellow.SetInternal(0xFFFFFF00);
53 iWhite.SetInternal(0xFFFFFFFF);
55 ASSERT_EQUALS_X(iSession.Connect(), KErrNone);
57 {//Stolen from TAuto CloseAllPanicWindows()
58 TInt idFocus = iSession.GetFocusWindowGroup();
60 event.SetType(EEventKey); //EEventKeyDown
61 TKeyEvent *keyEvent = event.Key();
62 keyEvent->iCode = EKeyEscape;
63 keyEvent->iScanCode = EStdKeyEscape;
64 keyEvent->iModifiers = 0;
66 while(idFocus != NULL && (theLimit-- > 0))
68 iSession.SendEventToAllWindowGroups(event);
69 TInt idNewFocus = iSession.GetFocusWindowGroup();
70 if (idNewFocus!=idFocus)
72 INFO_PRINTF1(_L("A window was closed [probably a panic box from the previous test]."));
79 TRAP(err, iScreenDevice = new (ELeave) CWsScreenDevice(iSession));
80 PRINT_ON_ERROR2_L(err, _L("Failed to create screen device: %d"), err);
81 ASSERT_EQUALS_X(iScreenDevice->Construct(TGlobalSettings::Instance().iScreen), KErrNone);
82 iDisplayMode = iScreenDevice->DisplayMode(); // Get default display mode
84 TRAP(err, iGc = new (ELeave) CWindowGc(iScreenDevice));
85 PRINT_ON_ERROR2_L(err, _L("Failed to create graphics context: %d"), err);
86 ASSERT_EQUALS_X(iGc->Construct(), KErrNone);
88 iGroup = RWindowGroup(iSession);
89 ASSERT_EQUALS_X(iGroup.Construct(++iWindowHandle,iScreenDevice), KErrNone);
92 RWindow testTrans(iSession);
93 ASSERT_EQUALS_X(testTrans.Construct(iGroup, ++iWindowHandle), KErrNone);
94 iTransparencyEnabled=(testTrans.SetTransparencyFactor(iWhite)==KErrNone);
97 //clean-up if previous test abended
98 if (PostTestCleanupInstance().iSharedUtility)
100 //Temp removed - may be causing ONB fails!
101 // if (PostTestCleanupInstance().iSharedUtility->DestroyAll())
103 // INFO_PRINTF1(_L("Destroyed some surfaces from previous test."));
107 if (!PostTestCleanupInstance().iCleanedUpOnExit)
108 PostTestCleanupInstance().iCleanedUpOnExit=EFalse;
110 if (!GCEIsSupported())
112 INFO_PRINTF1(_L("Some Setup skipped: GCE support is not loaded"));
116 TRAPD(err_FailedToCreateSurfaceUtility, iUtility = CSurfaceUtility::NewL( PostTestCleanupInstance().iSharedUtility));
117 ASSERT_EQUALS(err_FailedToCreateSurfaceUtility,KErrNone);
121 void CWsGceCscBase::TearDownL()
125 delete iScreenDevice;
132 PostTestCleanupInstance().iCleanedUpOnExit=ETrue;
136 void CWsGceCscBase::TearDownFromDeleteL()
138 CWsGceCscBase::TearDownL();
141 void CWsGceCscBase::Pause(TInt aMilliseconds)
143 User::After(TTimeIntervalMicroSeconds32(aMilliseconds * 1000));
146 /** Test using an indipendent method that GCE version of WServ is running
147 * This method can only be called after the testcase is started
149 * @return true if WServ version is GCE technology, false if legacy technology
151 TBool CWsGceCscBase::GCEIsSupported() const
153 CFbsDrawDevice* screenDevice=NULL;
154 TDisplayMode displayMode=iScreenDevice->DisplayMode();
155 TRAPD(err, screenDevice = CFbsDrawDevice::NewScreenDeviceL(TGlobalSettings::Instance().iScreen, displayMode));
160 rv=(screenDevice->GetInterface(KSurfaceInterfaceID, p)==KErrNone);
165 /** Test using an indipendent method that GCE version of WServ is running
166 * This method can be called at any time, even by external code, but creates temporary window session objects
168 * @return true if WServ version is GCE technology, false if legacy technology
170 TBool CWsGceCscBase::GCEIsSupportedStatic()
172 CFbsDrawDevice* screenDevice=NULL;
174 if (session.Connect()!=KErrNone)
178 CWsScreenDevice screen(session);
179 if (screen.Construct(TGlobalSettings::Instance().iScreen)!=KErrNone)
184 TDisplayMode displayMode=screen.DisplayMode();
185 TRAPD(err, screenDevice = CFbsDrawDevice::NewScreenDeviceL(TGlobalSettings::Instance().iScreen, displayMode));
190 rv=(screenDevice->GetInterface(KSurfaceInterfaceID, p)==KErrNone);
196 //Allocating an instance of surface utility here means all test code instances will share the same instance of the utility class.
197 // Owns the singleton
198 CWsGceCscBase::TPostTestCleanup& CWsGceCscBase::PostTestCleanupInstance()
201 class RPostTestCleanup:public TPostTestCleanup
207 iCleanedUpOnExit=ETrue;
211 // I want to cleanly release the surface utility, but at this point the threads have already been pulled down!
212 // if (iSharedUtility)
213 // delete iSharedUtility;
214 iSharedUtility=NULL; //avoid phoenix behaviour
217 return staticInstance;
220 // This handles any non-member uses of the extended ASSERT_XXX macros
221 extern void TefUnitFailLeaveL();
223 * side-effect: log the state info just before I leave!
224 * Note that this only logs intentional assertion failures.
225 * Fails due to panics or throws won't log this info.
227 void CWsGceCscBase::TefUnitFailLeaveL()
229 for (TInt line=0;line<KMaxInfoLines;line++)
230 if (iTestInfo[line].Length())
231 Logger().LogExtra((TText8*)"Test state at fail - line",line, ESevrAll, iTestInfo[line]);
232 TGlobalSettings::Instance().Report(Logger());
234 User::Leave(KErrTEFUnitFail);
237 TInt CWsGceCscBase::DebugInfo(TWsDebugInfoFunc aFunction,
240 const void*&aReturnedObject,
241 TInt aObjectSize)const
243 TInt reqSize=iSession.DebugInfo(aFunction,aHostBuffer,aParam);
244 aReturnedObject=NULL;
247 if ((reqSize%aObjectSize)!=0)
256 if (reqSize>aHostBuffer.MaxLength())
258 return reqSize/aObjectSize;
262 reqSize=aHostBuffer.MaxLength();
264 if ((reqSize%aObjectSize)!=0)
268 aReturnedObject=(const void*)aHostBuffer.Ptr();
269 reqSize/=aObjectSize;
273 void CWsGceCscBase::SetCompositionMode(RWindow& aWindow, TDisplayMode aMode)
275 iDisplayMode = (TDisplayMode)aWindow.SetRequiredDisplayMode(aMode);
276 aWindow.Invalidate();
277 aWindow.BeginRedraw();
281 TBool CWsGceCscBase::Compare(CFbsBitmap& aBitmap1, CFbsBitmap& aBitmap2)
283 if ((aBitmap1.SizeInPixels() == aBitmap2.SizeInPixels()) &&
284 (aBitmap1.DisplayMode() == aBitmap2.DisplayMode()))
286 TSize size = aBitmap1.SizeInPixels();
287 TInt width = size.iWidth;
288 TInt height = size.iHeight;
291 for (TInt i = 0; i < width; i++)
293 for (TInt j = 0; j < height; j++)
295 aBitmap1.GetPixel(color1, TPoint(i, j));
296 aBitmap2.GetPixel(color2, TPoint(i, j));
297 if (color1 != color2)
309 void CWsGceCscBase::ConstructOpaqueWindowL(RWindow& aWindow,
312 const TPoint &aPoint,
315 ASSERT_EQUALS_X(aWindow.Construct(iGroup, ++iWindowHandle), KErrNone);
316 aWindow.SetRequiredDisplayMode(iDisplayMode);
317 aWindow.SetExtent(aPoint, aSize);
318 aWindow.SetBackgroundColor(aColor);
319 aWindow.SetOrdinalPosition(aPos);
321 aWindow.BeginRedraw();
322 iGc->Activate(aWindow);
327 void CWsGceCscBase::ConstructOpaqueWindowLC(RWindow& aWindow,
330 const TPoint &aPoint,
333 ASSERT_EQUALS_X(aWindow.Construct(iGroup, ++iWindowHandle), KErrNone);
334 CleanupClosePushL(aWindow);
335 aWindow.SetRequiredDisplayMode(iDisplayMode);
336 aWindow.SetExtent(aPoint, aSize);
337 aWindow.SetBackgroundColor(aColor);
338 aWindow.SetOrdinalPosition(aPos);
339 aWindow.SetVisible(ETrue);
341 aWindow.BeginRedraw();
342 iGc->Activate(aWindow);
349 void CWsGceCscBase::SetBackgroundColorWindow(RWindow& aWindow, const TRgb& aColor)
351 aWindow.Invalidate();
352 aWindow.SetBackgroundColor(aColor);
353 aWindow.BeginRedraw();
354 iGc->Activate(aWindow);
359 void CWsGceCscBase::ConstructOpaqueSurfacedWindowLC(RWindow& aWindow,
362 const TPoint &aPoint,
364 TSurfaceId& aSurfaceID)
366 ASSERT_EQUALS_X(aWindow.Construct(iGroup, ++iWindowHandle), KErrNone);
367 CleanupClosePushL(aWindow);
368 aWindow.SetRequiredDisplayMode(iDisplayMode);
369 aWindow.SetExtent(aPoint, aSize);
370 aWindow.SetBackgroundColor(aColor);
371 aWindow.SetOrdinalPosition(aPos);
372 ASSERT_EQUALS_X(aWindow.SetBackgroundSurface(aSurfaceID), KErrNone);
374 aWindow.BeginRedraw();
375 iGc->Activate(aWindow);
380 void CWsGceCscBase::ConstructOpaqueSurfacedWindowL(RWindow& aWindow,
383 const TPoint& aPoint,
385 const TSurfaceId& aSurfaceID)
387 ASSERT_EQUALS_X(aWindow.Construct(iGroup, ++iWindowHandle), KErrNone);
388 aWindow.SetRequiredDisplayMode(iDisplayMode);
389 aWindow.SetExtent(aPoint, aSize);
390 aWindow.SetBackgroundColor(aColor);
391 aWindow.SetOrdinalPosition(aPos);
392 ASSERT_EQUALS_X(aWindow.SetBackgroundSurface(aSurfaceID), KErrNone);
394 aWindow.BeginRedraw();
395 iGc->Activate(aWindow);