1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/mm/mmhais/dvbhunittest/hai/dvbh/src/dvbhhaiasynctest.h Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,135 @@
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 DVBHHAIASYNCTEST_H
1.26 +#define DVBHHAIASYNCTEST_H
1.27 +
1.28 +#include <testframework.h>
1.29 +#include "dvbhhaitestutil.h"
1.30 +#include <e32property.h>
1.31 +#include <mobiletv/hai/dvbh/dvbhreceiverinfo.h>
1.32 +
1.33 +class RDvbhHaiAsyncTest : public RAsyncTestStep,
1.34 + public MDvbhHaiTestLoggerInterface,
1.35 + public MDvbhStateObserver,
1.36 + public MDvbhSignalQualityObserver,
1.37 + public MDvbhPlatformObserver,
1.38 + public MDvbhNetworkTimeObserver,
1.39 + public MDvbhFrequencyObserver,
1.40 + public MDvbhCellIdObserver,
1.41 + public MDvbhNetworkIdObserver
1.42 + {
1.43 +private:
1.44 + class CAlternativeStateObserver;
1.45 + friend class CDvbhTestUtil;
1.46 + friend class CAlternativeStateObserver;
1.47 +
1.48 +public:
1.49 + static RDvbhHaiAsyncTest* NewL(TBool aRequireReceiverInfo, const TDesC& aTestName);
1.50 +
1.51 + //MDvbhStateObserver
1.52 + virtual void DvbhStateChange( TDvbhState aNewState );
1.53 +
1.54 + //MDvbhSignalQualityObserver
1.55 + void DvbhSignalQualityChange( const TDvbhSignalQuality& aNewSignalQuality );
1.56 +
1.57 + //MDvbhPlatformObserver
1.58 + void DvbhPlatformChange( const TDvbhPlatform& aNewPlatform, const TIp6Addr& aESGRoot );
1.59 +
1.60 + //MDvbhNetworkTimeObserver
1.61 + void DvbhNetworkTimeUpdate();
1.62 +
1.63 + //MDvbhFrequencyObserver
1.64 + void DvbhFrequencyChange( const TDvbhFrequency& aNewFrequency );
1.65 +
1.66 + //MDvbhCellIdObserver
1.67 + void DvbhCellIdChange( const TDvbhCellId& aNewCellId );
1.68 +
1.69 + //MDvbhNetworkIdObserver
1.70 + void DvbhNetworkIdChange( const TDvbhNetworkId& aNewNetworkId );
1.71 +protected:
1.72 + //From RAsyncTestStep
1.73 + virtual void KickoffTestL();
1.74 + virtual void CloseTest();
1.75 +
1.76 + //From MDvbhHaiTestLoggerInterface
1.77 + void InfoPrintf3(const TDesC16& aString, TInt aInt1, TInt aInt2);
1.78 + void InfoPrintf4(const TDesC16& aString, TInt aInt1, TInt aInt2, TInt aInt3);
1.79 +
1.80 + //Access to protected data
1.81 +
1.82 + //CDvbhReceiverInfo Positive Async Test Steps
1.83 + void DoSetStateObserverTestStep(TBool aProperyExists); //111 & 118
1.84 + void DoSetSignalQualityObserverTestStep(TBool aProperyExists); //112 & 119
1.85 + void DoSetPlatformObserverTestStep(TBool aProperyExists); //113 & 120
1.86 + void DoSetNetworkTimeObserverTestStep(TBool aProperyExists); //114 & 121
1.87 + void DoSetFrequencyObserverTestStep(TBool aProperyExists); //115 & 122
1.88 + void DoSetCellIdObserverTestStep(TBool aProperyExists); //116 & 123
1.89 + void DoSetNetworkIdObserverTestStep(TBool aProperyExists); //117 & 124
1.90 + void DoSetMultipleStateObserversTestStep(TBool aProperyExists); //125 & 126
1.91 + void DoCreateMultipleReceiverInfoTestStep(TBool aProperyExists); //127 & 128
1.92 +
1.93 + //CDvbhReceiverInfo Negative Async Test Steps
1.94 + void DoSetObserversNoMemory(); //401
1.95 +private:
1.96 + /**
1.97 + * A second state observer to test setting multiple observers.
1.98 + */
1.99 + class CAlternativeStateObserver : public CBase,
1.100 + public MDvbhStateObserver
1.101 + {
1.102 + public:
1.103 + static CAlternativeStateObserver* NewL(RDvbhHaiAsyncTest& aTestStep);
1.104 + virtual void DvbhStateChange( TDvbhState aNewState );
1.105 + private:
1.106 + CAlternativeStateObserver(RDvbhHaiAsyncTest& aTestStep);
1.107 + RDvbhHaiAsyncTest& iTestStep;
1.108 + };
1.109 +
1.110 + enum
1.111 + {
1.112 + E1stStateObserver = 0,
1.113 + E2ndStateObserver = 1
1.114 + };
1.115 +
1.116 +private:
1.117 + RDvbhHaiAsyncTest(TBool aRequireReceiverInfo, const TDesC& aTestName);
1.118 + TVerdict DoPreTest();
1.119 + void SetupParameterData();
1.120 +private:
1.121 + TTime iExpectedNetworkTime;
1.122 + TTime iInitialNetworkTime;
1.123 + TDvbhPlatformProperty iInitialPlatform;
1.124 + TDvbhPlatformProperty iExpectedPlatform;
1.125 +
1.126 + TBool iPreTestRun;
1.127 + TBool iRequireReceiverInfo;
1.128 +
1.129 + TInt iStateCallbackVerdicts[2];
1.130 +
1.131 + CDvbhReceiverInfo* iRxInfo;
1.132 + CDvbhReceiverInfo* i2ndRxInfo;
1.133 + CDvbhTestUtil* iTestUtils;
1.134 + CAlternativeStateObserver* i2ndStateObserver;
1.135 + };
1.136 +
1.137 +
1.138 +#endif // DVBHHAIASYNCTEST_H