os/graphics/windowing/windowserver/test/t_ratelimiter/src/t_wservratelimiterteststep.cpp
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/graphics/windowing/windowserver/test/t_ratelimiter/src/t_wservratelimiterteststep.cpp Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,423 @@
1.4 +// Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
1.5 +// All rights reserved.
1.6 +// This component and the accompanying materials are made available
1.7 +// under the terms of "Eclipse Public License v1.0"
1.8 +// which accompanies this distribution, and is available
1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.10 +//
1.11 +// Initial Contributors:
1.12 +// Nokia Corporation - initial contribution.
1.13 +//
1.14 +// Contributors:
1.15 +//
1.16 +// Description:
1.17 +//
1.18 +
1.19 +/**
1.20 + @file
1.21 + @test
1.22 + @internalComponent
1.23 +*/
1.24 +
1.25 +#include "t_wservratelimiterteststep.h"
1.26 +#include <test/tefunit.h>
1.27 +#include <e32const.h>
1.28 +#include <gdi.h>
1.29 +#include <stdlib.h>
1.30 +#include "constants.h"
1.31 +
1.32 +const TPoint KWinPos(0,0);
1.33 +const TSize KWinSize(640,240);
1.34 +const TRect KWinRect(KWinPos,KWinSize);
1.35 +const TRect KEllipseRect(TPoint(10,10), TSize(50,50));
1.36 +
1.37 +//Name of the test step
1.38 +_LIT(KT_WServRateLimiterTestStep,"T_WServRateLimiterTestStep");
1.39 +
1.40 +
1.41 +/**
1.42 + The test code manager, provides functions to set active object
1.43 + with lowest priority for running tests in auto mode.
1.44 + */
1.45 +class CTestManager : public CActive
1.46 + {
1.47 +friend class CT_WServRateLimiterTestStep;
1.48 +protected:
1.49 + static CTestManager* NewL(MTestCases* aAutoTestApp);
1.50 + ~CTestManager();
1.51 + void FinishAllTestCases();
1.52 + void StartTest(); //initialize an active object and set it status as active
1.53 +private:
1.54 + CTestManager(MTestCases* aAutoTestApp);
1.55 + // from CActive
1.56 + void RunL();
1.57 + void DoCancel();
1.58 +private:
1.59 + MTestCases* iTestCase;
1.60 + TInt iCurTestCaseNumber; //a current test case, every time when function RunTestCaseL is called this member inc by one
1.61 + TBool iTestCompleted;
1.62 + };
1.63 +
1.64 +/** Construct an active object with the lowest priority */
1.65 +CTestManager::CTestManager(MTestCases* aTestCases) :
1.66 + CActive(EPriorityIdle),
1.67 + iTestCase(aTestCases)
1.68 + {
1.69 + }
1.70 +
1.71 +CTestManager::~CTestManager()
1.72 + {
1.73 + Cancel();
1.74 + }
1.75 +
1.76 +CTestManager* CTestManager::NewL(MTestCases* aTestCases)
1.77 + {
1.78 + CTestManager *theTestManager=new (ELeave) CTestManager(aTestCases);
1.79 + CActiveScheduler::Add(theTestManager);
1.80 + return theTestManager;
1.81 + }
1.82 +
1.83 +void CTestManager::RunL()
1.84 + {
1.85 + if( iTestCompleted)
1.86 + {
1.87 + return;
1.88 + }
1.89 +
1.90 + // debug statement to indicate progress of test suite by
1.91 + // printing the sub-test that is currently active
1.92 + TTime timeStamp;
1.93 + timeStamp.HomeTime();
1.94 + TBuf<50> dateStr;
1.95 + _LIT(KDateString3,"%-B%:0%J%:1%T%:2%S%:3 %Cms");
1.96 + timeStamp.FormatL(dateStr, KDateString3);
1.97 + RDebug::Print(_L("%S - Test Case Number: %d"), &dateStr, ++iCurTestCaseNumber);
1.98 +
1.99 + iTestCase -> RunTestCaseL(iCurTestCaseNumber);
1.100 + if(!iTestCompleted)
1.101 + {
1.102 + StartTest();
1.103 + }
1.104 + }
1.105 +
1.106 +void CTestManager::DoCancel()
1.107 + {
1.108 + iTestCompleted = ETrue;
1.109 + }
1.110 +
1.111 +/**
1.112 + Initialize an active object and set it as active
1.113 + */
1.114 +void CTestManager::StartTest()
1.115 + {
1.116 + TRequestStatus *pS= (&iStatus);
1.117 + User::RequestComplete(pS, 0);
1.118 + SetActive();
1.119 + }
1.120 +
1.121 +
1.122 +/**
1.123 + Stop active scheduler, and quit a test step
1.124 + */
1.125 +void CTestManager::FinishAllTestCases()
1.126 + {
1.127 + iTestCompleted = ETrue;
1.128 + CActiveScheduler::Stop();
1.129 + }
1.130 +
1.131 +
1.132 +//
1.133 +// Wait till redraws finished //
1.134 +//
1.135 +
1.136 +enum TTRateLimiterActivePriorities
1.137 + {
1.138 + ETRateLimiterRedrawActivePriority=-10,
1.139 + };
1.140 +
1.141 +class CStopTheScheduler : public CAsyncOneShot
1.142 + {
1.143 +public:
1.144 + CStopTheScheduler(TInt aPriority);
1.145 + static CStopTheScheduler* NewL(TInt aPriority);
1.146 + void RunL();
1.147 + };
1.148 +
1.149 +CStopTheScheduler* CStopTheScheduler::NewL(TInt aPriority)
1.150 + {
1.151 + return new(ELeave)CStopTheScheduler(aPriority);
1.152 + }
1.153 +
1.154 +CStopTheScheduler::CStopTheScheduler(TInt aPriority)
1.155 + :CAsyncOneShot(aPriority)
1.156 + {
1.157 + }
1.158 +
1.159 +void CStopTheScheduler::RunL()
1.160 + {
1.161 + CActiveScheduler::Stop();
1.162 + }
1.163 +
1.164 +void WaitForRedrawsToFinish()
1.165 + {
1.166 + CStopTheScheduler* ps=new CStopTheScheduler(ETRateLimiterRedrawActivePriority);
1.167 + if(ps)
1.168 + {
1.169 + ps->Call();
1.170 + CActiveScheduler::Start();
1.171 + delete ps;
1.172 + }
1.173 + }
1.174 +
1.175 +/**
1.176 +Constructor of CT_WServRateLimiterTestStep
1.177 +*/
1.178 +CT_WServRateLimiterTestStep::CT_WServRateLimiterTestStep():
1.179 + iTwoScreens(EFalse)
1.180 + {
1.181 + SetTestStepName(KT_WServRateLimiterTestStep);
1.182 + }
1.183 +
1.184 +/**
1.185 +Destructor of CT_WServRateLimiterTestStep
1.186 +*/
1.187 +CT_WServRateLimiterTestStep::~CT_WServRateLimiterTestStep()
1.188 + {
1.189 + delete iGc;
1.190 + delete iGc2;
1.191 + delete iScreen;
1.192 + delete iScreen1;
1.193 + iWinGroup.Close();
1.194 + iWinGroup1.Close();
1.195 + iWsSession.Flush();
1.196 + iWsSession.Close();
1.197 + if(iTestManager)
1.198 + {
1.199 + iTestManager -> Cancel();
1.200 + }
1.201 + delete iTestManager;
1.202 + }
1.203 +
1.204 +/**
1.205 +Starts test step
1.206 +@return TVerdict pass / fail
1.207 +*/
1.208 +enum TVerdict CT_WServRateLimiterTestStep::doTestStepL()
1.209 + {
1.210 + iDisplayMode = EColor64K;
1.211 + User::LeaveIfError(iWsSession.Connect());
1.212 +
1.213 + // Screen 1 setup
1.214 + iScreen = new (ELeave) CWsScreenDevice(iWsSession);
1.215 + User::LeaveIfError(iScreen->Construct());
1.216 + iWinGroup = RWindowGroup(iWsSession);
1.217 + User::LeaveIfError(iWinGroup.Construct(KNullWsHandle, iScreen));
1.218 + iWinGroup.AutoForeground(ETrue);
1.219 +
1.220 + // Gc setup
1.221 + iGc = new (ELeave) CWindowGc(iScreen);
1.222 + User::LeaveIfError(iGc->Construct());
1.223 +
1.224 + // Screen 2 setup
1.225 + iScreen1 = new (ELeave) CWsScreenDevice(iWsSession);
1.226 + if (iWsSession.NumberOfScreens() > 1)
1.227 + {
1.228 + iTwoScreens = ETrue;
1.229 + }
1.230 + if (iTwoScreens)
1.231 + {
1.232 + User::LeaveIfError(iScreen1->Construct(1));
1.233 + iWinGroup1 = RWindowGroup(iWsSession);
1.234 + User::LeaveIfError(iWinGroup1.Construct(KNullWsHandle, iScreen1) );
1.235 + iWinGroup1.AutoForeground(ETrue);
1.236 +
1.237 + // Gc setup
1.238 + iGc2 = new (ELeave) CWindowGc(iScreen1);
1.239 + User::LeaveIfError(iGc2->Construct());
1.240 + }
1.241 +
1.242 + iWsSession.Finish();
1.243 +
1.244 + CActiveScheduler* theAs = new (ELeave) CActiveScheduler;
1.245 + CleanupStack::PushL(theAs);
1.246 + CActiveScheduler::Install(theAs);
1.247 +
1.248 + iTestManager = CTestManager::NewL(this);
1.249 + iTestManager -> StartTest();
1.250 + CActiveScheduler::Start();
1.251 +
1.252 + CleanupStack::PopAndDestroy(theAs);
1.253 +
1.254 + return TestStepResult();
1.255 + }
1.256 +
1.257 +/**
1.258 +Creates a RWindow
1.259 +@param aWinGroup The window group object
1.260 +@param aWin The window object
1.261 +@param aPos The Position of the window
1.262 +@param aBkgdColor The background color of the window
1.263 +@param aSize The size of the window
1.264 +@param aHandle The handle of the window
1.265 +*/
1.266 +void CT_WServRateLimiterTestStep::CreateRWindowL(const RWindowGroup& aWinGroup,
1.267 + RWindow& aWin,
1.268 + const TPoint& aPos,
1.269 + const TRgb& aBkgdColor,
1.270 + const TSize& aWinSize,
1.271 + const TUint32 aHandle)
1.272 + {
1.273 + aWin = RWindow( iWsSession );
1.274 + CleanupClosePushL( aWin );
1.275 + User::LeaveIfError( aWin.Construct( aWinGroup, aHandle ) );
1.276 + CleanupStack::Pop(&aWin);
1.277 + aWin.SetExtent(aPos, aWinSize);
1.278 + aWin.SetBackgroundColor( aBkgdColor );
1.279 + aWin.Activate();
1.280 + aWin.SetVisible( ETrue );
1.281 + }
1.282 +
1.283 +/**
1.284 +Draw the actual animation
1.285 +@param aWin The window object
1.286 +@param aGraphic The graphic to draw
1.287 +@param aGc The gc do draw with
1.288 +*/
1.289 +void CT_WServRateLimiterTestStep::DrawGraphic(RWindow& aWin, CWsGraphic* aGraphic, CWindowGc* aGc)
1.290 + {
1.291 + aGc->Activate(aWin);
1.292 + TBuf8<1> animData;
1.293 + animData.Append(0);
1.294 + aGc->DrawWsGraphic(aGraphic->Id(),TRect(KWinPos, KWinSize),animData);
1.295 + aGc->Deactivate();
1.296 + }
1.297 +
1.298 +/**
1.299 +@param aActualFrameRate The actual frame rate of the animation
1.300 +@param aExpectedFrameRate The expected frame rate of the animation
1.301 +@param aErrorThreshhold The error allowed between the actual and expected frame rate
1.302 +*/
1.303 +TBool CT_WServRateLimiterTestStep::IsRunningAtExpectedFrameRate(TReal aActualFrameRate, TReal aExpectedFrameRate, TReal aErrorThreshHold)
1.304 + {
1.305 + TReal diff=aActualFrameRate-aExpectedFrameRate;
1.306 + return (-diff<=aErrorThreshHold && diff<=aErrorThreshHold);
1.307 + }
1.308 +
1.309 +/**
1.310 +@SYMTestCaseID GRAPHICS-WSERV-2095-0014
1.311 +@SYMPREQ 2095
1.312 +@SYMTestCaseDesc Running a CRP animation on one screen at a limited rate or both screens both at different rates
1.313 +@SYMTestActions Run CRP animation on one or 2 screens if 2 are available
1.314 +@SYMTestStatus Implemented
1.315 +@SYMTestPriority 2
1.316 +@SYMTestExpectedResults If 1 screen available:
1.317 + CRP animation occurs at ratelimited rate
1.318 + If 2 screens available:
1.319 + CRP animation occur at different rates on both screens.
1.320 + CRP animation occur at expected rates on both screens.
1.321 +@SYMTestType CT
1.322 +*/
1.323 +void CT_WServRateLimiterTestStep::TestRateLimitedAnimationL()
1.324 + {
1.325 + CWsRateLimitGraphic* rateLimitGraphic1 = CWsRateLimitGraphic::NewL();
1.326 + CleanupStack::PushL(rateLimitGraphic1);
1.327 +
1.328 + CWsRateLimitGraphic* rateLimitGraphic2 = NULL;
1.329 + if (iTwoScreens)
1.330 + {
1.331 + rateLimitGraphic2 = CWsRateLimitGraphic::NewL();
1.332 + CleanupStack::PushL(rateLimitGraphic2);
1.333 + }
1.334 +
1.335 + RWindow win1;
1.336 + CleanupClosePushL(win1);
1.337 + CreateRWindowL(iWinGroup, win1, KWinPos, KRgbBlue, KWinSize);
1.338 + win1.BeginRedraw();
1.339 + DrawGraphic(win1, rateLimitGraphic1, iGc); // running at a limited rate
1.340 + win1.EndRedraw();
1.341 +
1.342 + RWindow win2;
1.343 + if (iTwoScreens)
1.344 + {
1.345 + CleanupClosePushL(win2);
1.346 + CreateRWindowL(iWinGroup1, win2, KWinPos, KRgbBlue, KWinSize);
1.347 + win2.BeginRedraw();
1.348 + DrawGraphic(win2, rateLimitGraphic2, iGc2); // running flat out
1.349 + win2.EndRedraw();
1.350 + }
1.351 +
1.352 + iWsSession.Finish();
1.353 +
1.354 + User::After(KAnimLength + 2000000); // Animation length + 2 secs
1.355 +
1.356 + //Stores data obtained from server side of CRP
1.357 + TAnimData animData;
1.358 +
1.359 + //Invoke the plug-in and get the frame rate values
1.360 + Mem::FillZ(&animData, sizeof(TAnimData));
1.361 +
1.362 + // Retrieve anim data from first crp
1.363 + rateLimitGraphic1->QueryPluginForFrameRate(animData);
1.364 + iWsSession.Finish();
1.365 + WaitForRedrawsToFinish();
1.366 + TReal frameRate1 = animData.iFrameRate;
1.367 +
1.368 + TReal frameRate2 = 0.0;
1.369 + if (iTwoScreens)
1.370 + {
1.371 + // Retrieve anim data from second crp
1.372 + rateLimitGraphic2->QueryPluginForFrameRate(animData);
1.373 + iWsSession.Finish();
1.374 + WaitForRedrawsToFinish();
1.375 + frameRate2 = animData.iFrameRate;
1.376 + }
1.377 +
1.378 + /* Test, screen0(first screen) is running at approximately the correct rate */
1.379 + TReal rateLimtedExpectedFrameRate = KOneSecondInMicroSecs / KFrameRateDelay;
1.380 + INFO_PRINTF2(_L("Test if screen0 is running at approximately the correct rate of %f"), rateLimtedExpectedFrameRate);
1.381 + INFO_PRINTF2(_L("Screen0 Actual Frame Rate = %f"), frameRate1);
1.382 + TBool isCorrectRate1 = IsRunningAtExpectedFrameRate(frameRate1,rateLimtedExpectedFrameRate, KStdErrorThreshHold);
1.383 + TEST(isCorrectRate1);
1.384 +
1.385 + if (iTwoScreens)
1.386 + {
1.387 + /* Test, screen1(second screen) is running at approximately the correct rate */
1.388 + INFO_PRINTF2(_L("Test if screen1 is running at faster than %f fps"), KStdMinimumFrameRate);
1.389 + INFO_PRINTF2(_L("Screen1 Actual Frame Rate = %f"), frameRate2);
1.390 + TBool isCorrectRate2 = frameRate2 > KStdMinimumFrameRate;
1.391 + TEST(isCorrectRate2);
1.392 + }
1.393 +
1.394 + if (iTwoScreens)
1.395 + {
1.396 + CleanupStack::PopAndDestroy(4, rateLimitGraphic1);
1.397 + }
1.398 + else
1.399 + {
1.400 + CleanupStack::PopAndDestroy(2,rateLimitGraphic1);
1.401 + }
1.402 +
1.403 + }
1.404 +
1.405 +void CT_WServRateLimiterTestStep::RunTestCaseL(TInt /*aCurTestCase*/)
1.406 + {
1.407 + switch( iTestId )
1.408 + {
1.409 + case 0:
1.410 + if (iTwoScreens)
1.411 + {
1.412 + INFO_PRINTF1(_L("Testing both screens running animation at different frame rates"));
1.413 + }
1.414 + else
1.415 + {
1.416 + INFO_PRINTF1(_L("Testing one screen running animation at ratelimited frame rate"));
1.417 + }
1.418 +
1.419 + TestRateLimitedAnimationL();
1.420 + break;
1.421 + default:
1.422 + iTestManager->FinishAllTestCases();
1.423 + break;
1.424 + }
1.425 + iTestId++;
1.426 + }