Update contrib.
1 // Copyright (c) 1994-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 the License "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 // e32\include\e32test.h
27 #ifndef SYMBIAN_ENABLE_SPLIT_HEADERS
28 #include <e32std_private.h>
29 #include <e32base_private.h>
35 #ifndef SYMBIAN_ENABLE_SPLIT_HEADERS
36 #include <e32def_private.h>
37 #include <e32event_private.h>
44 The class creates a console window to which test results can be logged
45 through the various overloads of the operator().
50 IMPORT_C RTest(const TDesC &aTitle,TInt aThrowaway,const TText* anOtherThrowaway);
51 IMPORT_C RTest(const TDesC &aTitle,TInt aThrowaway);
52 IMPORT_C RTest(const TDesC &aTitle);
53 IMPORT_C void Close();
54 IMPORT_C void Title();
55 IMPORT_C void Start(const TDesC &aHeading);
56 IMPORT_C void Next(const TDesC &aHeading);
58 IMPORT_C void operator()(TInt aResult,TInt aLineNum,const TText* aFileName);
59 IMPORT_C void operator()(TInt aResult,TInt aLineNum);
60 IMPORT_C void operator()(TInt aResult);
61 IMPORT_C void Panic(TInt anError,TRefByValue<const TDesC> aFmt,...);
62 IMPORT_C void Panic(TRefByValue<const TDesC> aFmt,...);
63 IMPORT_C void Printf(TRefByValue<const TDesC> aFmt,...);
64 IMPORT_C TKeyCode Getch();
65 inline static const TAny* String(TInt aSel,const TText8 *aBuf1,const TText16 *aBuf2);
66 inline CConsoleBase* Console() const;
67 inline void SetConsole(CConsoleBase* aConsole);
68 inline TBool Logged() const;
69 inline void SetLogged(TBool aToLog);
70 inline void HandleError(TInt aError, TInt aLine, const TText* aFileName);
71 inline void HandleNull(TInt aLine, const TText* aFileName);
72 inline void HandleNotEqual(TInt aExpected, TInt aActual, TInt aLine, const TText* aFileName);
73 inline void HandleFailedCompare(TInt aLeft, const TText* aComp, TInt aRight, TInt aLine, const TText* aFileName);
74 inline void HandleValue(TInt aValue, TInt aLine, const TText* aFileName);
76 IMPORT_C static TInt CloseHandleAndWaitForDestruction(RHandleBase& aH); /**< @internalTechnology */
79 void CheckConsoleCreated();
84 enum {EMaxStack=0x100,EMaxBuffer=0x100};
90 CConsoleBase *iConsole;
92 TInt iStack[EMaxStack];
93 TText iBuf[EMaxBuffer];
102 @return A pointer to the console object.
104 inline CConsoleBase* RTest::Console() const
105 { return(iConsole); }
111 Utility function that returns a pointer to the specified TText8* argument
112 or the TText16* argument depending on the value of the aSel argument.
114 @param aSel An integer containing the size of a TText8 type or TText16 type.
115 @param aBuf1 A pointer to 8-bit text.
116 @param aBuf2 A pointer to 16-bit text.
118 @return A pointer to aBuf1, if the value of aSel is the size of a TText8 type,
119 otherwise a pointer to aBuf2.
121 inline const TAny *RTest::String(TInt aSel,const TText8 *aBuf1,const TText16 *aBuf2)
122 { return(aSel == sizeof(TText8) ? (TAny *)aBuf1 : (TAny *)aBuf2); }
129 inline void RTest::Push()
130 { iStack[iLevel++] = iTest; iTest = 0; }
137 inline void RTest::Pop()
138 { iTest = iStack[--iLevel]; }
146 @param aConsole A pointer to the console object to be used.
148 inline void RTest::SetConsole(CConsoleBase* aConsole)
149 { iConsole = aConsole; }
155 Tests whether the logging flag is set.
157 If the logging flag is set, console output is also written to
158 the debug output as represented by a RDebug object.
160 @return True, if the logging flag is set, false otherwise.
162 inline TBool RTest::Logged() const
163 { return(iLogging); }
169 Sets the logging flag.
171 If the logging flag is set, console output is also written to
172 the debug output as represented by a RDebug object.
174 @param aToLog ETrue, if the logging flag is to be set, EFalse, otherwise.
176 inline void RTest::SetLogged(TBool aToLog)
177 { iLogging = aToLog; }
182 // test equivalent of _L
186 #define _TL(a) (S*)RTest::String(sizeof(S),(TText8*)a,(TText16*)L ## a)
188 // the next two, slightly confusing, macros are necessary in order
189 // to enable proper string merging with certain compilers.
194 #define __test(x,l,f) test(x,l,_S(f))
199 #define test(x) __test(x,__LINE__,__FILE__)
202 #ifdef __E32TEST_EXTENSION__
212 Panics and displays an appropriate error message if x is less then zero (Indicating an error code).
214 #define test_NotNegative(x) { TInt _r = (x); if (_r < 0) test.HandleError(_r, __LINE__,__S(__FILE__)); }
219 Panics and displays an appropriate error message if x is not equal to KErrNone.
221 #define test_KErrNone(x) { TInt _r = (x); if (_r !=KErrNone) test.HandleError(_r, __LINE__,__S(__FILE__)); }
226 Panics and displays an appropriate error message if the trapped statement/block x leaves.
228 #define test_TRAP(x) { TRAPD(_r, x); if (_r != KErrNone) test.HandleError(_r, __LINE__,__S(__FILE__)); }
233 Panics and displays an appropriate error message if x is not equal to NULL.
235 #define test_NotNull(x) { TAny* _a = (TAny*)(x); if (_a == NULL) test.HandleNull(__LINE__,__S(__FILE__)); }
239 Panics and displays an appropriate error message if e (expected) is not equal to a (actual).
241 #define test_Equal(e, a) { TInt _e = TInt(e); TInt _a = TInt(a); if (_e != _a) test.HandleNotEqual(_e, _a, __LINE__,__S(__FILE__)); }
246 Panics and displays an appropriate error message if the comparison specified with operator b, between a and c, is EFalse.
248 #define test_Compare(a,b,c) {TInt _a = TInt(a); TInt _c = TInt(c); if (!(_a b _c)) test.HandleFailedCompare(_a, __S(#b), _c, __LINE__,__S(__FILE__)); }
254 Panics and displays an appropriate error message displaying v, if the expression e is false.
256 #define test_Value(v, e) if (!(e)) test.HandleValue(v, __LINE__,__S(__FILE__));
261 If expression e is false, statement s is executed then a Panic is raised.
263 #define test_Assert(e,s) if(!(e)) {s; test.operator()(EFalse, __LINE__,__S(__FILE__)); }
271 Prints a failure message, including an error code at the console and raises a panic.
274 @param aError The error code to be printed in the failure massage.
275 @param aLineNum A line number that is printed in the failure message.
276 @param aFileName A file name that is printed in the failure message.
278 @panic USER 84 Always.
280 inline void RTest::HandleError(TInt aError, TInt aLine, const TText* aFileName)
282 RDebug::Printf("RTEST: Error %d at line %d", aError,aLine);
283 Printf(_L("RTEST: Error %d\n"), aError);
284 operator()(EFalse, aLine, aFileName);
287 Prints a failure message indicating null was encountered, at the console and raises a panic.
289 @param aLineNum A line number that is printed in the failure message.
290 @param aFileName A file name that is printed in the failure message.
292 @panic USER 84 Always.
295 inline void RTest::HandleNull(TInt aLine, const TText* aFileName)
297 RDebug::Printf("RTEST: Null value at line %d", aLine);
298 Printf(_L("RTEST: Null value\n"));
299 operator()(EFalse, aLine, aFileName);
304 Prints a failure message indicating that two value (also printed) where not equal, at the console and raises a panic.
306 @param aExpected The value that is to be printed as expected.
307 @param aActual The value that is to be printed as being actually received.
308 @param aLineNum A line number that is printed in the failure message.
309 @param aFileName A file name that is printed in the failure message.
311 @panic USER 84 Always.
314 inline void RTest::HandleNotEqual(TInt aExpected, TInt aActual, TInt aLine, const TText* aFileName)
316 RDebug::Printf("RTEST: Expected 0x%x (%d) but got 0x%x (%d) at line %d", aExpected,aExpected,aActual,aActual,aLine);
317 Printf(_L("RTEST: Expected 0x%x (%d) but got 0x%x (%d)\n"), aExpected,aExpected,aActual,aActual);
318 operator()(EFalse, aLine, aFileName);
323 Prints a failure message indicating that a comparison between two values (also printed) resulted in EFalse,
324 at the console and raises a panic.
326 @param aLeft The left value of the comparison.
327 @param aComp A string representing the comparison operator.
328 @param aRight The right value of the comparison.
329 @param aLineNum A line number that is printed in the failure message.
330 @param aFileName A file name that is printed in the failure message.
332 @panic USER 84 Always.
334 inline void RTest::HandleFailedCompare(TInt aLeft, const TText* aComp, TInt aRight, TInt aLine, const TText* aFileName)
336 RDebug::Printf("RTEST: (0x%x (%d) %s 0x%x (%d)) == EFalse at line %d", aLeft,aLeft,aComp,aRight,aRight,aLine);
337 Printf(_L("RTEST: (0x%x (%d) %s 0x%x (%d)) == EFalse\n"), aLeft,aLeft,aComp, aRight,aRight);
338 operator()(EFalse, aLine, aFileName);
343 Prints a failure message indicating that aValue was not an expected value, at the console and raises a panic.
345 @param aValue The value that is to be printed as not being an expected value.
346 @param aLineNum A line number that is printed in the failure message.
347 @param aFileName A file name that is printed in the failure message.
349 @panic USER 84 Always.
351 inline void RTest::HandleValue(TInt aValue, TInt aLine, const TText* aFileName)
353 Printf(_L("RTEST: %d (0x%x) was not an expected value.\n"), aValue, aValue);
354 operator()(EFalse, aLine, aFileName);
361 _LIT(KLitCloseAndWait,"Close&Wait");
366 #define CLOSE_AND_WAIT(h) ((void)(RTest::CloseHandleAndWaitForDestruction(h) && (User::Panic(KLitCloseAndWait,__LINE__),1)))