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 // Header for window server auto test code
21 #include "../tlib/testbase.h"
43 class LogWindow : public CTWin
47 void ConstructL(CTWinBase &parent);
49 void LogTest(TDesC &aTitle,TInt aNum);
51 TBuf<0x40> iTestTitle;
57 class BorderWindow : public CTWin
61 void ConstructL(CTWinBase &parent);
65 class TestWindow : public CTWin
70 void SetUpL(TPoint pos,TSize size,CTWinBase *parent, CWindowGc &aGc);
72 BorderWindow *iBorderWin;
73 friend class CTestBase;
76 class TestDriver : public CActive
79 TestDriver(TestClient *aClient);
94 class CTestBase : public CActive
97 CTestBase(const TDesC &aTitle);
102 void TestL(TInt aCondition);
103 void StartTest(TInt aNum, TestDriver *aDriver);
104 void LogSubTest(const TDesC &aTitle,TInt aNum);
105 void TestPanic(TThreadFunction aFunction, TAny *aPtr, TInt aExitReason, const TDesC &aCategory);
106 void TestWsPanic(TThreadFunction aFunction, TAny *aPtr, TInt aExitReason);
107 void TestWsPanic(TThreadFunction aFunction, TInt aInt, TInt aExitReason);
109 void LogLeave(TInt aErr);
110 void CheckRect(CTWin *aWin1,CTWin *aWin2,const TRect &aRect);
111 void CompareWindows(TRect &aRect);
112 void CompareWindows();
114 void DrawTestBackground(TBool aInvertColours);
115 inline TestDriver *Driver();
116 virtual TestState DoTestL()=0;
117 virtual void ConstructL()=0;
118 TestClient *Client();
128 TBuf<0x40> iSubTitle;
129 TBool iFail; // Used to trigger failures to test test code.
132 class TestClient : public CTClient
138 void KeyL(const TKeyEvent &aKey,const TTime &aTime);
140 TestDriver *Driver();
145 GLREF_D CWindowGc *TheGc;
146 GLREF_C void TManPanic(TInt aPanic);
148 inline TestDriver *CTestBase::Driver()