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 DVBHHAITEST_H sl@0: #define DVBHHAITEST_H sl@0: sl@0: #include sl@0: #include "dvbhhaitestutil.h" sl@0: #include sl@0: #include sl@0: #include sl@0: sl@0: class CDvbhTestUtil; sl@0: sl@0: class RDvbhHaiTest : public RTestStep, sl@0: public MDvbhHaiTestLoggerInterface, sl@0: public MDvbhScanObserver, sl@0: public MDvbhDataObserver sl@0: { sl@0: public: sl@0: friend class CDvbhTestUtil; sl@0: public: sl@0: static RDvbhHaiTest* NewL(TBool aRequireReceiverInfo, const TDesC& aTestName); sl@0: protected: sl@0: //From RTestStep sl@0: TVerdict DoTestStepL(); sl@0: TVerdict DoTestStepPreambleL(); sl@0: TVerdict DoTestStepPostambleL(); 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: //RDvbhReceiver Positive Test Steps sl@0: TVerdict DoCreateReceiverOnStackTestStep(); sl@0: TVerdict DoCreateReceiverOnHeapTestStep(); sl@0: TVerdict DoGetDriverVersionBeforeOpenTestStep(); sl@0: TVerdict DoReceiverOpenTestStep(); sl@0: TVerdict DoMultipleReceiverOpenTestStep(); sl@0: TVerdict DoGetDriverVersionAfterOpenTestStep(); sl@0: TVerdict DoPowerOnAfterOpenTestStep(); sl@0: TVerdict DoSetScanConfigurationAfterOpenTestStep(); sl@0: TVerdict DoGetScanConfigurationAfterOpenTestStep(); sl@0: TVerdict DoGetDvbhVersionAfterOpenTestStep(); sl@0: TVerdict DoGetHardwareInfoAfterOpenTestStep(); sl@0: TVerdict DoScanAfterOpenTestStep(); // sl@0: TVerdict DoSetPlatformAfterOpenTestStep(); // sl@0: TVerdict DoCreateFilterAfterOpenTestStep(); // sl@0: TVerdict DoCancelFilterAfterOpenTestStep(); // sl@0: TVerdict DoReceiveIpDataAfterOpenTestStep(); // sl@0: TVerdict DoUpdateNetworkTimeAfterOpenTestStep(); // sl@0: TVerdict DoCustomAsyncAfterOpenTestStep(); // sl@0: TVerdict DoCancelCustomAsyncAfterOpenTestStep(); // sl@0: TVerdict DoCustomAfterOpenTestStep(); sl@0: TVerdict DoCloseAfterOpenTestStep(); sl@0: TVerdict DoPowerOffAfterOpenTestStep(); sl@0: TVerdict DoSetDisabledAfterOpenTestStep(); sl@0: TVerdict DoCancelScanAfterOpenTestStep(); sl@0: TVerdict DoCancelSetPlatformAfterOpenTestStep(); sl@0: TVerdict DoCancelReceiveIpDataAfterOpenTestStep(); sl@0: TVerdict DoCancelUpdateNetworkTimeAfterOpenTestStep(); sl@0: TVerdict DoMultipleReceiverCloseTestStep(); sl@0: sl@0: //CDvbhReceiverInfo Positive Test Steps sl@0: TVerdict DoCreateReceiverInfoTestStep(); sl@0: sl@0: TVerdict DoGetStateTestStep(); sl@0: TVerdict DoGetSignalQualityTestStep(); sl@0: TVerdict DoGetPlatformTestStep(); sl@0: TVerdict DoGetNetworkTimeTestStep(); sl@0: TVerdict DoGetPerformanceDataTestStep(); sl@0: TVerdict DoGetFrequencyTestStep(); sl@0: TVerdict DoGetCellIdTestStep(); sl@0: TVerdict DoGetNetworkIdTestStep(); //110 sl@0: sl@0: //RDvbhReceiver Negative Test Steps sl@0: TVerdict DoReceiverOpenNoCloseTestStep(); sl@0: TVerdict DoPowerOnBeforeOpenTestStep(); sl@0: TVerdict DoSetScanConfigurationBeforeOpenTestStep(); sl@0: TVerdict DoGetScanConfigurationBeforeOpenTestStep(); sl@0: TVerdict DoGetDvbhVersionBeforeOpenTestStep(); sl@0: TVerdict DoGetHardwareInfoBeforeOpenTestStep(); sl@0: TVerdict DoScanBeforeOpenTestStep(); // sl@0: TVerdict DoSetPlatformBeforeOpenTestStep(); // sl@0: TVerdict DoCreateFilterBeforeOpenTestStep(); // sl@0: TVerdict DoCancelFilterBeforeOpenTestStep(); // sl@0: TVerdict DoReceiveIpDataBeforeOpenTestStep(); // sl@0: TVerdict DoUpdateNetworkTimeBeforeOpenTestStep(); // sl@0: TVerdict DoCustomAsyncBeforeOpenTestStep(); // sl@0: TVerdict DoCancelCustomAsyncBeforeOpenTestStep(); // sl@0: TVerdict DoCustomBeforeOpenTestStep(); //215 sl@0: TVerdict DoCloseBeforeOpenTestStep(); //216 sl@0: TVerdict DoPowerOffBeforeOpenTestStep(); //217 sl@0: TVerdict DoSetDisabledBeforeOpenTestStep(); //218 sl@0: TVerdict DoCancelScanBeforeOpenTestStep(); //219 sl@0: TVerdict DoCancelSetPlatformBeforeOpenTestStep(); //220 sl@0: TVerdict DoCancelReceiveIpDataBeforeOpenTestStep(); //221 sl@0: TVerdict DoCancelUpdateNetworkTimeBeforeOpenTestStep(); //222 sl@0: sl@0: //CDvbhReceiverInfo Negative Test Steps sl@0: TVerdict DoGetStateNoPropertiesTestStep(); //301 sl@0: TVerdict DoGetSignalQualityNoPropertiesTestStep(); //302 sl@0: TVerdict DoGetPlatformNoPropertiesTestStep(); //303 sl@0: TVerdict DoGetNetworkTimeNoPropertiesTestStep(); //304 sl@0: TVerdict DoGetPerformanceDataNoPropertiesTestStep(); //305 sl@0: TVerdict DoGetFrequencyNoPropertiesTestStep(); //306 sl@0: TVerdict DoGetCellIdNoPropertiesTestStep(); //307 sl@0: TVerdict DoGetNetworkIdNoPropertiesTestStep(); //308 sl@0: TVerdict DoGetTestsNoProperties(); //309 sl@0: sl@0: //MDvbhScanObserver sl@0: void DvbhScanProgress( const TDvbhScanResult& aResult ); sl@0: sl@0: //MDvbhDataObserver sl@0: void DvbhPacketReceived( const TDesC8& aPacket ); sl@0: private: sl@0: RDvbhHaiTest(TBool aRequireReceiverInfo, const TDesC& aTestName); sl@0: sl@0: //helpers sl@0: TVerdict DoReceiverOpenAndClose(TUint aMultiples = 1); sl@0: TVerdict DoGetDriverVersion(RDvbhReceiver& aReceiver); sl@0: TVerdict OpenReceiver(RDvbhReceiver& aReceiver); sl@0: TVerdict DoGetNetworkTime(TBool aExpectedValidity); sl@0: sl@0: void SetupParameterData(); sl@0: private: sl@0: TVersion iDvbhTestDriverVersion; //treat as a constant sl@0: TTime iDvbhTestTime; //treat as a constant sl@0: TDvbhPerformanceData iDvbhTestPerformanceData; //treat as a constant sl@0: TDvbhScanConfiguration iDvbhTestScanConfiguration; //treat as a constant sl@0: TDvbhPlatformProperty iDvbhTestPlatform; //treat as a constant sl@0: TDvbhHardwareInfo iDvbhTestHardwareInfo; //treat as a constant sl@0: sl@0: TDvbhNetwork iDvbhTestNetwork; //Needed to run constructor (ccov) sl@0: TDvbhNetworkTime iDvbhTestNetworkTime; //For GetNetworkTime sl@0: TDvbhScanResult iDvbhTestScanResult; //Needed to run constructor (ccov) sl@0: sl@0: TBool iRequireReceiverInfo; sl@0: CDvbhReceiverInfo* iRxInfo; sl@0: CDvbhTestUtil* iTestUtils; sl@0: TDvbhReceiverType iReceiverType; sl@0: }; sl@0: sl@0: sl@0: #endif // DVBHHAITEST_H