os/kernelhwsrv/kernel/eka/include/e32test.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 1994-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
// All rights reserved.
sl@0
     3
// This component and the accompanying materials are made available
sl@0
     4
// under the terms of the License "Eclipse Public License v1.0"
sl@0
     5
// which accompanies this distribution, and is available
sl@0
     6
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
//
sl@0
     8
// Initial Contributors:
sl@0
     9
// Nokia Corporation - initial contribution.
sl@0
    10
//
sl@0
    11
// Contributors:
sl@0
    12
//
sl@0
    13
// Description:
sl@0
    14
// e32\include\e32test.h
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
/**
sl@0
    19
 @file e32test.h
sl@0
    20
 @publishedAll
sl@0
    21
 @released
sl@0
    22
*/
sl@0
    23
sl@0
    24
#ifndef __E32TEST_H__
sl@0
    25
#define __E32TEST_H__
sl@0
    26
#include <e32std.h>
sl@0
    27
#ifndef SYMBIAN_ENABLE_SPLIT_HEADERS
sl@0
    28
#include <e32std_private.h>
sl@0
    29
#include <e32base_private.h>
sl@0
    30
#endif
sl@0
    31
#include <e32base.h>
sl@0
    32
#include <e32cons.h>
sl@0
    33
#include <e32kpan.h>
sl@0
    34
#include <e32debug.h>
sl@0
    35
#ifndef SYMBIAN_ENABLE_SPLIT_HEADERS
sl@0
    36
#include <e32def_private.h>
sl@0
    37
#include <e32event_private.h>
sl@0
    38
#endif
sl@0
    39
sl@0
    40
sl@0
    41
/**
sl@0
    42
Test console.
sl@0
    43
sl@0
    44
The class creates a console window to which test results can be logged
sl@0
    45
through the various overloads of the operator().
sl@0
    46
*/
sl@0
    47
class RTest
sl@0
    48
	{
sl@0
    49
public:
sl@0
    50
	IMPORT_C RTest(const TDesC &aTitle,TInt aThrowaway,const TText* anOtherThrowaway);
sl@0
    51
	IMPORT_C RTest(const TDesC &aTitle,TInt aThrowaway);
sl@0
    52
	IMPORT_C RTest(const TDesC &aTitle);
sl@0
    53
	IMPORT_C void Close();
sl@0
    54
	IMPORT_C void Title();
sl@0
    55
	IMPORT_C void Start(const TDesC &aHeading);
sl@0
    56
	IMPORT_C void Next(const TDesC &aHeading);
sl@0
    57
	IMPORT_C void End();
sl@0
    58
	IMPORT_C void operator()(TInt aResult,TInt aLineNum,const TText* aFileName);
sl@0
    59
	IMPORT_C void operator()(TInt aResult,TInt aLineNum);
sl@0
    60
	IMPORT_C void operator()(TInt aResult);
sl@0
    61
	IMPORT_C void Panic(TInt anError,TRefByValue<const TDesC> aFmt,...);
sl@0
    62
	IMPORT_C void Panic(TRefByValue<const TDesC> aFmt,...);
sl@0
    63
	IMPORT_C void Printf(TRefByValue<const TDesC> aFmt,...);
sl@0
    64
	IMPORT_C TKeyCode Getch();
sl@0
    65
	inline static const TAny* String(TInt aSel,const TText8 *aBuf1,const TText16 *aBuf2);
sl@0
    66
	inline CConsoleBase* Console() const;
sl@0
    67
	inline void SetConsole(CConsoleBase* aConsole);
sl@0
    68
	inline TBool Logged() const;
sl@0
    69
	inline void SetLogged(TBool aToLog);
sl@0
    70
	inline void HandleError(TInt aError, TInt aLine, const TText* aFileName);
sl@0
    71
	inline void HandleNull(TInt aLine, const TText* aFileName);
sl@0
    72
	inline void HandleNotEqual(TInt aExpected, TInt aActual, TInt aLine, const TText* aFileName);
sl@0
    73
	inline void HandleFailedCompare(TInt aLeft, const TText* aComp, TInt aRight, TInt aLine, const TText* aFileName);
sl@0
    74
	inline void HandleValue(TInt aValue,  TInt aLine, const TText* aFileName);
sl@0
    75
sl@0
    76
	IMPORT_C static TInt CloseHandleAndWaitForDestruction(RHandleBase& aH);	/**< @internalTechnology */
sl@0
    77
sl@0
    78
protected:
sl@0
    79
	void CheckConsoleCreated();
sl@0
    80
	void DisplayLevel();
sl@0
    81
	inline void Push();
sl@0
    82
	inline void Pop();
sl@0
    83
private:
sl@0
    84
	enum {EMaxStack=0x100,EMaxBuffer=0x100};
sl@0
    85
private:
sl@0
    86
	TInt	iTest;
sl@0
    87
	TInt	iCheck;
sl@0
    88
	TInt	iLevel;
sl@0
    89
	TBool	iLogging;
sl@0
    90
	CConsoleBase *iConsole;
sl@0
    91
	TBuf<0x40> iTitle;
sl@0
    92
	TInt iStack[EMaxStack];
sl@0
    93
	TText iBuf[EMaxBuffer];
sl@0
    94
	};
sl@0
    95
sl@0
    96
sl@0
    97
sl@0
    98
sl@0
    99
/**
sl@0
   100
Gets the console.
sl@0
   101
sl@0
   102
@return A pointer to the console object.
sl@0
   103
*/
sl@0
   104
inline CConsoleBase* RTest::Console() const
sl@0
   105
	{ return(iConsole); }
sl@0
   106
sl@0
   107
	
sl@0
   108
	
sl@0
   109
	
sl@0
   110
/**
sl@0
   111
Utility function that returns a pointer to the specified TText8* argument
sl@0
   112
or the TText16* argument depending on the value of the aSel argument.
sl@0
   113
sl@0
   114
@param aSel  An integer containing the size of a TText8 type or TText16 type.
sl@0
   115
@param aBuf1 A pointer to 8-bit text.
sl@0
   116
@param aBuf2 A pointer to 16-bit text.
sl@0
   117
sl@0
   118
@return A pointer to aBuf1, if the value of aSel is the size of a TText8 type,
sl@0
   119
        otherwise a pointer to aBuf2.
sl@0
   120
*/	
sl@0
   121
inline const TAny *RTest::String(TInt aSel,const TText8 *aBuf1,const TText16 *aBuf2)
sl@0
   122
	{ return(aSel == sizeof(TText8) ? (TAny *)aBuf1 : (TAny *)aBuf2); }
sl@0
   123
sl@0
   124
sl@0
   125
sl@0
   126
/**
sl@0
   127
@internalComponent
sl@0
   128
*/
sl@0
   129
inline void RTest::Push()
sl@0
   130
	{ iStack[iLevel++] = iTest; iTest = 0; }
sl@0
   131
sl@0
   132
sl@0
   133
sl@0
   134
/**
sl@0
   135
@internalComponent
sl@0
   136
*/
sl@0
   137
inline void RTest::Pop()
sl@0
   138
	{ iTest = iStack[--iLevel]; }
sl@0
   139
sl@0
   140
sl@0
   141
sl@0
   142
sl@0
   143
/**
sl@0
   144
Sets the console.
sl@0
   145
sl@0
   146
@param aConsole A pointer to the console object to be used.
sl@0
   147
*/	
sl@0
   148
inline void RTest::SetConsole(CConsoleBase* aConsole)
sl@0
   149
    { iConsole = aConsole; }
sl@0
   150
sl@0
   151
sl@0
   152
sl@0
   153
sl@0
   154
/**
sl@0
   155
Tests whether the logging flag is set.
sl@0
   156
sl@0
   157
If the logging flag is set, console output is also written to
sl@0
   158
the debug output as represented by a RDebug object.
sl@0
   159
sl@0
   160
@return True, if the logging flag is set, false otherwise.
sl@0
   161
*/	
sl@0
   162
inline TBool RTest::Logged() const
sl@0
   163
	{ return(iLogging); }
sl@0
   164
sl@0
   165
sl@0
   166
sl@0
   167
sl@0
   168
/**
sl@0
   169
Sets the logging flag.
sl@0
   170
sl@0
   171
If the logging flag is set, console output is also written to
sl@0
   172
the debug output as represented by a RDebug object.
sl@0
   173
sl@0
   174
@param aToLog ETrue, if the logging flag is to be set, EFalse, otherwise.
sl@0
   175
*/	
sl@0
   176
inline void RTest::SetLogged(TBool aToLog)
sl@0
   177
	{ iLogging = aToLog; }
sl@0
   178
sl@0
   179
sl@0
   180
sl@0
   181
sl@0
   182
// test equivalent of _L
sl@0
   183
/**
sl@0
   184
@internalComponent
sl@0
   185
*/
sl@0
   186
#define _TL(a) (S*)RTest::String(sizeof(S),(TText8*)a,(TText16*)L ## a) 
sl@0
   187
sl@0
   188
// the next two, slightly confusing, macros are necessary in order
sl@0
   189
// to enable proper string merging with certain compilers.
sl@0
   190
sl@0
   191
/**
sl@0
   192
@internalComponent
sl@0
   193
*/
sl@0
   194
#define __test(x,l,f) test(x,l,_S(f))
sl@0
   195
sl@0
   196
/**
sl@0
   197
@internalComponent
sl@0
   198
*/
sl@0
   199
#define test(x) __test(x,__LINE__,__FILE__)
sl@0
   200
sl@0
   201
sl@0
   202
#ifdef __E32TEST_EXTENSION__
sl@0
   203
sl@0
   204
/**
sl@0
   205
@internalComponent
sl@0
   206
*/
sl@0
   207
#define __S(f) _S(f)
sl@0
   208
sl@0
   209
/**
sl@0
   210
@internalComponent
sl@0
   211
sl@0
   212
Panics and displays an appropriate error message if x is less then zero (Indicating an error code).
sl@0
   213
*/
sl@0
   214
#define test_NotNegative(x) { TInt _r = (x); if (_r < 0) test.HandleError(_r, __LINE__,__S(__FILE__)); }
sl@0
   215
sl@0
   216
/**
sl@0
   217
@internalComponent
sl@0
   218
sl@0
   219
Panics and displays an appropriate error message if x is not equal to KErrNone.
sl@0
   220
*/
sl@0
   221
#define test_KErrNone(x) { TInt _r = (x); if (_r !=KErrNone) test.HandleError(_r, __LINE__,__S(__FILE__)); }
sl@0
   222
sl@0
   223
/**
sl@0
   224
@internalComponent
sl@0
   225
sl@0
   226
Panics and displays an appropriate error message if the trapped statement/block x leaves.
sl@0
   227
*/
sl@0
   228
#define test_TRAP(x) { TRAPD(_r, x); if (_r != KErrNone) test.HandleError(_r, __LINE__,__S(__FILE__)); }
sl@0
   229
sl@0
   230
/**
sl@0
   231
@internalComponent
sl@0
   232
sl@0
   233
Panics and displays an appropriate error message if x is not equal to NULL.
sl@0
   234
*/
sl@0
   235
#define test_NotNull(x) { TAny* _a = (TAny*)(x); if (_a == NULL) test.HandleNull(__LINE__,__S(__FILE__)); }
sl@0
   236
/**
sl@0
   237
@internalComponent
sl@0
   238
sl@0
   239
Panics and displays an appropriate error message if e (expected) is not equal to a (actual).
sl@0
   240
*/
sl@0
   241
#define test_Equal(e, a) { TInt _e = TInt(e); TInt _a = TInt(a); if (_e != _a) test.HandleNotEqual(_e, _a, __LINE__,__S(__FILE__)); }
sl@0
   242
sl@0
   243
/**
sl@0
   244
@internalComponent
sl@0
   245
sl@0
   246
Panics and displays an appropriate error message if the comparison specified with operator b, between a and c, is EFalse.
sl@0
   247
*/
sl@0
   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__)); }
sl@0
   249
sl@0
   250
sl@0
   251
/**
sl@0
   252
@internalComponent
sl@0
   253
sl@0
   254
Panics and displays an appropriate error message displaying v, if the expression e is false.
sl@0
   255
*/
sl@0
   256
#define test_Value(v, e) if (!(e)) test.HandleValue(v,  __LINE__,__S(__FILE__));
sl@0
   257
sl@0
   258
/**
sl@0
   259
@internalComponent
sl@0
   260
sl@0
   261
If expression e is false, statement s is executed then a Panic is raised.
sl@0
   262
*/
sl@0
   263
#define test_Assert(e,s) if(!(e)) {s; test.operator()(EFalse, __LINE__,__S(__FILE__)); }
sl@0
   264
	
sl@0
   265
	
sl@0
   266
sl@0
   267
#endif
sl@0
   268
sl@0
   269
sl@0
   270
/**
sl@0
   271
Prints a failure message, including an error code at the console and raises a panic.
sl@0
   272
sl@0
   273
sl@0
   274
@param aError	 The error code to be printed in the failure massage.
sl@0
   275
@param aLineNum  A line number that is printed in the failure message.
sl@0
   276
@param aFileName A file name that is printed in the failure message.
sl@0
   277
                 
sl@0
   278
@panic USER 84 Always.
sl@0
   279
*/
sl@0
   280
inline void RTest::HandleError(TInt aError, TInt aLine, const TText* aFileName)
sl@0
   281
	{
sl@0
   282
	RDebug::Printf("RTEST: Error %d at line %d", aError,aLine);
sl@0
   283
	Printf(_L("RTEST: Error %d\n"), aError);
sl@0
   284
	operator()(EFalse, aLine, aFileName);
sl@0
   285
	}
sl@0
   286
/**
sl@0
   287
Prints a failure message indicating null was encountered, at the console and raises a panic.
sl@0
   288
sl@0
   289
@param aLineNum  A line number that is printed in the failure message.
sl@0
   290
@param aFileName A file name that is printed in the failure message.
sl@0
   291
                 
sl@0
   292
@panic USER 84 Always.
sl@0
   293
*/
sl@0
   294
sl@0
   295
inline void RTest::HandleNull(TInt aLine, const TText* aFileName)
sl@0
   296
	{
sl@0
   297
	RDebug::Printf("RTEST: Null value at line %d", aLine);
sl@0
   298
	Printf(_L("RTEST: Null value\n"));
sl@0
   299
	operator()(EFalse, aLine, aFileName);
sl@0
   300
	}
sl@0
   301
sl@0
   302
sl@0
   303
/**
sl@0
   304
Prints a failure message indicating that two value (also printed) where not equal, at the console and raises a panic.
sl@0
   305
sl@0
   306
@param aExpected The value that is to be printed as expected.
sl@0
   307
@param aActual	 The value that is to be printed as being actually received.
sl@0
   308
@param aLineNum  A line number that is printed in the failure message.
sl@0
   309
@param aFileName A file name that is printed in the failure message.
sl@0
   310
                 
sl@0
   311
@panic USER 84 Always.
sl@0
   312
*/
sl@0
   313
sl@0
   314
inline void RTest::HandleNotEqual(TInt aExpected, TInt aActual, TInt aLine, const TText* aFileName)
sl@0
   315
	{
sl@0
   316
	RDebug::Printf("RTEST: Expected 0x%x (%d) but got 0x%x (%d) at line %d", aExpected,aExpected,aActual,aActual,aLine);
sl@0
   317
	Printf(_L("RTEST: Expected 0x%x (%d) but got 0x%x (%d)\n"), aExpected,aExpected,aActual,aActual);
sl@0
   318
	operator()(EFalse, aLine, aFileName);
sl@0
   319
	}
sl@0
   320
sl@0
   321
sl@0
   322
/**
sl@0
   323
Prints a failure message indicating that a comparison between two values (also printed) resulted in EFalse,
sl@0
   324
at the console and raises a panic.
sl@0
   325
sl@0
   326
@param aLeft 	 The left value of the comparison.
sl@0
   327
@param aComp	 A string representing the comparison operator.
sl@0
   328
@param aRight	 The right value of the comparison.
sl@0
   329
@param aLineNum  A line number that is printed in the failure message.
sl@0
   330
@param aFileName A file name that is printed in the failure message.
sl@0
   331
                 
sl@0
   332
@panic USER 84 Always.
sl@0
   333
*/
sl@0
   334
inline void RTest::HandleFailedCompare(TInt aLeft, const TText* aComp, TInt aRight, TInt aLine, const TText* aFileName)
sl@0
   335
	{
sl@0
   336
	RDebug::Printf("RTEST: (0x%x (%d) %s 0x%x (%d)) == EFalse at line %d", aLeft,aLeft,aComp,aRight,aRight,aLine);
sl@0
   337
	Printf(_L("RTEST: (0x%x (%d) %s 0x%x (%d)) == EFalse\n"), aLeft,aLeft,aComp, aRight,aRight);
sl@0
   338
	operator()(EFalse, aLine, aFileName);
sl@0
   339
	}
sl@0
   340
sl@0
   341
sl@0
   342
/**
sl@0
   343
Prints a failure message indicating that aValue was not an expected value, at the console and raises a panic.
sl@0
   344
sl@0
   345
@param aValue The value that is to be printed as not being an expected value.
sl@0
   346
@param aLineNum  A line number that is printed in the failure message.
sl@0
   347
@param aFileName A file name that is printed in the failure message.
sl@0
   348
                 
sl@0
   349
@panic USER 84 Always.
sl@0
   350
*/
sl@0
   351
inline void RTest::HandleValue(TInt aValue,  TInt aLine, const TText* aFileName)
sl@0
   352
	{
sl@0
   353
	Printf(_L("RTEST: %d (0x%x) was not an expected value.\n"), aValue, aValue);
sl@0
   354
	operator()(EFalse, aLine, aFileName);
sl@0
   355
	}
sl@0
   356
sl@0
   357
sl@0
   358
/**
sl@0
   359
@internalTechnology
sl@0
   360
*/
sl@0
   361
_LIT(KLitCloseAndWait,"Close&Wait");
sl@0
   362
sl@0
   363
/**
sl@0
   364
@internalTechnology
sl@0
   365
*/
sl@0
   366
#define CLOSE_AND_WAIT(h)	((void)(RTest::CloseHandleAndWaitForDestruction(h) && (User::Panic(KLitCloseAndWait,__LINE__),1)))
sl@0
   367
sl@0
   368
sl@0
   369
sl@0
   370
#endif
sl@0
   371