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 COMPARISON_H
|
sl@0
|
23 |
#define COMPARISON_H
|
sl@0
|
24 |
|
sl@0
|
25 |
|
sl@0
|
26 |
|
sl@0
|
27 |
#include "stresslet.h"
|
sl@0
|
28 |
#include "test_step_comparison.h"
|
sl@0
|
29 |
#include "test_step_conf.h"
|
sl@0
|
30 |
|
sl@0
|
31 |
#include "utils.h"
|
sl@0
|
32 |
|
sl@0
|
33 |
class CCompWin;
|
sl@0
|
34 |
class CCrpClient;
|
sl@0
|
35 |
|
sl@0
|
36 |
|
sl@0
|
37 |
class CComparison : public CStresslet
|
sl@0
|
38 |
{
|
sl@0
|
39 |
private:
|
sl@0
|
40 |
class COperationTimer : public CTimer
|
sl@0
|
41 |
{
|
sl@0
|
42 |
public:
|
sl@0
|
43 |
COperationTimer(CComparison* aComp);
|
sl@0
|
44 |
void ConstructL();
|
sl@0
|
45 |
//pure virtual functions from CActive
|
sl@0
|
46 |
void DoCancel();
|
sl@0
|
47 |
void RunL();
|
sl@0
|
48 |
private:
|
sl@0
|
49 |
CComparison* iComp;
|
sl@0
|
50 |
};
|
sl@0
|
51 |
|
sl@0
|
52 |
//delayed bitmap comparison
|
sl@0
|
53 |
class COneShotCompare : public CAsyncOneShot
|
sl@0
|
54 |
{
|
sl@0
|
55 |
public:
|
sl@0
|
56 |
COneShotCompare(TInt aPriority, CComparison& aComparison);
|
sl@0
|
57 |
static COneShotCompare* NewL(TInt aPriority, CComparison& aComparison);
|
sl@0
|
58 |
virtual void RunL();
|
sl@0
|
59 |
private:
|
sl@0
|
60 |
CComparison& iComparison;
|
sl@0
|
61 |
};
|
sl@0
|
62 |
|
sl@0
|
63 |
friend class COneShotCompare;
|
sl@0
|
64 |
|
sl@0
|
65 |
enum TMode
|
sl@0
|
66 |
{
|
sl@0
|
67 |
EAct,
|
sl@0
|
68 |
EMove,
|
sl@0
|
69 |
EResize
|
sl@0
|
70 |
};
|
sl@0
|
71 |
enum TAct
|
sl@0
|
72 |
{
|
sl@0
|
73 |
EACreate,
|
sl@0
|
74 |
EADestroy,
|
sl@0
|
75 |
EAFront,
|
sl@0
|
76 |
EABack,
|
sl@0
|
77 |
EAMove,
|
sl@0
|
78 |
EAResize,
|
sl@0
|
79 |
EATick,
|
sl@0
|
80 |
EAToggleVisible,
|
sl@0
|
81 |
EACount
|
sl@0
|
82 |
};
|
sl@0
|
83 |
struct TBehaviour
|
sl@0
|
84 |
{
|
sl@0
|
85 |
CCompWin* iWin;
|
sl@0
|
86 |
TPoint iPos;
|
sl@0
|
87 |
TInt iCount;
|
sl@0
|
88 |
};
|
sl@0
|
89 |
public:
|
sl@0
|
90 |
static CComparison * NewLC(MTestStepReporter& aReporter);
|
sl@0
|
91 |
virtual ~CComparison();
|
sl@0
|
92 |
|
sl@0
|
93 |
void Verify(CFbsBitmap * aServerBmp);
|
sl@0
|
94 |
void SetRunDataL(const TRunData& aRunData, MTestStepConfigurationContextFactory* aConfFactory);
|
sl@0
|
95 |
TBool WindowsReadyForVerification() const;
|
sl@0
|
96 |
void SetVerifyTick(TUint32 aTick);
|
sl@0
|
97 |
|
sl@0
|
98 |
private:
|
sl@0
|
99 |
void HandleRedraw(TWsRedrawEvent &aEvent);
|
sl@0
|
100 |
void HandleEvent(TWsEvent &aEvent);
|
sl@0
|
101 |
|
sl@0
|
102 |
virtual void StartL();
|
sl@0
|
103 |
TInt Tick();
|
sl@0
|
104 |
|
sl@0
|
105 |
void TickL();
|
sl@0
|
106 |
void ActL();
|
sl@0
|
107 |
void MoveL();
|
sl@0
|
108 |
void ResizeL();
|
sl@0
|
109 |
|
sl@0
|
110 |
void DoStuffL();
|
sl@0
|
111 |
void CreateWindowL();
|
sl@0
|
112 |
void DestroyWindow();
|
sl@0
|
113 |
void MoveWindow();
|
sl@0
|
114 |
void ResizeWindow();
|
sl@0
|
115 |
void BringWindowToFrontL();
|
sl@0
|
116 |
void SendWindowToBackL();
|
sl@0
|
117 |
void TickWindowL();
|
sl@0
|
118 |
void ToggleVisible();
|
sl@0
|
119 |
|
sl@0
|
120 |
TInt FindTopWindow(CCompWin* aWin);
|
sl@0
|
121 |
void DrawBitmap();
|
sl@0
|
122 |
CCompWin* RandomWindow();
|
sl@0
|
123 |
TBool BitmapsMatch(const CFbsBitmap * aBitmap1, const CFbsBitmap * aBitmap2);
|
sl@0
|
124 |
void Touch();
|
sl@0
|
125 |
|
sl@0
|
126 |
CComparison (MTestStepReporter& aReporter);
|
sl@0
|
127 |
|
sl@0
|
128 |
void ConstructL();
|
sl@0
|
129 |
void WriteLog();
|
sl@0
|
130 |
private:
|
sl@0
|
131 |
TInt64 iFirstSeed;
|
sl@0
|
132 |
TMode iMode;
|
sl@0
|
133 |
TAct iAct;
|
sl@0
|
134 |
TBool iWasOk;
|
sl@0
|
135 |
TBehaviour iBehaviour;
|
sl@0
|
136 |
CPeriodic* iPeriodic;
|
sl@0
|
137 |
RWindowGroup* iWinGroup;
|
sl@0
|
138 |
RBlankWindow* iBackground;
|
sl@0
|
139 |
RPointerArray<CCompWin> iWindows;
|
sl@0
|
140 |
CFbsBitmap * iBitmap[2];
|
sl@0
|
141 |
CFbsBitmapDevice * iDevice[2];
|
sl@0
|
142 |
CFbsBitGc * iBmpGc;
|
sl@0
|
143 |
CFbsBitmap * iDifferenceBitmap;
|
sl@0
|
144 |
CFbsBitmapDevice * iDifferenceDevice;
|
sl@0
|
145 |
CWsScreenDevice* iScreen;
|
sl@0
|
146 |
CFbsBitmap *iScreenBitmap;
|
sl@0
|
147 |
RFs iFs;
|
sl@0
|
148 |
TTime iStartTime;
|
sl@0
|
149 |
TInt iCurrentBmp;
|
sl@0
|
150 |
TInt iLastBmp;
|
sl@0
|
151 |
TInt iTestNum;
|
sl@0
|
152 |
TInt iErrorNum;
|
sl@0
|
153 |
TUint32 iPixel1;
|
sl@0
|
154 |
TUint32 iPixel2;
|
sl@0
|
155 |
TPoint iPixelPos;
|
sl@0
|
156 |
|
sl@0
|
157 |
TBool iMustConclude;
|
sl@0
|
158 |
TInt iNumWindowsLeft; //number of windows to be created before test is over
|
sl@0
|
159 |
CTestExecWatchCat* iWatchCat;
|
sl@0
|
160 |
TRunData iData;
|
sl@0
|
161 |
|
sl@0
|
162 |
TBool iStuffDone;
|
sl@0
|
163 |
COperationTimer* iTimer;
|
sl@0
|
164 |
COneShotCompare *iOneShotCompare;
|
sl@0
|
165 |
};
|
sl@0
|
166 |
|
sl@0
|
167 |
#endif // COMPARISON_H
|