os/mm/mmhais/dvbhunittest/hai/dvbh/src/dvbhhaitestutil.h
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/mm/mmhais/dvbhunittest/hai/dvbh/src/dvbhhaitestutil.h	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,149 @@
     1.4 +// Copyright (c) 2007-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 +//
    1.18 +
    1.19 +/**
    1.20 + @file
    1.21 + @internalComponent
    1.22 + @prototype
    1.23 +*/
    1.24 +
    1.25 +#ifndef DVBHHAITESTUTIL_H
    1.26 +#define DVBHHAITESTUTIL_H
    1.27 +
    1.28 +#include <e32base.h>
    1.29 +#include <e32property.h>
    1.30 +#include <mobiletv/hai/dvbh/dvbhtypes.h>
    1.31 +#include <in_sock.h>
    1.32 +
    1.33 +
    1.34 +/**
    1.35 +* Constants for expected values
    1.36 +*/
    1.37 +const TInt KDvbhTestFilterId = 977;
    1.38 +const TIp6Addr KDvbhTestIpV6Addr = {{{1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,1}}};
    1.39 +const TInt KDvbhTestCustomCommand = 0;
    1.40 +_LIT8(KDvbhTestCustomCommandInput, 	"DvbhTestCustomCommandInput");
    1.41 +_LIT8(KDvbhTestCustomCommandOutput, "DvbhTestCustomCommandOutput");
    1.42 +_LIT8(KDvbhTestHardwareInfo, "Example Hardware Info;Version 1.0");
    1.43 +
    1.44 +const TInt KInitialState = EDvbhStateInactive;
    1.45 +const TInt KExpectedState = EDvbhStateReady;
    1.46 +
    1.47 +const TInt KInitialSignalQuality = EDvbhSignalQualityFair;
    1.48 +const TInt KExpectedSignalQuality = EDvbhSignalQualityExcellent;
    1.49 +
    1.50 +const TInt KInitialFrequency = 1500000;
    1.51 +const TInt KExpectedFrequency = 3600000;
    1.52 +
    1.53 +const TInt KInitialCellId = 1006;
    1.54 +const TInt KExpectedCellId = 756;
    1.55 +
    1.56 +const TInt KInitialNetworkId = 9993;
    1.57 +const TInt KExpectedNetworkId = 3726;
    1.58 +
    1.59 +const TUint32 KDvbhTestTerminalTimeStamp = 987654321;
    1.60 +
    1.61 +const TInt KNoVerdict = -1;
    1.62 +
    1.63 +const TInt KInitialPlatformId = 123456789;
    1.64 +_LIT8(KInitialPlatformName, "DvbhTestInitialPlatform");
    1.65 +
    1.66 +const TInt KExpectedPlatformId = 987654321;
    1.67 +_LIT8(KExpectedPlatformName, "DvbhTestExpectedPlatform");
    1.68 +
    1.69 +/**
    1.70 +* @internalComponent
    1.71 +* @prototype
    1.72 +*
    1.73 +* Publish & Subscribe variables used for implementation to API communication.
    1.74 +*
    1.75 +* This must be kept identical to the ones defined in the non-exported header
    1.76 +* file dvbhimplcommon.h
    1.77 +*/	
    1.78 +enum TDvbhPropertyKey
    1.79 +	{
    1.80 +	EDvbhPropertyKeyState = 0,					// integer (TDvbhState)
    1.81 +	EDvbhPropertyKeyPlatform = 1,   	 		// byte array (TDvbhPlatform + TIp6Addr + TInt16)
    1.82 +	EDvbhPropertyKeyNetworkTime = 2, 	 		// byte array (TDvbhNetworkTime)
    1.83 +	EDvbhPropertyKeyPerformanceData = 3, 		// byte array (TDvbhPerformanceData)
    1.84 +	EDvbhPropertyKeyFrequency = 4, 		 		// byte array (TDvbhFrequency)
    1.85 +	EDvbhPropertyKeyNetworkId = 5, 		 		// byte array (TDvbhNetworkId)
    1.86 +	EDvbhPropertyKeySignalQuality = 6, 	 		// byte array (TDvbhSignalQuality)
    1.87 +	EDvbhPropertyKeyCellId = 7	 		 		// byte array (TDvbhCellId)
    1.88 +	};
    1.89 +
    1.90 +struct TDvbhPlatformProperty
    1.91 +	{
    1.92 +	TDvbhPlatform iPlatform;
    1.93 +	TIp6Addr iEsgRoot;
    1.94 +	};
    1.95 +
    1.96 +/**
    1.97 +* Interface to enable CDvbhTestUtil to log test data & messages.
    1.98 +*/	
    1.99 +class MDvbhHaiTestLoggerInterface
   1.100 +	{
   1.101 +public:
   1.102 +	virtual void InfoPrintf3(const TDesC16& aString, TInt aInt1, TInt aInt2) = 0;
   1.103 +	virtual void InfoPrintf4(const TDesC16& aString, TInt aInt1, TInt aInt2, TInt aInt3) = 0;
   1.104 +	};
   1.105 +	
   1.106 +class RTestStep;
   1.107 +
   1.108 +/**
   1.109 +* @internalComponent
   1.110 +* @prototype
   1.111 +*
   1.112 +* A class of utility methods to help the DVB-H HAI test steps.
   1.113 +*/
   1.114 +class CDvbhTestUtil : public CBase
   1.115 +	{
   1.116 +public:
   1.117 +	enum 
   1.118 +		{
   1.119 +		ENoInitialState = -1
   1.120 +		};
   1.121 +		
   1.122 +	enum
   1.123 +		{
   1.124 +		ENumDvbhProperties = 8
   1.125 +		};
   1.126 +public:
   1.127 +	static CDvbhTestUtil* NewL(MDvbhHaiTestLoggerInterface& aTestStepLogger);
   1.128 +		
   1.129 +	TInt DefineDvbhProperty(TInt aPropertyKey, TInt aType = RProperty::EInt) const;
   1.130 +	TInt DefineDvbhProperty(TInt aPropertyKey, TInt aType, const TDesC8& aInitialValue) const;
   1.131 +	TInt DefineDvbhStateProperty(TInt aInitialState = ENoInitialState);
   1.132 +	TInt DefineDvbhIntegerProperty(TInt aPropertyKey, TInt aInitialValue) const;
   1.133 +	TInt DeleteDvbhProperty(TInt aPropertyKey);
   1.134 +	TInt SetStateProperty(TInt aValue);
   1.135 +	TInt SetByteArrayProperty(TInt aPropertyKey, const TDesC8& aValue) const;
   1.136 +	TInt SetIntegerProperty(TInt aPropertyKey, TInt aValue) const;
   1.137 +	TInt DefineAllDvbhProperties();
   1.138 +	TInt DeleteAllDvbhProperties();
   1.139 +public:
   1.140 +	static TInt GetKey(TDvbhPropertyKey aKey);
   1.141 +	static TInt GetType(TDvbhPropertyKey aKey);
   1.142 +	static TBool CompareVersions(const TVersion& aVersion1, const TVersion& aVersion2);
   1.143 +	static TBool ComparePlatforms(const TDvbhPlatform& aPlatform1, const TDvbhPlatform& aPlatform2);
   1.144 +	static TBool ComparePerformanceDatas(const TDvbhPerformanceData& aData1, const TDvbhPerformanceData& aData2);
   1.145 +	static TBool CompareScanConfigurations(const TDvbhScanConfiguration& aConfig1, const TDvbhScanConfiguration& aConfig2);
   1.146 +private:
   1.147 +	CDvbhTestUtil(MDvbhHaiTestLoggerInterface& aTestStepLogger);
   1.148 +private:
   1.149 +	MDvbhHaiTestLoggerInterface& iTestStepLogger;
   1.150 +	};
   1.151 +	
   1.152 +#endif // DVBHHAITESTUTIL_H