os/mm/mmhais/dvbhunittest/hai/dvbh/src/dvbhhaiasynctest.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
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".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 //
    15 
    16 /**
    17  @file
    18  @internalComponent
    19  @prototype
    20 */
    21 
    22 #include "dvbhhaiasynctest.h"
    23 #include <mobiletv/hai/dvbh/dvbhtypes.h>
    24 
    25 /**
    26 * RDvbhHaiAsyncTest 
    27 *	DVB-H HAI Asynchronous Unit Tests on stub implementations
    28 */
    29 
    30 		
    31 RDvbhHaiAsyncTest* RDvbhHaiAsyncTest::NewL(TBool aRequireReceiverInfo, const TDesC& aTestName)
    32 	{
    33 	RDvbhHaiAsyncTest* self = new (ELeave) RDvbhHaiAsyncTest(aRequireReceiverInfo, aTestName);
    34 	return self;	
    35 	}
    36 	
    37 RDvbhHaiAsyncTest::RDvbhHaiAsyncTest(TBool aRequireReceiverInfo, const TDesC& aTestName)
    38 : RAsyncTestStep(), iExpectedNetworkTime(TDateTime(2007, EJuly, 30, 16, 35, 22, 18)),
    39   iInitialNetworkTime(TDateTime(1997, EMay, 10, 10, 00, 34, 02)), iInitialPlatform(),
    40   iExpectedPlatform(), iPreTestRun(EFalse), iRequireReceiverInfo(aRequireReceiverInfo),
    41   iRxInfo(NULL), i2ndRxInfo(NULL), iTestUtils(NULL), i2ndStateObserver(NULL)
    42 	{
    43 	iStateCallbackVerdicts[E1stStateObserver] = KNoVerdict;
    44 	iStateCallbackVerdicts[E2ndStateObserver] = KNoVerdict;
    45 	iTestStepName.Copy(aTestName);
    46 	SetupParameterData();
    47 	}
    48 
    49 void RDvbhHaiAsyncTest::SetupParameterData()
    50 	{
    51 	iInitialPlatform.iPlatform.iId = KInitialPlatformId;
    52 	iInitialPlatform.iPlatform.iName = KInitialPlatformName;
    53 	iInitialPlatform.iEsgRoot = KInet6AddrLinkLocal;
    54 	
    55 	iExpectedPlatform.iPlatform.iId = KExpectedPlatformId;
    56 	iExpectedPlatform.iPlatform.iName = KExpectedPlatformName;	
    57 	iExpectedPlatform.iEsgRoot = KDvbhTestIpV6Addr;
    58 	}
    59 	
    60 void RDvbhHaiAsyncTest::InfoPrintf3(const TDesC16& aString, TInt aInt1, TInt aInt2)
    61 	{
    62 	INFO_PRINTF3(aString, aInt1, aInt2);
    63 	}
    64 
    65 void RDvbhHaiAsyncTest::InfoPrintf4(const TDesC16& aString, TInt aInt1, TInt aInt2, TInt aInt3)
    66 	{
    67 	INFO_PRINTF4(aString, aInt1, aInt2, aInt3);
    68 	}
    69 	
    70 /**
    71 * Allocs objects, defines properties, etc. as needed for each test step.
    72 * Takes the role of the Preamble in synchornous tests.  It is called once
    73 * when a test step is first kicked off.
    74 */
    75 TVerdict RDvbhHaiAsyncTest::DoPreTest()
    76 	{
    77 	TRAPD(result, iTestUtils = CDvbhTestUtil::NewL(*this));
    78 	if (result != KErrNone)
    79 		{
    80 		INFO_PRINTF2(_L("Error %d creating CDvbhTestUtil"), result);
    81 		return EInconclusive;		
    82 		}
    83 	
    84 	if (iRequireReceiverInfo)
    85 		{
    86 		TRAP(result, iRxInfo = CDvbhReceiverInfo::NewL())
    87 		if (result != KErrNone)
    88 			{
    89 			INFO_PRINTF2(_L("Error %d creating CDvbhReceiverInfo"), result);
    90 			return EInconclusive;
    91 			}
    92 		}
    93 		
    94 	if (iTestStepName.Compare(_L("MM-TV-DVBH-U-111")) == 0)		
    95 		{
    96 		result = iTestUtils->DefineDvbhStateProperty(KInitialState);		
    97 		}
    98 	else if	(iTestStepName.Compare(_L("MM-TV-DVBH-U-112")) == 0)		
    99 		{
   100 		 // Receiver state must be EDvbhStateReceiving before we can do this test.
   101 		result = iTestUtils->DefineDvbhStateProperty(EDvbhStateReceiving);
   102 		if (result == KErrNone)
   103 			{
   104 			result = iTestUtils->DefineDvbhIntegerProperty(EDvbhPropertyKeySignalQuality, KInitialSignalQuality);			
   105 			}				
   106 		}
   107 	else if	(iTestStepName.Compare(_L("MM-TV-DVBH-U-113")) == 0)		
   108 		{
   109 		 // Receiver state must be EDvbhStateReady or EDvbhStateReceiving before we can do this test.
   110 		result = iTestUtils->DefineDvbhStateProperty(EDvbhStateReady);
   111 		if (result == KErrNone)
   112 			{
   113 			TPckg<TDvbhPlatformProperty> initialPlatformPckg(iInitialPlatform);
   114 			result = iTestUtils->DefineDvbhProperty(EDvbhPropertyKeyPlatform, CDvbhTestUtil::GetType(EDvbhPropertyKeyPlatform), initialPlatformPckg);			
   115 			}		
   116 		}
   117 	else if	(iTestStepName.Compare(_L("MM-TV-DVBH-U-114")) == 0)		
   118 		{
   119 		 // Receiver state must be EDvbhStateReady or EDvbhStateReceiving before we can do this test.
   120 		result = iTestUtils->DefineDvbhStateProperty(EDvbhStateReady);
   121 		if (result == KErrNone)
   122 			{
   123 			TPckg<TTime> initialTimePckg(iInitialNetworkTime);
   124 			result = iTestUtils->DefineDvbhProperty(EDvbhPropertyKeyNetworkTime, CDvbhTestUtil::GetType(EDvbhPropertyKeyNetworkTime), initialTimePckg);			
   125 			}		
   126 		}
   127 	else if	(iTestStepName.Compare(_L("MM-TV-DVBH-U-115")) == 0)		
   128 		{
   129 		 // Receiver state must be EDvbhStateReady or EDvbhStateReceiving before we can do this test.
   130 		result = iTestUtils->DefineDvbhStateProperty(EDvbhStateReady);
   131 		if (result == KErrNone)
   132 			{
   133 			result = iTestUtils->DefineDvbhIntegerProperty(EDvbhPropertyKeyFrequency, KInitialFrequency);			
   134 			}		
   135 		}
   136 	else if	(iTestStepName.Compare(_L("MM-TV-DVBH-U-116")) == 0)		
   137 		{
   138 		 // Receiver state must be EDvbhStateReady or EDvbhStateReceiving before we can do this test.
   139 		result = iTestUtils->DefineDvbhStateProperty(EDvbhStateReady);
   140 		if (result == KErrNone)
   141 			{
   142 			result = iTestUtils->DefineDvbhIntegerProperty(EDvbhPropertyKeyCellId, KInitialCellId);			
   143 			}		
   144 		}
   145 	else if	(iTestStepName.Compare(_L("MM-TV-DVBH-U-117")) == 0)		
   146 		{
   147 		 // Receiver state must be EDvbhStateReady or EDvbhStateReceiving before we can do this test.
   148 		result = iTestUtils->DefineDvbhStateProperty(EDvbhStateReady);
   149 		if (result == KErrNone)
   150 			{
   151 			result = iTestUtils->DefineDvbhIntegerProperty(EDvbhPropertyKeyNetworkId, KInitialNetworkId);			
   152 			}		
   153 		}
   154 	else if	(iTestStepName.Compare(_L("MM-TV-DVBH-U-125")) == 0)		
   155 		{
   156 		result = iTestUtils->DefineDvbhStateProperty(KInitialState);
   157 		if (result == KErrNone)
   158 			{
   159 			TRAP(result, i2ndStateObserver = CAlternativeStateObserver::NewL(*this));		
   160 			}
   161 		}
   162 	else if	(iTestStepName.Compare(_L("MM-TV-DVBH-U-126")) == 0)		
   163 		{
   164 		TRAP(result, i2ndStateObserver = CAlternativeStateObserver::NewL(*this));		
   165 		}
   166 	else if	(iTestStepName.Compare(_L("MM-TV-DVBH-U-127")) == 0)		
   167 		{
   168 		result = iTestUtils->DefineDvbhStateProperty(KInitialState);
   169 		if (result == KErrNone)
   170 			{
   171 			TRAP(result, i2ndRxInfo = CDvbhReceiverInfo::NewL());
   172 			if (result == KErrNone)
   173 				{
   174 				TRAP(result, i2ndStateObserver = CAlternativeStateObserver::NewL(*this));		
   175 				}
   176 			}
   177 		}
   178 	else if	(iTestStepName.Compare(_L("MM-TV-DVBH-U-128")) == 0)		
   179 		{
   180 		TRAP(result, i2ndRxInfo = CDvbhReceiverInfo::NewL());
   181 		if (result == KErrNone)
   182 			{
   183 			TRAP(result, i2ndStateObserver = CAlternativeStateObserver::NewL(*this));		
   184 			}
   185 		}
   186 	else if (iTestStepName.Compare(_L("MM-TV-DVBH-U-401")) == 0)		
   187 		{
   188 		result = iTestUtils->DefineAllDvbhProperties();		
   189 		}
   190 	
   191 	iPreTestRun = ETrue;	
   192 	return (result == KErrNone ? EPass : EInconclusive);				
   193 	}
   194 	
   195 void RDvbhHaiAsyncTest::CloseTest()
   196 	{
   197 	delete iRxInfo;
   198 	iRxInfo = NULL;
   199 	delete i2ndStateObserver;
   200 	i2ndStateObserver = NULL;
   201 	delete i2ndRxInfo;
   202 	i2ndRxInfo = NULL;
   203 	
   204 	TInt result = KErrNone;
   205 
   206 	if (iTestStepName.Compare(_L("MM-TV-DVBH-U-111")) == 0)		
   207 		{
   208 		result = iTestUtils->DeleteDvbhProperty(EDvbhPropertyKeyState);		
   209 		}
   210 	else if	(iTestStepName.Compare(_L("MM-TV-DVBH-U-112")) == 0)		
   211 		{
   212 		result = iTestUtils->DeleteDvbhProperty(EDvbhPropertyKeyState);
   213 		TInt result2 = iTestUtils->DeleteDvbhProperty(EDvbhPropertyKeySignalQuality);	
   214 		result = result2 != KErrNone ? result2 : result;		
   215 		}
   216 	else if	(iTestStepName.Compare(_L("MM-TV-DVBH-U-113")) == 0)		
   217 		{
   218 		result = iTestUtils->DeleteDvbhProperty(EDvbhPropertyKeyState);
   219 		TInt result2 = iTestUtils->DeleteDvbhProperty(EDvbhPropertyKeyPlatform);
   220 		result = result2 != KErrNone ? result2 : result;			
   221 		}
   222 	else if	(iTestStepName.Compare(_L("MM-TV-DVBH-U-114")) == 0)		
   223 		{
   224 		result = iTestUtils->DeleteDvbhProperty(EDvbhPropertyKeyState);
   225 		TInt result2 = iTestUtils->DeleteDvbhProperty(EDvbhPropertyKeyNetworkTime);
   226 		result = result2 != KErrNone ? result2 : result;			
   227 		}
   228 	else if	(iTestStepName.Compare(_L("MM-TV-DVBH-U-115")) == 0)		
   229 		{
   230 		result = iTestUtils->DeleteDvbhProperty(EDvbhPropertyKeyState);
   231 		TInt result2 = iTestUtils->DeleteDvbhProperty(EDvbhPropertyKeyFrequency);	
   232 		result = result2 != KErrNone ? result2 : result;		
   233 		}
   234 	else if	(iTestStepName.Compare(_L("MM-TV-DVBH-U-116")) == 0)		
   235 		{
   236 		result = iTestUtils->DeleteDvbhProperty(EDvbhPropertyKeyState);
   237 		TInt result2 = iTestUtils->DeleteDvbhProperty(EDvbhPropertyKeyCellId);	
   238 		result = result2 != KErrNone ? result2 : result;		
   239 		}
   240 	else if	(iTestStepName.Compare(_L("MM-TV-DVBH-U-117")) == 0)		
   241 		{
   242 		result = iTestUtils->DeleteDvbhProperty(EDvbhPropertyKeyState);
   243 		TInt result2 = iTestUtils->DeleteDvbhProperty(EDvbhPropertyKeyNetworkId);
   244 		result = result2 != KErrNone ? result2 : result;			
   245 		}
   246 	else if	(iTestStepName.Compare(_L("MM-TV-DVBH-U-125")) == 0)		
   247 		{
   248 		result = iTestUtils->DeleteDvbhProperty(EDvbhPropertyKeyState);
   249 		}
   250 	else if	(iTestStepName.Compare(_L("MM-TV-DVBH-U-127")) == 0)		
   251 		{
   252 		result = iTestUtils->DeleteDvbhProperty(EDvbhPropertyKeyState);
   253 		}	
   254 	else if (iTestStepName.Compare(_L("MM-TV-DVBH-U-401")) == 0)		
   255 		{
   256 		result = iTestUtils->DeleteAllDvbhProperties();		
   257 		}
   258 
   259 	delete iTestUtils;
   260 	iTestUtils = NULL;
   261 
   262 	//Make sure we are not leaving anything laying around.  This is
   263 	//to verify the integrity of the test code more than anything else.
   264 	ASSERT(result == KErrNone);
   265 	}
   266 	
   267 void RDvbhHaiAsyncTest::KickoffTestL()
   268 	{
   269 	//Run the pre-test set-up if it has not been run already
   270 	if (!iPreTestRun)
   271 		{
   272 		TVerdict preTestResult = DoPreTest();
   273 		if (preTestResult != EPass)
   274 			{
   275 			INFO_PRINTF2(_L("DoPreTest failed with error %d."), preTestResult);
   276 			StopTest(preTestResult);
   277 			return;
   278 			}
   279 		}
   280 		
   281 	if (iTestStepName.Compare(_L("MM-TV-DVBH-U-111")) == 0)		
   282 		{
   283 		DoSetStateObserverTestStep(ETrue);
   284 		}
   285 	else if	(iTestStepName.Compare(_L("MM-TV-DVBH-U-112")) == 0)		
   286 		{
   287 		DoSetSignalQualityObserverTestStep(ETrue);
   288 		}
   289 	else if	(iTestStepName.Compare(_L("MM-TV-DVBH-U-113")) == 0)		
   290 		{
   291 		DoSetPlatformObserverTestStep(ETrue);
   292 		}
   293 	else if	(iTestStepName.Compare(_L("MM-TV-DVBH-U-114")) == 0)		
   294 		{
   295 		DoSetNetworkTimeObserverTestStep(ETrue);
   296 		}
   297 	else if	(iTestStepName.Compare(_L("MM-TV-DVBH-U-115")) == 0)		
   298 		{
   299 		DoSetFrequencyObserverTestStep(ETrue);
   300 		}
   301 	else if	(iTestStepName.Compare(_L("MM-TV-DVBH-U-116")) == 0)		
   302 		{
   303 		DoSetCellIdObserverTestStep(ETrue);
   304 		}
   305 	else if	(iTestStepName.Compare(_L("MM-TV-DVBH-U-117")) == 0)		
   306 		{
   307 		DoSetNetworkIdObserverTestStep(ETrue);
   308 		}
   309 	else if	(iTestStepName.Compare(_L("MM-TV-DVBH-U-118")) == 0)		
   310 		{
   311 		DoSetStateObserverTestStep(EFalse);
   312 		}
   313 	else if	(iTestStepName.Compare(_L("MM-TV-DVBH-U-119")) == 0)		
   314 		{
   315 		DoSetSignalQualityObserverTestStep(EFalse);
   316 		}
   317 	else if	(iTestStepName.Compare(_L("MM-TV-DVBH-U-120")) == 0)		
   318 		{
   319 		DoSetPlatformObserverTestStep(EFalse);
   320 		}
   321 	else if	(iTestStepName.Compare(_L("MM-TV-DVBH-U-121")) == 0)		
   322 		{
   323 		DoSetNetworkTimeObserverTestStep(EFalse);
   324 		}
   325 	else if	(iTestStepName.Compare(_L("MM-TV-DVBH-U-122")) == 0)		
   326 		{
   327 		DoSetFrequencyObserverTestStep(EFalse);
   328 		}
   329 	else if	(iTestStepName.Compare(_L("MM-TV-DVBH-U-123")) == 0)		
   330 		{
   331 		DoSetCellIdObserverTestStep(EFalse);
   332 		}
   333 	else if	(iTestStepName.Compare(_L("MM-TV-DVBH-U-124")) == 0)		
   334 		{
   335 		DoSetNetworkIdObserverTestStep(EFalse);
   336 		}
   337 	else if	(iTestStepName.Compare(_L("MM-TV-DVBH-U-125")) == 0)		
   338 		{
   339 		DoSetMultipleStateObserversTestStep(ETrue);
   340 		}
   341 	else if	(iTestStepName.Compare(_L("MM-TV-DVBH-U-126")) == 0)		
   342 		{
   343 		DoSetMultipleStateObserversTestStep(EFalse);
   344 		}
   345 	else if	(iTestStepName.Compare(_L("MM-TV-DVBH-U-127")) == 0)		
   346 		{
   347 		DoCreateMultipleReceiverInfoTestStep(ETrue);
   348 		}
   349 	else if	(iTestStepName.Compare(_L("MM-TV-DVBH-U-128")) == 0)		
   350 		{
   351 		DoCreateMultipleReceiverInfoTestStep(EFalse);
   352 		}
   353 	else if (iTestStepName.Compare(_L("MM-TV-DVBH-U-401")) == 0)		
   354 		{
   355 		DoSetObserversNoMemory();		
   356 		}
   357 	else
   358 		{
   359 		StopTest(EInconclusive);
   360 		}
   361 	}
   362 
   363 //
   364 //
   365 // CDvbhReceiverInfo Positive Async Tests
   366 //
   367 //
   368 
   369 // 111 & 118
   370 void RDvbhHaiAsyncTest::DoSetStateObserverTestStep(TBool aProperyExists)
   371 	{
   372 	TInt result = iRxInfo->SetStateObserver(*this);
   373 	if (result != KErrNone)
   374 		{
   375 		INFO_PRINTF2(_L("SetStateObserver returned error %d."), result);
   376 		StopTest(EFail);
   377 		return;
   378 		}
   379 	
   380 	if (aProperyExists)
   381 		{
   382 		//DoPreTest will have initialised the state to KInitialState.
   383 		//Now change it to KExpectedState.
   384 		if (iTestUtils->SetStateProperty(KExpectedState) != KErrNone)
   385 			{
   386 			StopTest(EInconclusive);
   387 			return;		
   388 			}		
   389 		}
   390 	else
   391 		{
   392 		StopTest(EPass);
   393 		}
   394 	}
   395 	
   396 //Called when the state property changes if this state observer has been registerd
   397 void RDvbhHaiAsyncTest::DvbhStateChange( TDvbhState aNewState )
   398 	{
   399 	TVerdict verdict = EPass;
   400 
   401 	// We have to make sure that this observer was not called for the wrong test.
   402 	if ( iTestStepName.Compare(_L("MM-TV-DVBH-U-125")) == 0 ||
   403 		 iTestStepName.Compare(_L("MM-TV-DVBH-U-126")) == 0 )		
   404 		{
   405 		INFO_PRINTF1(_L("RDvbhHaiAsyncTest::DvbhStateChange called for wrong test."));
   406 		verdict = EFail;
   407 		}
   408 	else
   409 		{
   410 		if (aNewState != KExpectedState)
   411 			{
   412 			INFO_PRINTF2(_L("DvbhStateChange received unexpected value %d."), aNewState);
   413 			verdict = EFail;
   414 			}
   415 		else
   416 			{
   417 			// Test case MM-TV-DVBH-U-127 is expecting two callbacks on two different observers
   418 			if (iTestStepName.Compare(_L("MM-TV-DVBH-U-127")) == 0)
   419 				{
   420 				// Set the verdict for this observer
   421 				iStateCallbackVerdicts[E1stStateObserver] = verdict;
   422 				//Check if the 2nd observer has reported back yet. If not then we
   423 				//do not want to stop the test yet.
   424 				if (iStateCallbackVerdicts[E2ndStateObserver] == KNoVerdict)
   425 					{
   426 					return;
   427 					}
   428 				else
   429 					{
   430 					verdict = static_cast<TVerdict>(iStateCallbackVerdicts[E2ndStateObserver]);
   431 					}
   432 				}		
   433 			}		
   434 		}
   435 		
   436 	StopTest(verdict);
   437 	}	
   438 
   439 // 112 & 119
   440 void RDvbhHaiAsyncTest::DoSetSignalQualityObserverTestStep(TBool aProperyExists)
   441 	{
   442 	TInt result = iRxInfo->SetSignalQualityObserver(*this);
   443 	if (result != KErrNone)
   444 		{
   445 		INFO_PRINTF2(_L("SetSignalQualityObserver returned error %d."), result);
   446 		StopTest(EFail);
   447 		return;
   448 		}
   449 	
   450 	if (aProperyExists)
   451 		{
   452 		//DoPreTest will have initialised the signal quality to KInitialSignalQuality.
   453 		//Now change it to KExpectedSignalQuality.
   454 		if (iTestUtils->SetIntegerProperty(EDvbhPropertyKeySignalQuality, KExpectedSignalQuality) != KErrNone)
   455 			{
   456 			StopTest(EInconclusive);
   457 			return;		
   458 			}		
   459 		}
   460 	else
   461 		{
   462 		StopTest(EPass);
   463 		}
   464 	}
   465 
   466 //Called when the signal quality property changes this a signal quality observer has been registerd
   467 void RDvbhHaiAsyncTest::DvbhSignalQualityChange( const TDvbhSignalQuality& aNewSignalQuality )
   468 	{
   469 	TVerdict verdict = EPass;
   470 	if (aNewSignalQuality != KExpectedSignalQuality)
   471 		{
   472 		INFO_PRINTF2(_L("DvbhSignalQualityChange received unexpected value %d."), aNewSignalQuality);
   473 		verdict = EFail;
   474 		}
   475 	StopTest(verdict);
   476 	}
   477 
   478 // 113 & 120
   479 void RDvbhHaiAsyncTest::DoSetPlatformObserverTestStep(TBool aProperyExists)
   480 	{
   481 	TInt result = iRxInfo->SetPlatformObserver(*this);
   482 	if (result != KErrNone)
   483 		{
   484 		INFO_PRINTF2(_L("SetPlatformObserver returned error %d."), result);
   485 		StopTest(EFail);
   486 		return;
   487 		}
   488 	
   489 	if (aProperyExists)
   490 		{
   491 		//DoPreTest will have initialised the platform to iInitialPlatform.
   492 		//Now change it to iExpectedPlatform.
   493 		TPckg<TDvbhPlatformProperty> platformPckg(iExpectedPlatform);
   494 		if (iTestUtils->SetByteArrayProperty(EDvbhPropertyKeyPlatform, platformPckg) != KErrNone)
   495 			{
   496 			StopTest(EInconclusive);
   497 			return;		
   498 			}		
   499 		}
   500 	else
   501 		{
   502 		StopTest(EPass);
   503 		}
   504 	}
   505 
   506 //Called when the platform property changes if this platform observer has been registerd
   507 void RDvbhHaiAsyncTest::DvbhPlatformChange( const TDvbhPlatform& aNewPlatform, const TIp6Addr& aESGRoot )
   508 	{
   509 	TVerdict verdict = EPass;
   510 	if ( !CDvbhTestUtil::ComparePlatforms(aNewPlatform, iExpectedPlatform.iPlatform))
   511 		{
   512 		INFO_PRINTF1(_L("DvbhPlatformChangeDvbhPlatformChange received unexpected platform."));
   513 		verdict = EFail;
   514 		}
   515 	if (!aESGRoot.IsEqual(iExpectedPlatform.iEsgRoot))
   516 		{
   517 		INFO_PRINTF1(_L("DvbhPlatformChangeDvbhPlatformChange received unexpected esgRoot."));
   518 		verdict = EFail;		
   519 		}
   520 	StopTest(verdict);
   521 	}
   522 	
   523 // 114 & 121
   524 void RDvbhHaiAsyncTest::DoSetNetworkTimeObserverTestStep(TBool aProperyExists)
   525 	{
   526 	TInt result = iRxInfo->SetNetworkTimeObserver(*this);
   527 	if (result != KErrNone)
   528 		{
   529 		INFO_PRINTF2(_L("SetNetworkTimeObserver returned error %d."), result);
   530 		StopTest(EFail);
   531 		return;
   532 		}
   533 	
   534 	if (aProperyExists)
   535 		{
   536 		//DoPreTest will have initialised the NetworkTime to iInitialNetworkTime.
   537 		//Now change it to KExpectedNetworkTime.
   538 		TPckg<TTime> timePckg(iExpectedNetworkTime);	
   539 		if (iTestUtils->SetByteArrayProperty(EDvbhPropertyKeyNetworkTime, timePckg) != KErrNone)
   540 			{
   541 			StopTest(EInconclusive);
   542 			return;		
   543 			}		
   544 		}
   545 	else
   546 		{
   547 		StopTest(EPass);
   548 		}
   549 	}
   550 
   551 //Called when the network time property changes if this network time observer has been registerd
   552 void RDvbhHaiAsyncTest::DvbhNetworkTimeUpdate()
   553 	{
   554 	// Since this method has no parameters, there are no variables for us to verify.
   555 	// The fact that this method was called at all means that CDvbhReceiverInfo::SetNetworkTimeObserver()
   556 	// worked correctly, and thus we can now stop the test as passed.
   557 	StopTest(EPass);
   558 	}
   559 	
   560 // 115 & 122
   561 void RDvbhHaiAsyncTest::DoSetFrequencyObserverTestStep(TBool aProperyExists)
   562 	{
   563 	TInt result = iRxInfo->SetFrequencyObserver(*this);
   564 	if (result != KErrNone)
   565 		{
   566 		INFO_PRINTF2(_L("SetFrequencyObserver returned error %d."), result);
   567 		StopTest(EFail);
   568 		return;
   569 		}
   570 	
   571 	if (aProperyExists)
   572 		{
   573 		//DoPreTest will have initialised the frequency to KInitialFrequency.
   574 		//Now change it to KExpectedFrequency.
   575 		if (iTestUtils->SetIntegerProperty(EDvbhPropertyKeyFrequency, KExpectedFrequency) != KErrNone)
   576 			{
   577 			StopTest(EInconclusive);
   578 			return;		
   579 			}		
   580 		}
   581 	else
   582 		{
   583 		StopTest(EPass);
   584 		}
   585 	}
   586 
   587 //Called when the frequency property changes if this frequency observer has been registerd
   588 void RDvbhHaiAsyncTest::DvbhFrequencyChange( const TDvbhFrequency& aNewFrequency )
   589 	{
   590 	TVerdict verdict = EPass;
   591 	if (aNewFrequency != KExpectedFrequency)
   592 		{
   593 		INFO_PRINTF2(_L("DvbhFrequencyChange received unexpected value %d."), aNewFrequency);
   594 		verdict = EFail;
   595 		}
   596 	StopTest(verdict);
   597 	}
   598 	
   599 // 116 & 123
   600 void RDvbhHaiAsyncTest::DoSetCellIdObserverTestStep(TBool aProperyExists)
   601 	{
   602 	TInt result = iRxInfo->SetCellIdObserver(*this);
   603 	if (result != KErrNone)
   604 		{
   605 		INFO_PRINTF2(_L("SetCellIdObserver returned error %d."), result);
   606 		StopTest(EFail);
   607 		return;
   608 		}
   609 
   610 	if (aProperyExists)
   611 		{
   612 		//DoPreTest will have initialised the CellId to KInitialCellId.
   613 		//Now change it to KExpectedCellId.
   614 		if (iTestUtils->SetIntegerProperty(EDvbhPropertyKeyCellId, KExpectedCellId) != KErrNone)
   615 			{
   616 			StopTest(EInconclusive);
   617 			return;		
   618 			}		
   619 		}
   620 	else
   621 		{
   622 		StopTest(EPass);
   623 		}			
   624 	}
   625 
   626 //Called when the CellId property changes if this CellId observer has been registerd
   627 void RDvbhHaiAsyncTest::DvbhCellIdChange( const TDvbhCellId& aNewCellId )
   628 	{
   629 	TVerdict verdict = EPass;
   630 	if (aNewCellId != KExpectedCellId)
   631 		{
   632 		INFO_PRINTF2(_L("DvbhCellIdChange received unexpected value %d."), aNewCellId);
   633 		verdict = EFail;
   634 		}
   635 	StopTest(verdict);
   636 	}
   637 	
   638 // 117 & 124
   639 void RDvbhHaiAsyncTest::DoSetNetworkIdObserverTestStep(TBool aProperyExists)
   640 	{
   641 	TInt result = iRxInfo->SetNetworkIdObserver(*this);
   642 	if (result != KErrNone)
   643 		{
   644 		INFO_PRINTF2(_L("SetNetworkIdObserver returned error %d."), result);
   645 		StopTest(EFail);
   646 		return;
   647 		}
   648 
   649 	if (aProperyExists)
   650 		{
   651 		//DoPreTest will have initialised the NetworkId to KInitialNetworkId.
   652 		//Now change it to KExpectedNetworkId.
   653 		if (iTestUtils->SetIntegerProperty(EDvbhPropertyKeyNetworkId, KExpectedNetworkId) != KErrNone)
   654 			{
   655 			StopTest(EInconclusive);
   656 			return;		
   657 			}		
   658 		}
   659 	else
   660 		{
   661 		StopTest(EPass);
   662 		}
   663 	}
   664 
   665 //Called when the NetworkId property changes if this NetworkId observer has been registerd
   666 void RDvbhHaiAsyncTest::DvbhNetworkIdChange( const TDvbhNetworkId& aNewNetworkId )
   667 	{
   668 	TVerdict verdict = EPass;
   669 	if (aNewNetworkId != KExpectedNetworkId)
   670 		{
   671 		INFO_PRINTF2(_L("DvbhNetworkIdChange received unexpected value %d."), aNewNetworkId);
   672 		verdict = EFail;
   673 		}
   674 	StopTest(verdict);
   675 	}
   676 	
   677 // 125 & 126
   678 void RDvbhHaiAsyncTest::DoSetMultipleStateObserversTestStep(TBool aProperyExists)
   679 	{
   680 	// Set a state observer
   681 	TInt result = iRxInfo->SetStateObserver(*this);
   682 	if (result != KErrNone)
   683 		{
   684 		INFO_PRINTF2(_L("1st SetStateObserver returned error %d."), result);
   685 		StopTest(EFail);
   686 		return;
   687 		}
   688 
   689 	// Now try to set another one
   690 	result = iRxInfo->SetStateObserver(*i2ndStateObserver);
   691 	if (result != KErrNone)
   692 		{
   693 		INFO_PRINTF2(_L("2nd SetStateObserver returned error %d."), result);
   694 		StopTest(EFail);
   695 		return;
   696 		}
   697 			
   698 	if (aProperyExists)
   699 		{
   700 		//DoPreTest will have initialised the state to KInitialState.
   701 		//Now change it.
   702 		if (iTestUtils->SetStateProperty(KExpectedState) != KErrNone)
   703 			{
   704 			StopTest(EInconclusive);
   705 			return;		
   706 			}		
   707 		}
   708 	else
   709 		{
   710 		StopTest(EPass);
   711 		}
   712 	}
   713 
   714  //127 & 128
   715 void RDvbhHaiAsyncTest::DoCreateMultipleReceiverInfoTestStep(TBool aProperyExists)
   716 	{
   717 	// Set a state observer on the first CDvbhReceiverInfo object
   718 	TInt result = iRxInfo->SetStateObserver(*this);
   719 	if (result != KErrNone)
   720 		{
   721 		INFO_PRINTF2(_L("1st SetStateObserver returned error %d."), result);
   722 		StopTest(EFail);
   723 		return;
   724 		}
   725 
   726 	// Now try to set another one on the 2nd CDvbhReceiverInfo object 
   727 	result = i2ndRxInfo->SetStateObserver(*i2ndStateObserver);
   728 	if (result != KErrNone)
   729 		{
   730 		INFO_PRINTF2(_L("2nd SetStateObserver returned error %d."), result);
   731 		StopTest(EFail);
   732 		return;
   733 		}
   734 			
   735 	if (aProperyExists)
   736 		{
   737 		iStateCallbackVerdicts[E1stStateObserver] = KNoVerdict;
   738 		iStateCallbackVerdicts[E2ndStateObserver] = KNoVerdict;
   739 		//DoPreTest will have initialised the state to KInitialState.
   740 		//Now change it.
   741 		if (iTestUtils->SetStateProperty(KExpectedState) != KErrNone)
   742 			{
   743 			StopTest(EInconclusive);
   744 			return;		
   745 			}		
   746 		}
   747 	else
   748 		{
   749 		StopTest(EPass);
   750 		}	
   751 	}
   752 	
   753 //
   754 //
   755 // RDvbhHaiAsyncTest::CAlternativeStateObserver
   756 //
   757 //
   758 
   759 RDvbhHaiAsyncTest::CAlternativeStateObserver* RDvbhHaiAsyncTest::CAlternativeStateObserver::NewL(RDvbhHaiAsyncTest& aTestStep)
   760 	{
   761 	CAlternativeStateObserver* self = new (ELeave) CAlternativeStateObserver(aTestStep);
   762 	return self;	
   763 	}
   764 
   765 RDvbhHaiAsyncTest::CAlternativeStateObserver::CAlternativeStateObserver(RDvbhHaiAsyncTest& aTestStep)
   766 : iTestStep(aTestStep)
   767 	{
   768 	}
   769 	
   770 void RDvbhHaiAsyncTest::CAlternativeStateObserver::DvbhStateChange( TDvbhState aNewState )
   771 	{
   772 	TVerdict verdict = EPass;
   773 	if (aNewState != KExpectedState)
   774 		{
   775 		iTestStep.INFO_PRINTF2(_L("CAlternativeStateObserver::DvbhStateChange received unexpected value %d."), aNewState);
   776 		verdict = EFail;
   777 		}
   778 	else
   779 		{
   780 		// Test case MM-TV-DVBH-U-127 is expecting two callbacks on two different observers
   781 		if (iTestStep.iTestStepName.Compare(_L("MM-TV-DVBH-U-127")) == 0)
   782 			{
   783 			// Set the verdict for this observer
   784 			iTestStep.iStateCallbackVerdicts[E2ndStateObserver] = verdict;
   785 			//Check if the 1st observer has reported back yet. If not then we
   786 			//do not want to stop the test yet.
   787 			if (iTestStep.iStateCallbackVerdicts[E1stStateObserver] == KNoVerdict)
   788 				{
   789 				return;
   790 				}
   791 			else
   792 				{
   793 				verdict = static_cast<TVerdict>(iTestStep.iStateCallbackVerdicts[E1stStateObserver]);
   794 				}
   795 			}		
   796 		}
   797 		
   798 	iTestStep.StopTest(verdict);
   799 	}
   800 	
   801 
   802 //401
   803 /**
   804 * Test to improve conditional code coverage.  Tests KErrNoMemory failures
   805 * with SetObserver methods.
   806 */
   807 void RDvbhHaiAsyncTest::DoSetObserversNoMemory()
   808 	{
   809 	//SetStateObserver
   810 	__UHEAP_SETFAIL(RHeap::EFailNext, 1);
   811 	TInt result = iRxInfo->SetStateObserver(*this);
   812 	if (result != KErrNoMemory)
   813 		{
   814 		INFO_PRINTF2(_L("SetStateObserver returned %d."), result);
   815 		StopTest(EInconclusive);
   816 		__UHEAP_SETFAIL(RHeap::ENone, 0);
   817 		return;
   818 		}
   819 		
   820 	//SetSignalQualityObserver
   821 	__UHEAP_SETFAIL(RHeap::EFailNext, 1);
   822 	result = iRxInfo->SetSignalQualityObserver(*this);
   823 	if (result != KErrNoMemory)
   824 		{
   825 		INFO_PRINTF2(_L("SetSignalQualityObserver returned %d."), result);
   826 		StopTest(EInconclusive);
   827 		__UHEAP_SETFAIL(RHeap::ENone, 0);
   828 		return;
   829 		}
   830 		
   831 	//SetPlatformObserver
   832 	__UHEAP_SETFAIL(RHeap::EFailNext, 1);
   833 	result = iRxInfo->SetPlatformObserver(*this);
   834 	if (result != KErrNoMemory)
   835 		{
   836 		INFO_PRINTF2(_L("SetPlatformObserver returned %d."), result);
   837 		StopTest(EInconclusive);
   838 		__UHEAP_SETFAIL(RHeap::ENone, 0);
   839 		return;
   840 		}
   841 		
   842 	//SetNetworkTimeObserver
   843 	__UHEAP_SETFAIL(RHeap::EFailNext, 1);
   844 	result = iRxInfo->SetNetworkTimeObserver(*this);
   845 	if (result != KErrNoMemory)
   846 		{
   847 		INFO_PRINTF2(_L("SetNetworkTimeObserver returned %d."), result);
   848 		StopTest(EInconclusive);
   849 		__UHEAP_SETFAIL(RHeap::ENone, 0);
   850 		return;
   851 		}
   852 		
   853 	//SetFrequencyObserver
   854 	__UHEAP_SETFAIL(RHeap::EFailNext, 1);
   855 	result = iRxInfo->SetFrequencyObserver(*this);
   856 	if (result != KErrNoMemory)
   857 		{
   858 		INFO_PRINTF2(_L("SetFrequencyObserver returned %d."), result);
   859 		StopTest(EInconclusive);
   860 		__UHEAP_SETFAIL(RHeap::ENone, 0);
   861 		return;
   862 		}
   863 		
   864 	//SetCellIdObserver
   865 	__UHEAP_SETFAIL(RHeap::EFailNext, 1);
   866 	result = iRxInfo->SetCellIdObserver(*this);
   867 	if (result != KErrNoMemory)
   868 		{
   869 		INFO_PRINTF2(_L("SetCellIdObserver returned %d."), result);
   870 		StopTest(EInconclusive);
   871 		__UHEAP_SETFAIL(RHeap::ENone, 0);
   872 		return;
   873 		}
   874 		
   875 	//SetNetworkIdObserver
   876 	__UHEAP_SETFAIL(RHeap::EFailNext, 1);
   877 	result = iRxInfo->SetNetworkIdObserver(*this);
   878 	if (result != KErrNoMemory)
   879 		{
   880 		INFO_PRINTF2(_L("SetNetworkIdObserver returned %d."), result);
   881 		StopTest(EInconclusive);
   882 		__UHEAP_SETFAIL(RHeap::ENone, 0);
   883 		return;
   884 		}
   885 		
   886 	__UHEAP_SETFAIL(RHeap::ENone, 0);
   887 	StopTest(EPass);
   888 	}
   889 
   890 
   891 
   892 
   893 
   894 
   895