First public contribution.
1 // Copyright (c) 1995-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".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
22 #include "../tlib/testbase.h"
28 EModeWaitingForFirstDown,
41 TInt connIndex; // Connection that should capture this key
47 struct SCapKeyTestParams
49 TText *txt; // Text message telling user what to do
50 TInt connIndex; // Connection that receive the key press
51 TUint keyCode; // Expected key code
52 TUint modifier_mask;// Modifiers mask for expected modifiers
53 TUint modifiers; // Expected modifiers
58 TUint keyCode; // Expected key code
59 TUint modifier_mask;// Modifiers mask for expected modifiers
60 TUint modifiers; // Expected modifiers
63 LOCAL_D SCapKeyParams capKeys[]={
64 {1,19,EModifierFunc|EModifierCtrl,EModifierFunc|EModifierCtrl},
65 {2,'b',EModifierFunc|EModifierCtrl,EModifierFunc},
66 {2,'n',EModifierFunc|EModifierCtrl,EModifierFunc},
67 {0,3,EModifierFunc|EModifierCtrl,EModifierFunc|EModifierCtrl},
72 LOCAL_D SCapKeyParams capUpAndDownKeys[]={
73 {2,EStdKeySpace,EModifierFunc|EModifierCtrl|EModifierShift,0},
74 {2,EStdKeyEnter,EModifierFunc|EModifierCtrl|EModifierShift,EModifierShift},
77 LOCAL_D SCapKeyTestParams capKeyTests[]={
78 {(TText *)_S("Press q"),2,'q',EModifierFunc|EModifierCtrl|EModifierShift,0},
79 //{(TText *)_S("Press <Alt>q"),2,'q',EModifierFunc|EModifierCtrl|EModifierShift,EModifierFunc},
80 {(TText *)_S("Press <Alt>w"),2,'w',EModifierFunc|EModifierCtrl|EModifierShift,EModifierFunc},
81 {(TText *)_S("Press a"),0,'a',0},
82 //{(TText *)_S("Press <Ctrl><Alt>a"),1,1,EModifierFunc|EModifierCtrl|EModifierShift,EModifierFunc|EModifierCtrl},
83 {(TText *)_S("Press <Ctrl><Alt>s"),1,19,EModifierFunc|EModifierCtrl|EModifierShift,EModifierFunc|EModifierCtrl},
84 //{(TText *)_S("Press <Alt>b"),2,'b',EModifierFunc|EModifierCtrl|EModifierShift,EModifierFunc},
85 {(TText *)_S("Press <Alt>n"),2,'n',EModifierFunc|EModifierCtrl|EModifierShift,EModifierFunc},
86 {(TText *)_S("Press <Ctrl><Alt>b"),0,2,EModifierFunc|EModifierCtrl|EModifierShift,EModifierFunc|EModifierCtrl},
87 //{(TText *)_S("Press <Alt>c"),0,'c',EModifierFunc|EModifierCtrl|EModifierShift,EModifierFunc},
88 {(TText *)_S("Press <Alt>d"),0,'d',EModifierFunc|EModifierCtrl|EModifierShift,EModifierFunc},
89 {(TText *)_S("Press <Ctrl><Alt>c"),0,3,EModifierFunc|EModifierCtrl|EModifierShift,EModifierFunc|EModifierCtrl},
91 // Capture ups and downs
93 {(TText *)_S("Press <Space>"),2,EStdKeySpace,EModifierFunc|EModifierCtrl|EModifierShift,0},
94 {(TText *)_S("Press <Enter>"),0,EStdKeyEnter,EModifierShift,0},
95 {(TText *)_S("Press <Shift><Space>"),0,EStdKeySpace,EModifierFunc|EModifierCtrl|EModifierShift,EModifierShift},
96 {(TText *)_S("Press <Shift><Enter>"),2,EStdKeyEnter,EModifierShift,EModifierShift},
100 {(TText *)_S("Press <Ctrl>c"),0,0,0,0},
101 {(TText *)_S("Press <Ctrl>d"),0,0,0,0},
102 {(TText *)_S("Press z"),0,0,0,0},
105 LOCAL_D SAbortKeyTests abortKeyTests[]={
106 {3,EModifierCtrl,EModifierCtrl},
107 {4,EModifierCtrl,EModifierCtrl},
108 {'z',EModifierFunc|EModifierCtrl|EModifierShift,0}
118 LOCAL_D SErrorCapKey errorKeys[]={
119 {'a',EModifierFunc|EModifierShift,EModifierFunc|EModifierCtrl},
120 {'1',0,EModifierFunc},
121 {3,EModifierCtrl,EModifierCtrl|EModifierShift},
124 const TInt numCapKeys=sizeof(capKeys)/sizeof(capKeys[0]);
125 const TInt numTests=sizeof(capKeyTests)/sizeof(capKeyTests[0]);
126 const TInt numErrorKeys=sizeof(errorKeys)/sizeof(errorKeys[0]);
127 const TInt numAbortKeyTests=sizeof(abortKeyTests)/sizeof(abortKeyTests[0]);
128 const TInt numUpDownKeys=sizeof(capUpAndDownKeys)/sizeof(capUpAndDownKeys[0]);
129 const TInt numUpDownKeyTests=4;
130 const TInt numCapKeyTests=numTests-numAbortKeyTests-numUpDownKeyTests;
132 LOCAL_D TInt capKeyHandle[numCapKeys];
133 LOCAL_D TInt capUpDownKeyHandle[numUpDownKeys];
136 class TCaptureKeyTest;
137 class CCKAbortConnection;
139 class CCKConnectionBase : public CTClient
142 CCKConnectionBase(TCaptureKeyTest *aTest);
145 TCaptureKeyTest *iTest;
148 class CCKConnection : public CCKConnectionBase
151 CCKConnection(TCaptureKeyTest *aTest, TInt aConnIndex);
154 void CheckKeyL(const SCapKeyTestParams &aKeyTest, const TKeyEvent &aKey);
155 void SubStateChanged();
156 void KeyTestL(TInt aBool);
157 void KeyL(const TKeyEvent &aKey,const TTime &aTime);
158 void CheckUpDownL(const SCapKeyTestParams &aKeyTest, const TKeyEvent &aKey);
159 void CheckUpDownL(const TKeyEvent &aKey);
160 inline TInt Index() {return iConnIndex;}
166 class CAbortHandler : public CTEventBase
169 CAbortHandler(RWsSession *aWs, CCKAbortConnection *aConnection);
176 CCKAbortConnection *iConnection;
179 class CCKAbortConnection : public CCKConnectionBase
182 CCKAbortConnection(TCaptureKeyTest *aTest);
183 ~CCKAbortConnection();
185 void ReceivedAbortEventL(TInt aHandle, TKeyEvent *aKey);
188 CAbortHandler *iAbortHandler;
192 class CCKWindow : public CTWin
195 CCKWindow(TCaptureKeyTest *aTest, TInt aConnIndex);
196 void SetUpL(TPoint pos,TSize size,CTWinBase *parent, CWindowGc &aGc);
200 TCaptureKeyTest *iTest;
204 class CCKWindowGroup : public CTWindowGroup
207 CCKWindowGroup(CTClient *aClient, TCaptureKeyTest *aTest);
208 void KeyL(const TKeyEvent &aKey,const TTime &aTime);
209 void KeyDownL(const TKeyEvent &aKey,const TTime &);
210 void KeyUpL(const TKeyEvent &aKey,const TTime &);
211 void CheckUpDown(const SCapKeyTestParams &aKeyTest, const TKeyEvent &aKey);
213 TCaptureKeyTest *iTest;
216 class TCaptureKeyTest : public CTestBase
223 void EndCaptureKeyTest();
224 TInt SubState() const;
227 void CapKeyPurgingL();
228 void SetUpPriorityKeyTest();
230 void CaptureUpsAndDownsTest();
232 void SetMode(TTestMode aMode);
234 CCKConnection *iConn1;
235 CCKConnection *iConn2;
236 CCKConnection *iConn3;
237 CCKAbortConnection *iAbortConn;
244 GLDEF_C CTestBase *CreateMultiCaptureKeyTest()
246 return(new(ELeave) TCaptureKeyTest());
252 CAbortHandler::CAbortHandler(RWsSession *aWs, CCKAbortConnection *aConnection) : CTEventBase(aWs, 10), iConnection(aConnection)
256 CAbortHandler::~CAbortHandler()
261 void CAbortHandler::Request()
263 iWs->PriorityKeyReady(&iStatus);
267 void CAbortHandler::DoCancel()
269 iWs->PriorityKeyReadyCancel();
272 void CAbortHandler::doRunL()
274 TWsPriorityKeyEvent abortEvent;
275 iWs->GetPriorityKey(abortEvent);
276 iConnection->ReceivedAbortEventL(abortEvent.Handle(),abortEvent.Key());
282 CCKConnectionBase::CCKConnectionBase(TCaptureKeyTest *aTest) : iTest(aTest)
286 void CCKConnectionBase::ConstructL()
288 CTClient::ConstructL();
289 iGroup=new(ELeave) CCKWindowGroup(this, iTest);
290 iGroup->ConstructL();
293 CCKConnection::CCKConnection(TCaptureKeyTest *aTest, TInt aConnIndex) : CCKConnectionBase(aTest), iConnIndex(aConnIndex)
297 CCKConnection::~CCKConnection()
299 for(TInt index=0;index<numCapKeys;index++)
300 if (capKeys[index].connIndex==iConnIndex)
301 iGroup->GroupWin()->CancelCaptureKey(capKeyHandle[index]);
302 for(TInt index2=0;index2<numUpDownKeys;index2++)
303 if (capUpAndDownKeys[index2].connIndex==iConnIndex)
304 iGroup->GroupWin()->CancelCaptureKeyUpAndDowns(capUpDownKeyHandle[index2]);
308 void CCKConnection::SubStateChanged()
314 void CCKConnection::ConstructL()
316 CCKConnectionBase::ConstructL();
317 for(TInt index=0;index<numCapKeys;index++)
318 if (capKeys[index].connIndex==iConnIndex)
319 capKeyHandle[index]=User::LeaveIfError(iGroup->GroupWin()->CaptureKey(capKeys[index].keyCode,capKeys[index].modifier_mask,capKeys[index].modifiers));
320 for(TInt index2=0;index2<numUpDownKeys;index2++)
321 if (capUpAndDownKeys[index2].connIndex==iConnIndex)
322 capUpDownKeyHandle[index2]=User::LeaveIfError(iGroup->GroupWin()->CaptureKeyUpAndDowns(capUpAndDownKeys[index2].keyCode,
323 capUpAndDownKeys[index2].modifier_mask,capUpAndDownKeys[index2].modifiers));
324 TSize screenSize=iGroup->Size();
325 TInt winWidth=screenSize.iWidth/2;
326 TInt winHeight=screenSize.iHeight-10;
327 iGroup->GroupWin()->AutoForeground(EFalse); // Don't allow clicking to cause foreground, might mess up test
328 CCKWindow *win=new(ELeave) CCKWindow(iTest, iConnIndex);
329 win->SetUpL(TPoint(5,5),TSize(winWidth,winHeight),iGroup,*iGc);
333 void CCKConnection::KeyTestL(TInt aBool)
337 CTDialog *dialog=new(ELeave) CTDialog();
339 dialog->ConstructLD(*iGroup,*iGc);
340 dialog->SetTitle(_L("Invalid key press"));
341 dialog->SetLine1(_L("Try again?"));
342 dialog->SetNumButtons(2);
343 dialog->SetButtonText(0,_L("Fail"));
344 dialog->SetButtonText(1,_L("Retry"));
345 ret=dialog->Display();
346 User::Leave(ret==1 ? ECapKeyRetry : ECapKeyFail);
350 void CCKConnection::CheckKeyL(const SCapKeyTestParams &aKeyTest, const TKeyEvent &aKey)
352 KeyTestL(aKeyTest.connIndex==iConnIndex);
353 KeyTestL(aKeyTest.keyCode==aKey.iCode);
354 KeyTestL(aKeyTest.modifiers==(aKey.iModifiers&aKeyTest.modifier_mask));
357 void CCKConnection::CheckUpDownL(const SCapKeyTestParams &aKeyTest, const TKeyEvent &aKey)
359 KeyTestL(aKeyTest.connIndex==iConnIndex);
360 KeyTestL(aKeyTest.keyCode==(TUint)aKey.iScanCode);
361 KeyTestL(aKeyTest.modifiers==(aKey.iModifiers&aKeyTest.modifier_mask));
364 void CCKConnection::KeyL(const TKeyEvent &aKey,const TTime &)
366 if (iTest->Mode()==EModeNormalCapture)
368 if (aKey.iCode==EKeyEscape)
370 TRAPD(ret,CheckKeyL(capKeyTests[iTest->SubState()],aKey));
371 if (ret==ECapKeyOkay)
372 iTest->IncSubState();
374 iTest->TestL(ret==ECapKeyRetry);
378 void CCKConnection::CheckUpDownL(const TKeyEvent &aKey)
380 CheckUpDownL(capKeyTests[iTest->SubState()],aKey);
383 CCKAbortConnection::CCKAbortConnection(TCaptureKeyTest *aTest) : CCKConnectionBase(aTest)
387 CCKAbortConnection::~CCKAbortConnection()
389 iGroup->GroupWin()->RemovePriorityKey(3,EModifierCtrl,EModifierCtrl);
390 delete iAbortHandler;
393 void CCKAbortConnection::ConstructL()
395 CCKConnectionBase::ConstructL();
396 User::LeaveIfError(iGroup->GroupWin()->AddPriorityKey(abortKeyTests[0].keyCode,abortKeyTests[0].modifier_mask,abortKeyTests[0].modifiers));
397 User::LeaveIfError(iGroup->GroupWin()->AddPriorityKey(abortKeyTests[1].keyCode,abortKeyTests[1].modifier_mask,abortKeyTests[1].modifiers));
398 User::LeaveIfError(iGroup->GroupWin()->AddPriorityKey(abortKeyTests[2].keyCode,abortKeyTests[2].modifier_mask,abortKeyTests[2].modifiers));
399 iAbortHandler=new(ELeave) CAbortHandler(&iWs, this);
400 iAbortHandler->Construct();
404 void CCKAbortConnection::ReceivedAbortEventL(TInt aHandle, TKeyEvent *aKey)
406 iTest->TestL(aHandle==(TInt)iGroup);
407 iTest->TestL(aKey->iCode==abortKeyTests[iAbortKeyIndex].keyCode);
408 iTest->TestL((aKey->iModifiers&abortKeyTests[iAbortKeyIndex].modifier_mask)==abortKeyTests[iAbortKeyIndex].modifiers);
410 iTest->IncSubState();
413 void CCKAbortConnection::Foreground()
415 iGroup->GroupWin()->SetOrdinalPosition(0);
420 // CCKWindowGroup class //
423 CCKWindowGroup::CCKWindowGroup(CTClient *aClient, TCaptureKeyTest *aTest) : CTWindowGroup(aClient), iTest(aTest)
426 void CCKWindowGroup::KeyL(const TKeyEvent &aKey,const TTime &time)
428 /*TLogMessageText buf(_S("##Recieved Key: "));
429 buf.Append(aKey.iScanCode);
431 buf.AppendNum(aKey.iScanCode);
436 buf.AppendNum(((CCKConnection *)iClient)->Index());
439 iClient->iWs.LogMessage(buf);*/
441 iCurWin->WinKeyL(aKey,time);
443 ((CCKConnection *)iClient)->KeyL(aKey,time);
446 void CCKWindowGroup::KeyDownL(const TKeyEvent &aKey,const TTime &)
448 if (aKey.iScanCode!=EStdKeyLeftShift && aKey.iScanCode!=EStdKeyRightShift)
450 if (iTest->Mode()==EModeWaitingForFirstDown)
451 iTest->SetMode(EModeKeyUpsAndDowns);
452 if (iTest->Mode()==EModeKeyUpsAndDowns)
453 ((CCKConnection *)iClient)->CheckUpDownL(aKey);
457 void CCKWindowGroup::KeyUpL(const TKeyEvent &aKey,const TTime &)
459 if (aKey.iScanCode!=EStdKeyLeftShift && aKey.iScanCode!=EStdKeyRightShift)
461 if (iTest->Mode()==EModeKeyUpsAndDowns)
463 ((CCKConnection *)iClient)->CheckUpDownL(aKey);
464 iTest->IncSubState();
470 // CCKWindow, class //
473 CCKWindow::CCKWindow(TCaptureKeyTest *aTest, TInt aConnIndex) : CTWin(), iConnIndex(aConnIndex), iTest(aTest)
475 iBack=TRgb::Gray256(230);
478 void CCKWindow::SetUpL(TPoint pos,TSize size,CTWinBase *parent, CWindowGc &aGc)
480 ConstructExtLD(*parent,pos,size);
481 iWin.SetBackgroundColor(iBack);
486 void CCKWindow::Draw()
490 iGc->DrawText(TPtrC(capKeyTests[iTest->SubState()].txt), TPoint(10,20));
495 TCaptureKeyTest::TCaptureKeyTest() : CTestBase(_L("Capture Key"))
498 TCaptureKeyTest::~TCaptureKeyTest()
506 void TCaptureKeyTest::ConstructL()
508 iAbortConn=new(ELeave) CCKAbortConnection(this);
509 iAbortConn->ConstructL();
510 iConn3=new(ELeave) CCKConnection(this,2);
511 iConn3->ConstructL();
512 iConn2=new(ELeave) CCKConnection(this,1);
513 iConn2->ConstructL();
514 iConn1=new(ELeave) CCKConnection(this,0);
515 iConn1->ConstructL();
516 iMode=EModeNormalCapture;
519 TInt TCaptureKeyTest::SubState() const
524 void TCaptureKeyTest::IncSubState()
527 iConn1->SubStateChanged();
528 iConn2->SubStateChanged();
529 iConn3->SubStateChanged();
532 case EModeNormalCapture:
533 if (iSubState==numCapKeyTests)
536 case EModeKeyUpsAndDowns:
537 if (iSubState==(numCapKeyTests+numUpDownKeyTests))
541 if (iSubState==(numCapKeyTests+numUpDownKeyTests+numAbortKeyTests))
549 void TCaptureKeyTest::CapKeyPurgingL()
551 TInt base=Client()->iWs.ResourceCount();
552 RWindowGroup groupWin(Client()->iWs);
553 User::LeaveIfError(groupWin.Construct(ENullWsHandle));
554 TInt capHandle=User::LeaveIfError(groupWin.CaptureKey('a',EModifierFunc,EModifierFunc));
555 User::LeaveIfError(groupWin.CaptureKey('b',EModifierFunc,EModifierFunc));
556 TestL(Client()->iWs.ResourceCount()==(base+3));
557 groupWin.CancelCaptureKey(capHandle);
558 TestL(Client()->iWs.ResourceCount()==(base+2));
560 TestL(Client()->iWs.ResourceCount()==base); // Check it also freed the extra capture key
563 void TCaptureKeyTest::BadParamsL()
565 TInt resCount=Client()->iWs.ResourceCount();
566 for(TInt index=0;index<numErrorKeys;index++)
567 TestL(Client()->iGroup->GroupWin()->CaptureKey(errorKeys[index].keyCode,errorKeys[index].modifier_mask,errorKeys[index].modifiers)==KErrArgument);
568 TestL(Client()->iWs.ResourceCount()==resCount);
571 void TCaptureKeyTest::TestComplete()
576 void TCaptureKeyTest::SetMode(TTestMode aMode)
581 TTestMode TCaptureKeyTest::Mode()
586 void TCaptureKeyTest::SetUpPriorityKeyTest()
588 iMode=EModeAbortKeys;
589 iAbortConn->Foreground();
592 void TCaptureKeyTest::CaptureUpsAndDownsTest()
594 iMode=EModeWaitingForFirstDown;
597 TestState TCaptureKeyTest::DoTestL()
601 case 0: // Dummy one to let capture key tests run
605 LogSubTest(_L("Capture ups and downs"),1);
606 CaptureUpsAndDownsTest();
610 LogSubTest(_L("Abort key"),1);
611 SetUpPriorityKeyTest();
615 LogSubTest(_L("Errors"),1);
618 LogSubTest(_L("CaptureKey"),1);