Update contrib.
1 // Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
22 #include "dvbhhaitestutil.h"
24 const TUid KDvbhPropertyCategory =
26 0x101f45ef //TestFramework's UID3
35 const TUint KNumDvbhProperties = 8;
36 const TDvbhProperty KDvbhProperties[] =
38 {EDvbhPropertyKeyState, RProperty::EInt},
39 {EDvbhPropertyKeyPlatform, RProperty::EByteArray},
40 {EDvbhPropertyKeyNetworkTime, RProperty::EByteArray},
41 {EDvbhPropertyKeyPerformanceData, RProperty::EByteArray},
42 {EDvbhPropertyKeyFrequency, RProperty::EInt},
43 {EDvbhPropertyKeyNetworkId, RProperty::EInt},
44 {EDvbhPropertyKeySignalQuality, RProperty::EInt},
45 {EDvbhPropertyKeyCellId, RProperty::EInt}
48 TInt CDvbhTestUtil::GetKey(TDvbhPropertyKey aKey)
50 return KDvbhProperties[aKey].iKey;
53 TInt CDvbhTestUtil::GetType(TDvbhPropertyKey aKey)
55 return KDvbhProperties[aKey].iType;
58 CDvbhTestUtil::CDvbhTestUtil(MDvbhHaiTestLoggerInterface& aTestStepLogger)
59 : iTestStepLogger(aTestStepLogger)
63 CDvbhTestUtil* CDvbhTestUtil::NewL(MDvbhHaiTestLoggerInterface& aTestStepLogger)
65 CDvbhTestUtil* self = new (ELeave) CDvbhTestUtil(aTestStepLogger);
69 TInt CDvbhTestUtil::DefineDvbhProperty(TInt aPropertyKey, TInt aType) const
71 TInt err = RProperty::Define(KDvbhPropertyCategory, aPropertyKey, aType);
72 if (err != KErrAlreadyExists && err != KErrNone)
74 iTestStepLogger.InfoPrintf3(_L("Error %d defining property %d"), err, aPropertyKey);
84 TInt CDvbhTestUtil::DefineDvbhProperty(TInt aPropertyKey, TInt aType, const TDesC8& aInitialValue) const
86 TInt err = DefineDvbhProperty(aPropertyKey, aType);
91 return SetByteArrayProperty(aPropertyKey, aInitialValue);
94 TInt CDvbhTestUtil::DeleteDvbhProperty(TInt aPropertyKey)
96 TInt err = RProperty::Delete(KDvbhPropertyCategory, aPropertyKey);
97 if (err != KErrNone && err != KErrNotFound)
99 iTestStepLogger.InfoPrintf3(_L("Error %d deleting property %d"), err, aPropertyKey);
108 TInt CDvbhTestUtil::SetByteArrayProperty(TInt aPropertyKey, const TDesC8& aValue) const
110 TInt result = RProperty::Set(KDvbhPropertyCategory, aPropertyKey, aValue);
111 if (result != KErrNone)
113 iTestStepLogger.InfoPrintf3(_L("Error %d setting the byte array property with key %d."), result, aPropertyKey);
118 TInt CDvbhTestUtil::SetIntegerProperty(TInt aPropertyKey, TInt aValue) const
120 TInt result = RProperty::Set(KDvbhPropertyCategory, aPropertyKey, aValue);
121 if (result != KErrNone)
123 iTestStepLogger.InfoPrintf4(_L("Error %d setting the integer property with key %d to %d"), result, aPropertyKey, aValue);
128 TInt CDvbhTestUtil::DefineDvbhStateProperty(TInt aInitialState)
130 TInt result = DefineDvbhProperty(EDvbhPropertyKeyState, KDvbhProperties[EDvbhPropertyKeyState].iType);
131 if (result == KErrNone && aInitialState != ENoInitialState)
133 result = SetStateProperty(aInitialState);
138 TInt CDvbhTestUtil::DefineDvbhIntegerProperty(TInt aPropertyKey, TInt aInitialValue) const
140 TInt result = DefineDvbhProperty(aPropertyKey, KDvbhProperties[aPropertyKey].iType);
141 if (result == KErrNone)
143 result = SetIntegerProperty(aPropertyKey, aInitialValue);
148 TInt CDvbhTestUtil::SetStateProperty(TInt aValue)
150 TInt result = SetIntegerProperty(EDvbhPropertyKeyState, aValue);
151 if (result != KErrNone)
153 iTestStepLogger.InfoPrintf3(_L("Error %d setting state property to %d"), result, aValue);
158 TInt CDvbhTestUtil::DefineAllDvbhProperties()
160 for (TUint i=0;i<KNumDvbhProperties;++i)
162 const TDvbhProperty property = KDvbhProperties[i];
163 TInt defineResult = DefineDvbhProperty(property.iKey, property.iType);
164 if (defineResult != KErrNone)
166 iTestStepLogger.InfoPrintf3(_L("Error %d defining property number %d"), defineResult, i);
167 DeleteAllDvbhProperties();
174 TInt CDvbhTestUtil::DeleteAllDvbhProperties()
176 TInt result = KErrNone;
177 for (TUint i=0;i<KNumDvbhProperties;++i)
179 const TDvbhProperty property = KDvbhProperties[i];
180 TInt deleteResult = DeleteDvbhProperty(property.iKey);
181 if (deleteResult != KErrNone)
183 result = deleteResult;
189 TBool CDvbhTestUtil::CompareVersions(const TVersion& aVersion1, const TVersion& aVersion2)
191 return (aVersion1.iMinor == aVersion2.iMinor &&
192 aVersion1.iMajor == aVersion2.iMajor &&
193 aVersion1.iBuild == aVersion2.iBuild);
196 TBool CDvbhTestUtil::ComparePlatforms(const TDvbhPlatform& aPlatform1, const TDvbhPlatform& aPlatform2)
198 return (aPlatform1.iId == aPlatform2.iId &&
199 aPlatform1.iName.Compare(aPlatform2.iName) == 0); // Compare returns 0 if they are the same
202 TBool CDvbhTestUtil::ComparePerformanceDatas(const TDvbhPerformanceData& aData1, const TDvbhPerformanceData& aData2)
204 return (aData1.iFilterCount == aData2.iFilterCount &&
205 aData1.iMaxFilters == aData2.iMaxFilters &&
206 aData1.iDataCount == aData2.iDataCount &&
207 aData1.iWriteCount == aData2.iWriteCount &&
208 aData1.iWriteCommandCount == aData2.iWriteCommandCount &&
209 aData1.iReadCount == aData2.iReadCount &&
210 aData1.iReadCommandCount == aData2.iReadCommandCount);
213 TBool CDvbhTestUtil::CompareScanConfigurations(const TDvbhScanConfiguration& aConfig1, const TDvbhScanConfiguration& aConfig2)
215 return (aConfig1.iScanStartFrequency == aConfig2.iScanStartFrequency &&
216 aConfig1.iScanEndFrequency == aConfig2.iScanEndFrequency &&
217 aConfig1.iSignalBandwidth == aConfig2.iSignalBandwidth &&
218 aConfig1.iScanOptions == aConfig2.iScanOptions );