First public contribution.
1 // Copyright (c) 1996-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.
14 // Test Wserv password features
21 #include "../tlib/testbase.h"
26 #define THE_PASSWORD _L("pass")
44 class CPasswordWindowGroup : public CTWindowGroup
47 CPasswordWindowGroup(CTClient *aClient, CPasswordTest *aTest);
49 void PasswordL(const TTime &aTime);
50 void KeyL(const TKeyEvent &aKey,const TTime &aTime);
51 void SwitchOn(const TTime &aTime);
56 class CPasswordWindowGroup2 : public CTWindowGroup
59 CPasswordWindowGroup2(CTClient *aClient, CPasswordTest *aTest);
61 void KeyL(const TKeyEvent &aKey,const TTime &aTime);
66 class CPasswordWindow : public CTWin
69 CPasswordWindow(CPasswordTest *aTest);
75 class CPasswordTest : public CTestBase
82 void Fail(TInt aWhere);
83 void EnterKeyPressed(TPasswordState aNewState);
85 void TestComplete(TPasswordState aNewState);
86 void PasswordMsgReceivedL();
87 TPasswordState PasswordState() const;
88 void SetPassState(TPasswordState aPassState);
89 void StartMainPasswordTestL();
90 void StartOnceADayPasswordTestL();
93 CPasswordWindowGroup *iGroup;
94 CPasswordWindowGroup2 *iGroup2;
95 CPasswordWindow *iPassWin;
96 CTBlankWindow *iBlankWin;
99 TPasswordState iPassState;
100 TBool iPasswordTestFailed;
103 GLDEF_C CTestBase *CreatePasswordTest()
105 return(new(ELeave) CPasswordTest());
110 CPasswordWindowGroup::CPasswordWindowGroup(CTClient *aClient, CPasswordTest *aTest) :
111 CTWindowGroup(aClient),
114 __DECLARE_NAME(_S("CPasswordWindowGroup"));
117 void CPasswordWindowGroup::ConstructL()
119 CTWindowGroup::ConstructL();
120 GroupWin()->EnableOnEvents();
123 void CPasswordWindowGroup::SwitchOn(const TTime &)
128 void CPasswordWindowGroup::KeyL(const TKeyEvent &aKey,const TTime &)
130 if (aKey.iCode==EKeyEscape)
131 iTest->TestComplete(EPasswordFinished);
132 switch(iTest->PasswordState())
135 if (aKey.iCode==EKeyEnter)
136 iTest->EnterKeyPressed(EWaitForA);
139 if (aKey.iCode==EKeyEnter)
140 iTest->TestComplete(EPasswordFinished);
146 void CPasswordWindowGroup::PasswordL(const TTime &)
148 iTest->TestL(iGroupWin.OrdinalPosition()==0);
149 iTest->PasswordMsgReceivedL();
154 CPasswordWindowGroup2::CPasswordWindowGroup2(CTClient *aClient, CPasswordTest *aTest) :
155 CTWindowGroup(aClient),
158 __DECLARE_NAME(_S("CPasswordWindowGroup"));
161 void CPasswordWindowGroup2::ConstructL()
163 CTWindowGroup::ConstructL();
164 iGroupWin.CaptureKey('a',0,0);
167 void CPasswordWindowGroup2::KeyL(const TKeyEvent &aKey,const TTime &)
169 if (iTest->PasswordState()!=EPasswordFinished)
171 if (iTest->PasswordState()!=EWaitForA)
173 #if defined(LOG_TESTS)
175 _LIT(KBadKey,"Bad Key Code=%d(%c) Scan=%d(%c) Rep=%d");
176 buf.AppendFormat(KBadKey,aKey.iCode,aKey.iCode,aKey.iScanCode,aKey.iScanCode,aKey.iRepeats);
177 Client()->LogMessage(buf);
179 if (aKey.iRepeats==0)
186 iTest->TestComplete(EWaitForSwitchOff2);
193 CPasswordWindow::CPasswordWindow(CPasswordTest *aTest) :
198 void CPasswordWindow::Draw()
201 switch(iTest->PasswordState())
203 case EWaitForSwitchOff:
204 iGc->DrawText(_L("Please wait, turning off & on [1]"),TPoint(10,20));
206 case EWaitForSwitchOff2:
207 iGc->DrawText(_L("Please wait, turning off & on [2]"),TPoint(10,20));
209 case EWaitForSwitchOff3:
210 iGc->DrawText(_L("Please wait, turning off & on [3]"),TPoint(10,20));
212 case EWaitForSwitchOff4:
213 iGc->DrawText(_L("Please wait, turning off & on [4]"),TPoint(10,20));
215 case EWaitForSwitchOff5:
216 iGc->DrawText(_L("Please wait, turning off & on [5]"),TPoint(10,20));
219 iGc->DrawText(_L("Try the key of death, then..."),TPoint(10,20));
220 iGc->DrawText(_L("Press 'a', then..."),TPoint(10,40));
221 iGc->DrawText(_L("Press Enter"),TPoint(10,60));
224 iGc->DrawText(_L("Press Enter"),TPoint(10,20));
227 iGc->DrawText(_L("Press 'a'"),TPoint(10,20));
228 case EPasswordFinished:
236 CPasswordTest::CPasswordTest() : CTestBase(_L("Password"))
239 CPasswordTest::~CPasswordTest()
247 #if defined(LOG_TESTS)
248 void CPasswordTest::Fail(TInt aWhere)
250 void CPasswordTest::Fail(TInt /*aWhere*/)
253 #if defined(LOG_TESTS)
255 _LIT(KFailed,"Password Failed at %d (%d,%d)");
256 buf.AppendFormat(KFailed,aWhere,iState,iPassState);
257 Client()->LogMessage(buf);
259 iPasswordTestFailed=ETrue;
263 void CPasswordTest::TurnOffAndOn()
265 /*#if defined(LOG_TESTS)
267 _LIT(KSettingTime,"Setting Off Timer");
268 buf.Append(KSettingTime);
269 Client()->LogMessage(buf);
275 time+=TTimeIntervalSeconds(7); // For some reason the O/S won't switch off for less than 6 seconds
276 TRequestStatus status;
277 timer.At(status,time);
278 UserHal::SwitchOff();
279 User::WaitForRequest(status);
280 #if !defined(__WINS__)
282 event.Set(TRawEvent::ESwitchOn);
283 UserSvr::AddEvent(event);
285 /*#if defined(LOG_TESTS)
287 _LIT(KTimerOff,"Timer Gone Off (P=%d,S=%d)");
288 buf.AppendFormat(KTimerOff,iState,iPassState);
289 Client()->LogMessage(buf);
293 TPasswordState CPasswordTest::PasswordState() const
298 void CPasswordTest::SetPassState(TPasswordState aPassState)
300 iPassState=aPassState;
302 Client()->iWs.Flush();
303 /*#if defined(LOG_TESTS)
305 _LIT(PassTestState,"Password Test(%d), State=%d");
306 buf.AppendFormat(PassTestState,iState,aPassState);
307 Client()->LogMessage(buf);
311 case EWaitForSwitchOff:
312 case EWaitForSwitchOff2:
313 case EWaitForSwitchOff3:
314 case EWaitForSwitchOff4:
315 case EWaitForSwitchOff5:
322 void CPasswordTest::SwitchOn()
324 /*#if defined(LOG_TESTS)
326 _LIT(KTimerOff,"Switch On (P=%d,S=%d)");
327 buf.AppendFormat(KTimerOff,iState,iPassState);
328 Client()->LogMessage(buf);
332 case EWaitForSwitchOff:
333 SetPassState(EWaitForEnter);
335 case EWaitForSwitchOff2:
336 SetPassState(EWaitForSwitchOff3);
338 case EWaitForSwitchOff3:
339 SetPassState(EWaitForSwitchOff4);
341 case EWaitForSwitchOff4:
343 SetPassState(EWaitForSwitchOff5);
346 time+=TTimeIntervalHours(24);
347 User::SetHomeTime(time);
350 case EWaitForSwitchOff5:
351 SetPassState(EWaitForEnter2);
357 void CPasswordTest::PasswordMsgReceivedL()
359 TestL(iPassWin->BaseWin()->OrdinalPosition()==0);
360 if (iPassState==EWaitForSwitchOff3 || iPassState==EWaitForSwitchOff4)
364 void CPasswordTest::EnterKeyPressed(TPasswordState aNewState)
366 iPassWin->BaseWin()->SetOrdinalPosition(-1);
367 SetPassState(aNewState);
368 Client()->iWs.PasswordEntered();
371 void CPasswordTest::TestComplete(TPasswordState aNewState)
374 SetPassState(aNewState);
375 iPassState=aNewState;
378 void CPasswordTest::ConstructL()
380 iGroup2=new(ELeave) CPasswordWindowGroup2(Client(),this);
381 iGroup2->ConstructL();
382 iGroup=new(ELeave) CPasswordWindowGroup(Client(),this);
383 iGroup->ConstructL();
384 iPassWin=new(ELeave) CPasswordWindow(this);
385 iPassWin->ConstructL(*iGroup);
386 iPassWin->AssignGC(*Client()->iGc);
387 iPassWin->Activate();
388 iBlankWin=new(ELeave) CTBlankWindow();
389 iBlankWin->ConstructL(*iGroup);
390 iBlankWin->SetVisible(EFalse);
391 iBlankWin->Activate();
395 void CPasswordTest::StartMainPasswordTestL()
397 if (iPassWin->BaseWin()->PasswordWindow(EPasswordAlways)!=KErrNone)
399 DisplayDialog(_L("Can't do password tests"),_L("Password window"),_L("already exists"), Client()->iGroup->GroupWin());
402 SetPassState(EWaitForSwitchOff);
405 void CPasswordTest::StartOnceADayPasswordTestL()
407 TestL(iPassWin->BaseWin()->PasswordWindow(EPasswordOnceADay)==KErrNone);
410 TestState CPasswordTest::DoTestL()
412 if (iPasswordTestFailed)
417 LogSubTest(_L("Password 1"),1);
418 StartMainPasswordTestL();
422 LogSubTest(_L("Password 2"),2);
423 StartOnceADayPasswordTestL();