os/graphics/windowing/windowserver/test/t_ratelimiter/src/t_wservratelimiterteststep.cpp
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
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".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 //
    15 
    16 /**
    17  @file
    18  @test
    19  @internalComponent
    20 */
    21 
    22 #include "t_wservratelimiterteststep.h"
    23 #include <test/tefunit.h>
    24 #include <e32const.h>
    25 #include <gdi.h>
    26 #include <stdlib.h>
    27 #include "constants.h"
    28 
    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));
    33 
    34 //Name of the test step
    35 _LIT(KT_WServRateLimiterTestStep,"T_WServRateLimiterTestStep");
    36 
    37 
    38 /**
    39   The test code manager, provides functions to set active object 
    40   with lowest priority for running tests in auto mode.
    41  */
    42 class CTestManager : public CActive
    43 	{
    44 friend class CT_WServRateLimiterTestStep;
    45 protected:
    46 	static CTestManager* NewL(MTestCases* aAutoTestApp);
    47 	~CTestManager();
    48 	void FinishAllTestCases();
    49 	void StartTest(); //initialize an active object and set it status as active
    50 private: 
    51 	CTestManager(MTestCases* aAutoTestApp);
    52 	// from CActive
    53 	void RunL();
    54 	void DoCancel();
    55 private:
    56 	MTestCases* iTestCase;
    57 	TInt iCurTestCaseNumber; //a current test case, every time when function RunTestCaseL is called this member inc by one
    58 	TBool iTestCompleted;
    59 	};
    60 
    61 /** Construct an active object with the lowest priority */
    62 CTestManager::CTestManager(MTestCases* aTestCases) :
    63 			CActive(EPriorityIdle), 
    64 			iTestCase(aTestCases)
    65 	{
    66 	}
    67 
    68 CTestManager::~CTestManager()
    69 	{
    70 	Cancel();
    71 	}
    72 
    73 CTestManager* CTestManager::NewL(MTestCases* aTestCases)
    74 	{
    75      CTestManager *theTestManager=new (ELeave) CTestManager(aTestCases);
    76      CActiveScheduler::Add(theTestManager);
    77 	 return theTestManager;
    78 	}
    79 
    80 void CTestManager::RunL()
    81 	{
    82 	if(	iTestCompleted)
    83 		{
    84 		return;
    85 		}
    86 	
    87 	// debug statement to indicate progress of test suite by
    88 	// printing the sub-test that is currently active
    89 	TTime timeStamp;
    90 	timeStamp.HomeTime();
    91 	TBuf<50> dateStr;
    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);
    95 	
    96 	iTestCase -> RunTestCaseL(iCurTestCaseNumber);
    97 	if(!iTestCompleted)
    98 		{
    99 		StartTest();
   100 		}
   101 	}
   102 
   103 void CTestManager::DoCancel()
   104 	{
   105 	iTestCompleted = ETrue;
   106 	}
   107 
   108 /**
   109  	Initialize an active object and set it as active
   110  */
   111 void CTestManager::StartTest()
   112 	{
   113 	TRequestStatus *pS= (&iStatus);
   114 	User::RequestComplete(pS, 0);
   115 	SetActive();
   116 	}
   117 
   118 
   119 /**
   120  Stop active scheduler, and quit a test step	
   121  */
   122 void CTestManager::FinishAllTestCases()
   123 	{
   124 	iTestCompleted = ETrue;
   125 	CActiveScheduler::Stop();
   126 	}
   127 
   128 
   129 //
   130 // Wait till redraws finished //
   131 //
   132 
   133 enum TTRateLimiterActivePriorities
   134 	{
   135 	ETRateLimiterRedrawActivePriority=-10,
   136 	};
   137 
   138 class CStopTheScheduler : public CAsyncOneShot
   139 	{
   140 public:
   141 	CStopTheScheduler(TInt aPriority);
   142 	static CStopTheScheduler* NewL(TInt aPriority);
   143 	void RunL();
   144 	};
   145 
   146 CStopTheScheduler* CStopTheScheduler::NewL(TInt aPriority)
   147 	{
   148 	return new(ELeave)CStopTheScheduler(aPriority);
   149 	}
   150 
   151 CStopTheScheduler::CStopTheScheduler(TInt aPriority)
   152 	:CAsyncOneShot(aPriority)
   153 	{
   154 	}
   155 
   156 void CStopTheScheduler::RunL()
   157 	{
   158 	CActiveScheduler::Stop();
   159 	}
   160 
   161 void WaitForRedrawsToFinish()
   162 	{
   163 	CStopTheScheduler* ps=new CStopTheScheduler(ETRateLimiterRedrawActivePriority);
   164 	if(ps)
   165 		{
   166 		ps->Call();
   167 		CActiveScheduler::Start();
   168 		delete ps;
   169 		}
   170 	}
   171 
   172 /**
   173 Constructor of CT_WServRateLimiterTestStep
   174 */
   175 CT_WServRateLimiterTestStep::CT_WServRateLimiterTestStep():
   176 		iTwoScreens(EFalse)
   177 	{
   178 	SetTestStepName(KT_WServRateLimiterTestStep);
   179 	}
   180 
   181 /**
   182 Destructor of CT_WServRateLimiterTestStep
   183 */
   184 CT_WServRateLimiterTestStep::~CT_WServRateLimiterTestStep()
   185 	{
   186 	delete iGc;
   187 	delete iGc2;
   188 	delete iScreen;
   189 	delete iScreen1;
   190 	iWinGroup.Close();
   191 	iWinGroup1.Close();
   192 	iWsSession.Flush();
   193 	iWsSession.Close();
   194 	if(iTestManager)
   195 		{
   196 		iTestManager -> Cancel();
   197 		}
   198 	delete iTestManager;
   199 	}
   200 
   201 /**
   202 Starts test step
   203 @return TVerdict pass / fail
   204 */
   205 enum TVerdict CT_WServRateLimiterTestStep::doTestStepL()
   206 	{
   207 	iDisplayMode = EColor64K;
   208 	User::LeaveIfError(iWsSession.Connect());
   209 
   210 	// Screen 1 setup
   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);
   216 	
   217 	// Gc setup
   218 	iGc = new (ELeave) CWindowGc(iScreen);
   219 	User::LeaveIfError(iGc->Construct());
   220 
   221 	// Screen 2 setup
   222 	iScreen1 = new (ELeave) CWsScreenDevice(iWsSession);
   223 	if (iWsSession.NumberOfScreens() > 1)
   224 		{
   225 		iTwoScreens = ETrue;
   226 		}
   227 	if (iTwoScreens)
   228 		{
   229 		User::LeaveIfError(iScreen1->Construct(1));
   230 		iWinGroup1 = RWindowGroup(iWsSession);
   231 		User::LeaveIfError(iWinGroup1.Construct(KNullWsHandle, iScreen1) );
   232 		iWinGroup1.AutoForeground(ETrue);
   233 		
   234 		// Gc setup
   235 		iGc2 = new (ELeave) CWindowGc(iScreen1);
   236 		User::LeaveIfError(iGc2->Construct());
   237 		}
   238 	
   239 	iWsSession.Finish();
   240 		
   241 	CActiveScheduler* theAs = new (ELeave) CActiveScheduler;
   242 	CleanupStack::PushL(theAs);
   243 	CActiveScheduler::Install(theAs);
   244 	
   245 	iTestManager = CTestManager::NewL(this);
   246 	iTestManager -> StartTest();
   247 	CActiveScheduler::Start();
   248 	
   249 	CleanupStack::PopAndDestroy(theAs);
   250 	
   251 	return TestStepResult();
   252 	}
   253 
   254 /**
   255 Creates a RWindow
   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
   262 */
   263 void CT_WServRateLimiterTestStep::CreateRWindowL(const RWindowGroup& aWinGroup, 
   264 												   RWindow& aWin, 
   265 												   const TPoint& aPos, 
   266 												   const TRgb& aBkgdColor, 
   267 												   const TSize& aWinSize,
   268 												   const TUint32 aHandle)
   269 	{
   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 );
   276 	aWin.Activate();
   277 	aWin.SetVisible( ETrue );
   278 	}
   279 
   280 /**
   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
   285 */
   286 void CT_WServRateLimiterTestStep::DrawGraphic(RWindow& aWin, CWsGraphic* aGraphic, CWindowGc* aGc)
   287 	{
   288 	aGc->Activate(aWin);
   289 	TBuf8<1> animData; 
   290 	animData.Append(0);
   291 	aGc->DrawWsGraphic(aGraphic->Id(),TRect(KWinPos, KWinSize),animData);
   292 	aGc->Deactivate();
   293 	}
   294 
   295 /**
   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
   299 */
   300 TBool CT_WServRateLimiterTestStep::IsRunningAtExpectedFrameRate(TReal aActualFrameRate, TReal aExpectedFrameRate, TReal aErrorThreshHold)
   301 	{
   302 	TReal diff=aActualFrameRate-aExpectedFrameRate;
   303 	return (-diff<=aErrorThreshHold && diff<=aErrorThreshHold);
   304 	}
   305 
   306 /**
   307 @SYMTestCaseID			GRAPHICS-WSERV-2095-0014
   308 @SYMPREQ				2095
   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
   312 @SYMTestPriority		2
   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.
   318 @SYMTestType			CT
   319 */	
   320 void CT_WServRateLimiterTestStep::TestRateLimitedAnimationL()
   321 	{
   322 	CWsRateLimitGraphic* rateLimitGraphic1 = CWsRateLimitGraphic::NewL();
   323 	CleanupStack::PushL(rateLimitGraphic1);
   324 	
   325 	CWsRateLimitGraphic* rateLimitGraphic2 = NULL;
   326 	if (iTwoScreens)
   327 		{
   328 		rateLimitGraphic2 = CWsRateLimitGraphic::NewL();
   329 		CleanupStack::PushL(rateLimitGraphic2);
   330 		}
   331 	
   332 	RWindow win1;
   333 	CleanupClosePushL(win1);
   334 	CreateRWindowL(iWinGroup, win1, KWinPos, KRgbBlue, KWinSize);
   335 	win1.BeginRedraw();
   336 	DrawGraphic(win1, rateLimitGraphic1, iGc); // running at a limited rate
   337 	win1.EndRedraw();
   338 	
   339 	RWindow win2;
   340 	if (iTwoScreens)
   341 		{
   342 		CleanupClosePushL(win2);
   343 		CreateRWindowL(iWinGroup1, win2, KWinPos, KRgbBlue, KWinSize);
   344 		win2.BeginRedraw();
   345 		DrawGraphic(win2, rateLimitGraphic2, iGc2); // running flat out
   346 		win2.EndRedraw();
   347 		}
   348 	
   349 	iWsSession.Finish();
   350 	
   351 	User::After(KAnimLength + 2000000); // Animation length + 2 secs
   352 
   353 	//Stores data obtained from server side of CRP
   354 	TAnimData animData;
   355 	
   356 	//Invoke the plug-in and get the frame rate values
   357 	Mem::FillZ(&animData, sizeof(TAnimData));
   358 	
   359 	// Retrieve anim data from first crp
   360 	rateLimitGraphic1->QueryPluginForFrameRate(animData);
   361 	iWsSession.Finish();
   362 	WaitForRedrawsToFinish();
   363 	TReal frameRate1 = animData.iFrameRate; 
   364 	
   365 	TReal frameRate2 = 0.0;
   366 	if (iTwoScreens)
   367 		{
   368 		// Retrieve anim data from second crp
   369 		rateLimitGraphic2->QueryPluginForFrameRate(animData);
   370 		iWsSession.Finish();
   371 		WaitForRedrawsToFinish();
   372 		frameRate2 = animData.iFrameRate; 
   373 		}
   374 	
   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);
   381 	
   382 	if (iTwoScreens)
   383 		{
   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);
   389 		}
   390 	
   391 	if (iTwoScreens)
   392 		{
   393 		CleanupStack::PopAndDestroy(4, rateLimitGraphic1);
   394 		}
   395 	else
   396 		{
   397 		CleanupStack::PopAndDestroy(2,rateLimitGraphic1);
   398 		}
   399 
   400 	}
   401 
   402 void CT_WServRateLimiterTestStep::RunTestCaseL(TInt /*aCurTestCase*/)
   403 	{
   404 	switch( iTestId )
   405 		{
   406 		case 0:
   407 			if (iTwoScreens)
   408 				{
   409 				INFO_PRINTF1(_L("Testing both screens running animation at different frame rates"));
   410 				}
   411 			else
   412 				{
   413 				INFO_PRINTF1(_L("Testing one screen running animation at ratelimited frame rate"));
   414 				}
   415 			
   416 			TestRateLimitedAnimationL();
   417 			break;
   418 		default:
   419 			iTestManager->FinishAllTestCases();
   420 			break;	
   421 		}
   422 	iTestId++;
   423 	}