os/persistentdata/loggingservices/eventlogger/test/inc/t_logutil2.h
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/persistentdata/loggingservices/eventlogger/test/inc/t_logutil2.h	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,314 @@
     1.4 +// Copyright (c) 2002-2010 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 +//
    1.18 +
    1.19 +#ifndef t_logutil2_h
    1.20 +#define t_logutil2_h
    1.21 +
    1.22 +#include <e32test.h>
    1.23 +#include <s32file.h>
    1.24 +#include <logcli.h>
    1.25 +#include <logengdurations.h>
    1.26 +#include <logengevents.h>
    1.27 +#include <logwraplimits.h>
    1.28 +#include <logfilterandeventconstants.hrh>
    1.29 +#include <e32base.h>
    1.30 +#include <f32file.h>
    1.31 +#include <logviewchangeobserver.h>
    1.32 +#include <logclientchangeobserver.h>
    1.33 +#include "LogChangeDefinition.h"
    1.34 +#include "LogServShared.h"
    1.35 +#include "LogCliServShared.h"
    1.36 +#include <babackup.h>
    1.37 +#include "t_logservsession.h"
    1.38 +#include "logcntdef.h"
    1.39 +#include "t_logutil.h"
    1.40 +
    1.41 +#ifdef LOGGING_ENABLED
    1.42 +
    1.43 +#include <f32file.h>
    1.44 +#include <flogger.h>
    1.45 +
    1.46 +
    1.47 +
    1.48 +_LIT(KLogFileName, "LogEng.txt");
    1.49 +_LIT(KLogFolder,   "LogEng");
    1.50 +_LIT(KTimeFormat, "%02d.%02d:%02d:%06d    ");
    1.51 +_LIT(KTextFormat, "%S");
    1.52 +const TInt KLogEngLogBufferSize = 256;
    1.53 +
    1.54 +class Log : public RFileLogger
    1.55 +	{
    1.56 +public:
    1.57 +	static void New();
    1.58 +	static void Write(const TDesC& aText);
    1.59 +	static void WriteFormat(TRefByValue<const TDesC> aFmt, ...);
    1.60 +private:
    1.61 +	static void PruneLogFile();
    1.62 +  };
    1.63 +
    1.64 +#define LOGNEW							Log::New()
    1.65 +#define LOGTEXT(AAA)					{ _LIT(KString, AAA); Log::Write(KString); }
    1.66 +#define LOGTEXT2(AAA, BBB)				{ _LIT(KString, AAA); Log::WriteFormat(TRefByValue<const TDesC>(KString()), BBB); }
    1.67 +#define LOGTEXT3(AAA, BBB, CCC)			{ _LIT(KString, AAA); Log::WriteFormat(TRefByValue<const TDesC>(KString()), BBB, CCC); }
    1.68 +#define LOGTEXT4(AAA, BBB, CCC, DDD)	{ _LIT(KString, AAA); Log::WriteFormat(TRefByValue<const TDesC>(KString()), BBB, CCC, DDD); }
    1.69 +
    1.70 +#else//LOGGING_ENABLED
    1.71 +
    1.72 +#define LOGNEW
    1.73 +#define LOGTEXT(AAA)
    1.74 +#define LOGTEXT2(AAA, BBB)
    1.75 +#define LOGTEXT3(AAA, BBB, CCC)
    1.76 +#define LOGTEXT4(AAA, BBB, CCC, DDD)
    1.77 +
    1.78 +#endif//LOGGING_ENABLED
    1.79 +
    1.80 +// Globals 
    1.81 +GLREF_D CTrapCleanup* theCleanup;
    1.82 +GLREF_D CActiveScheduler *testScheduler;
    1.83 +GLREF_D RFs theFs;
    1.84 +GLREF_D TFileName theLogName;
    1.85 +GLREF_D RFile theLog;
    1.86 +GLREF_D RLogTestSession theLogServ;
    1.87 +
    1.88 +#define __FILE_FAILNEXT(err, iteration) theFs.SetErrorCondition(err, iteration)
    1.89 +#define __FILE_RESET theFs.SetErrorCondition(KErrNone, 0)
    1.90 +
    1.91 +#if defined(_UNICODE)
    1.92 +	_LIT(KLogDatabaseName,"c:\\private\\101f401d\\Logdbu.dat");
    1.93 +#else
    1.94 +	_LIT(KLogDatabaseName,"c:\\private\\101f401d\\Logdb.dat");
    1.95 +#endif
    1.96 +
    1.97 +
    1.98 +//**********************************
    1.99 +// CTestActive
   1.100 +//**********************************
   1.101 +
   1.102 +class CTestActive : public CActive
   1.103 +	{
   1.104 +public:
   1.105 +	CTestActive(TInt aPriority = EPriorityIdle-100);
   1.106 +	~CTestActive();
   1.107 +	void StartL();
   1.108 +	void StartL(TInt);
   1.109 +protected:
   1.110 +	void DoCancel();
   1.111 +	void RunL();
   1.112 +private:
   1.113 +	TBool iDelayCompletion;
   1.114 +	TRequestStatus iStoredStatus;
   1.115 +	TInt iDelayTime;
   1.116 +	};
   1.117 +
   1.118 +void doTestsL();
   1.119 +
   1.120 +
   1.121 +//**********************************
   1.122 +// CTestTimer
   1.123 +//**********************************
   1.124 +
   1.125 +class CTestTimer : public CTimer
   1.126 +	{
   1.127 +public:
   1.128 +	static CTestTimer* NewL();
   1.129 +private:
   1.130 +	CTestTimer();
   1.131 +	void RunL();	
   1.132 +	};
   1.133 +
   1.134 +//**********************************
   1.135 +// TestUtils
   1.136 +//**********************************
   1.137 +
   1.138 +class TestUtils
   1.139 +	{
   1.140 +public:
   1.141 +	static void Initialize(const TDesC& aName);
   1.142 +	static void DeleteDatabaseL(TBool aCloseBeforeDelete = ETrue);
   1.143 +	static HBufC* CreateBufLC(TInt aLength);
   1.144 +	static HBufC8* CreateBuf8LC(TInt aLength);
   1.145 +	static TBool FiltersEqual(const CLogFilter& aFilter1, const CLogFilter& aFilter2);
   1.146 +	static TBool EventsEqual(const CLogEvent& aEvent1, const CLogEvent& aEvent2);
   1.147 +	static TBool TypesEqual(const CLogEventType& aType1, const CLogEventType& aType2);
   1.148 +	static TBool WaitForKeyL(TTimeIntervalMicroSeconds32 aDelay, TKeyCode& aKeyCode);
   1.149 +	static TBool FileExists(const TDesC& aFile);
   1.150 +	static void SetLogServHeapFailureL(RHeap::TAllocFail aType, TInt aRate);
   1.151 +	static TBool IsDatabaseOpenL();
   1.152 +	static TInt DatabaseSizeL();
   1.153 +	static TInt AddEventL();
   1.154 +	static void AddViewTestEventsL();
   1.155 +	static void AddEventTypeL();
   1.156 +	static void CopyCorruptDbL();
   1.157 +	static void CopyCorruptDamagedDbL();
   1.158 +	static void CopyOldDbL();
   1.159 +	static void TestInvalidSchemaL();
   1.160 +	static TBool MatchingEnabledL();
   1.161 +
   1.162 +private:
   1.163 +	// starts t_HiCapHelper.exe which has sufficient capability
   1.164 +    static TInt ExecuteRemoteL(const TDesC& aCommandLineArg);
   1.165 +	};
   1.166 +
   1.167 +#define __LOGSERV_UHEAP_FAILNEXT(X) TestUtils::SetLogServHeapFailureL(RHeap::EFailNext, X)
   1.168 +#define __LOGSERV_UHEAP_RESET TestUtils::SetLogServHeapFailureL(RHeap::ENone, 0)
   1.169 +
   1.170 +//**********************************
   1.171 +// CLogViewChangeObserver
   1.172 +//**********************************
   1.173 +
   1.174 +class CLogViewChangeObserver : public CActive, public MLogViewChangeObserver
   1.175 +	{
   1.176 +public:
   1.177 +	enum TStopType
   1.178 +		{
   1.179 +		EStopOnChanges = 0,
   1.180 +		EStopOnRunL,
   1.181 +		EStopOnBoth,
   1.182 +		EStopOnCount,
   1.183 +		EDontStopScheduler
   1.184 +		};
   1.185 +public:
   1.186 +	static CLogViewChangeObserver* NewLC();
   1.187 +	~CLogViewChangeObserver();
   1.188 +
   1.189 +protected:
   1.190 +	CLogViewChangeObserver();
   1.191 +
   1.192 +public:
   1.193 +	inline void StartCollectingChanges() 
   1.194 +		{ 
   1.195 +		Reset(); 
   1.196 +		iType = EDontStopScheduler; 
   1.197 +		}
   1.198 +	CLogChangeDefinition* WaitForChangesLC(TStopType aType = EStopOnChanges, TInt aCount = 0);
   1.199 +	CLogChangeDefinition* WaitForChangesLC(TCallBack aCallBack, TStopType aType, TInt aCount = 0);
   1.200 +	inline TBool HaveChanges() const 
   1.201 +		{ 
   1.202 +		return iChanges != NULL; 
   1.203 +		}
   1.204 +	inline const CLogChangeDefinition& Changes() const 
   1.205 +		{ 
   1.206 +		__ASSERT_ALWAYS(iChanges, User::Invariant()); 
   1.207 +		return *iChanges; 
   1.208 +		}
   1.209 +	inline void SetActive() 
   1.210 +		{ 
   1.211 +		CActive::SetActive(); 
   1.212 +		iStatus = KRequestPending; 
   1.213 +		}
   1.214 +	inline void ResetChanges() 
   1.215 +		{ 
   1.216 +		__ASSERT_ALWAYS(iChanges, User::Invariant()); 
   1.217 +		iChanges->Reset(); 
   1.218 +		}
   1.219 +
   1.220 +public:
   1.221 +	void HandleLogViewChangeEventAddedL(TLogId aId,   TInt aViewIndex, TInt aChangeIndex, TInt aTotalChangeCount);
   1.222 +	void HandleLogViewChangeEventChangedL(TLogId aId, TInt aViewIndex, TInt aChangeIndex, TInt aTotalChangeCount);
   1.223 +	void HandleLogViewChangeEventDeletedL(TLogId aId, TInt aViewIndex, TInt aChangeIndex, TInt aTotalChangeCount);
   1.224 +
   1.225 +private:
   1.226 +	void RunL();
   1.227 +	void DoCancel();
   1.228 +
   1.229 +private:
   1.230 +	void Reset();	 
   1.231 +
   1.232 +protected:
   1.233 +	void CheckForSchedulerStop();
   1.234 +	void AddChangeL(TLogDatabaseChangeType aType, TLogId aId, TInt aViewIndex);
   1.235 + 	
   1.236 +private:
   1.237 +	TInt iExpectedChangeCount;
   1.238 +	TBool iHaveFinishedOperation;
   1.239 +	TBool iHaveObtainedChanges;
   1.240 +	TBool iSchedulerStarted;
   1.241 +	TStopType iType;
   1.242 +	CLogChangeDefinition* iChanges;
   1.243 +	TBool iHaveCallBack;
   1.244 +	TCallBack iCallBack;
   1.245 +	};
   1.246 +
   1.247 +//**********************************
   1.248 +// CLogViewChangeObserverErrorTest
   1.249 +//**********************************
   1.250 +
   1.251 +class CLogViewChangeObserverErrorTest : public  CLogViewChangeObserver 
   1.252 +	{
   1.253 +public:
   1.254 +	static CLogViewChangeObserverErrorTest* NewLC();
   1.255 +
   1.256 +private:
   1.257 +	CLogViewChangeObserverErrorTest();
   1.258 +
   1.259 +public:
   1.260 +	void HandleLogViewChangeEventAddedL(TLogId aId,   TInt aViewIndex, TInt aChangeIndex, TInt aTotalChangeCount);
   1.261 +	};
   1.262 +
   1.263 +
   1.264 +//**********************************
   1.265 +// CLogSchedulerTimer
   1.266 +//**********************************
   1.267 +
   1.268 +class CLogSchedulerTimer : public CTimer
   1.269 +	{
   1.270 +public:
   1.271 +	static CLogSchedulerTimer* NewLC();
   1.272 +	~CLogSchedulerTimer();
   1.273 +
   1.274 +private:
   1.275 +	CLogSchedulerTimer();
   1.276 +	void ConstructL();
   1.277 +
   1.278 +public:
   1.279 +	void Wait(TTimeIntervalMicroSeconds32 aTime);
   1.280 +
   1.281 +private:
   1.282 +	void RunL();
   1.283 +	};
   1.284 +
   1.285 +//**********************************
   1.286 +// CLogChangeNotifier
   1.287 +//**********************************
   1.288 +
   1.289 +class CLogChangeNotifier : public CActive
   1.290 +	{
   1.291 +public:
   1.292 +	static CLogChangeNotifier* NewL();
   1.293 +	~CLogChangeNotifier();
   1.294 +	//
   1.295 +private:
   1.296 +	CLogChangeNotifier();
   1.297 +	void ConstructL();
   1.298 +	//
   1.299 +	void RunL();
   1.300 +	void DoCancel();
   1.301 +	//
   1.302 +private:
   1.303 +	CLogClient* iClient;
   1.304 +	TTime iStart;
   1.305 +	};
   1.306 +
   1.307 +//**********************************
   1.308 +// Global
   1.309 +//**********************************
   1.310 +
   1.311 +void SetupSchedulerL();
   1.312 +void CloseScheduler();
   1.313 +void doMainL();
   1.314 +TInt E32Main();
   1.315 +void DeleteDataFile(const TDesC& aFullName);
   1.316 +
   1.317 +#endif//t_logutil2_h