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 |
#ifndef T_WSERVRATELIMITERTESTSTEP_H_
|
sl@0
|
23 |
#define T_WSERVRATELIMITERTESTSTEP_H_
|
sl@0
|
24 |
|
sl@0
|
25 |
#include <fbs.h>
|
sl@0
|
26 |
#include <w32std.h>
|
sl@0
|
27 |
#include <test/testexecutestepbase.h>
|
sl@0
|
28 |
#include "../tratelimitdrawer/wsratelimitdrawer.h"
|
sl@0
|
29 |
|
sl@0
|
30 |
const TUint32 KNullWsHandle = 0xFFFFFFFF;
|
sl@0
|
31 |
|
sl@0
|
32 |
/**
|
sl@0
|
33 |
A main interface for implementation test cases
|
sl@0
|
34 |
*/
|
sl@0
|
35 |
class MTestCases
|
sl@0
|
36 |
{
|
sl@0
|
37 |
public:
|
sl@0
|
38 |
virtual void RunTestCaseL(TInt aCurTestCase) = 0;
|
sl@0
|
39 |
};
|
sl@0
|
40 |
|
sl@0
|
41 |
class CTestManager;
|
sl@0
|
42 |
|
sl@0
|
43 |
class CT_WServRateLimiterTestStep : public CTestStep, public MTestCases
|
sl@0
|
44 |
{
|
sl@0
|
45 |
public:
|
sl@0
|
46 |
CT_WServRateLimiterTestStep();
|
sl@0
|
47 |
~CT_WServRateLimiterTestStep();
|
sl@0
|
48 |
// from CTestStep
|
sl@0
|
49 |
virtual enum TVerdict doTestStepL();
|
sl@0
|
50 |
void RunTestCaseL(TInt aCurTestCase);
|
sl@0
|
51 |
|
sl@0
|
52 |
private:
|
sl@0
|
53 |
void CreateRWindowL(const RWindowGroup& aWinGroup, RWindow& aWin, const TPoint& aPos, const TRgb& aBkgdColor, const TSize& aWinSize, const TUint32 aHandle = KNullWsHandle );
|
sl@0
|
54 |
void DrawGraphic(RWindow& aWin, CWsGraphic* aGraphic, CWindowGc* aGc);
|
sl@0
|
55 |
// Test cases
|
sl@0
|
56 |
void TestRateLimitedAnimationL();
|
sl@0
|
57 |
TBool IsRunningAtExpectedFrameRate(TReal aActualFrameRate, TReal aExpectedFrameRate, TReal aErrorThreshHold);
|
sl@0
|
58 |
|
sl@0
|
59 |
private: // Data members
|
sl@0
|
60 |
TInt iTestId;
|
sl@0
|
61 |
TDisplayMode iDisplayMode;
|
sl@0
|
62 |
CWindowGc* iGc;
|
sl@0
|
63 |
CWindowGc* iGc2;
|
sl@0
|
64 |
CWsScreenDevice* iScreen;
|
sl@0
|
65 |
CWsScreenDevice* iScreen1;
|
sl@0
|
66 |
RWsSession iWsSession;
|
sl@0
|
67 |
RWindowGroup iWinGroup;
|
sl@0
|
68 |
RWindowGroup iWinGroup1;
|
sl@0
|
69 |
CTestManager* iTestManager;
|
sl@0
|
70 |
TBool iTwoScreens;
|
sl@0
|
71 |
};
|
sl@0
|
72 |
|
sl@0
|
73 |
#endif /*T_WSERVRATELIMITERTESTSTEP_H_*/
|