sl@0
|
1 |
// Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
// All rights reserved.
|
sl@0
|
3 |
// This component and the accompanying materials are made available
|
sl@0
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
sl@0
|
5 |
// which accompanies this distribution, and is available
|
sl@0
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
//
|
sl@0
|
8 |
// Initial Contributors:
|
sl@0
|
9 |
// Nokia Corporation - initial contribution.
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// Contributors:
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// Description:
|
sl@0
|
14 |
//
|
sl@0
|
15 |
|
sl@0
|
16 |
/**
|
sl@0
|
17 |
@file
|
sl@0
|
18 |
@internalComponent
|
sl@0
|
19 |
@prototype
|
sl@0
|
20 |
*/
|
sl@0
|
21 |
|
sl@0
|
22 |
#ifndef DVBHHAIASYNCTEST_H
|
sl@0
|
23 |
#define DVBHHAIASYNCTEST_H
|
sl@0
|
24 |
|
sl@0
|
25 |
#include <testframework.h>
|
sl@0
|
26 |
#include "dvbhhaitestutil.h"
|
sl@0
|
27 |
#include <e32property.h>
|
sl@0
|
28 |
#include <mobiletv/hai/dvbh/dvbhreceiverinfo.h>
|
sl@0
|
29 |
|
sl@0
|
30 |
class RDvbhHaiAsyncTest : public RAsyncTestStep,
|
sl@0
|
31 |
public MDvbhHaiTestLoggerInterface,
|
sl@0
|
32 |
public MDvbhStateObserver,
|
sl@0
|
33 |
public MDvbhSignalQualityObserver,
|
sl@0
|
34 |
public MDvbhPlatformObserver,
|
sl@0
|
35 |
public MDvbhNetworkTimeObserver,
|
sl@0
|
36 |
public MDvbhFrequencyObserver,
|
sl@0
|
37 |
public MDvbhCellIdObserver,
|
sl@0
|
38 |
public MDvbhNetworkIdObserver
|
sl@0
|
39 |
{
|
sl@0
|
40 |
private:
|
sl@0
|
41 |
class CAlternativeStateObserver;
|
sl@0
|
42 |
friend class CDvbhTestUtil;
|
sl@0
|
43 |
friend class CAlternativeStateObserver;
|
sl@0
|
44 |
|
sl@0
|
45 |
public:
|
sl@0
|
46 |
static RDvbhHaiAsyncTest* NewL(TBool aRequireReceiverInfo, const TDesC& aTestName);
|
sl@0
|
47 |
|
sl@0
|
48 |
//MDvbhStateObserver
|
sl@0
|
49 |
virtual void DvbhStateChange( TDvbhState aNewState );
|
sl@0
|
50 |
|
sl@0
|
51 |
//MDvbhSignalQualityObserver
|
sl@0
|
52 |
void DvbhSignalQualityChange( const TDvbhSignalQuality& aNewSignalQuality );
|
sl@0
|
53 |
|
sl@0
|
54 |
//MDvbhPlatformObserver
|
sl@0
|
55 |
void DvbhPlatformChange( const TDvbhPlatform& aNewPlatform, const TIp6Addr& aESGRoot );
|
sl@0
|
56 |
|
sl@0
|
57 |
//MDvbhNetworkTimeObserver
|
sl@0
|
58 |
void DvbhNetworkTimeUpdate();
|
sl@0
|
59 |
|
sl@0
|
60 |
//MDvbhFrequencyObserver
|
sl@0
|
61 |
void DvbhFrequencyChange( const TDvbhFrequency& aNewFrequency );
|
sl@0
|
62 |
|
sl@0
|
63 |
//MDvbhCellIdObserver
|
sl@0
|
64 |
void DvbhCellIdChange( const TDvbhCellId& aNewCellId );
|
sl@0
|
65 |
|
sl@0
|
66 |
//MDvbhNetworkIdObserver
|
sl@0
|
67 |
void DvbhNetworkIdChange( const TDvbhNetworkId& aNewNetworkId );
|
sl@0
|
68 |
protected:
|
sl@0
|
69 |
//From RAsyncTestStep
|
sl@0
|
70 |
virtual void KickoffTestL();
|
sl@0
|
71 |
virtual void CloseTest();
|
sl@0
|
72 |
|
sl@0
|
73 |
//From MDvbhHaiTestLoggerInterface
|
sl@0
|
74 |
void InfoPrintf3(const TDesC16& aString, TInt aInt1, TInt aInt2);
|
sl@0
|
75 |
void InfoPrintf4(const TDesC16& aString, TInt aInt1, TInt aInt2, TInt aInt3);
|
sl@0
|
76 |
|
sl@0
|
77 |
//Access to protected data
|
sl@0
|
78 |
|
sl@0
|
79 |
//CDvbhReceiverInfo Positive Async Test Steps
|
sl@0
|
80 |
void DoSetStateObserverTestStep(TBool aProperyExists); //111 & 118
|
sl@0
|
81 |
void DoSetSignalQualityObserverTestStep(TBool aProperyExists); //112 & 119
|
sl@0
|
82 |
void DoSetPlatformObserverTestStep(TBool aProperyExists); //113 & 120
|
sl@0
|
83 |
void DoSetNetworkTimeObserverTestStep(TBool aProperyExists); //114 & 121
|
sl@0
|
84 |
void DoSetFrequencyObserverTestStep(TBool aProperyExists); //115 & 122
|
sl@0
|
85 |
void DoSetCellIdObserverTestStep(TBool aProperyExists); //116 & 123
|
sl@0
|
86 |
void DoSetNetworkIdObserverTestStep(TBool aProperyExists); //117 & 124
|
sl@0
|
87 |
void DoSetMultipleStateObserversTestStep(TBool aProperyExists); //125 & 126
|
sl@0
|
88 |
void DoCreateMultipleReceiverInfoTestStep(TBool aProperyExists); //127 & 128
|
sl@0
|
89 |
|
sl@0
|
90 |
//CDvbhReceiverInfo Negative Async Test Steps
|
sl@0
|
91 |
void DoSetObserversNoMemory(); //401
|
sl@0
|
92 |
private:
|
sl@0
|
93 |
/**
|
sl@0
|
94 |
* A second state observer to test setting multiple observers.
|
sl@0
|
95 |
*/
|
sl@0
|
96 |
class CAlternativeStateObserver : public CBase,
|
sl@0
|
97 |
public MDvbhStateObserver
|
sl@0
|
98 |
{
|
sl@0
|
99 |
public:
|
sl@0
|
100 |
static CAlternativeStateObserver* NewL(RDvbhHaiAsyncTest& aTestStep);
|
sl@0
|
101 |
virtual void DvbhStateChange( TDvbhState aNewState );
|
sl@0
|
102 |
private:
|
sl@0
|
103 |
CAlternativeStateObserver(RDvbhHaiAsyncTest& aTestStep);
|
sl@0
|
104 |
RDvbhHaiAsyncTest& iTestStep;
|
sl@0
|
105 |
};
|
sl@0
|
106 |
|
sl@0
|
107 |
enum
|
sl@0
|
108 |
{
|
sl@0
|
109 |
E1stStateObserver = 0,
|
sl@0
|
110 |
E2ndStateObserver = 1
|
sl@0
|
111 |
};
|
sl@0
|
112 |
|
sl@0
|
113 |
private:
|
sl@0
|
114 |
RDvbhHaiAsyncTest(TBool aRequireReceiverInfo, const TDesC& aTestName);
|
sl@0
|
115 |
TVerdict DoPreTest();
|
sl@0
|
116 |
void SetupParameterData();
|
sl@0
|
117 |
private:
|
sl@0
|
118 |
TTime iExpectedNetworkTime;
|
sl@0
|
119 |
TTime iInitialNetworkTime;
|
sl@0
|
120 |
TDvbhPlatformProperty iInitialPlatform;
|
sl@0
|
121 |
TDvbhPlatformProperty iExpectedPlatform;
|
sl@0
|
122 |
|
sl@0
|
123 |
TBool iPreTestRun;
|
sl@0
|
124 |
TBool iRequireReceiverInfo;
|
sl@0
|
125 |
|
sl@0
|
126 |
TInt iStateCallbackVerdicts[2];
|
sl@0
|
127 |
|
sl@0
|
128 |
CDvbhReceiverInfo* iRxInfo;
|
sl@0
|
129 |
CDvbhReceiverInfo* i2ndRxInfo;
|
sl@0
|
130 |
CDvbhTestUtil* iTestUtils;
|
sl@0
|
131 |
CAlternativeStateObserver* i2ndStateObserver;
|
sl@0
|
132 |
};
|
sl@0
|
133 |
|
sl@0
|
134 |
|
sl@0
|
135 |
#endif // DVBHHAIASYNCTEST_H
|