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.
sl@0
     1
// Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
// All rights reserved.
sl@0
     3
// This component and the accompanying materials are made available
sl@0
     4
// under the terms of "Eclipse Public License v1.0"
sl@0
     5
// which accompanies this distribution, and is available
sl@0
     6
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
//
sl@0
     8
// Initial Contributors:
sl@0
     9
// Nokia Corporation - initial contribution.
sl@0
    10
//
sl@0
    11
// Contributors:
sl@0
    12
//
sl@0
    13
// Description:
sl@0
    14
//
sl@0
    15
sl@0
    16
/**
sl@0
    17
 @file
sl@0
    18
 @test
sl@0
    19
 @internalComponent
sl@0
    20
*/
sl@0
    21
sl@0
    22
#include "t_wservratelimiterteststep.h"
sl@0
    23
#include <test/tefunit.h>
sl@0
    24
#include <e32const.h>
sl@0
    25
#include <gdi.h>
sl@0
    26
#include <stdlib.h>
sl@0
    27
#include "constants.h"
sl@0
    28
sl@0
    29
const TPoint KWinPos(0,0);
sl@0
    30
const TSize KWinSize(640,240);
sl@0
    31
const TRect KWinRect(KWinPos,KWinSize);
sl@0
    32
const TRect KEllipseRect(TPoint(10,10), TSize(50,50));
sl@0
    33
sl@0
    34
//Name of the test step
sl@0
    35
_LIT(KT_WServRateLimiterTestStep,"T_WServRateLimiterTestStep");
sl@0
    36
sl@0
    37
sl@0
    38
/**
sl@0
    39
  The test code manager, provides functions to set active object 
sl@0
    40
  with lowest priority for running tests in auto mode.
sl@0
    41
 */
sl@0
    42
class CTestManager : public CActive
sl@0
    43
	{
sl@0
    44
friend class CT_WServRateLimiterTestStep;
sl@0
    45
protected:
sl@0
    46
	static CTestManager* NewL(MTestCases* aAutoTestApp);
sl@0
    47
	~CTestManager();
sl@0
    48
	void FinishAllTestCases();
sl@0
    49
	void StartTest(); //initialize an active object and set it status as active
sl@0
    50
private: 
sl@0
    51
	CTestManager(MTestCases* aAutoTestApp);
sl@0
    52
	// from CActive
sl@0
    53
	void RunL();
sl@0
    54
	void DoCancel();
sl@0
    55
private:
sl@0
    56
	MTestCases* iTestCase;
sl@0
    57
	TInt iCurTestCaseNumber; //a current test case, every time when function RunTestCaseL is called this member inc by one
sl@0
    58
	TBool iTestCompleted;
sl@0
    59
	};
sl@0
    60
sl@0
    61
/** Construct an active object with the lowest priority */
sl@0
    62
CTestManager::CTestManager(MTestCases* aTestCases) :
sl@0
    63
			CActive(EPriorityIdle), 
sl@0
    64
			iTestCase(aTestCases)
sl@0
    65
	{
sl@0
    66
	}
sl@0
    67
sl@0
    68
CTestManager::~CTestManager()
sl@0
    69
	{
sl@0
    70
	Cancel();
sl@0
    71
	}
sl@0
    72
sl@0
    73
CTestManager* CTestManager::NewL(MTestCases* aTestCases)
sl@0
    74
	{
sl@0
    75
     CTestManager *theTestManager=new (ELeave) CTestManager(aTestCases);
sl@0
    76
     CActiveScheduler::Add(theTestManager);
sl@0
    77
	 return theTestManager;
sl@0
    78
	}
sl@0
    79
sl@0
    80
void CTestManager::RunL()
sl@0
    81
	{
sl@0
    82
	if(	iTestCompleted)
sl@0
    83
		{
sl@0
    84
		return;
sl@0
    85
		}
sl@0
    86
	
sl@0
    87
	// debug statement to indicate progress of test suite by
sl@0
    88
	// printing the sub-test that is currently active
sl@0
    89
	TTime timeStamp;
sl@0
    90
	timeStamp.HomeTime();
sl@0
    91
	TBuf<50> dateStr;
sl@0
    92
	_LIT(KDateString3,"%-B%:0%J%:1%T%:2%S%:3 %Cms");
sl@0
    93
	timeStamp.FormatL(dateStr, KDateString3);
sl@0
    94
	RDebug::Print(_L("%S - Test Case Number: %d"), &dateStr, ++iCurTestCaseNumber);
sl@0
    95
	
sl@0
    96
	iTestCase -> RunTestCaseL(iCurTestCaseNumber);
sl@0
    97
	if(!iTestCompleted)
sl@0
    98
		{
sl@0
    99
		StartTest();
sl@0
   100
		}
sl@0
   101
	}
sl@0
   102
sl@0
   103
void CTestManager::DoCancel()
sl@0
   104
	{
sl@0
   105
	iTestCompleted = ETrue;
sl@0
   106
	}
sl@0
   107
sl@0
   108
/**
sl@0
   109
 	Initialize an active object and set it as active
sl@0
   110
 */
sl@0
   111
void CTestManager::StartTest()
sl@0
   112
	{
sl@0
   113
	TRequestStatus *pS= (&iStatus);
sl@0
   114
	User::RequestComplete(pS, 0);
sl@0
   115
	SetActive();
sl@0
   116
	}
sl@0
   117
sl@0
   118
sl@0
   119
/**
sl@0
   120
 Stop active scheduler, and quit a test step	
sl@0
   121
 */
sl@0
   122
void CTestManager::FinishAllTestCases()
sl@0
   123
	{
sl@0
   124
	iTestCompleted = ETrue;
sl@0
   125
	CActiveScheduler::Stop();
sl@0
   126
	}
sl@0
   127
sl@0
   128
sl@0
   129
//
sl@0
   130
// Wait till redraws finished //
sl@0
   131
//
sl@0
   132
sl@0
   133
enum TTRateLimiterActivePriorities
sl@0
   134
	{
sl@0
   135
	ETRateLimiterRedrawActivePriority=-10,
sl@0
   136
	};
sl@0
   137
sl@0
   138
class CStopTheScheduler : public CAsyncOneShot
sl@0
   139
	{
sl@0
   140
public:
sl@0
   141
	CStopTheScheduler(TInt aPriority);
sl@0
   142
	static CStopTheScheduler* NewL(TInt aPriority);
sl@0
   143
	void RunL();
sl@0
   144
	};
sl@0
   145
sl@0
   146
CStopTheScheduler* CStopTheScheduler::NewL(TInt aPriority)
sl@0
   147
	{
sl@0
   148
	return new(ELeave)CStopTheScheduler(aPriority);
sl@0
   149
	}
sl@0
   150
sl@0
   151
CStopTheScheduler::CStopTheScheduler(TInt aPriority)
sl@0
   152
	:CAsyncOneShot(aPriority)
sl@0
   153
	{
sl@0
   154
	}
sl@0
   155
sl@0
   156
void CStopTheScheduler::RunL()
sl@0
   157
	{
sl@0
   158
	CActiveScheduler::Stop();
sl@0
   159
	}
sl@0
   160
sl@0
   161
void WaitForRedrawsToFinish()
sl@0
   162
	{
sl@0
   163
	CStopTheScheduler* ps=new CStopTheScheduler(ETRateLimiterRedrawActivePriority);
sl@0
   164
	if(ps)
sl@0
   165
		{
sl@0
   166
		ps->Call();
sl@0
   167
		CActiveScheduler::Start();
sl@0
   168
		delete ps;
sl@0
   169
		}
sl@0
   170
	}
sl@0
   171
sl@0
   172
/**
sl@0
   173
Constructor of CT_WServRateLimiterTestStep
sl@0
   174
*/
sl@0
   175
CT_WServRateLimiterTestStep::CT_WServRateLimiterTestStep():
sl@0
   176
		iTwoScreens(EFalse)
sl@0
   177
	{
sl@0
   178
	SetTestStepName(KT_WServRateLimiterTestStep);
sl@0
   179
	}
sl@0
   180
sl@0
   181
/**
sl@0
   182
Destructor of CT_WServRateLimiterTestStep
sl@0
   183
*/
sl@0
   184
CT_WServRateLimiterTestStep::~CT_WServRateLimiterTestStep()
sl@0
   185
	{
sl@0
   186
	delete iGc;
sl@0
   187
	delete iGc2;
sl@0
   188
	delete iScreen;
sl@0
   189
	delete iScreen1;
sl@0
   190
	iWinGroup.Close();
sl@0
   191
	iWinGroup1.Close();
sl@0
   192
	iWsSession.Flush();
sl@0
   193
	iWsSession.Close();
sl@0
   194
	if(iTestManager)
sl@0
   195
		{
sl@0
   196
		iTestManager -> Cancel();
sl@0
   197
		}
sl@0
   198
	delete iTestManager;
sl@0
   199
	}
sl@0
   200
sl@0
   201
/**
sl@0
   202
Starts test step
sl@0
   203
@return TVerdict pass / fail
sl@0
   204
*/
sl@0
   205
enum TVerdict CT_WServRateLimiterTestStep::doTestStepL()
sl@0
   206
	{
sl@0
   207
	iDisplayMode = EColor64K;
sl@0
   208
	User::LeaveIfError(iWsSession.Connect());
sl@0
   209
sl@0
   210
	// Screen 1 setup
sl@0
   211
	iScreen = new (ELeave) CWsScreenDevice(iWsSession);
sl@0
   212
	User::LeaveIfError(iScreen->Construct());
sl@0
   213
	iWinGroup = RWindowGroup(iWsSession);
sl@0
   214
	User::LeaveIfError(iWinGroup.Construct(KNullWsHandle, iScreen));
sl@0
   215
	iWinGroup.AutoForeground(ETrue);
sl@0
   216
	
sl@0
   217
	// Gc setup
sl@0
   218
	iGc = new (ELeave) CWindowGc(iScreen);
sl@0
   219
	User::LeaveIfError(iGc->Construct());
sl@0
   220
sl@0
   221
	// Screen 2 setup
sl@0
   222
	iScreen1 = new (ELeave) CWsScreenDevice(iWsSession);
sl@0
   223
	if (iWsSession.NumberOfScreens() > 1)
sl@0
   224
		{
sl@0
   225
		iTwoScreens = ETrue;
sl@0
   226
		}
sl@0
   227
	if (iTwoScreens)
sl@0
   228
		{
sl@0
   229
		User::LeaveIfError(iScreen1->Construct(1));
sl@0
   230
		iWinGroup1 = RWindowGroup(iWsSession);
sl@0
   231
		User::LeaveIfError(iWinGroup1.Construct(KNullWsHandle, iScreen1) );
sl@0
   232
		iWinGroup1.AutoForeground(ETrue);
sl@0
   233
		
sl@0
   234
		// Gc setup
sl@0
   235
		iGc2 = new (ELeave) CWindowGc(iScreen1);
sl@0
   236
		User::LeaveIfError(iGc2->Construct());
sl@0
   237
		}
sl@0
   238
	
sl@0
   239
	iWsSession.Finish();
sl@0
   240
		
sl@0
   241
	CActiveScheduler* theAs = new (ELeave) CActiveScheduler;
sl@0
   242
	CleanupStack::PushL(theAs);
sl@0
   243
	CActiveScheduler::Install(theAs);
sl@0
   244
	
sl@0
   245
	iTestManager = CTestManager::NewL(this);
sl@0
   246
	iTestManager -> StartTest();
sl@0
   247
	CActiveScheduler::Start();
sl@0
   248
	
sl@0
   249
	CleanupStack::PopAndDestroy(theAs);
sl@0
   250
	
sl@0
   251
	return TestStepResult();
sl@0
   252
	}
sl@0
   253
sl@0
   254
/**
sl@0
   255
Creates a RWindow
sl@0
   256
@param aWinGroup The window group object
sl@0
   257
@param aWin	The window object
sl@0
   258
@param aPos	The Position of the window
sl@0
   259
@param aBkgdColor The background color of the window
sl@0
   260
@param aSize The size of the window
sl@0
   261
@param aHandle The handle of the window
sl@0
   262
*/
sl@0
   263
void CT_WServRateLimiterTestStep::CreateRWindowL(const RWindowGroup& aWinGroup, 
sl@0
   264
												   RWindow& aWin, 
sl@0
   265
												   const TPoint& aPos, 
sl@0
   266
												   const TRgb& aBkgdColor, 
sl@0
   267
												   const TSize& aWinSize,
sl@0
   268
												   const TUint32 aHandle)
sl@0
   269
	{
sl@0
   270
	aWin = RWindow( iWsSession );
sl@0
   271
	CleanupClosePushL( aWin );
sl@0
   272
	User::LeaveIfError( aWin.Construct( aWinGroup, aHandle ) );
sl@0
   273
	CleanupStack::Pop(&aWin);
sl@0
   274
	aWin.SetExtent(aPos, aWinSize);
sl@0
   275
	aWin.SetBackgroundColor( aBkgdColor );
sl@0
   276
	aWin.Activate();
sl@0
   277
	aWin.SetVisible( ETrue );
sl@0
   278
	}
sl@0
   279
sl@0
   280
/**
sl@0
   281
Draw the actual animation
sl@0
   282
@param aWin The window object
sl@0
   283
@param aGraphic The graphic to draw
sl@0
   284
@param aGc The gc do draw with
sl@0
   285
*/
sl@0
   286
void CT_WServRateLimiterTestStep::DrawGraphic(RWindow& aWin, CWsGraphic* aGraphic, CWindowGc* aGc)
sl@0
   287
	{
sl@0
   288
	aGc->Activate(aWin);
sl@0
   289
	TBuf8<1> animData; 
sl@0
   290
	animData.Append(0);
sl@0
   291
	aGc->DrawWsGraphic(aGraphic->Id(),TRect(KWinPos, KWinSize),animData);
sl@0
   292
	aGc->Deactivate();
sl@0
   293
	}
sl@0
   294
sl@0
   295
/**
sl@0
   296
@param aActualFrameRate The actual frame rate of the animation
sl@0
   297
@param aExpectedFrameRate The expected frame rate of the animation
sl@0
   298
@param aErrorThreshhold The error allowed between the actual and expected frame rate
sl@0
   299
*/
sl@0
   300
TBool CT_WServRateLimiterTestStep::IsRunningAtExpectedFrameRate(TReal aActualFrameRate, TReal aExpectedFrameRate, TReal aErrorThreshHold)
sl@0
   301
	{
sl@0
   302
	TReal diff=aActualFrameRate-aExpectedFrameRate;
sl@0
   303
	return (-diff<=aErrorThreshHold && diff<=aErrorThreshHold);
sl@0
   304
	}
sl@0
   305
sl@0
   306
/**
sl@0
   307
@SYMTestCaseID			GRAPHICS-WSERV-2095-0014
sl@0
   308
@SYMPREQ				2095
sl@0
   309
@SYMTestCaseDesc		Running a CRP animation on one screen at a limited rate or both screens both at different rates			
sl@0
   310
@SYMTestActions			Run CRP animation on one or 2 screens if 2 are available 
sl@0
   311
@SYMTestStatus			Implemented
sl@0
   312
@SYMTestPriority		2
sl@0
   313
@SYMTestExpectedResults	If 1 screen available:
sl@0
   314
						CRP animation occurs at ratelimited rate
sl@0
   315
						If 2 screens available:
sl@0
   316
						CRP animation occur at different rates on both screens.
sl@0
   317
						CRP animation occur at expected rates on both screens.
sl@0
   318
@SYMTestType			CT
sl@0
   319
*/	
sl@0
   320
void CT_WServRateLimiterTestStep::TestRateLimitedAnimationL()
sl@0
   321
	{
sl@0
   322
	CWsRateLimitGraphic* rateLimitGraphic1 = CWsRateLimitGraphic::NewL();
sl@0
   323
	CleanupStack::PushL(rateLimitGraphic1);
sl@0
   324
	
sl@0
   325
	CWsRateLimitGraphic* rateLimitGraphic2 = NULL;
sl@0
   326
	if (iTwoScreens)
sl@0
   327
		{
sl@0
   328
		rateLimitGraphic2 = CWsRateLimitGraphic::NewL();
sl@0
   329
		CleanupStack::PushL(rateLimitGraphic2);
sl@0
   330
		}
sl@0
   331
	
sl@0
   332
	RWindow win1;
sl@0
   333
	CleanupClosePushL(win1);
sl@0
   334
	CreateRWindowL(iWinGroup, win1, KWinPos, KRgbBlue, KWinSize);
sl@0
   335
	win1.BeginRedraw();
sl@0
   336
	DrawGraphic(win1, rateLimitGraphic1, iGc); // running at a limited rate
sl@0
   337
	win1.EndRedraw();
sl@0
   338
	
sl@0
   339
	RWindow win2;
sl@0
   340
	if (iTwoScreens)
sl@0
   341
		{
sl@0
   342
		CleanupClosePushL(win2);
sl@0
   343
		CreateRWindowL(iWinGroup1, win2, KWinPos, KRgbBlue, KWinSize);
sl@0
   344
		win2.BeginRedraw();
sl@0
   345
		DrawGraphic(win2, rateLimitGraphic2, iGc2); // running flat out
sl@0
   346
		win2.EndRedraw();
sl@0
   347
		}
sl@0
   348
	
sl@0
   349
	iWsSession.Finish();
sl@0
   350
	
sl@0
   351
	User::After(KAnimLength + 2000000); // Animation length + 2 secs
sl@0
   352
sl@0
   353
	//Stores data obtained from server side of CRP
sl@0
   354
	TAnimData animData;
sl@0
   355
	
sl@0
   356
	//Invoke the plug-in and get the frame rate values
sl@0
   357
	Mem::FillZ(&animData, sizeof(TAnimData));
sl@0
   358
	
sl@0
   359
	// Retrieve anim data from first crp
sl@0
   360
	rateLimitGraphic1->QueryPluginForFrameRate(animData);
sl@0
   361
	iWsSession.Finish();
sl@0
   362
	WaitForRedrawsToFinish();
sl@0
   363
	TReal frameRate1 = animData.iFrameRate; 
sl@0
   364
	
sl@0
   365
	TReal frameRate2 = 0.0;
sl@0
   366
	if (iTwoScreens)
sl@0
   367
		{
sl@0
   368
		// Retrieve anim data from second crp
sl@0
   369
		rateLimitGraphic2->QueryPluginForFrameRate(animData);
sl@0
   370
		iWsSession.Finish();
sl@0
   371
		WaitForRedrawsToFinish();
sl@0
   372
		frameRate2 = animData.iFrameRate; 
sl@0
   373
		}
sl@0
   374
	
sl@0
   375
	/* Test, screen0(first screen) is running at approximately the correct rate */ 
sl@0
   376
	TReal rateLimtedExpectedFrameRate = KOneSecondInMicroSecs / KFrameRateDelay;
sl@0
   377
	INFO_PRINTF2(_L("Test if screen0 is running at approximately the correct rate of %f"), rateLimtedExpectedFrameRate);
sl@0
   378
	INFO_PRINTF2(_L("Screen0 Actual Frame Rate = %f"), frameRate1);
sl@0
   379
	TBool isCorrectRate1 = IsRunningAtExpectedFrameRate(frameRate1,rateLimtedExpectedFrameRate, KStdErrorThreshHold);
sl@0
   380
	TEST(isCorrectRate1);
sl@0
   381
	
sl@0
   382
	if (iTwoScreens)
sl@0
   383
		{
sl@0
   384
		/* Test, screen1(second screen) is running at approximately the correct rate */ 
sl@0
   385
		INFO_PRINTF2(_L("Test if screen1 is running at faster than %f fps"), KStdMinimumFrameRate);
sl@0
   386
		INFO_PRINTF2(_L("Screen1 Actual Frame Rate = %f"), frameRate2);
sl@0
   387
		TBool isCorrectRate2 = frameRate2 > KStdMinimumFrameRate;
sl@0
   388
		TEST(isCorrectRate2);
sl@0
   389
		}
sl@0
   390
	
sl@0
   391
	if (iTwoScreens)
sl@0
   392
		{
sl@0
   393
		CleanupStack::PopAndDestroy(4, rateLimitGraphic1);
sl@0
   394
		}
sl@0
   395
	else
sl@0
   396
		{
sl@0
   397
		CleanupStack::PopAndDestroy(2,rateLimitGraphic1);
sl@0
   398
		}
sl@0
   399
sl@0
   400
	}
sl@0
   401
sl@0
   402
void CT_WServRateLimiterTestStep::RunTestCaseL(TInt /*aCurTestCase*/)
sl@0
   403
	{
sl@0
   404
	switch( iTestId )
sl@0
   405
		{
sl@0
   406
		case 0:
sl@0
   407
			if (iTwoScreens)
sl@0
   408
				{
sl@0
   409
				INFO_PRINTF1(_L("Testing both screens running animation at different frame rates"));
sl@0
   410
				}
sl@0
   411
			else
sl@0
   412
				{
sl@0
   413
				INFO_PRINTF1(_L("Testing one screen running animation at ratelimited frame rate"));
sl@0
   414
				}
sl@0
   415
			
sl@0
   416
			TestRateLimitedAnimationL();
sl@0
   417
			break;
sl@0
   418
		default:
sl@0
   419
			iTestManager->FinishAllTestCases();
sl@0
   420
			break;	
sl@0
   421
		}
sl@0
   422
	iTestId++;
sl@0
   423
	}