os/mm/mmtestenv/mmtestfw/include/TestFramework.h
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/mm/mmtestenv/mmtestfw/include/TestFramework.h	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,787 @@
     1.4 +// Copyright (c) 2002-2009 Nokia Corporation and/or its subsidiary(-ies).
     1.5 +// All rights reserved.
     1.6 +// This component and the accompanying materials are made available
     1.7 +// under the terms of "Eclipse Public License v1.0"
     1.8 +// which accompanies this distribution, and is available
     1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.10 +//
    1.11 +// Initial Contributors:
    1.12 +// Nokia Corporation - initial contribution.
    1.13 +//
    1.14 +// Contributors:
    1.15 +//
    1.16 +// Description:
    1.17 +// Public API for GT0137 Integration Test Framework
    1.18 +// 
    1.19 +//
    1.20 +
    1.21 +#ifndef __TESTFRAMEWORK_H__
    1.22 +#define __TESTFRAMEWORK_H__
    1.23 +
    1.24 +#include <e32base.h>
    1.25 +#include <f32file.h>
    1.26 +#include <ecom/ecom.h>
    1.27 +
    1.28 +#include <mmf/common/mmfipc.h>
    1.29 +#ifdef SYMBIAN_ENABLE_SPLIT_HEADERS
    1.30 +#include <mmf/common/mmfipcserver.h>
    1.31 +#endif
    1.32 +#include <testframeworkipc.h>
    1.33 +
    1.34 +/**
    1.35 + *
    1.36 + * Server name
    1.37 + *
    1.38 + *
    1.39 + *
    1.40 + */
    1.41 +_LIT(KTestFrameworkServerName, "TestFrameworkServer");
    1.42 +
    1.43 +/**
    1.44 + *
    1.45 + * Server .EXE name
    1.46 + *
    1.47 + *
    1.48 + *
    1.49 + */
    1.50 +
    1.51 +// Multimedia Heap Macros
    1.52 +#define __MM_HEAP_MARK __UHEAP_MARK;
    1.53 +#define __MM_HEAP_MARKEND REComSession::FinalClose(); __UHEAP_MARKEND;
    1.54 +
    1.55 +
    1.56 +_LIT(KTestFrameworkServerImg, "z:\\system\\libs\\TestFrameworkServer.exe"); //<DLL/EXE name
    1.57 +
    1.58 +/**
    1.59 + *
    1.60 + * Server UID - MUST match the UID in TestFrameworkServer.mmp
    1.61 + *
    1.62 + *
    1.63 + *
    1.64 + */
    1.65 +const TUid KTestFrameworkServerUid3={0x101f45ef};
    1.66 +
    1.67 +/**
    1.68 + *
    1.69 + * Server stack/heap sizes.
    1.70 + * Only needed for WINS
    1.71 + *
    1.72 + *
    1.73 + *
    1.74 + */
    1.75 +// #if defined (__WINS__)
    1.76 +
    1.77 +/**
    1.78 + *
    1.79 + * To specify a version when creating a session with the server
    1.80 + *
    1.81 + *
    1.82 + *
    1.83 + */
    1.84 +const TUint KTestFrameworkServerMajorVersionNumber = 1;
    1.85 +const TUint KTestFrameworkServerMinorVersionNumber = 1;
    1.86 +const TUint KTestFrameworkServerBuildVersionNumber = 1;
    1.87 +
    1.88 +
    1.89 +/**
    1.90 + *
    1.91 + * Opcodes used in message passing between client and server
    1.92 + *
    1.93 + *
    1.94 + *
    1.95 + */
    1.96 +enum TTestFrameworkRequest
    1.97 +    {
    1.98 +    ECreateInputWindow,
    1.99 +    ENotifyIfWindowChange,
   1.100 +    ECancelNotifyIfWindowChange,
   1.101 +    EOpenLog,
   1.102 +    EWriteLog,
   1.103 +    ECloseLog,
   1.104 +    ELogStatus,
   1.105 +    };
   1.106 +
   1.107 +/**
   1.108 + *
   1.109 + * Bitmask flags for logging mode.
   1.110 + *
   1.111 + *
   1.112 + *
   1.113 + */
   1.114 +enum TTestFrameworkLogMode
   1.115 +    {
   1.116 +    ELogToConsole = 0x0001,
   1.117 +    ELogToFile = 0x0002,
   1.118 +    ELogToPort = 0x0004,
   1.119 +    ELogConsoleFull = 0x0008
   1.120 +    };
   1.121 +
   1.122 +/**
   1.123 + *
   1.124 + * For passing window dimensions to console windows.
   1.125 + *
   1.126 + *
   1.127 + *
   1.128 + */
   1.129 +typedef TPckgBuf<TRect> TRectBuf;
   1.130 +
   1.131 +// Logging includes
   1.132 +
   1.133 +/** 
   1.134 + *
   1.135 + * Max length of log file line and source filename.
   1.136 + *
   1.137 + *
   1.138 + *
   1.139 + */
   1.140 +const TInt KMaxLogLineLength =  256;
   1.141 +const TInt KMaxLogFilenameLength = 200;
   1.142 +
   1.143 +/**
   1.144 + *
   1.145 + * Bitmask flags for logging severity levels.
   1.146 + *
   1.147 + *
   1.148 + *
   1.149 + */
   1.150 +enum TSeverity
   1.151 +    {
   1.152 +    ESevrErr  = 0x0001,
   1.153 +    ESevrWarn = 0x0002,
   1.154 +    ESevrInfo = 0x0004,
   1.155 +    ESevrVer  = 0x0007,     // always log verdicts
   1.156 +    ESevrAll  = 0x0007
   1.157 +    };
   1.158 +
   1.159 +/**
   1.160 + *
   1.161 + * Static helper class for TSeverity.
   1.162 + *
   1.163 + *
   1.164 + *
   1.165 + */
   1.166 +class LogSeverity
   1.167 +    {
   1.168 +public:
   1.169 +    IMPORT_C static TBool IsValid(TInt aSev);
   1.170 +    IMPORT_C static TBool IsActive(TInt aThisSev, TInt aGlobalSev);
   1.171 +    };
   1.172 +
   1.173 +/**
   1.174 + *
   1.175 + * Verdict enumerators for test results.
   1.176 + *
   1.177 + *
   1.178 + *
   1.179 + */
   1.180 +enum TVerdict
   1.181 +    {
   1.182 +    EPass = 0,
   1.183 +    EFail,
   1.184 +    EInconclusive,
   1.185 +    ETestSuiteError,
   1.186 +    EAbort,
   1.187 +
   1.188 +    //A new TVerdict for a known failed test which cannot be fixed in the near 
   1.189 +    //future, and is not allowed to be removed from the suite.
   1.190 +    EKnownFailure 
   1.191 +    };
   1.192 +
   1.193 +/**
   1.194 + *
   1.195 + * Logging client session class.
   1.196 + *
   1.197 + *
   1.198 + *
   1.199 + *
   1.200 + */
   1.201 +class RTestFrameworkClientSession : public RMmfSessionBaseX
   1.202 +    {
   1.203 +public:
   1.204 +    RTestFrameworkClientSession();
   1.205 +    TInt Connect();
   1.206 +    void CreateInputWindow(TRectBuf& aAllocatedWindow, TRequestStatus& aReqStat);
   1.207 +    void NotifyIfWindowChange(TRectBuf& aNewWindow, TRequestStatus& aReqStat);
   1.208 +    TInt CancelNotifyIfWindowChange();
   1.209 +    void OpenLog(const TDesC& aLogName, TInt aLogMode);
   1.210 +    void OpenLog();
   1.211 +    void WriteLog(const TDesC& aMsg, TInt aLogMode);
   1.212 +    void CloseLog();
   1.213 +    TInt LogStatus();
   1.214 +    };
   1.215 +
   1.216 +
   1.217 +/**
   1.218 + *
   1.219 + * Logging helper class, used to panic if format text overflows 
   1.220 + * the internal buffer.
   1.221 + *
   1.222 + *
   1.223 + *
   1.224 + *
   1.225 + */
   1.226 +class TIntegrationTestLog16Overflow :public TDes16Overflow
   1.227 +    {
   1.228 +public:
   1.229 +    // TDes16Overflow pure virtual
   1.230 +    virtual void Overflow(TDes16& aDes);
   1.231 +    };
   1.232 +
   1.233 +/**
   1.234 + *
   1.235 + * Flags for logging mode.
   1.236 + *
   1.237 + *
   1.238 + *
   1.239 + */
   1.240 +enum TLogFlags
   1.241 +    {
   1.242 +    ELogPutSrcInfo = 0x01,
   1.243 +    ELogHtmlMode = 0x02
   1.244 +    };
   1.245 +
   1.246 + /**
   1.247 + *
   1.248 + * Logging class for all console/file/port output.
   1.249 + *
   1.250 + *
   1.251 + *
   1.252 + *
   1.253 + *
   1.254 + */
   1.255 +class CLog  : public CBase
   1.256 +    {
   1.257 +public:
   1.258 +    IMPORT_C static CLog* NewL();
   1.259 +    IMPORT_C static CLog* NewLC();
   1.260 +    IMPORT_C void Construct();
   1.261 +    IMPORT_C ~CLog();
   1.262 +
   1.263 +    // open / close log file
   1.264 +    IMPORT_C void OpenLogFileL(const TDesC& aLogName, TInt aLogMode);
   1.265 +    IMPORT_C void OpenLogFileL();
   1.266 +    IMPORT_C void CloseLogFile();
   1.267 +
   1.268 +    // write to log output in Printf() style
   1.269 +    IMPORT_C void Log(TRefByValue<const TDesC16> aFmt, ...);
   1.270 +    IMPORT_C void Log(TInt aSeverity, TRefByValue<const TDesC16> aFmt, ...);
   1.271 +    IMPORT_C void Log(TRefByValue<const TDesC16> aFmt, VA_LIST aList);
   1.272 +
   1.273 +    IMPORT_C void LogExtra(const TText8* aFile, TInt aLine, TInt aSeverity,
   1.274 +        TRefByValue<const TDesC16> aFmt, VA_LIST aList);
   1.275 +    IMPORT_C void LogExtra(const TText8* aFile, TInt aLine, TInt aSeverity,
   1.276 +        TRefByValue<const TDesC16> aFmt, ...);
   1.277 +    IMPORT_C void LogResult(TVerdict aVerdict, TRefByValue<const TDesC16> aFmt, ...);
   1.278 +
   1.279 +    // add some blank lines to log output
   1.280 +    IMPORT_C void LogBlankLine(TInt aNumber = 1);
   1.281 +    
   1.282 +    // convert an EPOC error to text
   1.283 +    IMPORT_C static TPtrC EpocErrorToText(TInt aError);
   1.284 +
   1.285 +    // convert a test verdict to text 
   1.286 +    IMPORT_C static TPtrC TestResultText(TVerdict aTestVerdict);
   1.287 +
   1.288 +    // write formatted text to file - moved from CFileLogger
   1.289 +    IMPORT_C void WriteFormat(TRefByValue<const TDesC16> aFmt, ...);
   1.290 +
   1.291 +    // write text to console with date / time stamp
   1.292 +    IMPORT_C void WriteLogConsole(const TDesC& aBuf);
   1.293 +
   1.294 +    // get logging status from session
   1.295 +    IMPORT_C TInt LogStatus();
   1.296 +
   1.297 +    // accessors
   1.298 +    IMPORT_C void SetSeverity(TInt aSeverity);
   1.299 +    IMPORT_C TInt Severity() const; 
   1.300 +    IMPORT_C void SetPutSrcInfo(TBool aPutSrcInfo);
   1.301 +    IMPORT_C void SetHtmlLogMode(TBool aArg);
   1.302 +    IMPORT_C TBool HtmlLogMode() const;
   1.303 +    
   1.304 +private:
   1.305 +    // the client session
   1.306 +    RTestFrameworkClientSession iClientSession;
   1.307 +
   1.308 +protected:
   1.309 +    // Current server logging status
   1.310 +    TInt iLogStatus;
   1.311 +    // Severity level
   1.312 +    TInt iSeverity;
   1.313 +    // Do we need to put information about source file & #line? Default is yes.
   1.314 +    // Do we need to produce HTML log file? Default is yes.
   1.315 +    TUint iLogFlags;
   1.316 +
   1.317 +    // data buffer for logging - avoids panics in alloc testing
   1.318 +    TBuf16<KMaxLogLineLength> iDataBuf;
   1.319 +    };
   1.320 +
   1.321 +
   1.322 +/**
   1.323 + *
   1.324 + * Print formatting macros.
   1.325 + * Any class which implements LogExtra() can use these.
   1.326 + *
   1.327 + *
   1.328 + *
   1.329 + */
   1.330 +#define __FILE8__                                   REINTERPRET_CAST(const TText8*, __FILE__)
   1.331 +
   1.332 +#define INFO_PRINTF1(p1)                            LogExtra(__FILE8__, __LINE__, ESevrInfo, (p1)) 
   1.333 +#define INFO_PRINTF2(p1, p2)                        LogExtra(__FILE8__, __LINE__, ESevrInfo, (p1), (p2)) 
   1.334 +#define INFO_PRINTF3(p1, p2, p3)                    LogExtra(__FILE8__, __LINE__, ESevrInfo, (p1), (p2), (p3)) 
   1.335 +#define INFO_PRINTF4(p1, p2, p3, p4)                LogExtra(__FILE8__, __LINE__, ESevrInfo, (p1), (p2), (p3), (p4)) 
   1.336 +#define INFO_PRINTF5(p1, p2, p3, p4, p5)            LogExtra(__FILE8__, __LINE__, ESevrInfo, (p1), (p2), (p3), (p4), (p5)) 
   1.337 +#define INFO_PRINTF6(p1, p2, p3, p4, p5, p6)        LogExtra(__FILE8__, __LINE__, ESevrInfo, (p1), (p2), (p3), (p4), (p5), (p6)) 
   1.338 +#define INFO_PRINTF7(p1, p2, p3, p4, p5, p6, p7)    LogExtra(__FILE8__, __LINE__, ESevrInfo, (p1), (p2), (p3), (p4), (p5), (p6), (p7)) 
   1.339 +#define INFO_PRINTF8(p1, p2, p3, p4, p5, p6, p7, p8)        LogExtra(__FILE8__, __LINE__, ESevrInfo, (p1), (p2), (p3), (p4), (p5), (p6), (p7), (p8)) 
   1.340 +#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)) 
   1.341 +
   1.342 +#define WARN_PRINTF1(p1)                            LogExtra(__FILE8__, __LINE__, ESevrWarn, (p1)) 
   1.343 +#define WARN_PRINTF2(p1, p2)                        LogExtra(__FILE8__, __LINE__, ESevrWarn, (p1), (p2)) 
   1.344 +#define WARN_PRINTF3(p1, p2, p3)                    LogExtra(__FILE8__, __LINE__, ESevrWarn, (p1), (p2), (p3)) 
   1.345 +#define WARN_PRINTF4(p1, p2, p3, p4)                LogExtra(__FILE8__, __LINE__, ESevrWarn, (p1), (p2), (p3), (p4)) 
   1.346 +#define WARN_PRINTF5(p1, p2, p3, p4, p5)            LogExtra(__FILE8__, __LINE__, ESevrWarn, (p1), (p2), (p3), (p4), (p5)) 
   1.347 +#define WARN_PRINTF6(p1, p2, p3, p4, p5, p6)        LogExtra(__FILE8__, __LINE__, ESevrWarn, (p1), (p2), (p3), (p4), (p5), (p6)) 
   1.348 +#define WARN_PRINTF7(p1, p2, p3, p4, p5, p6, p7)    LogExtra(__FILE8__, __LINE__, ESevrWarn, (p1), (p2), (p3), (p4), (p5), (p6), (p7)) 
   1.349 +
   1.350 +#define ERR_PRINTF1(p1)                             LogExtra(__FILE8__, __LINE__, ESevrErr, (p1)) 
   1.351 +#define ERR_PRINTF2(p1, p2)                         LogExtra(__FILE8__, __LINE__, ESevrErr, (p1), (p2)) 
   1.352 +#define ERR_PRINTF3(p1, p2, p3)                     LogExtra(__FILE8__, __LINE__, ESevrErr, (p1), (p2), (p3)) ;
   1.353 +#define ERR_PRINTF4(p1, p2, p3, p4)                 LogExtra(__FILE8__, __LINE__, ESevrErr, (p1), (p2), (p3), (p4)) 
   1.354 +#define ERR_PRINTF5(p1, p2, p3, p4, p5)             LogExtra(__FILE8__, __LINE__, ESevrErr, (p1), (p2), (p3), (p4), (p5)) 
   1.355 +#define ERR_PRINTF6(p1, p2, p3, p4, p5, p6)         LogExtra(__FILE8__, __LINE__, ESevrErr, (p1), (p2), (p3), (p4), (p5), (p6)) 
   1.356 +#define ERR_PRINTF7(p1, p2, p3, p4, p5, p6, p7)     LogExtra(__FILE8__, __LINE__, ESevrErr, (p1), (p2), (p3), (p4), (p5), (p6), (p7)) 
   1.357 +
   1.358 +#define TEST_START(p1)                              LogExtra(__FILE8__, __LINE__, ESevrInfo, (_L("======Start test %S")), (p1)) 
   1.359 +#define TEST_NEXT(p1)                               LogExtra(__FILE8__, __LINE__, ESevrInfo, _L("Next test %S"), (p1)) 
   1.360 +#define TEST_END()                                  LogExtra(__FILE8__, __LINE__, ESevrInfo, _L("======End test =====") ) 
   1.361 +
   1.362 +// Test Suite includes
   1.363 +
   1.364 +/**
   1.365 + *
   1.366 + * Max length of test suite name.
   1.367 + *
   1.368 + *
   1.369 + *
   1.370 + */
   1.371 +const TInt KMaxLenTestSuiteName = 55;
   1.372 +
   1.373 +class RTestStep;
   1.374 +
   1.375 +/**
   1.376 + *
   1.377 + * Enumerator to indicate what stage a test has reached.
   1.378 + *
   1.379 + *
   1.380 + *
   1.381 + */
   1.382 +enum TTestStepStatus
   1.383 +    {
   1.384 +    EStepStatusNone = -1,
   1.385 +    EStepStatusStart = 0,
   1.386 +    EStepStatusPreamble,
   1.387 +    EStepStatusTest,
   1.388 +    EStepStatusFinished
   1.389 +    };
   1.390 +
   1.391 +/**
   1.392 + *
   1.393 + * Base test suite class. All test suite classes
   1.394 + * derive from this.
   1.395 + *
   1.396 + *
   1.397 + *
   1.398 + *
   1.399 + */
   1.400 +class CTestSuite : public CBase
   1.401 +    {
   1.402 +public:
   1.403 +    // second phase constructor
   1.404 +    // NB this is public because it is called by the factory function
   1.405 +    IMPORT_C void ConstructL();
   1.406 +    // destructor
   1.407 +    IMPORT_C virtual ~CTestSuite();
   1.408 +    // add a test step to the suite
   1.409 +    IMPORT_C void AddTestStepL(RTestStep* aTestStep);
   1.410 +    // get stack and heap size of a named step
   1.411 +    IMPORT_C void GetHeapAndStackSize(const TDesC& aStep, TInt* aHeapSize, TInt* aStackSize);
   1.412 +    // public interface to run test steps
   1.413 +    IMPORT_C TVerdict DoTestStep(const TDesC& aStep, const TDesC& aConfig, const TDesC& aPAramSet);
   1.414 +
   1.415 +/**
   1.416 + *
   1.417 + * Test suite second phase initialiser, called from CTestSuite::ConstructL().
   1.418 + * All test suites must implement this.
   1.419 + * 
   1.420 + *
   1.421 + *
   1.422 + */
   1.423 +    virtual void InitialiseL() = 0;
   1.424 +
   1.425 +    IMPORT_C void Log(TRefByValue<const TDesC16> aFmt, ...);
   1.426 +    IMPORT_C void Log(TInt aSeverity, TRefByValue<const TDesC16> aFmt, ...);
   1.427 +    IMPORT_C void LogExtra(const TText8* aFile, TInt aLine, TInt aSeverity,
   1.428 +        TRefByValue<const TDesC16> aFmt, ...);
   1.429 +
   1.430 +    // this should be a pure virtual so every test DLL
   1.431 +    // has to provide a version, but for now defaults to ?.?
   1.432 +    IMPORT_C virtual TPtrC GetVersion() const;
   1.433 +
   1.434 +    // accessors
   1.435 +    IMPORT_C void SetSeverity(TInt aSeverity);
   1.436 +    IMPORT_C TInt Severity() const;
   1.437 +    IMPORT_C void SetStepStatus(TTestStepStatus aStatus);
   1.438 +    IMPORT_C TTestStepStatus StepStatus() const;
   1.439 +    IMPORT_C void SetLogSystem(CLog* aLogger);
   1.440 +    IMPORT_C CLog* LogSystem() const;
   1.441 +
   1.442 +protected:
   1.443 +    // test functions
   1.444 +    IMPORT_C void TestBooleanTrueL(TBool aCondition, const TText8* aFile, TInt aLine);
   1.445 +
   1.446 +private:
   1.447 +    // severity level
   1.448 +    TInt iSeverity;
   1.449 +    // File logging system
   1.450 +    CLog* iLogger;
   1.451 +    // array of pointers to the test steps in this suite
   1.452 +    CArrayPtr<RTestStep>* iArrayTestSteps;
   1.453 +    // status of current test step
   1.454 +    TTestStepStatus iStepStatus;
   1.455 +
   1.456 +protected:
   1.457 +    // the name of this suite
   1.458 +    TBuf<KMaxLenTestSuiteName> iSuiteName;
   1.459 +
   1.460 +    };
   1.461 +
   1.462 +// Test Step includes
   1.463 +
   1.464 +/**
   1.465 + *
   1.466 + * Max length of step name
   1.467 + *
   1.468 + *
   1.469 + *
   1.470 + */
   1.471 +const TInt KMaxLenTestStepName = 55;
   1.472 +
   1.473 +class CTestIniData;
   1.474 +
   1.475 +/**
   1.476 + *
   1.477 + * Default stack and heap sizes for test step
   1.478 + *
   1.479 + *
   1.480 + *
   1.481 + */
   1.482 +const TInt KTestStackSize = KDefaultStackSize;  // 0x2000 = 8k
   1.483 +const TInt KMaxTestThreadHeapSize = 0x10000;    // = 64k
   1.484 +
   1.485 +/**
   1.486 + *
   1.487 + * Base test step class. All test step classes
   1.488 + * derive from this
   1.489 + *
   1.490 + *
   1.491 + *
   1.492 + *
   1.493 + */
   1.494 +class RTestStep
   1.495 +    {
   1.496 +public:
   1.497 +
   1.498 +    IMPORT_C RTestStep();
   1.499 +
   1.500 +    IMPORT_C TAny* operator new(TUint aSize, TAny* aBase) __NO_THROW;
   1.501 +    IMPORT_C TAny* operator new(TUint aSize, TLeave);
   1.502 +    IMPORT_C TAny* operator new(TUint aSize) __NO_THROW;
   1.503 +    IMPORT_C static TAny* newL(TUint aSize);
   1.504 +    IMPORT_C TAny* operator new(TUint aSize,TUint anExtraSize) __NO_THROW;
   1.505 +
   1.506 +    IMPORT_C void PreOpenL();
   1.507 +    IMPORT_C virtual TVerdict OpenL();
   1.508 +    IMPORT_C virtual void CleanupAfterOpenFail();
   1.509 +    IMPORT_C virtual void Close();
   1.510 +
   1.511 +/**
   1.512 + *
   1.513 + * Perform the test step.
   1.514 + *
   1.515 + * @return  "TVerdict"
   1.516 + *          The result of the test step.
   1.517 + *
   1.518 + *
   1.519 + *
   1.520 + */
   1.521 +    virtual TVerdict DoTestStepL() = 0;
   1.522 +    
   1.523 +    // initialise the config parameter system
   1.524 +    IMPORT_C void LoadConfig(const TDesC& aConfig);
   1.525 +    IMPORT_C void UnloadConfig();
   1.526 +
   1.527 +    // accessors for stack / heap size
   1.528 +    IMPORT_C TInt StackSize() const;
   1.529 +    IMPORT_C TInt HeapSize() const;
   1.530 +
   1.531 +    IMPORT_C void SetSuite(CTestSuite* aSuite);
   1.532 +    IMPORT_C void SetResult(TVerdict aResult);
   1.533 +    IMPORT_C TPtrC StepName() const;
   1.534 +    
   1.535 +    // param set - not required to be exported. Note assumes actual param is stable
   1.536 +    void SetDefaultParamSet(const TDesC& aParamSet);
   1.537 +
   1.538 +protected:
   1.539 +
   1.540 +    // tests may optionally implement pre- and post-ambles
   1.541 +    IMPORT_C virtual TVerdict DoTestStepPreambleL();
   1.542 +    IMPORT_C virtual TVerdict DoTestStepPostambleL();
   1.543 +
   1.544 +    // read values from the Config file functions
   1.545 +    IMPORT_C TBool GetBoolFromConfig(const TDesC& aSectName,const TDesC& aKeyName,TBool& aResult);
   1.546 +    IMPORT_C TBool GetIntFromConfig(const TDesC& aSectName,const TDesC& aKeyName,TInt& aResult);
   1.547 +    IMPORT_C TBool GetStringFromConfig(const TDesC& aSectName,const TDesC& aKeyName,TPtrC& aResult);
   1.548 +    IMPORT_C TBool GetHexFromConfig(const TDesC &aSectName,const TDesC &aKeyName,TInt &aResult);
   1.549 +
   1.550 +    // test functions
   1.551 +    IMPORT_C void TestBooleanTrue(TBool aCondition, const TText8* aFile, TInt aLine);
   1.552 +    IMPORT_C void TestBooleanTrueL(TBool aCondition, const TText8* aFile, TInt aLine);
   1.553 +    IMPORT_C void TestBooleanTrueWithErrorCode(TBool aCondition, TInt aErrorCode, const TText8* aFile, TInt aLine);
   1.554 +    IMPORT_C void TestBooleanTrueWithErrorCodeL(TBool aCondition, TInt aErrorCode, const TText8* aFile, TInt aLine);
   1.555 +    IMPORT_C void TestCheckPointCompareL(TInt aVal, TInt aExpectedVal, 
   1.556 +                                         const TDesC& aText, const TText8* aFile, TInt aLine);
   1.557 +
   1.558 +    // printf format log
   1.559 +    IMPORT_C void Log(TRefByValue<const TDesC16> aFmt, ...);
   1.560 +    IMPORT_C void Log(TInt aSeverity, TRefByValue<const TDesC16> aFmt, ...);
   1.561 +    IMPORT_C void LogExtra(const TText8* aFile, TInt aLine, TInt aSeverity,
   1.562 +        TRefByValue<const TDesC16> aFmt,...);
   1.563 +
   1.564 +private:
   1.565 +    // true if ConfigData has been loaded
   1.566 +    TBool   iConfigDataAvailable;
   1.567 +
   1.568 +protected:
   1.569 +    // the name of the test step
   1.570 +    TBuf<KMaxLenTestStepName> iTestStepName;
   1.571 +    // the parameter set to use - supplied to the run_test statement
   1.572 +    TPtrC iDefaultParamSet;
   1.573 +    // pointer to suite which owns this test 
   1.574 +    CTestSuite* iSuite;
   1.575 +    // the current test step verdict
   1.576 +    TVerdict iTestStepResult;
   1.577 +    // config file data
   1.578 +    CTestIniData *iConfigData;
   1.579 +    // stack and heap size
   1.580 +    TInt iStackSize;
   1.581 +    TInt iHeapSize;
   1.582 +    };
   1.583 +    
   1.584 +class CAsyncTestActiveScheduler; 
   1.585 +    
   1.586 +/**
   1.587 +Sub-class of RTestStep that encapsulates CActiveScheduler and works asynchonously
   1.588 +*/
   1.589 +
   1.590 +class RAsyncTestStep : public RTestStep
   1.591 +    {
   1.592 +    friend class CAsyncTestActiveScheduler;
   1.593 +protected:
   1.594 +    IMPORT_C RAsyncTestStep();
   1.595 +    
   1.596 +    // from RTestStep - these should not be replaced by RAsyncTestStep children
   1.597 +    IMPORT_C TVerdict DoTestStepL();
   1.598 +    IMPORT_C TVerdict DoTestStepPostambleL();
   1.599 +    
   1.600 +    // new methods
   1.601 +    /**
   1.602 +    Start the test
   1.603 +    This method is used at the beginning of the test, and should initialise whatever
   1.604 +    is required - typically setting up asynchronous calls that will activate once
   1.605 +    the call returns. The method is abstract, and must be supplied by any derived
   1.606 +    class.
   1.607 +    The ActiveScheduler is active (this call is made from a RunL() instance).
   1.608 +    If this test leaves, then StopTest() will be called with the leave value, so
   1.609 +    implicitly the test stops.
   1.610 +    */
   1.611 +    virtual void KickoffTestL() = 0;
   1.612 +    /**
   1.613 +    Called after the test has stopped to workout the result.
   1.614 +    This can be replaced by derived classes, if they have specific requirements, but
   1.615 +    the default should be suitable for most uses. The default returns the result
   1.616 +    set by StopTest() - if this is not pass, this result will also be written to the log.
   1.617 +    */
   1.618 +    IMPORT_C virtual TVerdict CheckTestResult();
   1.619 +    /**
   1.620 +    Close test.
   1.621 +    This call requests the test step to delete any remaining objects left when running
   1.622 +    a test. It is always called following the test being stopped.
   1.623 +    */
   1.624 +    virtual void CloseTest() = 0;
   1.625 +    
   1.626 +    // new commands
   1.627 +    /**
   1.628 +    Stop the test.
   1.629 +    This is called by the client to stop a test - calling CActiveScheduler::Stop() on the
   1.630 +    embedded active scheduler object. aReason is a standard error code. It defaults to
   1.631 +    KErrNone. aResult is the verdict to use as the result of the test - its default depends
   1.632 +    on aReason, EPass if the reason is KErrNone and EFail otherwise. 
   1.633 +    Note that StopTest() can be called multiple times - in which case only the first non-KErrNone
   1.634 +    reason and the first non-EPass result are used. */
   1.635 +    IMPORT_C void StopTest();
   1.636 +    IMPORT_C void StopTest(TInt aReason);
   1.637 +    IMPORT_C void StopTest(TInt aReason, TVerdict aResult);
   1.638 +    
   1.639 +    // these two are intended for overrides of CheckTestResult()
   1.640 +    /**
   1.641 +    The aReason value set by StopTest()
   1.642 +    */
   1.643 +    IMPORT_C TInt Reason() const;
   1.644 +    /**
   1.645 +    The aResult value set by StopTest()
   1.646 +    */
   1.647 +    IMPORT_C TVerdict Result() const;
   1.648 +    
   1.649 +private:
   1.650 +    CActiveScheduler* iScheduler;
   1.651 +    
   1.652 +    void SetResult(TVerdict aResult);
   1.653 +    
   1.654 +    static TInt CallBack (TAny* aPtr);
   1.655 +    void DoCallBack();
   1.656 +    
   1.657 +    void HandleError(TInt aReason);
   1.658 +    
   1.659 +private:
   1.660 +// have copies of these here, as they are commonly required
   1.661 +    TInt iReason;
   1.662 +    TVerdict iResult;
   1.663 +    TBool iResultSet;
   1.664 +
   1.665 +    CAsyncCallBack* iStartAO;
   1.666 +    CActiveSchedulerWait* iActiveSchedulerWait;
   1.667 +    TBool iStarted;
   1.668 +    };
   1.669 +
   1.670 +/**
   1.671 + *
   1.672 + * CTestStep, thin subclass of RTestStep - provided for
   1.673 + * backward compatibility
   1.674 + *
   1.675 + *
   1.676 + *
   1.677 + *
   1.678 + */
   1.679 +class CTestStep : public RTestStep
   1.680 +    {
   1.681 +public :
   1.682 +    // CTestStep destructor - provided for backward compatibility ONLY
   1.683 +    IMPORT_C virtual ~CTestStep();
   1.684 +    };
   1.685 +
   1.686 +/**
   1.687 + *
   1.688 + * Autotest macros mapped to RTestStep functions
   1.689 + *
   1.690 + *
   1.691 + *
   1.692 + *
   1.693 + */
   1.694 +// check a boolean is true
   1.695 +#define TESTL(a) TestBooleanTrueL((a), __FILE8__, __LINE__) 
   1.696 +#define TEST(a)  TestBooleanTrue((a), __FILE8__, __LINE__) 
   1.697 +
   1.698 +// check a boolean is true if not return error code b
   1.699 +#define TESTE(a, b) TestBooleanTrueWithErrorCode((a), (b), __FILE8__, __LINE__) 
   1.700 +#define TESTEL(a, b) TestBooleanTrueWithErrorCodeL((a), (b), __FILE8__, __LINE__)  
   1.701 +#define TEST_CHECKL(p1, p2, p3) TestCheckPointCompareL((p1), (p2), (p3), __FILE8__, __LINE__)   
   1.702 +// leave error code
   1.703 +const TInt KTestErrorCode = 84; 
   1.704 +
   1.705 +/**
   1.706 + *
   1.707 + * Test utilities class
   1.708 + *
   1.709 + *
   1.710 + *
   1.711 + *
   1.712 + */
   1.713 +class CTestUtils : public CBase
   1.714 +    {
   1.715 +public:
   1.716 +
   1.717 +    IMPORT_C  static CTestUtils* NewL(CLog* aLogSystem);
   1.718 +    IMPORT_C  void RunUtils(const TDesC& aText);
   1.719 +
   1.720 +private:
   1.721 +    void Construct(CLog* aLogSystem);
   1.722 +    void RunUtilsL(const TDesC& aText);
   1.723 +
   1.724 +    void MakeDirL (const TDesC& aDirname);
   1.725 +    void CopyFileL (const TDesC& aOld,const TDesC& aNew); 
   1.726 +    void CopyAndInvertFileL (const TDesC& aOld,const TDesC& aNew);
   1.727 +    void DeleteFileL (const TDesC& aFile); 
   1.728 +    void MakeReadWriteL(const TDesC& aFile);
   1.729 +
   1.730 +    // printf format log
   1.731 +    void Log(TRefByValue<const TDesC16> aFmt, ...);
   1.732 +    void Log(TInt aSeverity, TRefByValue<const TDesC16> aFmt, ...);
   1.733 +    void LogExtra(const TText8* aFile, TInt aLine, TInt aSeverity,
   1.734 +        TRefByValue<const TDesC16> aFmt,...);
   1.735 +
   1.736 +private:
   1.737 +
   1.738 +    // called by CopyAndInvertFileL func
   1.739 +    void DoCopyAndInvertL (const TDesC& aOld,const TDesC& aNew);
   1.740 +    
   1.741 +    // pointer to Logging object which handles File and Console logging
   1.742 +    CLog* iLogSystem;
   1.743 +    // local file server
   1.744 +    RFs iFs;
   1.745 +    };
   1.746 +    
   1.747 +/*
   1.748 +Busy unit - once started, uses a log of CPU time.
   1.749 +*/
   1.750 +
   1.751 +NONSHARABLE_CLASS(CBusyTestUnit) : public CBase
   1.752 +    {
   1.753 +    CBusyTestUnit();
   1.754 +    CBusyTestUnit(TInt aPercentBusy, TThreadPriority aThreadPriority);
   1.755 +    void ConstructL();
   1.756 +    
   1.757 +public:
   1.758 +    ~CBusyTestUnit();
   1.759 +    
   1.760 +    IMPORT_C static CBusyTestUnit* NewL(TInt aPercentBusy, TThreadPriority aThreadPriority);
   1.761 +    IMPORT_C static CBusyTestUnit* NewLC(TInt aPercentBusy, TThreadPriority aThreadPriority);
   1.762 +    
   1.763 +    IMPORT_C TInt Start(); // run until Stop()
   1.764 +    IMPORT_C TInt Start(TTimeIntervalMicroSeconds aRunFor); 
   1.765 +            // run til Stop or aRunFor. aRunFor=0 means run until Stop()
   1.766 +    IMPORT_C TInt Start(TTimeIntervalMicroSeconds32 aDelayFor, TTimeIntervalMicroSeconds aRunFor); 
   1.767 +            // after aDelayFor, run til Stop or aRunFor
   1.768 +    
   1.769 +    IMPORT_C void Stop();
   1.770 +    
   1.771 +    
   1.772 +private:
   1.773 +    TInt RunThread();
   1.774 +    static TInt StartThread(TAny* aPtr);
   1.775 +    void ThreadFunction();
   1.776 +    
   1.777 +    static TInt StaticTimerCallback(TAny* aPtr);
   1.778 +    TInt TimerCallback();
   1.779 +    
   1.780 +private:
   1.781 +    const TInt iPercentBusy;
   1.782 +    const TThreadPriority iThreadPriority;
   1.783 +    TTimeIntervalMicroSeconds iRunFor;
   1.784 +    CPeriodic* iTimer;
   1.785 +    volatile TInt iBusyVariable;
   1.786 +    RThread iChildThread;
   1.787 +    };
   1.788 +
   1.789 +
   1.790 +#endif // __TESTFRAMEWORK_H__