os/mm/mmhais/dvbhunittest/hai/dvbh/src/dvbhhaitestutil.h
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
sl@0
     1
// Copyright (c) 2007-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
//
sl@0
    15
sl@0
    16
/**
sl@0
    17
 @file
sl@0
    18
 @internalComponent
sl@0
    19
 @prototype
sl@0
    20
*/
sl@0
    21
sl@0
    22
#ifndef DVBHHAITESTUTIL_H
sl@0
    23
#define DVBHHAITESTUTIL_H
sl@0
    24
sl@0
    25
#include <e32base.h>
sl@0
    26
#include <e32property.h>
sl@0
    27
#include <mobiletv/hai/dvbh/dvbhtypes.h>
sl@0
    28
#include <in_sock.h>
sl@0
    29
sl@0
    30
sl@0
    31
/**
sl@0
    32
* Constants for expected values
sl@0
    33
*/
sl@0
    34
const TInt KDvbhTestFilterId = 977;
sl@0
    35
const TIp6Addr KDvbhTestIpV6Addr = {{{1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,1}}};
sl@0
    36
const TInt KDvbhTestCustomCommand = 0;
sl@0
    37
_LIT8(KDvbhTestCustomCommandInput, 	"DvbhTestCustomCommandInput");
sl@0
    38
_LIT8(KDvbhTestCustomCommandOutput, "DvbhTestCustomCommandOutput");
sl@0
    39
_LIT8(KDvbhTestHardwareInfo, "Example Hardware Info;Version 1.0");
sl@0
    40
sl@0
    41
const TInt KInitialState = EDvbhStateInactive;
sl@0
    42
const TInt KExpectedState = EDvbhStateReady;
sl@0
    43
sl@0
    44
const TInt KInitialSignalQuality = EDvbhSignalQualityFair;
sl@0
    45
const TInt KExpectedSignalQuality = EDvbhSignalQualityExcellent;
sl@0
    46
sl@0
    47
const TInt KInitialFrequency = 1500000;
sl@0
    48
const TInt KExpectedFrequency = 3600000;
sl@0
    49
sl@0
    50
const TInt KInitialCellId = 1006;
sl@0
    51
const TInt KExpectedCellId = 756;
sl@0
    52
sl@0
    53
const TInt KInitialNetworkId = 9993;
sl@0
    54
const TInt KExpectedNetworkId = 3726;
sl@0
    55
sl@0
    56
const TUint32 KDvbhTestTerminalTimeStamp = 987654321;
sl@0
    57
sl@0
    58
const TInt KNoVerdict = -1;
sl@0
    59
sl@0
    60
const TInt KInitialPlatformId = 123456789;
sl@0
    61
_LIT8(KInitialPlatformName, "DvbhTestInitialPlatform");
sl@0
    62
sl@0
    63
const TInt KExpectedPlatformId = 987654321;
sl@0
    64
_LIT8(KExpectedPlatformName, "DvbhTestExpectedPlatform");
sl@0
    65
sl@0
    66
/**
sl@0
    67
* @internalComponent
sl@0
    68
* @prototype
sl@0
    69
*
sl@0
    70
* Publish & Subscribe variables used for implementation to API communication.
sl@0
    71
*
sl@0
    72
* This must be kept identical to the ones defined in the non-exported header
sl@0
    73
* file dvbhimplcommon.h
sl@0
    74
*/	
sl@0
    75
enum TDvbhPropertyKey
sl@0
    76
	{
sl@0
    77
	EDvbhPropertyKeyState = 0,					// integer (TDvbhState)
sl@0
    78
	EDvbhPropertyKeyPlatform = 1,   	 		// byte array (TDvbhPlatform + TIp6Addr + TInt16)
sl@0
    79
	EDvbhPropertyKeyNetworkTime = 2, 	 		// byte array (TDvbhNetworkTime)
sl@0
    80
	EDvbhPropertyKeyPerformanceData = 3, 		// byte array (TDvbhPerformanceData)
sl@0
    81
	EDvbhPropertyKeyFrequency = 4, 		 		// byte array (TDvbhFrequency)
sl@0
    82
	EDvbhPropertyKeyNetworkId = 5, 		 		// byte array (TDvbhNetworkId)
sl@0
    83
	EDvbhPropertyKeySignalQuality = 6, 	 		// byte array (TDvbhSignalQuality)
sl@0
    84
	EDvbhPropertyKeyCellId = 7	 		 		// byte array (TDvbhCellId)
sl@0
    85
	};
sl@0
    86
sl@0
    87
struct TDvbhPlatformProperty
sl@0
    88
	{
sl@0
    89
	TDvbhPlatform iPlatform;
sl@0
    90
	TIp6Addr iEsgRoot;
sl@0
    91
	};
sl@0
    92
sl@0
    93
/**
sl@0
    94
* Interface to enable CDvbhTestUtil to log test data & messages.
sl@0
    95
*/	
sl@0
    96
class MDvbhHaiTestLoggerInterface
sl@0
    97
	{
sl@0
    98
public:
sl@0
    99
	virtual void InfoPrintf3(const TDesC16& aString, TInt aInt1, TInt aInt2) = 0;
sl@0
   100
	virtual void InfoPrintf4(const TDesC16& aString, TInt aInt1, TInt aInt2, TInt aInt3) = 0;
sl@0
   101
	};
sl@0
   102
	
sl@0
   103
class RTestStep;
sl@0
   104
sl@0
   105
/**
sl@0
   106
* @internalComponent
sl@0
   107
* @prototype
sl@0
   108
*
sl@0
   109
* A class of utility methods to help the DVB-H HAI test steps.
sl@0
   110
*/
sl@0
   111
class CDvbhTestUtil : public CBase
sl@0
   112
	{
sl@0
   113
public:
sl@0
   114
	enum 
sl@0
   115
		{
sl@0
   116
		ENoInitialState = -1
sl@0
   117
		};
sl@0
   118
		
sl@0
   119
	enum
sl@0
   120
		{
sl@0
   121
		ENumDvbhProperties = 8
sl@0
   122
		};
sl@0
   123
public:
sl@0
   124
	static CDvbhTestUtil* NewL(MDvbhHaiTestLoggerInterface& aTestStepLogger);
sl@0
   125
		
sl@0
   126
	TInt DefineDvbhProperty(TInt aPropertyKey, TInt aType = RProperty::EInt) const;
sl@0
   127
	TInt DefineDvbhProperty(TInt aPropertyKey, TInt aType, const TDesC8& aInitialValue) const;
sl@0
   128
	TInt DefineDvbhStateProperty(TInt aInitialState = ENoInitialState);
sl@0
   129
	TInt DefineDvbhIntegerProperty(TInt aPropertyKey, TInt aInitialValue) const;
sl@0
   130
	TInt DeleteDvbhProperty(TInt aPropertyKey);
sl@0
   131
	TInt SetStateProperty(TInt aValue);
sl@0
   132
	TInt SetByteArrayProperty(TInt aPropertyKey, const TDesC8& aValue) const;
sl@0
   133
	TInt SetIntegerProperty(TInt aPropertyKey, TInt aValue) const;
sl@0
   134
	TInt DefineAllDvbhProperties();
sl@0
   135
	TInt DeleteAllDvbhProperties();
sl@0
   136
public:
sl@0
   137
	static TInt GetKey(TDvbhPropertyKey aKey);
sl@0
   138
	static TInt GetType(TDvbhPropertyKey aKey);
sl@0
   139
	static TBool CompareVersions(const TVersion& aVersion1, const TVersion& aVersion2);
sl@0
   140
	static TBool ComparePlatforms(const TDvbhPlatform& aPlatform1, const TDvbhPlatform& aPlatform2);
sl@0
   141
	static TBool ComparePerformanceDatas(const TDvbhPerformanceData& aData1, const TDvbhPerformanceData& aData2);
sl@0
   142
	static TBool CompareScanConfigurations(const TDvbhScanConfiguration& aConfig1, const TDvbhScanConfiguration& aConfig2);
sl@0
   143
private:
sl@0
   144
	CDvbhTestUtil(MDvbhHaiTestLoggerInterface& aTestStepLogger);
sl@0
   145
private:
sl@0
   146
	MDvbhHaiTestLoggerInterface& iTestStepLogger;
sl@0
   147
	};
sl@0
   148
	
sl@0
   149
#endif // DVBHHAITESTUTIL_H