sl@0: // Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // sl@0: sl@0: /** sl@0: @file sl@0: @internalComponent sl@0: @prototype sl@0: */ sl@0: sl@0: #ifndef DVBHHAIASYNCTEST_H sl@0: #define DVBHHAIASYNCTEST_H sl@0: sl@0: #include sl@0: #include "dvbhhaitestutil.h" sl@0: #include sl@0: #include sl@0: sl@0: class RDvbhHaiAsyncTest : public RAsyncTestStep, sl@0: public MDvbhHaiTestLoggerInterface, sl@0: public MDvbhStateObserver, sl@0: public MDvbhSignalQualityObserver, sl@0: public MDvbhPlatformObserver, sl@0: public MDvbhNetworkTimeObserver, sl@0: public MDvbhFrequencyObserver, sl@0: public MDvbhCellIdObserver, sl@0: public MDvbhNetworkIdObserver sl@0: { sl@0: private: sl@0: class CAlternativeStateObserver; sl@0: friend class CDvbhTestUtil; sl@0: friend class CAlternativeStateObserver; sl@0: sl@0: public: sl@0: static RDvbhHaiAsyncTest* NewL(TBool aRequireReceiverInfo, const TDesC& aTestName); sl@0: sl@0: //MDvbhStateObserver sl@0: virtual void DvbhStateChange( TDvbhState aNewState ); sl@0: sl@0: //MDvbhSignalQualityObserver sl@0: void DvbhSignalQualityChange( const TDvbhSignalQuality& aNewSignalQuality ); sl@0: sl@0: //MDvbhPlatformObserver sl@0: void DvbhPlatformChange( const TDvbhPlatform& aNewPlatform, const TIp6Addr& aESGRoot ); sl@0: sl@0: //MDvbhNetworkTimeObserver sl@0: void DvbhNetworkTimeUpdate(); sl@0: sl@0: //MDvbhFrequencyObserver sl@0: void DvbhFrequencyChange( const TDvbhFrequency& aNewFrequency ); sl@0: sl@0: //MDvbhCellIdObserver sl@0: void DvbhCellIdChange( const TDvbhCellId& aNewCellId ); sl@0: sl@0: //MDvbhNetworkIdObserver sl@0: void DvbhNetworkIdChange( const TDvbhNetworkId& aNewNetworkId ); sl@0: protected: sl@0: //From RAsyncTestStep sl@0: virtual void KickoffTestL(); sl@0: virtual void CloseTest(); sl@0: sl@0: //From MDvbhHaiTestLoggerInterface sl@0: void InfoPrintf3(const TDesC16& aString, TInt aInt1, TInt aInt2); sl@0: void InfoPrintf4(const TDesC16& aString, TInt aInt1, TInt aInt2, TInt aInt3); sl@0: sl@0: //Access to protected data sl@0: sl@0: //CDvbhReceiverInfo Positive Async Test Steps sl@0: void DoSetStateObserverTestStep(TBool aProperyExists); //111 & 118 sl@0: void DoSetSignalQualityObserverTestStep(TBool aProperyExists); //112 & 119 sl@0: void DoSetPlatformObserverTestStep(TBool aProperyExists); //113 & 120 sl@0: void DoSetNetworkTimeObserverTestStep(TBool aProperyExists); //114 & 121 sl@0: void DoSetFrequencyObserverTestStep(TBool aProperyExists); //115 & 122 sl@0: void DoSetCellIdObserverTestStep(TBool aProperyExists); //116 & 123 sl@0: void DoSetNetworkIdObserverTestStep(TBool aProperyExists); //117 & 124 sl@0: void DoSetMultipleStateObserversTestStep(TBool aProperyExists); //125 & 126 sl@0: void DoCreateMultipleReceiverInfoTestStep(TBool aProperyExists); //127 & 128 sl@0: sl@0: //CDvbhReceiverInfo Negative Async Test Steps sl@0: void DoSetObserversNoMemory(); //401 sl@0: private: sl@0: /** sl@0: * A second state observer to test setting multiple observers. sl@0: */ sl@0: class CAlternativeStateObserver : public CBase, sl@0: public MDvbhStateObserver sl@0: { sl@0: public: sl@0: static CAlternativeStateObserver* NewL(RDvbhHaiAsyncTest& aTestStep); sl@0: virtual void DvbhStateChange( TDvbhState aNewState ); sl@0: private: sl@0: CAlternativeStateObserver(RDvbhHaiAsyncTest& aTestStep); sl@0: RDvbhHaiAsyncTest& iTestStep; sl@0: }; sl@0: sl@0: enum sl@0: { sl@0: E1stStateObserver = 0, sl@0: E2ndStateObserver = 1 sl@0: }; sl@0: sl@0: private: sl@0: RDvbhHaiAsyncTest(TBool aRequireReceiverInfo, const TDesC& aTestName); sl@0: TVerdict DoPreTest(); sl@0: void SetupParameterData(); sl@0: private: sl@0: TTime iExpectedNetworkTime; sl@0: TTime iInitialNetworkTime; sl@0: TDvbhPlatformProperty iInitialPlatform; sl@0: TDvbhPlatformProperty iExpectedPlatform; sl@0: sl@0: TBool iPreTestRun; sl@0: TBool iRequireReceiverInfo; sl@0: sl@0: TInt iStateCallbackVerdicts[2]; sl@0: sl@0: CDvbhReceiverInfo* iRxInfo; sl@0: CDvbhReceiverInfo* i2ndRxInfo; sl@0: CDvbhTestUtil* iTestUtils; sl@0: CAlternativeStateObserver* i2ndStateObserver; sl@0: }; sl@0: sl@0: sl@0: #endif // DVBHHAIASYNCTEST_H