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.
14 // Manual window server tests
15 // Note: Wherever possible tests should be put into the TAUTO automatic test
16 // code test should only go here when manual operation is essential
27 class ErrorDialog : public CTDialog
30 ErrorDialog(CTestBase *aTest);
31 void ButtonPressL(TInt aButton);
36 class TestWindowGroup : public CTWindowGroup
39 TestWindowGroup(CTClient *aClient);
41 void KeyL(const TKeyEvent &aKey,const TTime &aTime);
42 void KeyDownL(const TKeyEvent &aKey,const TTime &aTime);
43 void KeyUpL(const TKeyEvent &aKey,const TTime &aTime);
46 class CTManScheduler : public CActiveScheduler
49 void SetClient(TestClient *aClient);
50 void Error(TInt anError) const;
52 void doErrorL(TInt anError) const;
57 typedef CTestBase *(*CTestBaseCreate)();
59 GLREF_C CTestBase *CreateScreenModeTest();
60 GLREF_C CTestBase *CreateScaleTest();
61 GLREF_C CTestBase *CreateTextTest();
62 GLREF_C CTestBase *CreateDummyTest();
63 GLREF_C CTestBase *CreateMultiConTest();
64 GLREF_C CTestBase *CreateMultiCaptureKeyTest();
65 GLREF_C CTestBase *CreateHotKeyTest();
66 GLREF_C CTestBase *CreatePointerTest();
67 GLREF_C CTestBase *CreatePointerCaptureTest();
68 GLREF_C CTestBase *CreatePointerBufferTest();
69 GLREF_C CTestBase *CreateModifiersChangedTest();
70 GLREF_C CTestBase *CreatePointerKeyTest();
71 GLREF_C CTestBase *CreatePasswordTest();
72 GLREF_C CTestBase *CreatePointerCursorTest();
73 GLREF_C CTestBase *CreateScreenModeTimes();
75 // Tests that have not been converted to tauto yet
76 CTestBaseCreate CreateTestClass[]={
77 CreateScreenModeTimes,
78 CreatePointerCursorTest,
79 CreatePointerTest, //Mostly converted
80 CreatePointerKeyTest, //Mostly converted
81 CreateModifiersChangedTest, //Partially Conerted
82 CreatePointerBufferTest,
90 void TManPanic(TInt aPanic)
92 User::Panic(_L("Auto"),aPanic);
96 // Log window, logs testing //
99 LogWindow::LogWindow() : CTWin()
103 void LogWindow::ConstructL(CTWinBase &parent)
105 CTWin::ConstructL(parent);
106 iTitleHeight=iFont->HeightInPixels()+4;
109 void LogWindow::Draw()
111 iGc->SetPenColor(TRgb::Gray16(8));
112 iGc->SetPenColor(TRgb::Gray16(0));
114 iGc->DrawLine(TPoint(0,iTitleHeight),TPoint(iSize.iWidth,iTitleHeight));
115 iGc->DrawText(iTestTitle, TPoint((iSize.iWidth-iFont->TextWidthInPixels(iTestTitle))/2,iFont->AscentInPixels()+2));
118 void LogWindow::LogTest(TDesC &aTitle,TInt aNum)
120 iTestTitle.Format(TRefByValue<const TDesC>(_L("Test %d,%S")),aNum,&aTitle);
122 Client()->iWs.Flush();
126 // Test window, simple window used to do test graphics in //
128 TestWindow::TestWindow() : CTWin()
132 void TestWindow::SetUpL(TPoint pos,TSize size,CTWinBase *parent, CWindowGc &aGc)
134 iBorderWin=new(ELeave) BorderWindow();
135 iBorderWin->SetUpL(pos,size,parent,aGc);
136 CTWin::ConstructExtLD(*iBorderWin,TPoint(2,2),TSize(size.iWidth-4,size.iHeight-4));
141 void TestWindow::Draw()
147 BorderWindow::BorderWindow() : CTWin()
151 void BorderWindow::ConstructL(CTWinBase &parent)
153 CTWin::ConstructL(parent);
156 void BorderWindow::Draw()
158 iGc->SetBrushColor(TRgb::Gray16(0));
159 iGc->SetBrushStyle(CGraphicsContext::ESolidBrush);
160 iGc->SetPenStyle(CGraphicsContext::ENullPen);
161 iGc->DrawRect(TRect(Size()));
166 TestWindowGroup::TestWindowGroup(CTClient *aClient) : CTWindowGroup(aClient)
170 void TestWindowGroup::ConstructL()
172 CTWindowGroup::ConstructL();
173 GroupWin()->EnableScreenChangeEvents();
176 void TestWindowGroup::KeyDownL(const TKeyEvent &aKey,const TTime &aTime)
179 iCurWin->KeyDownL(aKey,aTime);
182 void TestWindowGroup::KeyUpL(const TKeyEvent &aKey,const TTime &aTime)
185 iCurWin->KeyUpL(aKey,aTime);
188 void TestWindowGroup::KeyL(const TKeyEvent &aKey,const TTime &aTime)
190 if (aKey.iModifiers&EModifierFunc)
195 ((TestClient *)Client())->Driver()->iTest->TriggerFail();
200 iCurWin->WinKeyL(aKey,aTime);
205 TestClient::TestClient()
209 void TestClient::ConstructL()
211 CTClient::ConstructL();
213 iGroup=new(ELeave) TestWindowGroup(this);
214 iGroup->ConstructL();
216 TSize screenSize=iGroup->Size();
217 TInt winWidth=(screenSize.iWidth/3)-10;
218 TInt winHeight=screenSize.iHeight-10;
219 LogWin=new(ELeave) LogWindow();
220 LogWin->SetUpL(TPoint(5+winWidth*2,5),TSize(winWidth,winHeight),iGroup,*iGc);
221 iDriver=new(ELeave) TestDriver(this);
224 TestClient::~TestClient()
229 TestDriver *TestClient::Driver()
238 ErrorDialog::ErrorDialog(CTestBase *aTest) : CTDialog(), iTest(aTest)
241 void ErrorDialog::ButtonPressL(TInt aButton)
247 CTestBase *test=iTest;
248 CTDialog::Delete(this);
250 test->Driver()->DestroyTest();
251 CActiveScheduler::Stop();
252 User::Leave(0); // Signals RunL not to do another request
256 CTestBase *test=iTest;
257 CTDialog::Delete(this);
260 test->Driver()->TestComplete();
261 test->Driver()->DestroyTest();
268 // TestDriver, drives the test code //
271 TestDriver::TestDriver(TestClient *aClient) : CActive(-10), iClient(aClient)
273 CActiveScheduler::Add(this);
277 TestClient *TestDriver::Client()
282 TestDriver::~TestDriver()
288 void TestDriver::DoCancel()
290 TRequestStatus *pStat= &iStatus;
291 RThread().RequestComplete(pStat,KErrCancel);
294 void TestDriver::Request()
296 TRequestStatus *pStat= &iStatus;
297 RThread().RequestComplete(pStat,KErrNone);
301 void TestDriver::RunL()
303 iTest=(*CreateTestClass[iTestNum])();
304 iTest->StartTest(iTestNum,this);
308 void TestDriver::TestComplete()
311 if (iTestNum==sizeof(CreateTestClass)/sizeof(CreateTestClass[0]))
313 DisplayDialog(_L("Tests complete"),_L(""),_L(""));
314 CActiveScheduler::Stop();
320 void TestDriver::DestroyTest()
328 CTestBase::CTestBase(const TDesC &aTitle) : CActive(-10)
330 CActiveScheduler::Add(this);
334 CTestBase::~CTestBase()
341 void CTestBase::DoCancel()
343 TRequestStatus *pStat= &iStatus;
344 RThread().RequestComplete(pStat,KErrCancel);
347 void CTestBase::Request()
349 TRequestStatus *pStat= &iStatus;
350 RThread().RequestComplete(pStat,KErrNone);
354 void CTestBase::TriggerFail()
359 TestClient *CTestBase::Client()
361 return(iDriver->Client());
364 void CTestBase::LogLeave(TInt aErr)
366 #if defined(LOG_TESTS)
368 _LIT(KLeave,"MAN Left with error code %d in sub-test %d: ");
369 buf.AppendFormat(KLeave,aErr,iSubTestNum);
370 buf.Append(iSubTitle);
371 Client()->LogMessage(buf);
373 aErr=KErrNone; //To stop a warning
377 void CTestBase::RunL()
380 TRAPD(err,ret=DoTestL());
384 if (err!=ETestFailed)
389 else if (ret==EFinished)
391 iDriver->TestComplete();
392 iDriver->DestroyTest();
398 void CTestBase::StartTest(TInt aNum, TestDriver *aDriver)
402 LogWin->LogTest(iTitle,aNum);
403 #if defined(LOG_TESTS)
405 _LIT(ManNewTest,"MAN New Test %d: ");
406 buf.AppendFormat(ManNewTest,aNum);
408 Client()->LogMessage(buf);
413 void CTestBase::LogSubTest(const TDesC &aSubTitle,TInt aNum)
417 #if defined(LOG_TESTS)
419 _LIT(ManSubTest,"MAN SubTest %d: ");
420 buf.AppendFormat(ManSubTest,iSubTestNum);
421 buf.Append(iSubTitle);
422 Client()->LogMessage(buf);
426 void CTestBase::AbortL()
428 TestDriver *driver=iDriver;
429 iDriver->DestroyTest();
430 driver->TestComplete();
431 User::Leave(ETestFailed);
434 void CTestBase::TestL(TInt aCondition)
436 if (!aCondition || iFail)
439 ErrorDialog *dialog=new ErrorDialog(this);
442 dialog->SetTitle(_L("Test failed"));
443 dialog->SetNumButtons(2);
444 dialog->SetButtonText(0,_L("Abort all tests"));
445 dialog->SetButtonText(1,_L("Continue other tests"));
446 dialog->ConstructLD(*Client()->iGroup,*Client()->iGc);
449 User::Leave(ETestFailed);
453 void CTManScheduler::SetClient(TestClient *aClient)
458 void CTManScheduler::Error(TInt aError) const
460 TRAP_IGNORE(doErrorL(aError));
461 CActiveScheduler::Stop();
464 void CTManScheduler::doErrorL(TInt aError) const
466 CTDialog *dialog=new(ELeave) CTDialog();
470 title.Format(TRefByValue<const TDesC>(_L("Error %d")),aError);
471 dialog->SetTitle(title);
472 dialog->SetNumButtons(1);
473 dialog->SetButtonText(0,_L("Abort tests"));
474 dialog->ConstructLD(*iClient->iGroup,*iClient->iGc);
481 GLDEF_C CTClient *CreateClientL()
483 return(new(ELeave) TestClient());
487 GLDEF_C TInt E32Main()
489 return(TestLibStartUp(CreateClientL));