sl@0: // Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // sl@0: sl@0: #ifndef OPENWFTEST_H sl@0: #define OPENWFTEST_H sl@0: sl@0: // INCLUDES sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: #include "surfaceutility.h" sl@0: sl@0: class CTestExecuteLogger; sl@0: class CSurfaceStream; sl@0: sl@0: /* Color defines for openwf test.*/ sl@0: #define KDarkRed TRgb(127,0,0,255) sl@0: #define KRed TRgb(255,0,0,255) sl@0: #define KGreen TRgb(0,255,0,255) sl@0: #define KBlue TRgb(0,0,255,255) sl@0: #define KCyan TRgb(0,255,255,255) sl@0: #define KMagenta TRgb(255,0,255,255) sl@0: #define KYellow TRgb(255,255,0,255) sl@0: #define KBrown TRgb(150,75,0,255) sl@0: #define KBlack TRgb(0,0,0,255) sl@0: #define KBlackAlpha0 TRgb(0,0,0,0) sl@0: #define KWhite TRgb(255,255,255,255) sl@0: #define KWhiteAlpha0 TRgb(255,255,255,0) sl@0: #define KGray TRgb(127,127,127,255) sl@0: #define KGrayHalfAlpha TRgb(127,127,127,127) sl@0: sl@0: #define KMaxImagePathLength 100 sl@0: #define KMaxTestNameLength 20 sl@0: sl@0: class CActiveNotification : public CActive sl@0: { sl@0: public: sl@0: static CActiveNotification* NewL(RSurfaceUpdateSession& aSurfaceUpdateSession,TBool aActivate); sl@0: ~CActiveNotification(); sl@0: void Activate(); sl@0: // From CActive: sl@0: void RunL(); sl@0: void DoCancel(); sl@0: TInt RunError(TInt aError); sl@0: protected: sl@0: CActiveNotification(); sl@0: void ConstructL(RSurfaceUpdateSession& aSurfaceUpdateSession); sl@0: private: sl@0: RSurfaceUpdateSession iSurfaceUpdateSession; sl@0: }; sl@0: sl@0: //Use instead of User::After sl@0: class CActiveWaiter : public CActive sl@0: { sl@0: public: sl@0: static CActiveWaiter* NewL(); sl@0: ~CActiveWaiter(); sl@0: TInt Wait(TTimeIntervalMicroSeconds32 aDelay); sl@0: void StartWait(TTimeIntervalMicroSeconds32 aDelay); sl@0: // From CActive: sl@0: void RunL(); sl@0: void DoCancel(); sl@0: TInt RunError(TInt aError); sl@0: protected: sl@0: CActiveWaiter(); sl@0: void ConstructL(); sl@0: public: sl@0: TBool iRun; sl@0: protected: sl@0: RTimer iTimer; sl@0: }; sl@0: sl@0: /** sl@0: * COpenwfTest sl@0: * sl@0: */ sl@0: class COpenwfTest : public CTestFixture sl@0: { sl@0: public: sl@0: COpenwfTest(); sl@0: ~COpenwfTest(); sl@0: sl@0: virtual void SetupL(); sl@0: virtual void TearDownL(); sl@0: static CTestSuite* CreateSuiteL(const TDesC& aName); sl@0: sl@0: enum TCacheAttribute sl@0: { sl@0: /** not CPU cached */ sl@0: ENotCached = 0, sl@0: /** CPU cached */ sl@0: ECached = 1, sl@0: /** Not listed */ sl@0: ECacheNotlisted = 2 sl@0: }; sl@0: sl@0: enum TContiguousFlag sl@0: { sl@0: ENonContiguous = 0, sl@0: EContiguous = 1, sl@0: EFlagNotListed = 2 sl@0: }; sl@0: sl@0: enum TTestMode sl@0: { sl@0: EAutomatic = 0, sl@0: EManual = 1 sl@0: }; sl@0: sl@0: private: sl@0: TBool AcquireOnScreenStream(); sl@0: void ReleaseOnScreenStream(); sl@0: TBool CheckOnScreenStreamRect(TRect aRect, const TRgb& aExpectedColor, TInt aTolerance); sl@0: TBool CheckRect(const TSurfaceId& aSurface, TInt aNumOfBuffer, TRect aRect, sl@0: const TRgb& aExpectedColor, TInt aTolerance); sl@0: TBool CheckOnScreenReferenceImage(); sl@0: TBool SaveImage(const TSurfaceId& aSurfaceId, TInt aNumOfBuffer); sl@0: TInt WaitL(TTimeIntervalMicroSeconds32 aDelay); //aDelay in microseconds sl@0: TBool WaitForNotifications(TTimeIntervalMicroSeconds32 aMaxDelay,TInt aNotificatons); sl@0: void ReadIniData(); sl@0: void TearDown(); sl@0: void SetupEmptySceneL(TBool aAutonomous = ETrue); sl@0: sl@0: // Fastpath positive tests sl@0: void GRAPHICS_OPENWFC_FASTPATH_0000L(); sl@0: void GRAPHICS_OPENWFC_FASTPATH_0001L(); sl@0: void GRAPHICS_OPENWFC_FASTPATH_0002L(); sl@0: void GRAPHICS_OPENWFC_FASTPATH_0003L(); sl@0: void GRAPHICS_OPENWFC_FASTPATH_0004L(); sl@0: void GRAPHICS_OPENWFC_FASTPATH_0005L(); sl@0: void GRAPHICS_OPENWFC_FASTPATH_0006L(); sl@0: void GRAPHICS_OPENWFC_FASTPATH_0007L(); sl@0: sl@0: // Fastpath with notification tests sl@0: void FastpathNotificationsTestL(TBool aAutonomous); sl@0: void GRAPHICS_OPENWFC_FASTPATH_0010L(); sl@0: void GRAPHICS_OPENWFC_FASTPATH_0011L(); sl@0: void FastpathDispXNotificationsTestL(TBool aAutonomous); sl@0: void GRAPHICS_OPENWFC_FASTPATH_0012L(); sl@0: void GRAPHICS_OPENWFC_FASTPATH_0013L(); sl@0: sl@0: // Fastpath negative tests sl@0: void GRAPHICS_OPENWFC_FASTPATH_0020L(); sl@0: void GRAPHICS_OPENWFC_FASTPATH_0021L(); sl@0: void GRAPHICS_OPENWFC_FASTPATH_0022L(); sl@0: void GRAPHICS_OPENWFC_FASTPATH_0023L(); sl@0: void GRAPHICS_OPENWFC_FASTPATH_0024L(); sl@0: void GRAPHICS_OPENWFC_FASTPATH_0025L(); sl@0: void GRAPHICS_OPENWFC_FASTPATH_0026L(); sl@0: void GRAPHICS_OPENWFC_FASTPATH_0027L(); sl@0: sl@0: private: sl@0: TInt iFastpathableWidth; sl@0: TInt iFastpathableHeight; sl@0: TInt iStride; sl@0: TContiguousFlag iContiguous; sl@0: TUidPixelFormat iFastpathablePixelFormat; sl@0: TUidPixelFormat iNonFastpathablePixelFormat; sl@0: TInt iOffsetToFirstBuffer; sl@0: TInt iAlignment; sl@0: TBool iMappable; sl@0: TInt iMaxBuffers; sl@0: TInt iMinBuffers; sl@0: TCacheAttribute iCacheAttrib; sl@0: TInt iOffsetBetweenBuffers; sl@0: TInt iTestMode; sl@0: TBool iSaveImage; sl@0: TTimeIntervalMicroSeconds32 iCompositionPause; //delay in microseconds sl@0: TTimeIntervalMicroSeconds32 iManualPause; //delay for manual checking in microseconds sl@0: TBool iAllowManualPause; //some tests may not allow manual pauses sl@0: TInt iTolerance; sl@0: WFCint iDeviceId; sl@0: EGLSyncKHR iSync; sl@0: WFCDevice iDevice; sl@0: WFCContext iContext; sl@0: sl@0: TRect iFullScreenTRect; sl@0: WFCint iFullScreenRect[4]; sl@0: TRect iCenterTRect; sl@0: WFCint iCenterRect[4]; sl@0: WFCint iHalfSizeRect[4]; sl@0: sl@0: CActiveScheduler* iScheduler; sl@0: EGLDisplay iEGLDisplay; sl@0: CSurfaceUtility* iUtility; sl@0: //TPtrC iDir; sl@0: TPtrC iImageDirectory; sl@0: TBufC iTestName; sl@0: TBuf iImageAddress; sl@0: TInt iImageCounter; sl@0: SymbianStreamType iOnScreenStream; sl@0: SymbianStreamBuffer iOnScreenBuffer; sl@0: }; sl@0: sl@0: #endif // OPENWFTEST_H