os/graphics/windowing/windowserver/test/t_ratelimiter/src/t_wservratelimiterteststep.cpp
First public contribution.
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.
22 #include "t_wservratelimiterteststep.h"
23 #include <test/tefunit.h>
27 #include "constants.h"
29 const TPoint KWinPos(0,0);
30 const TSize KWinSize(640,240);
31 const TRect KWinRect(KWinPos,KWinSize);
32 const TRect KEllipseRect(TPoint(10,10), TSize(50,50));
34 //Name of the test step
35 _LIT(KT_WServRateLimiterTestStep,"T_WServRateLimiterTestStep");
39 The test code manager, provides functions to set active object
40 with lowest priority for running tests in auto mode.
42 class CTestManager : public CActive
44 friend class CT_WServRateLimiterTestStep;
46 static CTestManager* NewL(MTestCases* aAutoTestApp);
48 void FinishAllTestCases();
49 void StartTest(); //initialize an active object and set it status as active
51 CTestManager(MTestCases* aAutoTestApp);
56 MTestCases* iTestCase;
57 TInt iCurTestCaseNumber; //a current test case, every time when function RunTestCaseL is called this member inc by one
61 /** Construct an active object with the lowest priority */
62 CTestManager::CTestManager(MTestCases* aTestCases) :
63 CActive(EPriorityIdle),
68 CTestManager::~CTestManager()
73 CTestManager* CTestManager::NewL(MTestCases* aTestCases)
75 CTestManager *theTestManager=new (ELeave) CTestManager(aTestCases);
76 CActiveScheduler::Add(theTestManager);
77 return theTestManager;
80 void CTestManager::RunL()
87 // debug statement to indicate progress of test suite by
88 // printing the sub-test that is currently active
92 _LIT(KDateString3,"%-B%:0%J%:1%T%:2%S%:3 %Cms");
93 timeStamp.FormatL(dateStr, KDateString3);
94 RDebug::Print(_L("%S - Test Case Number: %d"), &dateStr, ++iCurTestCaseNumber);
96 iTestCase -> RunTestCaseL(iCurTestCaseNumber);
103 void CTestManager::DoCancel()
105 iTestCompleted = ETrue;
109 Initialize an active object and set it as active
111 void CTestManager::StartTest()
113 TRequestStatus *pS= (&iStatus);
114 User::RequestComplete(pS, 0);
120 Stop active scheduler, and quit a test step
122 void CTestManager::FinishAllTestCases()
124 iTestCompleted = ETrue;
125 CActiveScheduler::Stop();
130 // Wait till redraws finished //
133 enum TTRateLimiterActivePriorities
135 ETRateLimiterRedrawActivePriority=-10,
138 class CStopTheScheduler : public CAsyncOneShot
141 CStopTheScheduler(TInt aPriority);
142 static CStopTheScheduler* NewL(TInt aPriority);
146 CStopTheScheduler* CStopTheScheduler::NewL(TInt aPriority)
148 return new(ELeave)CStopTheScheduler(aPriority);
151 CStopTheScheduler::CStopTheScheduler(TInt aPriority)
152 :CAsyncOneShot(aPriority)
156 void CStopTheScheduler::RunL()
158 CActiveScheduler::Stop();
161 void WaitForRedrawsToFinish()
163 CStopTheScheduler* ps=new CStopTheScheduler(ETRateLimiterRedrawActivePriority);
167 CActiveScheduler::Start();
173 Constructor of CT_WServRateLimiterTestStep
175 CT_WServRateLimiterTestStep::CT_WServRateLimiterTestStep():
178 SetTestStepName(KT_WServRateLimiterTestStep);
182 Destructor of CT_WServRateLimiterTestStep
184 CT_WServRateLimiterTestStep::~CT_WServRateLimiterTestStep()
196 iTestManager -> Cancel();
203 @return TVerdict pass / fail
205 enum TVerdict CT_WServRateLimiterTestStep::doTestStepL()
207 iDisplayMode = EColor64K;
208 User::LeaveIfError(iWsSession.Connect());
211 iScreen = new (ELeave) CWsScreenDevice(iWsSession);
212 User::LeaveIfError(iScreen->Construct());
213 iWinGroup = RWindowGroup(iWsSession);
214 User::LeaveIfError(iWinGroup.Construct(KNullWsHandle, iScreen));
215 iWinGroup.AutoForeground(ETrue);
218 iGc = new (ELeave) CWindowGc(iScreen);
219 User::LeaveIfError(iGc->Construct());
222 iScreen1 = new (ELeave) CWsScreenDevice(iWsSession);
223 if (iWsSession.NumberOfScreens() > 1)
229 User::LeaveIfError(iScreen1->Construct(1));
230 iWinGroup1 = RWindowGroup(iWsSession);
231 User::LeaveIfError(iWinGroup1.Construct(KNullWsHandle, iScreen1) );
232 iWinGroup1.AutoForeground(ETrue);
235 iGc2 = new (ELeave) CWindowGc(iScreen1);
236 User::LeaveIfError(iGc2->Construct());
241 CActiveScheduler* theAs = new (ELeave) CActiveScheduler;
242 CleanupStack::PushL(theAs);
243 CActiveScheduler::Install(theAs);
245 iTestManager = CTestManager::NewL(this);
246 iTestManager -> StartTest();
247 CActiveScheduler::Start();
249 CleanupStack::PopAndDestroy(theAs);
251 return TestStepResult();
256 @param aWinGroup The window group object
257 @param aWin The window object
258 @param aPos The Position of the window
259 @param aBkgdColor The background color of the window
260 @param aSize The size of the window
261 @param aHandle The handle of the window
263 void CT_WServRateLimiterTestStep::CreateRWindowL(const RWindowGroup& aWinGroup,
266 const TRgb& aBkgdColor,
267 const TSize& aWinSize,
268 const TUint32 aHandle)
270 aWin = RWindow( iWsSession );
271 CleanupClosePushL( aWin );
272 User::LeaveIfError( aWin.Construct( aWinGroup, aHandle ) );
273 CleanupStack::Pop(&aWin);
274 aWin.SetExtent(aPos, aWinSize);
275 aWin.SetBackgroundColor( aBkgdColor );
277 aWin.SetVisible( ETrue );
281 Draw the actual animation
282 @param aWin The window object
283 @param aGraphic The graphic to draw
284 @param aGc The gc do draw with
286 void CT_WServRateLimiterTestStep::DrawGraphic(RWindow& aWin, CWsGraphic* aGraphic, CWindowGc* aGc)
291 aGc->DrawWsGraphic(aGraphic->Id(),TRect(KWinPos, KWinSize),animData);
296 @param aActualFrameRate The actual frame rate of the animation
297 @param aExpectedFrameRate The expected frame rate of the animation
298 @param aErrorThreshhold The error allowed between the actual and expected frame rate
300 TBool CT_WServRateLimiterTestStep::IsRunningAtExpectedFrameRate(TReal aActualFrameRate, TReal aExpectedFrameRate, TReal aErrorThreshHold)
302 TReal diff=aActualFrameRate-aExpectedFrameRate;
303 return (-diff<=aErrorThreshHold && diff<=aErrorThreshHold);
307 @SYMTestCaseID GRAPHICS-WSERV-2095-0014
309 @SYMTestCaseDesc Running a CRP animation on one screen at a limited rate or both screens both at different rates
310 @SYMTestActions Run CRP animation on one or 2 screens if 2 are available
311 @SYMTestStatus Implemented
313 @SYMTestExpectedResults If 1 screen available:
314 CRP animation occurs at ratelimited rate
315 If 2 screens available:
316 CRP animation occur at different rates on both screens.
317 CRP animation occur at expected rates on both screens.
320 void CT_WServRateLimiterTestStep::TestRateLimitedAnimationL()
322 CWsRateLimitGraphic* rateLimitGraphic1 = CWsRateLimitGraphic::NewL();
323 CleanupStack::PushL(rateLimitGraphic1);
325 CWsRateLimitGraphic* rateLimitGraphic2 = NULL;
328 rateLimitGraphic2 = CWsRateLimitGraphic::NewL();
329 CleanupStack::PushL(rateLimitGraphic2);
333 CleanupClosePushL(win1);
334 CreateRWindowL(iWinGroup, win1, KWinPos, KRgbBlue, KWinSize);
336 DrawGraphic(win1, rateLimitGraphic1, iGc); // running at a limited rate
342 CleanupClosePushL(win2);
343 CreateRWindowL(iWinGroup1, win2, KWinPos, KRgbBlue, KWinSize);
345 DrawGraphic(win2, rateLimitGraphic2, iGc2); // running flat out
351 User::After(KAnimLength + 2000000); // Animation length + 2 secs
353 //Stores data obtained from server side of CRP
356 //Invoke the plug-in and get the frame rate values
357 Mem::FillZ(&animData, sizeof(TAnimData));
359 // Retrieve anim data from first crp
360 rateLimitGraphic1->QueryPluginForFrameRate(animData);
362 WaitForRedrawsToFinish();
363 TReal frameRate1 = animData.iFrameRate;
365 TReal frameRate2 = 0.0;
368 // Retrieve anim data from second crp
369 rateLimitGraphic2->QueryPluginForFrameRate(animData);
371 WaitForRedrawsToFinish();
372 frameRate2 = animData.iFrameRate;
375 /* Test, screen0(first screen) is running at approximately the correct rate */
376 TReal rateLimtedExpectedFrameRate = KOneSecondInMicroSecs / KFrameRateDelay;
377 INFO_PRINTF2(_L("Test if screen0 is running at approximately the correct rate of %f"), rateLimtedExpectedFrameRate);
378 INFO_PRINTF2(_L("Screen0 Actual Frame Rate = %f"), frameRate1);
379 TBool isCorrectRate1 = IsRunningAtExpectedFrameRate(frameRate1,rateLimtedExpectedFrameRate, KStdErrorThreshHold);
380 TEST(isCorrectRate1);
384 /* Test, screen1(second screen) is running at approximately the correct rate */
385 INFO_PRINTF2(_L("Test if screen1 is running at faster than %f fps"), KStdMinimumFrameRate);
386 INFO_PRINTF2(_L("Screen1 Actual Frame Rate = %f"), frameRate2);
387 TBool isCorrectRate2 = frameRate2 > KStdMinimumFrameRate;
388 TEST(isCorrectRate2);
393 CleanupStack::PopAndDestroy(4, rateLimitGraphic1);
397 CleanupStack::PopAndDestroy(2,rateLimitGraphic1);
402 void CT_WServRateLimiterTestStep::RunTestCaseL(TInt /*aCurTestCase*/)
409 INFO_PRINTF1(_L("Testing both screens running animation at different frame rates"));
413 INFO_PRINTF1(_L("Testing one screen running animation at ratelimited frame rate"));
416 TestRateLimitedAnimationL();
419 iTestManager->FinishAllTestCases();