First public contribution.
1 // Copyright (c) 1997-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 // Started by DWW, April 1997
15 // Tests active scheduler
24 #define KUidTestValue 0x43
25 const TUid KUidTest={KUidTestValue};
27 LOCAL_D RTest test(_L("T_SCHED"));
29 class CSimpleErrorHandler : public CBaErrorHandler
32 TErrorHandlerResponse HandleError(TDes& aErrorText,TDes& aContextText);
35 class CErrorHandlerWithState : public CBaErrorHandler
38 void SetState(TInt aState) { iState=aState; }
40 TErrorHandlerResponse HandleError(TDes& aErrorText,TDes& aContextText);
45 TErrorHandlerResponse CSimpleErrorHandler::HandleError(TDes& aErrorText,TDes& aContextText)
47 aErrorText=_L("ERROR");
48 aContextText=_L("CONTEXT");
49 return(EAlertDisplay);
52 TErrorHandlerResponse CErrorHandlerWithState::HandleError(TDes& aErrorText,TDes& aContextText)
54 aErrorText.Num(iState);
56 return(iState? EInfoDisplay: ENoDisplay);
59 class CTestScheduler : public CBaActiveScheduler
61 private: // from CBaActiveScheduler
62 void DisplayError(TInt aError);
67 class CTestActive : public CActive
70 static CTestActive* NewL();
79 CSimpleErrorHandler iSimpleErrorHandler;
80 CErrorHandlerWithState iComplexErrorHandler;
83 CTestActive::CTestActive()
88 CTestActive::~CTestActive()
93 CTestActive* CTestActive::NewL()
95 CTestActive* self=new(ELeave) CTestActive;
96 CActiveScheduler::Add(self);
101 void CTestActive::Queue()
103 TRequestStatus* pS=(&iStatus);
104 User::RequestComplete(pS,0);
108 void CTestActive::DoCancel()
112 void CTestActive::RunL()
118 test.Next(_L("Extended error"));
119 CBaActiveScheduler::DisplayExtendedError(KUidTest,66);
120 test.Next(_L("Leave for alert"));
121 CBaActiveScheduler::LeaveForAlert(KUidBaflDll,77);
122 CBaActiveScheduler::DisplayExtendedError(KUidTest,88); // won't reach here
125 test.Next(_L("Leave"));
127 CBaActiveScheduler::DisplayExtendedError(KUidBaflDll,9); // won't reach here
130 test.Next(_L("Leave no alert"));
131 CBaActiveScheduler::LeaveNoAlert();
132 CBaActiveScheduler::DisplayExtendedError(KUidTest,55); // won't reach here
135 test.Next(_L("Extended error again"));
136 CBaActiveScheduler::DisplayExtendedError(KUidBaflDll,33);
137 test.Next(_L("Leave for info print"));
138 CBaActiveScheduler::LeaveForInfoPrint(KUidTest,11);
139 CBaActiveScheduler::DisplayExtendedError(KUidBaflDll,88); // won't reach here
142 test.Next(_L("Simple error handler"));
143 CBaActiveScheduler::LeaveForErrorHandler(&iSimpleErrorHandler);
144 CBaActiveScheduler::DisplayExtendedError(KUidBaflDll,87); // won't reach here
147 test.Next(_L("Complex error handler - 1"));
148 CBaActiveScheduler::LeaveForErrorHandler(&iComplexErrorHandler);
149 CBaActiveScheduler::DisplayExtendedError(KUidBaflDll,86); // won't reach here
152 test.Next(_L("Complex error handler - 2"));
153 iComplexErrorHandler.SetState(6);
154 CBaActiveScheduler::LeaveForErrorHandler(&iComplexErrorHandler);
155 CBaActiveScheduler::DisplayExtendedError(KUidBaflDll,85); // won't reach here
158 test.Next(_L("Exit"));
159 CBaActiveScheduler::Exit();
160 CBaActiveScheduler::DisplayExtendedError(KUidBaflDll,99); // won't reach here
163 CBaActiveScheduler::DisplayExtendedError(KUidBaflDll,999); // won't reach here
168 void CTestScheduler::DisplayError(TInt aError)
171 TBuf<80> contextText;
172 TErrorHandlerResponse resp;
176 test(aError==KErrExtended);
177 test(iExtendedError.iComponent==KUidTest);
178 test(iExtendedError.iErrorNumber==66);
179 test(iExtendedError.iInformation==EFalse);
182 test(aError==KErrExtended);
183 test(iExtendedError.iComponent==KUidBaflDll);
184 test(iExtendedError.iErrorNumber==77);
185 test(iExtendedError.iInformation==EFalse);
191 test(aError==KErrExtended);
192 test(iExtendedError.iComponent==KUidBaflDll);
193 test(iExtendedError.iErrorNumber==33);
194 test(iExtendedError.iInformation==EFalse);
197 test(aError==KErrExtended);
198 test(iExtendedError.iComponent==KUidTest);
199 test(iExtendedError.iErrorNumber==11);
200 test(iExtendedError.iInformation);
203 test(aError==KErrExtended);
204 test(iExtendedError.iComponent==KUidBaflErrorHandler);
205 resp=CBaErrorHandler::CallBack(iExtendedError.iErrorNumber,errorText,contextText);
206 test(resp==EAlertDisplay);
207 test(errorText==_L("ERROR"));
208 test(contextText==_L("CONTEXT"));
211 test(aError==KErrExtended);
212 test(iExtendedError.iComponent==KUidBaflErrorHandler);
213 resp=CBaErrorHandler::CallBack(iExtendedError.iErrorNumber,errorText,contextText);
214 test(resp==ENoDisplay);
215 test(errorText==_L("0"));
216 test(!contextText.Length());
219 test(aError==KErrExtended);
220 test(iExtendedError.iComponent==KUidBaflErrorHandler);
221 resp=CBaErrorHandler::CallBack(iExtendedError.iErrorNumber,errorText,contextText);
222 test(resp==EInfoDisplay);
223 test(errorText==_L("6"));
224 test(!contextText.Length());
227 test(EFalse); // should never reach here
232 @SYMTestCaseID SYSLIB-BAFL-CT-0442
233 @SYMTestCaseDesc Tests for the Active Scheduler
234 @SYMTestPriority High
235 @SYMTestActions Tests for the functionality of ActiveScheduler
236 @SYMTestExpectedResults Test must not fail
241 test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0442 "));
242 CActiveScheduler* as=new(ELeave) CTestScheduler;
243 CActiveScheduler::Install(as);
244 CActive* ac=CTestActive::NewL();
245 TRAPD(ret,as->Start());
246 test(ret==KLeaveExit);
251 GLDEF_C TInt E32Main()
254 CTrapCleanup *cleanup=CTrapCleanup::New();
256 test.Start(_L("Testing CBaActiveScheduler"));
257 TRAPD(err,DoTests());