os/mm/mmtestenv/mmtestfw/include/TestFramework.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) 2002-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 "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
// Public API for GT0137 Integration Test Framework
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
#ifndef __TESTFRAMEWORK_H__
sl@0
    19
#define __TESTFRAMEWORK_H__
sl@0
    20
sl@0
    21
#include <e32base.h>
sl@0
    22
#include <f32file.h>
sl@0
    23
#include <ecom/ecom.h>
sl@0
    24
sl@0
    25
#include <mmf/common/mmfipc.h>
sl@0
    26
#ifdef SYMBIAN_ENABLE_SPLIT_HEADERS
sl@0
    27
#include <mmf/common/mmfipcserver.h>
sl@0
    28
#endif
sl@0
    29
#include <testframeworkipc.h>
sl@0
    30
sl@0
    31
/**
sl@0
    32
 *
sl@0
    33
 * Server name
sl@0
    34
 *
sl@0
    35
 *
sl@0
    36
 *
sl@0
    37
 */
sl@0
    38
_LIT(KTestFrameworkServerName, "TestFrameworkServer");
sl@0
    39
sl@0
    40
/**
sl@0
    41
 *
sl@0
    42
 * Server .EXE name
sl@0
    43
 *
sl@0
    44
 *
sl@0
    45
 *
sl@0
    46
 */
sl@0
    47
sl@0
    48
// Multimedia Heap Macros
sl@0
    49
#define __MM_HEAP_MARK __UHEAP_MARK;
sl@0
    50
#define __MM_HEAP_MARKEND REComSession::FinalClose(); __UHEAP_MARKEND;
sl@0
    51
sl@0
    52
sl@0
    53
_LIT(KTestFrameworkServerImg, "z:\\system\\libs\\TestFrameworkServer.exe"); //<DLL/EXE name
sl@0
    54
sl@0
    55
/**
sl@0
    56
 *
sl@0
    57
 * Server UID - MUST match the UID in TestFrameworkServer.mmp
sl@0
    58
 *
sl@0
    59
 *
sl@0
    60
 *
sl@0
    61
 */
sl@0
    62
const TUid KTestFrameworkServerUid3={0x101f45ef};
sl@0
    63
sl@0
    64
/**
sl@0
    65
 *
sl@0
    66
 * Server stack/heap sizes.
sl@0
    67
 * Only needed for WINS
sl@0
    68
 *
sl@0
    69
 *
sl@0
    70
 *
sl@0
    71
 */
sl@0
    72
// #if defined (__WINS__)
sl@0
    73
sl@0
    74
/**
sl@0
    75
 *
sl@0
    76
 * To specify a version when creating a session with the server
sl@0
    77
 *
sl@0
    78
 *
sl@0
    79
 *
sl@0
    80
 */
sl@0
    81
const TUint KTestFrameworkServerMajorVersionNumber = 1;
sl@0
    82
const TUint KTestFrameworkServerMinorVersionNumber = 1;
sl@0
    83
const TUint KTestFrameworkServerBuildVersionNumber = 1;
sl@0
    84
sl@0
    85
sl@0
    86
/**
sl@0
    87
 *
sl@0
    88
 * Opcodes used in message passing between client and server
sl@0
    89
 *
sl@0
    90
 *
sl@0
    91
 *
sl@0
    92
 */
sl@0
    93
enum TTestFrameworkRequest
sl@0
    94
    {
sl@0
    95
    ECreateInputWindow,
sl@0
    96
    ENotifyIfWindowChange,
sl@0
    97
    ECancelNotifyIfWindowChange,
sl@0
    98
    EOpenLog,
sl@0
    99
    EWriteLog,
sl@0
   100
    ECloseLog,
sl@0
   101
    ELogStatus,
sl@0
   102
    };
sl@0
   103
sl@0
   104
/**
sl@0
   105
 *
sl@0
   106
 * Bitmask flags for logging mode.
sl@0
   107
 *
sl@0
   108
 *
sl@0
   109
 *
sl@0
   110
 */
sl@0
   111
enum TTestFrameworkLogMode
sl@0
   112
    {
sl@0
   113
    ELogToConsole = 0x0001,
sl@0
   114
    ELogToFile = 0x0002,
sl@0
   115
    ELogToPort = 0x0004,
sl@0
   116
    ELogConsoleFull = 0x0008
sl@0
   117
    };
sl@0
   118
sl@0
   119
/**
sl@0
   120
 *
sl@0
   121
 * For passing window dimensions to console windows.
sl@0
   122
 *
sl@0
   123
 *
sl@0
   124
 *
sl@0
   125
 */
sl@0
   126
typedef TPckgBuf<TRect> TRectBuf;
sl@0
   127
sl@0
   128
// Logging includes
sl@0
   129
sl@0
   130
/** 
sl@0
   131
 *
sl@0
   132
 * Max length of log file line and source filename.
sl@0
   133
 *
sl@0
   134
 *
sl@0
   135
 *
sl@0
   136
 */
sl@0
   137
const TInt KMaxLogLineLength =  256;
sl@0
   138
const TInt KMaxLogFilenameLength = 200;
sl@0
   139
sl@0
   140
/**
sl@0
   141
 *
sl@0
   142
 * Bitmask flags for logging severity levels.
sl@0
   143
 *
sl@0
   144
 *
sl@0
   145
 *
sl@0
   146
 */
sl@0
   147
enum TSeverity
sl@0
   148
    {
sl@0
   149
    ESevrErr  = 0x0001,
sl@0
   150
    ESevrWarn = 0x0002,
sl@0
   151
    ESevrInfo = 0x0004,
sl@0
   152
    ESevrVer  = 0x0007,     // always log verdicts
sl@0
   153
    ESevrAll  = 0x0007
sl@0
   154
    };
sl@0
   155
sl@0
   156
/**
sl@0
   157
 *
sl@0
   158
 * Static helper class for TSeverity.
sl@0
   159
 *
sl@0
   160
 *
sl@0
   161
 *
sl@0
   162
 */
sl@0
   163
class LogSeverity
sl@0
   164
    {
sl@0
   165
public:
sl@0
   166
    IMPORT_C static TBool IsValid(TInt aSev);
sl@0
   167
    IMPORT_C static TBool IsActive(TInt aThisSev, TInt aGlobalSev);
sl@0
   168
    };
sl@0
   169
sl@0
   170
/**
sl@0
   171
 *
sl@0
   172
 * Verdict enumerators for test results.
sl@0
   173
 *
sl@0
   174
 *
sl@0
   175
 *
sl@0
   176
 */
sl@0
   177
enum TVerdict
sl@0
   178
    {
sl@0
   179
    EPass = 0,
sl@0
   180
    EFail,
sl@0
   181
    EInconclusive,
sl@0
   182
    ETestSuiteError,
sl@0
   183
    EAbort,
sl@0
   184
sl@0
   185
    //A new TVerdict for a known failed test which cannot be fixed in the near 
sl@0
   186
    //future, and is not allowed to be removed from the suite.
sl@0
   187
    EKnownFailure 
sl@0
   188
    };
sl@0
   189
sl@0
   190
/**
sl@0
   191
 *
sl@0
   192
 * Logging client session class.
sl@0
   193
 *
sl@0
   194
 *
sl@0
   195
 *
sl@0
   196
 *
sl@0
   197
 */
sl@0
   198
class RTestFrameworkClientSession : public RMmfSessionBaseX
sl@0
   199
    {
sl@0
   200
public:
sl@0
   201
    RTestFrameworkClientSession();
sl@0
   202
    TInt Connect();
sl@0
   203
    void CreateInputWindow(TRectBuf& aAllocatedWindow, TRequestStatus& aReqStat);
sl@0
   204
    void NotifyIfWindowChange(TRectBuf& aNewWindow, TRequestStatus& aReqStat);
sl@0
   205
    TInt CancelNotifyIfWindowChange();
sl@0
   206
    void OpenLog(const TDesC& aLogName, TInt aLogMode);
sl@0
   207
    void OpenLog();
sl@0
   208
    void WriteLog(const TDesC& aMsg, TInt aLogMode);
sl@0
   209
    void CloseLog();
sl@0
   210
    TInt LogStatus();
sl@0
   211
    };
sl@0
   212
sl@0
   213
sl@0
   214
/**
sl@0
   215
 *
sl@0
   216
 * Logging helper class, used to panic if format text overflows 
sl@0
   217
 * the internal buffer.
sl@0
   218
 *
sl@0
   219
 *
sl@0
   220
 *
sl@0
   221
 *
sl@0
   222
 */
sl@0
   223
class TIntegrationTestLog16Overflow :public TDes16Overflow
sl@0
   224
    {
sl@0
   225
public:
sl@0
   226
    // TDes16Overflow pure virtual
sl@0
   227
    virtual void Overflow(TDes16& aDes);
sl@0
   228
    };
sl@0
   229
sl@0
   230
/**
sl@0
   231
 *
sl@0
   232
 * Flags for logging mode.
sl@0
   233
 *
sl@0
   234
 *
sl@0
   235
 *
sl@0
   236
 */
sl@0
   237
enum TLogFlags
sl@0
   238
    {
sl@0
   239
    ELogPutSrcInfo = 0x01,
sl@0
   240
    ELogHtmlMode = 0x02
sl@0
   241
    };
sl@0
   242
sl@0
   243
 /**
sl@0
   244
 *
sl@0
   245
 * Logging class for all console/file/port output.
sl@0
   246
 *
sl@0
   247
 *
sl@0
   248
 *
sl@0
   249
 *
sl@0
   250
 *
sl@0
   251
 */
sl@0
   252
class CLog  : public CBase
sl@0
   253
    {
sl@0
   254
public:
sl@0
   255
    IMPORT_C static CLog* NewL();
sl@0
   256
    IMPORT_C static CLog* NewLC();
sl@0
   257
    IMPORT_C void Construct();
sl@0
   258
    IMPORT_C ~CLog();
sl@0
   259
sl@0
   260
    // open / close log file
sl@0
   261
    IMPORT_C void OpenLogFileL(const TDesC& aLogName, TInt aLogMode);
sl@0
   262
    IMPORT_C void OpenLogFileL();
sl@0
   263
    IMPORT_C void CloseLogFile();
sl@0
   264
sl@0
   265
    // write to log output in Printf() style
sl@0
   266
    IMPORT_C void Log(TRefByValue<const TDesC16> aFmt, ...);
sl@0
   267
    IMPORT_C void Log(TInt aSeverity, TRefByValue<const TDesC16> aFmt, ...);
sl@0
   268
    IMPORT_C void Log(TRefByValue<const TDesC16> aFmt, VA_LIST aList);
sl@0
   269
sl@0
   270
    IMPORT_C void LogExtra(const TText8* aFile, TInt aLine, TInt aSeverity,
sl@0
   271
        TRefByValue<const TDesC16> aFmt, VA_LIST aList);
sl@0
   272
    IMPORT_C void LogExtra(const TText8* aFile, TInt aLine, TInt aSeverity,
sl@0
   273
        TRefByValue<const TDesC16> aFmt, ...);
sl@0
   274
    IMPORT_C void LogResult(TVerdict aVerdict, TRefByValue<const TDesC16> aFmt, ...);
sl@0
   275
sl@0
   276
    // add some blank lines to log output
sl@0
   277
    IMPORT_C void LogBlankLine(TInt aNumber = 1);
sl@0
   278
    
sl@0
   279
    // convert an EPOC error to text
sl@0
   280
    IMPORT_C static TPtrC EpocErrorToText(TInt aError);
sl@0
   281
sl@0
   282
    // convert a test verdict to text 
sl@0
   283
    IMPORT_C static TPtrC TestResultText(TVerdict aTestVerdict);
sl@0
   284
sl@0
   285
    // write formatted text to file - moved from CFileLogger
sl@0
   286
    IMPORT_C void WriteFormat(TRefByValue<const TDesC16> aFmt, ...);
sl@0
   287
sl@0
   288
    // write text to console with date / time stamp
sl@0
   289
    IMPORT_C void WriteLogConsole(const TDesC& aBuf);
sl@0
   290
sl@0
   291
    // get logging status from session
sl@0
   292
    IMPORT_C TInt LogStatus();
sl@0
   293
sl@0
   294
    // accessors
sl@0
   295
    IMPORT_C void SetSeverity(TInt aSeverity);
sl@0
   296
    IMPORT_C TInt Severity() const; 
sl@0
   297
    IMPORT_C void SetPutSrcInfo(TBool aPutSrcInfo);
sl@0
   298
    IMPORT_C void SetHtmlLogMode(TBool aArg);
sl@0
   299
    IMPORT_C TBool HtmlLogMode() const;
sl@0
   300
    
sl@0
   301
private:
sl@0
   302
    // the client session
sl@0
   303
    RTestFrameworkClientSession iClientSession;
sl@0
   304
sl@0
   305
protected:
sl@0
   306
    // Current server logging status
sl@0
   307
    TInt iLogStatus;
sl@0
   308
    // Severity level
sl@0
   309
    TInt iSeverity;
sl@0
   310
    // Do we need to put information about source file & #line? Default is yes.
sl@0
   311
    // Do we need to produce HTML log file? Default is yes.
sl@0
   312
    TUint iLogFlags;
sl@0
   313
sl@0
   314
    // data buffer for logging - avoids panics in alloc testing
sl@0
   315
    TBuf16<KMaxLogLineLength> iDataBuf;
sl@0
   316
    };
sl@0
   317
sl@0
   318
sl@0
   319
/**
sl@0
   320
 *
sl@0
   321
 * Print formatting macros.
sl@0
   322
 * Any class which implements LogExtra() can use these.
sl@0
   323
 *
sl@0
   324
 *
sl@0
   325
 *
sl@0
   326
 */
sl@0
   327
#define __FILE8__                                   REINTERPRET_CAST(const TText8*, __FILE__)
sl@0
   328
sl@0
   329
#define INFO_PRINTF1(p1)                            LogExtra(__FILE8__, __LINE__, ESevrInfo, (p1)) 
sl@0
   330
#define INFO_PRINTF2(p1, p2)                        LogExtra(__FILE8__, __LINE__, ESevrInfo, (p1), (p2)) 
sl@0
   331
#define INFO_PRINTF3(p1, p2, p3)                    LogExtra(__FILE8__, __LINE__, ESevrInfo, (p1), (p2), (p3)) 
sl@0
   332
#define INFO_PRINTF4(p1, p2, p3, p4)                LogExtra(__FILE8__, __LINE__, ESevrInfo, (p1), (p2), (p3), (p4)) 
sl@0
   333
#define INFO_PRINTF5(p1, p2, p3, p4, p5)            LogExtra(__FILE8__, __LINE__, ESevrInfo, (p1), (p2), (p3), (p4), (p5)) 
sl@0
   334
#define INFO_PRINTF6(p1, p2, p3, p4, p5, p6)        LogExtra(__FILE8__, __LINE__, ESevrInfo, (p1), (p2), (p3), (p4), (p5), (p6)) 
sl@0
   335
#define INFO_PRINTF7(p1, p2, p3, p4, p5, p6, p7)    LogExtra(__FILE8__, __LINE__, ESevrInfo, (p1), (p2), (p3), (p4), (p5), (p6), (p7)) 
sl@0
   336
#define INFO_PRINTF8(p1, p2, p3, p4, p5, p6, p7, p8)        LogExtra(__FILE8__, __LINE__, ESevrInfo, (p1), (p2), (p3), (p4), (p5), (p6), (p7), (p8)) 
sl@0
   337
#define INFO_PRINTF9(p1, p2, p3, p4, p5, p6, p7, p8, p9)    LogExtra(__FILE8__, __LINE__, ESevrInfo, (p1), (p2), (p3), (p4), (p5), (p6), (p7), (p8), (p9)) 
sl@0
   338
sl@0
   339
#define WARN_PRINTF1(p1)                            LogExtra(__FILE8__, __LINE__, ESevrWarn, (p1)) 
sl@0
   340
#define WARN_PRINTF2(p1, p2)                        LogExtra(__FILE8__, __LINE__, ESevrWarn, (p1), (p2)) 
sl@0
   341
#define WARN_PRINTF3(p1, p2, p3)                    LogExtra(__FILE8__, __LINE__, ESevrWarn, (p1), (p2), (p3)) 
sl@0
   342
#define WARN_PRINTF4(p1, p2, p3, p4)                LogExtra(__FILE8__, __LINE__, ESevrWarn, (p1), (p2), (p3), (p4)) 
sl@0
   343
#define WARN_PRINTF5(p1, p2, p3, p4, p5)            LogExtra(__FILE8__, __LINE__, ESevrWarn, (p1), (p2), (p3), (p4), (p5)) 
sl@0
   344
#define WARN_PRINTF6(p1, p2, p3, p4, p5, p6)        LogExtra(__FILE8__, __LINE__, ESevrWarn, (p1), (p2), (p3), (p4), (p5), (p6)) 
sl@0
   345
#define WARN_PRINTF7(p1, p2, p3, p4, p5, p6, p7)    LogExtra(__FILE8__, __LINE__, ESevrWarn, (p1), (p2), (p3), (p4), (p5), (p6), (p7)) 
sl@0
   346
sl@0
   347
#define ERR_PRINTF1(p1)                             LogExtra(__FILE8__, __LINE__, ESevrErr, (p1)) 
sl@0
   348
#define ERR_PRINTF2(p1, p2)                         LogExtra(__FILE8__, __LINE__, ESevrErr, (p1), (p2)) 
sl@0
   349
#define ERR_PRINTF3(p1, p2, p3)                     LogExtra(__FILE8__, __LINE__, ESevrErr, (p1), (p2), (p3)) ;
sl@0
   350
#define ERR_PRINTF4(p1, p2, p3, p4)                 LogExtra(__FILE8__, __LINE__, ESevrErr, (p1), (p2), (p3), (p4)) 
sl@0
   351
#define ERR_PRINTF5(p1, p2, p3, p4, p5)             LogExtra(__FILE8__, __LINE__, ESevrErr, (p1), (p2), (p3), (p4), (p5)) 
sl@0
   352
#define ERR_PRINTF6(p1, p2, p3, p4, p5, p6)         LogExtra(__FILE8__, __LINE__, ESevrErr, (p1), (p2), (p3), (p4), (p5), (p6)) 
sl@0
   353
#define ERR_PRINTF7(p1, p2, p3, p4, p5, p6, p7)     LogExtra(__FILE8__, __LINE__, ESevrErr, (p1), (p2), (p3), (p4), (p5), (p6), (p7)) 
sl@0
   354
sl@0
   355
#define TEST_START(p1)                              LogExtra(__FILE8__, __LINE__, ESevrInfo, (_L("======Start test %S")), (p1)) 
sl@0
   356
#define TEST_NEXT(p1)                               LogExtra(__FILE8__, __LINE__, ESevrInfo, _L("Next test %S"), (p1)) 
sl@0
   357
#define TEST_END()                                  LogExtra(__FILE8__, __LINE__, ESevrInfo, _L("======End test =====") ) 
sl@0
   358
sl@0
   359
// Test Suite includes
sl@0
   360
sl@0
   361
/**
sl@0
   362
 *
sl@0
   363
 * Max length of test suite name.
sl@0
   364
 *
sl@0
   365
 *
sl@0
   366
 *
sl@0
   367
 */
sl@0
   368
const TInt KMaxLenTestSuiteName = 55;
sl@0
   369
sl@0
   370
class RTestStep;
sl@0
   371
sl@0
   372
/**
sl@0
   373
 *
sl@0
   374
 * Enumerator to indicate what stage a test has reached.
sl@0
   375
 *
sl@0
   376
 *
sl@0
   377
 *
sl@0
   378
 */
sl@0
   379
enum TTestStepStatus
sl@0
   380
    {
sl@0
   381
    EStepStatusNone = -1,
sl@0
   382
    EStepStatusStart = 0,
sl@0
   383
    EStepStatusPreamble,
sl@0
   384
    EStepStatusTest,
sl@0
   385
    EStepStatusFinished
sl@0
   386
    };
sl@0
   387
sl@0
   388
/**
sl@0
   389
 *
sl@0
   390
 * Base test suite class. All test suite classes
sl@0
   391
 * derive from this.
sl@0
   392
 *
sl@0
   393
 *
sl@0
   394
 *
sl@0
   395
 *
sl@0
   396
 */
sl@0
   397
class CTestSuite : public CBase
sl@0
   398
    {
sl@0
   399
public:
sl@0
   400
    // second phase constructor
sl@0
   401
    // NB this is public because it is called by the factory function
sl@0
   402
    IMPORT_C void ConstructL();
sl@0
   403
    // destructor
sl@0
   404
    IMPORT_C virtual ~CTestSuite();
sl@0
   405
    // add a test step to the suite
sl@0
   406
    IMPORT_C void AddTestStepL(RTestStep* aTestStep);
sl@0
   407
    // get stack and heap size of a named step
sl@0
   408
    IMPORT_C void GetHeapAndStackSize(const TDesC& aStep, TInt* aHeapSize, TInt* aStackSize);
sl@0
   409
    // public interface to run test steps
sl@0
   410
    IMPORT_C TVerdict DoTestStep(const TDesC& aStep, const TDesC& aConfig, const TDesC& aPAramSet);
sl@0
   411
sl@0
   412
/**
sl@0
   413
 *
sl@0
   414
 * Test suite second phase initialiser, called from CTestSuite::ConstructL().
sl@0
   415
 * All test suites must implement this.
sl@0
   416
 * 
sl@0
   417
 *
sl@0
   418
 *
sl@0
   419
 */
sl@0
   420
    virtual void InitialiseL() = 0;
sl@0
   421
sl@0
   422
    IMPORT_C void Log(TRefByValue<const TDesC16> aFmt, ...);
sl@0
   423
    IMPORT_C void Log(TInt aSeverity, TRefByValue<const TDesC16> aFmt, ...);
sl@0
   424
    IMPORT_C void LogExtra(const TText8* aFile, TInt aLine, TInt aSeverity,
sl@0
   425
        TRefByValue<const TDesC16> aFmt, ...);
sl@0
   426
sl@0
   427
    // this should be a pure virtual so every test DLL
sl@0
   428
    // has to provide a version, but for now defaults to ?.?
sl@0
   429
    IMPORT_C virtual TPtrC GetVersion() const;
sl@0
   430
sl@0
   431
    // accessors
sl@0
   432
    IMPORT_C void SetSeverity(TInt aSeverity);
sl@0
   433
    IMPORT_C TInt Severity() const;
sl@0
   434
    IMPORT_C void SetStepStatus(TTestStepStatus aStatus);
sl@0
   435
    IMPORT_C TTestStepStatus StepStatus() const;
sl@0
   436
    IMPORT_C void SetLogSystem(CLog* aLogger);
sl@0
   437
    IMPORT_C CLog* LogSystem() const;
sl@0
   438
sl@0
   439
protected:
sl@0
   440
    // test functions
sl@0
   441
    IMPORT_C void TestBooleanTrueL(TBool aCondition, const TText8* aFile, TInt aLine);
sl@0
   442
sl@0
   443
private:
sl@0
   444
    // severity level
sl@0
   445
    TInt iSeverity;
sl@0
   446
    // File logging system
sl@0
   447
    CLog* iLogger;
sl@0
   448
    // array of pointers to the test steps in this suite
sl@0
   449
    CArrayPtr<RTestStep>* iArrayTestSteps;
sl@0
   450
    // status of current test step
sl@0
   451
    TTestStepStatus iStepStatus;
sl@0
   452
sl@0
   453
protected:
sl@0
   454
    // the name of this suite
sl@0
   455
    TBuf<KMaxLenTestSuiteName> iSuiteName;
sl@0
   456
sl@0
   457
    };
sl@0
   458
sl@0
   459
// Test Step includes
sl@0
   460
sl@0
   461
/**
sl@0
   462
 *
sl@0
   463
 * Max length of step name
sl@0
   464
 *
sl@0
   465
 *
sl@0
   466
 *
sl@0
   467
 */
sl@0
   468
const TInt KMaxLenTestStepName = 55;
sl@0
   469
sl@0
   470
class CTestIniData;
sl@0
   471
sl@0
   472
/**
sl@0
   473
 *
sl@0
   474
 * Default stack and heap sizes for test step
sl@0
   475
 *
sl@0
   476
 *
sl@0
   477
 *
sl@0
   478
 */
sl@0
   479
const TInt KTestStackSize = KDefaultStackSize;  // 0x2000 = 8k
sl@0
   480
const TInt KMaxTestThreadHeapSize = 0x10000;    // = 64k
sl@0
   481
sl@0
   482
/**
sl@0
   483
 *
sl@0
   484
 * Base test step class. All test step classes
sl@0
   485
 * derive from this
sl@0
   486
 *
sl@0
   487
 *
sl@0
   488
 *
sl@0
   489
 *
sl@0
   490
 */
sl@0
   491
class RTestStep
sl@0
   492
    {
sl@0
   493
public:
sl@0
   494
sl@0
   495
    IMPORT_C RTestStep();
sl@0
   496
sl@0
   497
    IMPORT_C TAny* operator new(TUint aSize, TAny* aBase) __NO_THROW;
sl@0
   498
    IMPORT_C TAny* operator new(TUint aSize, TLeave);
sl@0
   499
    IMPORT_C TAny* operator new(TUint aSize) __NO_THROW;
sl@0
   500
    IMPORT_C static TAny* newL(TUint aSize);
sl@0
   501
    IMPORT_C TAny* operator new(TUint aSize,TUint anExtraSize) __NO_THROW;
sl@0
   502
sl@0
   503
    IMPORT_C void PreOpenL();
sl@0
   504
    IMPORT_C virtual TVerdict OpenL();
sl@0
   505
    IMPORT_C virtual void CleanupAfterOpenFail();
sl@0
   506
    IMPORT_C virtual void Close();
sl@0
   507
sl@0
   508
/**
sl@0
   509
 *
sl@0
   510
 * Perform the test step.
sl@0
   511
 *
sl@0
   512
 * @return  "TVerdict"
sl@0
   513
 *          The result of the test step.
sl@0
   514
 *
sl@0
   515
 *
sl@0
   516
 *
sl@0
   517
 */
sl@0
   518
    virtual TVerdict DoTestStepL() = 0;
sl@0
   519
    
sl@0
   520
    // initialise the config parameter system
sl@0
   521
    IMPORT_C void LoadConfig(const TDesC& aConfig);
sl@0
   522
    IMPORT_C void UnloadConfig();
sl@0
   523
sl@0
   524
    // accessors for stack / heap size
sl@0
   525
    IMPORT_C TInt StackSize() const;
sl@0
   526
    IMPORT_C TInt HeapSize() const;
sl@0
   527
sl@0
   528
    IMPORT_C void SetSuite(CTestSuite* aSuite);
sl@0
   529
    IMPORT_C void SetResult(TVerdict aResult);
sl@0
   530
    IMPORT_C TPtrC StepName() const;
sl@0
   531
    
sl@0
   532
    // param set - not required to be exported. Note assumes actual param is stable
sl@0
   533
    void SetDefaultParamSet(const TDesC& aParamSet);
sl@0
   534
sl@0
   535
protected:
sl@0
   536
sl@0
   537
    // tests may optionally implement pre- and post-ambles
sl@0
   538
    IMPORT_C virtual TVerdict DoTestStepPreambleL();
sl@0
   539
    IMPORT_C virtual TVerdict DoTestStepPostambleL();
sl@0
   540
sl@0
   541
    // read values from the Config file functions
sl@0
   542
    IMPORT_C TBool GetBoolFromConfig(const TDesC& aSectName,const TDesC& aKeyName,TBool& aResult);
sl@0
   543
    IMPORT_C TBool GetIntFromConfig(const TDesC& aSectName,const TDesC& aKeyName,TInt& aResult);
sl@0
   544
    IMPORT_C TBool GetStringFromConfig(const TDesC& aSectName,const TDesC& aKeyName,TPtrC& aResult);
sl@0
   545
    IMPORT_C TBool GetHexFromConfig(const TDesC &aSectName,const TDesC &aKeyName,TInt &aResult);
sl@0
   546
sl@0
   547
    // test functions
sl@0
   548
    IMPORT_C void TestBooleanTrue(TBool aCondition, const TText8* aFile, TInt aLine);
sl@0
   549
    IMPORT_C void TestBooleanTrueL(TBool aCondition, const TText8* aFile, TInt aLine);
sl@0
   550
    IMPORT_C void TestBooleanTrueWithErrorCode(TBool aCondition, TInt aErrorCode, const TText8* aFile, TInt aLine);
sl@0
   551
    IMPORT_C void TestBooleanTrueWithErrorCodeL(TBool aCondition, TInt aErrorCode, const TText8* aFile, TInt aLine);
sl@0
   552
    IMPORT_C void TestCheckPointCompareL(TInt aVal, TInt aExpectedVal, 
sl@0
   553
                                         const TDesC& aText, const TText8* aFile, TInt aLine);
sl@0
   554
sl@0
   555
    // printf format log
sl@0
   556
    IMPORT_C void Log(TRefByValue<const TDesC16> aFmt, ...);
sl@0
   557
    IMPORT_C void Log(TInt aSeverity, TRefByValue<const TDesC16> aFmt, ...);
sl@0
   558
    IMPORT_C void LogExtra(const TText8* aFile, TInt aLine, TInt aSeverity,
sl@0
   559
        TRefByValue<const TDesC16> aFmt,...);
sl@0
   560
sl@0
   561
private:
sl@0
   562
    // true if ConfigData has been loaded
sl@0
   563
    TBool   iConfigDataAvailable;
sl@0
   564
sl@0
   565
protected:
sl@0
   566
    // the name of the test step
sl@0
   567
    TBuf<KMaxLenTestStepName> iTestStepName;
sl@0
   568
    // the parameter set to use - supplied to the run_test statement
sl@0
   569
    TPtrC iDefaultParamSet;
sl@0
   570
    // pointer to suite which owns this test 
sl@0
   571
    CTestSuite* iSuite;
sl@0
   572
    // the current test step verdict
sl@0
   573
    TVerdict iTestStepResult;
sl@0
   574
    // config file data
sl@0
   575
    CTestIniData *iConfigData;
sl@0
   576
    // stack and heap size
sl@0
   577
    TInt iStackSize;
sl@0
   578
    TInt iHeapSize;
sl@0
   579
    };
sl@0
   580
    
sl@0
   581
class CAsyncTestActiveScheduler; 
sl@0
   582
    
sl@0
   583
/**
sl@0
   584
Sub-class of RTestStep that encapsulates CActiveScheduler and works asynchonously
sl@0
   585
*/
sl@0
   586
sl@0
   587
class RAsyncTestStep : public RTestStep
sl@0
   588
    {
sl@0
   589
    friend class CAsyncTestActiveScheduler;
sl@0
   590
protected:
sl@0
   591
    IMPORT_C RAsyncTestStep();
sl@0
   592
    
sl@0
   593
    // from RTestStep - these should not be replaced by RAsyncTestStep children
sl@0
   594
    IMPORT_C TVerdict DoTestStepL();
sl@0
   595
    IMPORT_C TVerdict DoTestStepPostambleL();
sl@0
   596
    
sl@0
   597
    // new methods
sl@0
   598
    /**
sl@0
   599
    Start the test
sl@0
   600
    This method is used at the beginning of the test, and should initialise whatever
sl@0
   601
    is required - typically setting up asynchronous calls that will activate once
sl@0
   602
    the call returns. The method is abstract, and must be supplied by any derived
sl@0
   603
    class.
sl@0
   604
    The ActiveScheduler is active (this call is made from a RunL() instance).
sl@0
   605
    If this test leaves, then StopTest() will be called with the leave value, so
sl@0
   606
    implicitly the test stops.
sl@0
   607
    */
sl@0
   608
    virtual void KickoffTestL() = 0;
sl@0
   609
    /**
sl@0
   610
    Called after the test has stopped to workout the result.
sl@0
   611
    This can be replaced by derived classes, if they have specific requirements, but
sl@0
   612
    the default should be suitable for most uses. The default returns the result
sl@0
   613
    set by StopTest() - if this is not pass, this result will also be written to the log.
sl@0
   614
    */
sl@0
   615
    IMPORT_C virtual TVerdict CheckTestResult();
sl@0
   616
    /**
sl@0
   617
    Close test.
sl@0
   618
    This call requests the test step to delete any remaining objects left when running
sl@0
   619
    a test. It is always called following the test being stopped.
sl@0
   620
    */
sl@0
   621
    virtual void CloseTest() = 0;
sl@0
   622
    
sl@0
   623
    // new commands
sl@0
   624
    /**
sl@0
   625
    Stop the test.
sl@0
   626
    This is called by the client to stop a test - calling CActiveScheduler::Stop() on the
sl@0
   627
    embedded active scheduler object. aReason is a standard error code. It defaults to
sl@0
   628
    KErrNone. aResult is the verdict to use as the result of the test - its default depends
sl@0
   629
    on aReason, EPass if the reason is KErrNone and EFail otherwise. 
sl@0
   630
    Note that StopTest() can be called multiple times - in which case only the first non-KErrNone
sl@0
   631
    reason and the first non-EPass result are used. */
sl@0
   632
    IMPORT_C void StopTest();
sl@0
   633
    IMPORT_C void StopTest(TInt aReason);
sl@0
   634
    IMPORT_C void StopTest(TInt aReason, TVerdict aResult);
sl@0
   635
    
sl@0
   636
    // these two are intended for overrides of CheckTestResult()
sl@0
   637
    /**
sl@0
   638
    The aReason value set by StopTest()
sl@0
   639
    */
sl@0
   640
    IMPORT_C TInt Reason() const;
sl@0
   641
    /**
sl@0
   642
    The aResult value set by StopTest()
sl@0
   643
    */
sl@0
   644
    IMPORT_C TVerdict Result() const;
sl@0
   645
    
sl@0
   646
private:
sl@0
   647
    CActiveScheduler* iScheduler;
sl@0
   648
    
sl@0
   649
    void SetResult(TVerdict aResult);
sl@0
   650
    
sl@0
   651
    static TInt CallBack (TAny* aPtr);
sl@0
   652
    void DoCallBack();
sl@0
   653
    
sl@0
   654
    void HandleError(TInt aReason);
sl@0
   655
    
sl@0
   656
private:
sl@0
   657
// have copies of these here, as they are commonly required
sl@0
   658
    TInt iReason;
sl@0
   659
    TVerdict iResult;
sl@0
   660
    TBool iResultSet;
sl@0
   661
sl@0
   662
    CAsyncCallBack* iStartAO;
sl@0
   663
    CActiveSchedulerWait* iActiveSchedulerWait;
sl@0
   664
    TBool iStarted;
sl@0
   665
    };
sl@0
   666
sl@0
   667
/**
sl@0
   668
 *
sl@0
   669
 * CTestStep, thin subclass of RTestStep - provided for
sl@0
   670
 * backward compatibility
sl@0
   671
 *
sl@0
   672
 *
sl@0
   673
 *
sl@0
   674
 *
sl@0
   675
 */
sl@0
   676
class CTestStep : public RTestStep
sl@0
   677
    {
sl@0
   678
public :
sl@0
   679
    // CTestStep destructor - provided for backward compatibility ONLY
sl@0
   680
    IMPORT_C virtual ~CTestStep();
sl@0
   681
    };
sl@0
   682
sl@0
   683
/**
sl@0
   684
 *
sl@0
   685
 * Autotest macros mapped to RTestStep functions
sl@0
   686
 *
sl@0
   687
 *
sl@0
   688
 *
sl@0
   689
 *
sl@0
   690
 */
sl@0
   691
// check a boolean is true
sl@0
   692
#define TESTL(a) TestBooleanTrueL((a), __FILE8__, __LINE__) 
sl@0
   693
#define TEST(a)  TestBooleanTrue((a), __FILE8__, __LINE__) 
sl@0
   694
sl@0
   695
// check a boolean is true if not return error code b
sl@0
   696
#define TESTE(a, b) TestBooleanTrueWithErrorCode((a), (b), __FILE8__, __LINE__) 
sl@0
   697
#define TESTEL(a, b) TestBooleanTrueWithErrorCodeL((a), (b), __FILE8__, __LINE__)  
sl@0
   698
#define TEST_CHECKL(p1, p2, p3) TestCheckPointCompareL((p1), (p2), (p3), __FILE8__, __LINE__)   
sl@0
   699
// leave error code
sl@0
   700
const TInt KTestErrorCode = 84; 
sl@0
   701
sl@0
   702
/**
sl@0
   703
 *
sl@0
   704
 * Test utilities class
sl@0
   705
 *
sl@0
   706
 *
sl@0
   707
 *
sl@0
   708
 *
sl@0
   709
 */
sl@0
   710
class CTestUtils : public CBase
sl@0
   711
    {
sl@0
   712
public:
sl@0
   713
sl@0
   714
    IMPORT_C  static CTestUtils* NewL(CLog* aLogSystem);
sl@0
   715
    IMPORT_C  void RunUtils(const TDesC& aText);
sl@0
   716
sl@0
   717
private:
sl@0
   718
    void Construct(CLog* aLogSystem);
sl@0
   719
    void RunUtilsL(const TDesC& aText);
sl@0
   720
sl@0
   721
    void MakeDirL (const TDesC& aDirname);
sl@0
   722
    void CopyFileL (const TDesC& aOld,const TDesC& aNew); 
sl@0
   723
    void CopyAndInvertFileL (const TDesC& aOld,const TDesC& aNew);
sl@0
   724
    void DeleteFileL (const TDesC& aFile); 
sl@0
   725
    void MakeReadWriteL(const TDesC& aFile);
sl@0
   726
sl@0
   727
    // printf format log
sl@0
   728
    void Log(TRefByValue<const TDesC16> aFmt, ...);
sl@0
   729
    void Log(TInt aSeverity, TRefByValue<const TDesC16> aFmt, ...);
sl@0
   730
    void LogExtra(const TText8* aFile, TInt aLine, TInt aSeverity,
sl@0
   731
        TRefByValue<const TDesC16> aFmt,...);
sl@0
   732
sl@0
   733
private:
sl@0
   734
sl@0
   735
    // called by CopyAndInvertFileL func
sl@0
   736
    void DoCopyAndInvertL (const TDesC& aOld,const TDesC& aNew);
sl@0
   737
    
sl@0
   738
    // pointer to Logging object which handles File and Console logging
sl@0
   739
    CLog* iLogSystem;
sl@0
   740
    // local file server
sl@0
   741
    RFs iFs;
sl@0
   742
    };
sl@0
   743
    
sl@0
   744
/*
sl@0
   745
Busy unit - once started, uses a log of CPU time.
sl@0
   746
*/
sl@0
   747
sl@0
   748
NONSHARABLE_CLASS(CBusyTestUnit) : public CBase
sl@0
   749
    {
sl@0
   750
    CBusyTestUnit();
sl@0
   751
    CBusyTestUnit(TInt aPercentBusy, TThreadPriority aThreadPriority);
sl@0
   752
    void ConstructL();
sl@0
   753
    
sl@0
   754
public:
sl@0
   755
    ~CBusyTestUnit();
sl@0
   756
    
sl@0
   757
    IMPORT_C static CBusyTestUnit* NewL(TInt aPercentBusy, TThreadPriority aThreadPriority);
sl@0
   758
    IMPORT_C static CBusyTestUnit* NewLC(TInt aPercentBusy, TThreadPriority aThreadPriority);
sl@0
   759
    
sl@0
   760
    IMPORT_C TInt Start(); // run until Stop()
sl@0
   761
    IMPORT_C TInt Start(TTimeIntervalMicroSeconds aRunFor); 
sl@0
   762
            // run til Stop or aRunFor. aRunFor=0 means run until Stop()
sl@0
   763
    IMPORT_C TInt Start(TTimeIntervalMicroSeconds32 aDelayFor, TTimeIntervalMicroSeconds aRunFor); 
sl@0
   764
            // after aDelayFor, run til Stop or aRunFor
sl@0
   765
    
sl@0
   766
    IMPORT_C void Stop();
sl@0
   767
    
sl@0
   768
    
sl@0
   769
private:
sl@0
   770
    TInt RunThread();
sl@0
   771
    static TInt StartThread(TAny* aPtr);
sl@0
   772
    void ThreadFunction();
sl@0
   773
    
sl@0
   774
    static TInt StaticTimerCallback(TAny* aPtr);
sl@0
   775
    TInt TimerCallback();
sl@0
   776
    
sl@0
   777
private:
sl@0
   778
    const TInt iPercentBusy;
sl@0
   779
    const TThreadPriority iThreadPriority;
sl@0
   780
    TTimeIntervalMicroSeconds iRunFor;
sl@0
   781
    CPeriodic* iTimer;
sl@0
   782
    volatile TInt iBusyVariable;
sl@0
   783
    RThread iChildThread;
sl@0
   784
    };
sl@0
   785
sl@0
   786
sl@0
   787
#endif // __TESTFRAMEWORK_H__