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".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
22 #ifndef DVBHHAIASYNCTEST_H
23 #define DVBHHAIASYNCTEST_H
25 #include <testframework.h>
26 #include "dvbhhaitestutil.h"
27 #include <e32property.h>
28 #include <mobiletv/hai/dvbh/dvbhreceiverinfo.h>
30 class RDvbhHaiAsyncTest : public RAsyncTestStep,
31 public MDvbhHaiTestLoggerInterface,
32 public MDvbhStateObserver,
33 public MDvbhSignalQualityObserver,
34 public MDvbhPlatformObserver,
35 public MDvbhNetworkTimeObserver,
36 public MDvbhFrequencyObserver,
37 public MDvbhCellIdObserver,
38 public MDvbhNetworkIdObserver
41 class CAlternativeStateObserver;
42 friend class CDvbhTestUtil;
43 friend class CAlternativeStateObserver;
46 static RDvbhHaiAsyncTest* NewL(TBool aRequireReceiverInfo, const TDesC& aTestName);
49 virtual void DvbhStateChange( TDvbhState aNewState );
51 //MDvbhSignalQualityObserver
52 void DvbhSignalQualityChange( const TDvbhSignalQuality& aNewSignalQuality );
54 //MDvbhPlatformObserver
55 void DvbhPlatformChange( const TDvbhPlatform& aNewPlatform, const TIp6Addr& aESGRoot );
57 //MDvbhNetworkTimeObserver
58 void DvbhNetworkTimeUpdate();
60 //MDvbhFrequencyObserver
61 void DvbhFrequencyChange( const TDvbhFrequency& aNewFrequency );
64 void DvbhCellIdChange( const TDvbhCellId& aNewCellId );
66 //MDvbhNetworkIdObserver
67 void DvbhNetworkIdChange( const TDvbhNetworkId& aNewNetworkId );
70 virtual void KickoffTestL();
71 virtual void CloseTest();
73 //From MDvbhHaiTestLoggerInterface
74 void InfoPrintf3(const TDesC16& aString, TInt aInt1, TInt aInt2);
75 void InfoPrintf4(const TDesC16& aString, TInt aInt1, TInt aInt2, TInt aInt3);
77 //Access to protected data
79 //CDvbhReceiverInfo Positive Async Test Steps
80 void DoSetStateObserverTestStep(TBool aProperyExists); //111 & 118
81 void DoSetSignalQualityObserverTestStep(TBool aProperyExists); //112 & 119
82 void DoSetPlatformObserverTestStep(TBool aProperyExists); //113 & 120
83 void DoSetNetworkTimeObserverTestStep(TBool aProperyExists); //114 & 121
84 void DoSetFrequencyObserverTestStep(TBool aProperyExists); //115 & 122
85 void DoSetCellIdObserverTestStep(TBool aProperyExists); //116 & 123
86 void DoSetNetworkIdObserverTestStep(TBool aProperyExists); //117 & 124
87 void DoSetMultipleStateObserversTestStep(TBool aProperyExists); //125 & 126
88 void DoCreateMultipleReceiverInfoTestStep(TBool aProperyExists); //127 & 128
90 //CDvbhReceiverInfo Negative Async Test Steps
91 void DoSetObserversNoMemory(); //401
94 * A second state observer to test setting multiple observers.
96 class CAlternativeStateObserver : public CBase,
97 public MDvbhStateObserver
100 static CAlternativeStateObserver* NewL(RDvbhHaiAsyncTest& aTestStep);
101 virtual void DvbhStateChange( TDvbhState aNewState );
103 CAlternativeStateObserver(RDvbhHaiAsyncTest& aTestStep);
104 RDvbhHaiAsyncTest& iTestStep;
109 E1stStateObserver = 0,
110 E2ndStateObserver = 1
114 RDvbhHaiAsyncTest(TBool aRequireReceiverInfo, const TDesC& aTestName);
115 TVerdict DoPreTest();
116 void SetupParameterData();
118 TTime iExpectedNetworkTime;
119 TTime iInitialNetworkTime;
120 TDvbhPlatformProperty iInitialPlatform;
121 TDvbhPlatformProperty iExpectedPlatform;
124 TBool iRequireReceiverInfo;
126 TInt iStateCallbackVerdicts[2];
128 CDvbhReceiverInfo* iRxInfo;
129 CDvbhReceiverInfo* i2ndRxInfo;
130 CDvbhTestUtil* iTestUtils;
131 CAlternativeStateObserver* i2ndStateObserver;
135 #endif // DVBHHAIASYNCTEST_H