sl@0
|
1 |
// Copyright (c) 1996-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 |
// Keyboard repeat test
|
sl@0
|
15 |
//
|
sl@0
|
16 |
//
|
sl@0
|
17 |
|
sl@0
|
18 |
#include <e32std.h>
|
sl@0
|
19 |
#include <e32svr.h>
|
sl@0
|
20 |
#include "W32STD.H"
|
sl@0
|
21 |
#include "../tlib/testbase.h"
|
sl@0
|
22 |
#include "TMAN.H"
|
sl@0
|
23 |
|
sl@0
|
24 |
class CRKWindow;
|
sl@0
|
25 |
|
sl@0
|
26 |
class TKRepeatTest : public CTestBase
|
sl@0
|
27 |
{
|
sl@0
|
28 |
public:
|
sl@0
|
29 |
TKRepeatTest();
|
sl@0
|
30 |
~TKRepeatTest();
|
sl@0
|
31 |
TestState DoTestL();
|
sl@0
|
32 |
void ConstructL();
|
sl@0
|
33 |
void TestKeyboardRepeatRateL(const TTimeIntervalMicroSeconds32 &aInitialTime, const TTimeIntervalMicroSeconds32 &aTime);
|
sl@0
|
34 |
TBool CheckReportL();
|
sl@0
|
35 |
public:
|
sl@0
|
36 |
TBool iAbort;
|
sl@0
|
37 |
private:
|
sl@0
|
38 |
TTimeIntervalMicroSeconds32 iOldInitialTime;
|
sl@0
|
39 |
TTimeIntervalMicroSeconds32 iOldTime;
|
sl@0
|
40 |
CRKWindow *iWin;
|
sl@0
|
41 |
TSize iWinSize;
|
sl@0
|
42 |
TInt iState;
|
sl@0
|
43 |
};
|
sl@0
|
44 |
|
sl@0
|
45 |
class CRKWindow : public CTWin
|
sl@0
|
46 |
{
|
sl@0
|
47 |
enum TRKStates {
|
sl@0
|
48 |
EStateWaitingForKeyDown,
|
sl@0
|
49 |
EStateWaitingForKeyCode,
|
sl@0
|
50 |
EStateWaitingForFirstRepeat,
|
sl@0
|
51 |
EStateWaitingForNthRepeat,
|
sl@0
|
52 |
EStateWaitingForKeyUp,
|
sl@0
|
53 |
EStateInactive,
|
sl@0
|
54 |
EStateError,
|
sl@0
|
55 |
};
|
sl@0
|
56 |
public:
|
sl@0
|
57 |
CRKWindow(TKRepeatTest *aTest);
|
sl@0
|
58 |
void SetUpL(TPoint pos,TSize size,CTWinBase *parent, CWindowGc &aGc);
|
sl@0
|
59 |
void SetState(TRKStates aState);
|
sl@0
|
60 |
void SetKeyboardRepeatRate(const TTimeIntervalMicroSeconds32 &aInitialTime, const TTimeIntervalMicroSeconds32 &aTime);
|
sl@0
|
61 |
void WinKeyL(const TKeyEvent &,const TTime &);
|
sl@0
|
62 |
void KeyUpL(const TKeyEvent &aKey,const TTime &aTime);
|
sl@0
|
63 |
void KeyDownL(const TKeyEvent &aKey,const TTime &aTime);
|
sl@0
|
64 |
void Draw();
|
sl@0
|
65 |
TDesC& Report();
|
sl@0
|
66 |
TBool CheckResults();
|
sl@0
|
67 |
protected:
|
sl@0
|
68 |
TInt iConnIndex;
|
sl@0
|
69 |
TKRepeatTest *iTest;
|
sl@0
|
70 |
TRgb iBack;
|
sl@0
|
71 |
TRKStates iState;
|
sl@0
|
72 |
TInt iDownCode;
|
sl@0
|
73 |
TInt iRepCount;
|
sl@0
|
74 |
TTimeIntervalMicroSeconds32 iInitialRepeatSet;
|
sl@0
|
75 |
TTimeIntervalMicroSeconds32 iRepeatSet;
|
sl@0
|
76 |
TTime iPrevTime;
|
sl@0
|
77 |
TTimeIntervalMicroSeconds32 iInitialGap;
|
sl@0
|
78 |
TTimeIntervalMicroSeconds32 iTotalGap;
|
sl@0
|
79 |
TTimeIntervalMicroSeconds32 iMinGap;
|
sl@0
|
80 |
TTimeIntervalMicroSeconds32 iMaxGap;
|
sl@0
|
81 |
TBuf<0x40> iReport;
|
sl@0
|
82 |
};
|
sl@0
|
83 |
|
sl@0
|
84 |
GLDEF_C CTestBase *CreateKRepeatTest()
|
sl@0
|
85 |
{
|
sl@0
|
86 |
return(new(ELeave) TKRepeatTest());
|
sl@0
|
87 |
}
|
sl@0
|
88 |
|
sl@0
|
89 |
//
|
sl@0
|
90 |
// CRKWindow, class //
|
sl@0
|
91 |
//
|
sl@0
|
92 |
|
sl@0
|
93 |
CRKWindow::CRKWindow(TKRepeatTest *aTest) : CTWin(), iTest(aTest)
|
sl@0
|
94 |
{
|
sl@0
|
95 |
}
|
sl@0
|
96 |
|
sl@0
|
97 |
void CRKWindow::SetUpL(TPoint pos,TSize size,CTWinBase *parent, CWindowGc &aGc)
|
sl@0
|
98 |
{
|
sl@0
|
99 |
ConstructExtLD(*parent,pos,size);
|
sl@0
|
100 |
iWin.SetBackgroundColor(TRgb::Gray256(230));
|
sl@0
|
101 |
Activate();
|
sl@0
|
102 |
AssignGC(aGc);
|
sl@0
|
103 |
}
|
sl@0
|
104 |
|
sl@0
|
105 |
void CRKWindow::Draw()
|
sl@0
|
106 |
{
|
sl@0
|
107 |
iGc->Clear();
|
sl@0
|
108 |
switch(iState)
|
sl@0
|
109 |
{
|
sl@0
|
110 |
case EStateWaitingForKeyDown:
|
sl@0
|
111 |
iGc->DrawText(_L("Press and hold the space bar"), TPoint(10,20));
|
sl@0
|
112 |
break;
|
sl@0
|
113 |
case EStateWaitingForFirstRepeat:
|
sl@0
|
114 |
case EStateWaitingForNthRepeat:
|
sl@0
|
115 |
{
|
sl@0
|
116 |
TBuf<0x40> buf;
|
sl@0
|
117 |
buf.Format(TRefByValue<const TDesC>(_L("Keep space bar down (%d repeats so far)")),iRepCount);
|
sl@0
|
118 |
iGc->DrawText(buf, TPoint(10,20));
|
sl@0
|
119 |
}
|
sl@0
|
120 |
break;
|
sl@0
|
121 |
case EStateWaitingForKeyUp:
|
sl@0
|
122 |
iGc->DrawText(_L("Release space bar"), TPoint(10,20));
|
sl@0
|
123 |
default:
|
sl@0
|
124 |
break;
|
sl@0
|
125 |
}
|
sl@0
|
126 |
}
|
sl@0
|
127 |
|
sl@0
|
128 |
void CRKWindow::SetState(TRKStates aState)
|
sl@0
|
129 |
{
|
sl@0
|
130 |
iState=aState;
|
sl@0
|
131 |
DrawNow();
|
sl@0
|
132 |
}
|
sl@0
|
133 |
|
sl@0
|
134 |
TBool CRKWindow::CheckResults()
|
sl@0
|
135 |
{
|
sl@0
|
136 |
//
|
sl@0
|
137 |
// Checks repeat results, first convert everything to 10th's as that what is actually used
|
sl@0
|
138 |
// for the timer in the window server.
|
sl@0
|
139 |
//
|
sl@0
|
140 |
// Return ETrue if the inacuracy in the average time is greater than 1/10th either way
|
sl@0
|
141 |
// Allow initial 2/10ths either
|
sl@0
|
142 |
// Allow min 2/10ths below
|
sl@0
|
143 |
// Allow max 2/10ths above
|
sl@0
|
144 |
//
|
sl@0
|
145 |
if (iState!=EStateInactive)
|
sl@0
|
146 |
return(ETrue);
|
sl@0
|
147 |
TInt initial=iInitialGap.Int()/100000;
|
sl@0
|
148 |
TInt initialX=iInitialRepeatSet.Int()/100000;
|
sl@0
|
149 |
if (initialX==0)
|
sl@0
|
150 |
initialX=1;
|
sl@0
|
151 |
TInt average=(iTotalGap.Int()/100000)/(iRepCount-1);
|
sl@0
|
152 |
TInt repeatX=iRepeatSet.Int()/100000;
|
sl@0
|
153 |
if (repeatX==0)
|
sl@0
|
154 |
repeatX=1;
|
sl@0
|
155 |
TInt min=iMinGap.Int()/100000;
|
sl@0
|
156 |
TInt max=iMaxGap.Int()/100000;
|
sl@0
|
157 |
if (average>(repeatX+1) || average<(repeatX-1))
|
sl@0
|
158 |
return(ETrue);
|
sl@0
|
159 |
if (initial>(initialX+2) || initial<(initialX-2))
|
sl@0
|
160 |
return(ETrue);
|
sl@0
|
161 |
if (min>(repeatX+1) || min<(repeatX-2))
|
sl@0
|
162 |
return(ETrue);
|
sl@0
|
163 |
if (max>(repeatX+3) || max<repeatX)
|
sl@0
|
164 |
return(ETrue);
|
sl@0
|
165 |
return(EFalse);
|
sl@0
|
166 |
}
|
sl@0
|
167 |
|
sl@0
|
168 |
TDesC& CRKWindow::Report()
|
sl@0
|
169 |
{
|
sl@0
|
170 |
if (iState!=EStateInactive)
|
sl@0
|
171 |
{
|
sl@0
|
172 |
iReport.Format(_L("Error, test not completed"));
|
sl@0
|
173 |
}
|
sl@0
|
174 |
else
|
sl@0
|
175 |
{
|
sl@0
|
176 |
TInt initial=iInitialGap.Int()/10000;
|
sl@0
|
177 |
TInt initialX=iInitialRepeatSet.Int()/10000;
|
sl@0
|
178 |
TInt average=(iTotalGap.Int()/10000/(iRepCount-1));
|
sl@0
|
179 |
TInt repeatX=iRepeatSet.Int()/10000;
|
sl@0
|
180 |
TInt min=iMinGap.Int()/10000;
|
sl@0
|
181 |
TInt max=iMaxGap.Int()/10000;
|
sl@0
|
182 |
iReport.Format(TRefByValue<const TDesC>(_L("Initial=%d [%d], Av=%d [%d], Min=%d, Max=%d")),initial,initialX,average,repeatX,min,max);
|
sl@0
|
183 |
}
|
sl@0
|
184 |
return(iReport);
|
sl@0
|
185 |
}
|
sl@0
|
186 |
|
sl@0
|
187 |
void CRKWindow::KeyDownL(const TKeyEvent &aKey,const TTime &)
|
sl@0
|
188 |
{
|
sl@0
|
189 |
switch(iState)
|
sl@0
|
190 |
{
|
sl@0
|
191 |
case EStateWaitingForKeyDown:
|
sl@0
|
192 |
SetState(EStateWaitingForKeyCode);
|
sl@0
|
193 |
iDownCode=aKey.iScanCode;
|
sl@0
|
194 |
break;
|
sl@0
|
195 |
default:;
|
sl@0
|
196 |
}
|
sl@0
|
197 |
}
|
sl@0
|
198 |
|
sl@0
|
199 |
void CRKWindow::KeyUpL(const TKeyEvent &aKey,const TTime &)
|
sl@0
|
200 |
{
|
sl@0
|
201 |
if (aKey.iScanCode==iDownCode)
|
sl@0
|
202 |
{
|
sl@0
|
203 |
switch(iState)
|
sl@0
|
204 |
{
|
sl@0
|
205 |
case EStateWaitingForKeyUp:
|
sl@0
|
206 |
SetState(EStateInactive);
|
sl@0
|
207 |
break;
|
sl@0
|
208 |
default:
|
sl@0
|
209 |
SetState(EStateError);
|
sl@0
|
210 |
break;
|
sl@0
|
211 |
}
|
sl@0
|
212 |
CActiveScheduler::Stop();
|
sl@0
|
213 |
}
|
sl@0
|
214 |
}
|
sl@0
|
215 |
|
sl@0
|
216 |
void CRKWindow::WinKeyL(const TKeyEvent &aKey,const TTime &aTime)
|
sl@0
|
217 |
{
|
sl@0
|
218 |
if (aKey.iCode==EKeyEscape)
|
sl@0
|
219 |
{
|
sl@0
|
220 |
CActiveScheduler::Stop();
|
sl@0
|
221 |
iTest->iAbort=ETrue;
|
sl@0
|
222 |
}
|
sl@0
|
223 |
if (aKey.iCode==32)
|
sl@0
|
224 |
{
|
sl@0
|
225 |
switch(iState)
|
sl@0
|
226 |
{
|
sl@0
|
227 |
case EStateWaitingForKeyCode:
|
sl@0
|
228 |
SetState(EStateWaitingForFirstRepeat);
|
sl@0
|
229 |
iPrevTime=aTime;
|
sl@0
|
230 |
break;
|
sl@0
|
231 |
case EStateWaitingForFirstRepeat:
|
sl@0
|
232 |
iRepCount=1;
|
sl@0
|
233 |
iInitialGap = I64LOW(aTime.MicroSecondsFrom(iPrevTime).Int64());
|
sl@0
|
234 |
SetState(EStateWaitingForNthRepeat);
|
sl@0
|
235 |
break;
|
sl@0
|
236 |
case EStateWaitingForNthRepeat:
|
sl@0
|
237 |
if (iRepCount==5)
|
sl@0
|
238 |
SetState(EStateWaitingForKeyUp);
|
sl@0
|
239 |
else
|
sl@0
|
240 |
{
|
sl@0
|
241 |
TTimeIntervalMicroSeconds32 gap(I64LOW(aTime.MicroSecondsFrom(iPrevTime).Int64()));
|
sl@0
|
242 |
if (gap<iMinGap)
|
sl@0
|
243 |
iMinGap=gap;
|
sl@0
|
244 |
if (gap>iMaxGap)
|
sl@0
|
245 |
iMaxGap=gap;
|
sl@0
|
246 |
iTotalGap=iTotalGap.Int()+gap.Int(); // Horrible way to do a +=
|
sl@0
|
247 |
iRepCount++;
|
sl@0
|
248 |
SetState(EStateWaitingForNthRepeat);
|
sl@0
|
249 |
}
|
sl@0
|
250 |
case EStateWaitingForKeyUp: // Do nothing here
|
sl@0
|
251 |
break;
|
sl@0
|
252 |
default:
|
sl@0
|
253 |
iTest->TestL(EFalse);
|
sl@0
|
254 |
}
|
sl@0
|
255 |
iPrevTime=aTime;
|
sl@0
|
256 |
}
|
sl@0
|
257 |
}
|
sl@0
|
258 |
|
sl@0
|
259 |
void CRKWindow::SetKeyboardRepeatRate(const TTimeIntervalMicroSeconds32 &aInitialTime, const TTimeIntervalMicroSeconds32 &aTime)
|
sl@0
|
260 |
{
|
sl@0
|
261 |
iInitialRepeatSet=aInitialTime;
|
sl@0
|
262 |
iRepeatSet=aTime;
|
sl@0
|
263 |
iMinGap=TTimeIntervalMicroSeconds32(100000000); // Any very big number will do
|
sl@0
|
264 |
iMaxGap=TTimeIntervalMicroSeconds32(0);
|
sl@0
|
265 |
iTotalGap=TTimeIntervalMicroSeconds32(0);
|
sl@0
|
266 |
SetState(EStateWaitingForKeyDown);
|
sl@0
|
267 |
Client()->iWs.Flush();
|
sl@0
|
268 |
}
|
sl@0
|
269 |
|
sl@0
|
270 |
//
|
sl@0
|
271 |
|
sl@0
|
272 |
TKRepeatTest::TKRepeatTest() : CTestBase(_L("KRepeat"))
|
sl@0
|
273 |
{}
|
sl@0
|
274 |
|
sl@0
|
275 |
TKRepeatTest::~TKRepeatTest()
|
sl@0
|
276 |
{
|
sl@0
|
277 |
CTWin::Delete(iWin);
|
sl@0
|
278 |
Client()->iWs.SetKeyboardRepeatRate(iOldInitialTime, iOldTime);
|
sl@0
|
279 |
}
|
sl@0
|
280 |
|
sl@0
|
281 |
void TKRepeatTest::ConstructL()
|
sl@0
|
282 |
{
|
sl@0
|
283 |
iWin=new(ELeave) CRKWindow(this);
|
sl@0
|
284 |
TSize screenSize=Client()->iGroup->Size();
|
sl@0
|
285 |
iWin->SetUpL(TPoint(5,5),TSize(screenSize.iWidth/2,screenSize.iHeight-10),Client()->iGroup,*Client()->iGc);
|
sl@0
|
286 |
Client()->iGroup->SetCurrentWindow(iWin);
|
sl@0
|
287 |
Client()->iWs.GetKeyboardRepeatRate(iOldInitialTime, iOldTime);
|
sl@0
|
288 |
}
|
sl@0
|
289 |
|
sl@0
|
290 |
TInt TKRepeatTest::CheckReportL()
|
sl@0
|
291 |
{
|
sl@0
|
292 |
if (iWin->CheckResults())
|
sl@0
|
293 |
{
|
sl@0
|
294 |
CTDialog *dialog=new(ELeave) CTDialog();
|
sl@0
|
295 |
dialog->SetTitle(_L("Keyboard repeat innacuracies"));
|
sl@0
|
296 |
dialog->SetLine1(iWin->Report());
|
sl@0
|
297 |
dialog->SetNumButtons(2);
|
sl@0
|
298 |
dialog->SetButtonText(0,_L("Okay"));
|
sl@0
|
299 |
dialog->SetButtonText(1,_L("Retest"));
|
sl@0
|
300 |
dialog->SetButtonText(2,_L("Fail"));
|
sl@0
|
301 |
dialog->ConstructLD(*Client()->iGroup,*Client()->iGc);
|
sl@0
|
302 |
switch(dialog->Display())
|
sl@0
|
303 |
{
|
sl@0
|
304 |
case 0:
|
sl@0
|
305 |
break;
|
sl@0
|
306 |
case 1:
|
sl@0
|
307 |
return(ETrue); // Redo test
|
sl@0
|
308 |
case 2:
|
sl@0
|
309 |
TestL(EFalse);
|
sl@0
|
310 |
break;
|
sl@0
|
311 |
}
|
sl@0
|
312 |
}
|
sl@0
|
313 |
return(EFalse);
|
sl@0
|
314 |
}
|
sl@0
|
315 |
|
sl@0
|
316 |
void TKRepeatTest::TestKeyboardRepeatRateL(const TTimeIntervalMicroSeconds32 &aInitialTime, const TTimeIntervalMicroSeconds32 &aTime)
|
sl@0
|
317 |
{
|
sl@0
|
318 |
do
|
sl@0
|
319 |
{
|
sl@0
|
320 |
Client()->iWs.SetKeyboardRepeatRate(aInitialTime, aTime);
|
sl@0
|
321 |
iWin->SetKeyboardRepeatRate(aInitialTime, aTime);
|
sl@0
|
322 |
CActiveScheduler::Start();
|
sl@0
|
323 |
if (iAbort)
|
sl@0
|
324 |
AbortL();
|
sl@0
|
325 |
} while(CheckReportL());
|
sl@0
|
326 |
}
|
sl@0
|
327 |
|
sl@0
|
328 |
TestState TKRepeatTest::DoTestL()
|
sl@0
|
329 |
{
|
sl@0
|
330 |
switch(iState)
|
sl@0
|
331 |
{
|
sl@0
|
332 |
case 0:
|
sl@0
|
333 |
LogSubTest(_L("Keyboard Repeat"),1);
|
sl@0
|
334 |
TestKeyboardRepeatRateL(TTimeIntervalMicroSeconds32(1000000), TTimeIntervalMicroSeconds32(500000));
|
sl@0
|
335 |
LogSubTest(_L("Keyboard Repeat"),2);
|
sl@0
|
336 |
TestKeyboardRepeatRateL(TTimeIntervalMicroSeconds32(200000), TTimeIntervalMicroSeconds32(100000));
|
sl@0
|
337 |
LogSubTest(_L("Keyboard Repeat"),3);
|
sl@0
|
338 |
TestKeyboardRepeatRateL(TTimeIntervalMicroSeconds32(0), TTimeIntervalMicroSeconds32(100000));
|
sl@0
|
339 |
LogSubTest(_L("Keyboard Repeat"),4);
|
sl@0
|
340 |
TestKeyboardRepeatRateL(TTimeIntervalMicroSeconds32(100000), TTimeIntervalMicroSeconds32(100000));
|
sl@0
|
341 |
iState++;
|
sl@0
|
342 |
break;
|
sl@0
|
343 |
default:
|
sl@0
|
344 |
return(EFinished);
|
sl@0
|
345 |
}
|
sl@0
|
346 |
return(ENext);
|
sl@0
|
347 |
}
|
sl@0
|
348 |
|