Update contrib.
1 // Copyright (c) 2010 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.
20 #include <test/tefunit.h>
22 #include <graphics/symbianstream.h>
23 #include <graphics/surfacemanager.h>
24 #include <graphics/streammap.h>
26 #include <graphics/eglsynchelper.h>
28 #include "surfaceutility.h"
30 class CTestExecuteLogger;
33 /* Color defines for openwf test.*/
34 #define KDarkRed TRgb(127,0,0,255)
35 #define KRed TRgb(255,0,0,255)
36 #define KGreen TRgb(0,255,0,255)
37 #define KBlue TRgb(0,0,255,255)
38 #define KCyan TRgb(0,255,255,255)
39 #define KMagenta TRgb(255,0,255,255)
40 #define KYellow TRgb(255,255,0,255)
41 #define KBrown TRgb(150,75,0,255)
42 #define KBlack TRgb(0,0,0,255)
43 #define KBlackAlpha0 TRgb(0,0,0,0)
44 #define KWhite TRgb(255,255,255,255)
45 #define KWhiteAlpha0 TRgb(255,255,255,0)
46 #define KGray TRgb(127,127,127,255)
47 #define KGrayHalfAlpha TRgb(127,127,127,127)
49 #define KMaxImagePathLength 100
50 #define KMaxTestNameLength 20
52 class CActiveNotification : public CActive
55 static CActiveNotification* NewL(RSurfaceUpdateSession& aSurfaceUpdateSession,TBool aActivate);
56 ~CActiveNotification();
61 TInt RunError(TInt aError);
63 CActiveNotification();
64 void ConstructL(RSurfaceUpdateSession& aSurfaceUpdateSession);
66 RSurfaceUpdateSession iSurfaceUpdateSession;
69 //Use instead of User::After
70 class CActiveWaiter : public CActive
73 static CActiveWaiter* NewL();
75 TInt Wait(TTimeIntervalMicroSeconds32 aDelay);
76 void StartWait(TTimeIntervalMicroSeconds32 aDelay);
80 TInt RunError(TInt aError);
94 class COpenwfTest : public CTestFixture
100 virtual void SetupL();
101 virtual void TearDownL();
102 static CTestSuite* CreateSuiteL(const TDesC& aName);
106 /** not CPU cached */
128 TBool AcquireOnScreenStream();
129 void ReleaseOnScreenStream();
130 TBool CheckOnScreenStreamRect(TRect aRect, const TRgb& aExpectedColor, TInt aTolerance);
131 TBool CheckRect(const TSurfaceId& aSurface, TInt aNumOfBuffer, TRect aRect,
132 const TRgb& aExpectedColor, TInt aTolerance);
133 TBool CheckOnScreenReferenceImage();
134 TBool SaveImage(const TSurfaceId& aSurfaceId, TInt aNumOfBuffer);
135 TInt WaitL(TTimeIntervalMicroSeconds32 aDelay); //aDelay in microseconds
136 TBool WaitForNotifications(TTimeIntervalMicroSeconds32 aMaxDelay,TInt aNotificatons);
139 void SetupEmptySceneL(TBool aAutonomous = ETrue);
141 // Fastpath positive tests
142 void GRAPHICS_OPENWFC_FASTPATH_0000L();
143 void GRAPHICS_OPENWFC_FASTPATH_0001L();
144 void GRAPHICS_OPENWFC_FASTPATH_0002L();
145 void GRAPHICS_OPENWFC_FASTPATH_0003L();
146 void GRAPHICS_OPENWFC_FASTPATH_0004L();
147 void GRAPHICS_OPENWFC_FASTPATH_0005L();
148 void GRAPHICS_OPENWFC_FASTPATH_0006L();
149 void GRAPHICS_OPENWFC_FASTPATH_0007L();
151 // Fastpath with notification tests
152 void FastpathNotificationsTestL(TBool aAutonomous);
153 void GRAPHICS_OPENWFC_FASTPATH_0010L();
154 void GRAPHICS_OPENWFC_FASTPATH_0011L();
155 void FastpathDispXNotificationsTestL(TBool aAutonomous);
156 void GRAPHICS_OPENWFC_FASTPATH_0012L();
157 void GRAPHICS_OPENWFC_FASTPATH_0013L();
159 // Fastpath negative tests
160 void GRAPHICS_OPENWFC_FASTPATH_0020L();
161 void GRAPHICS_OPENWFC_FASTPATH_0021L();
162 void GRAPHICS_OPENWFC_FASTPATH_0022L();
163 void GRAPHICS_OPENWFC_FASTPATH_0023L();
164 void GRAPHICS_OPENWFC_FASTPATH_0024L();
165 void GRAPHICS_OPENWFC_FASTPATH_0025L();
166 void GRAPHICS_OPENWFC_FASTPATH_0026L();
167 void GRAPHICS_OPENWFC_FASTPATH_0027L();
170 TInt iFastpathableWidth;
171 TInt iFastpathableHeight;
173 TContiguousFlag iContiguous;
174 TUidPixelFormat iFastpathablePixelFormat;
175 TUidPixelFormat iNonFastpathablePixelFormat;
176 TInt iOffsetToFirstBuffer;
181 TCacheAttribute iCacheAttrib;
182 TInt iOffsetBetweenBuffers;
185 TTimeIntervalMicroSeconds32 iCompositionPause; //delay in microseconds
186 TTimeIntervalMicroSeconds32 iManualPause; //delay for manual checking in microseconds
187 TBool iAllowManualPause; //some tests may not allow manual pauses
194 TRect iFullScreenTRect;
195 WFCint iFullScreenRect[4];
197 WFCint iCenterRect[4];
198 WFCint iHalfSizeRect[4];
200 CActiveScheduler* iScheduler;
201 EGLDisplay iEGLDisplay;
202 CSurfaceUtility* iUtility;
204 TPtrC iImageDirectory;
205 TBufC<KMaxTestNameLength> iTestName;
206 TBuf<KMaxImagePathLength> iImageAddress;
208 SymbianStreamType iOnScreenStream;
209 SymbianStreamBuffer iOnScreenBuffer;
212 #endif // OPENWFTEST_H