1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/mm/mmhais/dvbhunittest/hai/dvbh/src/dvbhhaitest.h Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,163 @@
1.4 +// Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
1.5 +// All rights reserved.
1.6 +// This component and the accompanying materials are made available
1.7 +// under the terms of "Eclipse Public License v1.0"
1.8 +// which accompanies this distribution, and is available
1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.10 +//
1.11 +// Initial Contributors:
1.12 +// Nokia Corporation - initial contribution.
1.13 +//
1.14 +// Contributors:
1.15 +//
1.16 +// Description:
1.17 +//
1.18 +
1.19 +/**
1.20 + @file
1.21 + @internalComponent
1.22 + @prototype
1.23 +*/
1.24 +
1.25 +#ifndef DVBHHAITEST_H
1.26 +#define DVBHHAITEST_H
1.27 +
1.28 +#include <testframework.h>
1.29 +#include "dvbhhaitestutil.h"
1.30 +#include <e32property.h>
1.31 +#include <mobiletv/hai/dvbh/dvbhreceiver.h>
1.32 +#include <mobiletv/hai/dvbh/dvbhreceiverinfo.h>
1.33 +
1.34 +class CDvbhTestUtil;
1.35 +
1.36 +class RDvbhHaiTest : public RTestStep,
1.37 + public MDvbhHaiTestLoggerInterface,
1.38 + public MDvbhScanObserver,
1.39 + public MDvbhDataObserver
1.40 + {
1.41 +public:
1.42 + friend class CDvbhTestUtil;
1.43 +public:
1.44 + static RDvbhHaiTest* NewL(TBool aRequireReceiverInfo, const TDesC& aTestName);
1.45 +protected:
1.46 + //From RTestStep
1.47 + TVerdict DoTestStepL();
1.48 + TVerdict DoTestStepPreambleL();
1.49 + TVerdict DoTestStepPostambleL();
1.50 +
1.51 + //From MDvbhHaiTestLoggerInterface
1.52 + void InfoPrintf3(const TDesC16& aString, TInt aInt1, TInt aInt2);
1.53 + void InfoPrintf4(const TDesC16& aString, TInt aInt1, TInt aInt2, TInt aInt3);
1.54 +
1.55 + //RDvbhReceiver Positive Test Steps
1.56 + TVerdict DoCreateReceiverOnStackTestStep();
1.57 + TVerdict DoCreateReceiverOnHeapTestStep();
1.58 + TVerdict DoGetDriverVersionBeforeOpenTestStep();
1.59 + TVerdict DoReceiverOpenTestStep();
1.60 + TVerdict DoMultipleReceiverOpenTestStep();
1.61 + TVerdict DoGetDriverVersionAfterOpenTestStep();
1.62 + TVerdict DoPowerOnAfterOpenTestStep();
1.63 + TVerdict DoSetScanConfigurationAfterOpenTestStep();
1.64 + TVerdict DoGetScanConfigurationAfterOpenTestStep();
1.65 + TVerdict DoGetDvbhVersionAfterOpenTestStep();
1.66 + TVerdict DoGetHardwareInfoAfterOpenTestStep();
1.67 + TVerdict DoScanAfterOpenTestStep(); //
1.68 + TVerdict DoSetPlatformAfterOpenTestStep(); //
1.69 + TVerdict DoCreateFilterAfterOpenTestStep(); //
1.70 + TVerdict DoCancelFilterAfterOpenTestStep(); //
1.71 + TVerdict DoReceiveIpDataAfterOpenTestStep(); //
1.72 + TVerdict DoUpdateNetworkTimeAfterOpenTestStep(); //
1.73 + TVerdict DoCustomAsyncAfterOpenTestStep(); //
1.74 + TVerdict DoCancelCustomAsyncAfterOpenTestStep(); //
1.75 + TVerdict DoCustomAfterOpenTestStep();
1.76 + TVerdict DoCloseAfterOpenTestStep();
1.77 + TVerdict DoPowerOffAfterOpenTestStep();
1.78 + TVerdict DoSetDisabledAfterOpenTestStep();
1.79 + TVerdict DoCancelScanAfterOpenTestStep();
1.80 + TVerdict DoCancelSetPlatformAfterOpenTestStep();
1.81 + TVerdict DoCancelReceiveIpDataAfterOpenTestStep();
1.82 + TVerdict DoCancelUpdateNetworkTimeAfterOpenTestStep();
1.83 + TVerdict DoMultipleReceiverCloseTestStep();
1.84 +
1.85 + //CDvbhReceiverInfo Positive Test Steps
1.86 + TVerdict DoCreateReceiverInfoTestStep();
1.87 +
1.88 + TVerdict DoGetStateTestStep();
1.89 + TVerdict DoGetSignalQualityTestStep();
1.90 + TVerdict DoGetPlatformTestStep();
1.91 + TVerdict DoGetNetworkTimeTestStep();
1.92 + TVerdict DoGetPerformanceDataTestStep();
1.93 + TVerdict DoGetFrequencyTestStep();
1.94 + TVerdict DoGetCellIdTestStep();
1.95 + TVerdict DoGetNetworkIdTestStep(); //110
1.96 +
1.97 + //RDvbhReceiver Negative Test Steps
1.98 + TVerdict DoReceiverOpenNoCloseTestStep();
1.99 + TVerdict DoPowerOnBeforeOpenTestStep();
1.100 + TVerdict DoSetScanConfigurationBeforeOpenTestStep();
1.101 + TVerdict DoGetScanConfigurationBeforeOpenTestStep();
1.102 + TVerdict DoGetDvbhVersionBeforeOpenTestStep();
1.103 + TVerdict DoGetHardwareInfoBeforeOpenTestStep();
1.104 + TVerdict DoScanBeforeOpenTestStep(); //
1.105 + TVerdict DoSetPlatformBeforeOpenTestStep(); //
1.106 + TVerdict DoCreateFilterBeforeOpenTestStep(); //
1.107 + TVerdict DoCancelFilterBeforeOpenTestStep(); //
1.108 + TVerdict DoReceiveIpDataBeforeOpenTestStep(); //
1.109 + TVerdict DoUpdateNetworkTimeBeforeOpenTestStep(); //
1.110 + TVerdict DoCustomAsyncBeforeOpenTestStep(); //
1.111 + TVerdict DoCancelCustomAsyncBeforeOpenTestStep(); //
1.112 + TVerdict DoCustomBeforeOpenTestStep(); //215
1.113 + TVerdict DoCloseBeforeOpenTestStep(); //216
1.114 + TVerdict DoPowerOffBeforeOpenTestStep(); //217
1.115 + TVerdict DoSetDisabledBeforeOpenTestStep(); //218
1.116 + TVerdict DoCancelScanBeforeOpenTestStep(); //219
1.117 + TVerdict DoCancelSetPlatformBeforeOpenTestStep(); //220
1.118 + TVerdict DoCancelReceiveIpDataBeforeOpenTestStep(); //221
1.119 + TVerdict DoCancelUpdateNetworkTimeBeforeOpenTestStep(); //222
1.120 +
1.121 + //CDvbhReceiverInfo Negative Test Steps
1.122 + TVerdict DoGetStateNoPropertiesTestStep(); //301
1.123 + TVerdict DoGetSignalQualityNoPropertiesTestStep(); //302
1.124 + TVerdict DoGetPlatformNoPropertiesTestStep(); //303
1.125 + TVerdict DoGetNetworkTimeNoPropertiesTestStep(); //304
1.126 + TVerdict DoGetPerformanceDataNoPropertiesTestStep(); //305
1.127 + TVerdict DoGetFrequencyNoPropertiesTestStep(); //306
1.128 + TVerdict DoGetCellIdNoPropertiesTestStep(); //307
1.129 + TVerdict DoGetNetworkIdNoPropertiesTestStep(); //308
1.130 + TVerdict DoGetTestsNoProperties(); //309
1.131 +
1.132 + //MDvbhScanObserver
1.133 + void DvbhScanProgress( const TDvbhScanResult& aResult );
1.134 +
1.135 + //MDvbhDataObserver
1.136 + void DvbhPacketReceived( const TDesC8& aPacket );
1.137 +private:
1.138 + RDvbhHaiTest(TBool aRequireReceiverInfo, const TDesC& aTestName);
1.139 +
1.140 + //helpers
1.141 + TVerdict DoReceiverOpenAndClose(TUint aMultiples = 1);
1.142 + TVerdict DoGetDriverVersion(RDvbhReceiver& aReceiver);
1.143 + TVerdict OpenReceiver(RDvbhReceiver& aReceiver);
1.144 + TVerdict DoGetNetworkTime(TBool aExpectedValidity);
1.145 +
1.146 + void SetupParameterData();
1.147 +private:
1.148 + TVersion iDvbhTestDriverVersion; //treat as a constant
1.149 + TTime iDvbhTestTime; //treat as a constant
1.150 + TDvbhPerformanceData iDvbhTestPerformanceData; //treat as a constant
1.151 + TDvbhScanConfiguration iDvbhTestScanConfiguration; //treat as a constant
1.152 + TDvbhPlatformProperty iDvbhTestPlatform; //treat as a constant
1.153 + TDvbhHardwareInfo iDvbhTestHardwareInfo; //treat as a constant
1.154 +
1.155 + TDvbhNetwork iDvbhTestNetwork; //Needed to run constructor (ccov)
1.156 + TDvbhNetworkTime iDvbhTestNetworkTime; //For GetNetworkTime
1.157 + TDvbhScanResult iDvbhTestScanResult; //Needed to run constructor (ccov)
1.158 +
1.159 + TBool iRequireReceiverInfo;
1.160 + CDvbhReceiverInfo* iRxInfo;
1.161 + CDvbhTestUtil* iTestUtils;
1.162 + TDvbhReceiverType iReceiverType;
1.163 + };
1.164 +
1.165 +
1.166 +#endif // DVBHHAITEST_H