sl@0
|
1 |
// Copyright (c) 1997-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 |
// Implementation of the stub class for the Discoverer tests
|
sl@0
|
15 |
//
|
sl@0
|
16 |
//
|
sl@0
|
17 |
|
sl@0
|
18 |
#ifndef __DISCOVEREROBSERVERSTUB_H__
|
sl@0
|
19 |
#define __DISCOVEREROBSERVERSTUB_H__
|
sl@0
|
20 |
|
sl@0
|
21 |
#include "DiscovererObserver.h"
|
sl@0
|
22 |
#include "DiscovererStateAccessor.h"
|
sl@0
|
23 |
#include "DiscovererTransitions.h"
|
sl@0
|
24 |
|
sl@0
|
25 |
// ______________________________________________________________________________
|
sl@0
|
26 |
//
|
sl@0
|
27 |
/**
|
sl@0
|
28 |
@internalComponent
|
sl@0
|
29 |
@since 7.0
|
sl@0
|
30 |
This class is intended to provide the stub functionality of the
|
sl@0
|
31 |
CDiscoverers observer class. The methods will be used to log the
|
sl@0
|
32 |
calls that CDiscoverer is making to its observer.
|
sl@0
|
33 |
Note that the calls do not return any error codes, and so there
|
sl@0
|
34 |
is no requirement to repeat a transition, exercising the various
|
sl@0
|
35 |
control paths of the stub caller.
|
sl@0
|
36 |
RegisterDiscoveryL, and DriveReinstatedL can leave however,
|
sl@0
|
37 |
and there will be a repeat call on the transition that call
|
sl@0
|
38 |
these stub methods to exercise the alternative
|
sl@0
|
39 |
control paths of the caller.
|
sl@0
|
40 |
In the actual ECom implementation MDiscovererObserver is inherited
|
sl@0
|
41 |
privately but this causes problems with casting the stub so it is
|
sl@0
|
42 |
public here.
|
sl@0
|
43 |
*/
|
sl@0
|
44 |
class CObserverStub : public CBase, public MDiscovererObserver
|
sl@0
|
45 |
{
|
sl@0
|
46 |
public:
|
sl@0
|
47 |
/**
|
sl@0
|
48 |
@fn CObserverStub* NewL(CUnitTest& aOwner, CDiscoverer_UnitTestContext& aContext)
|
sl@0
|
49 |
Intended Usage : Standardised safe construction which leaves nothing the cleanup stack.
|
sl@0
|
50 |
Error Condition : Leaves with the error code.
|
sl@0
|
51 |
@leave KErrNoMemory.
|
sl@0
|
52 |
@since 7.0
|
sl@0
|
53 |
@param CUnitTest& aOwner" "
|
sl@0
|
54 |
@return CObserverStub*
|
sl@0
|
55 |
@pre None
|
sl@0
|
56 |
@post CObserverStub is fully constructed and initialised.
|
sl@0
|
57 |
*/
|
sl@0
|
58 |
static CObserverStub* NewL(CUnitTest& aOwner, CDiscoverer_UnitTestContext& aContext);
|
sl@0
|
59 |
|
sl@0
|
60 |
/**
|
sl@0
|
61 |
@fn CObserverStub* NewLC(CUnitTest& aOwner, CDiscoverer_UnitTestContext& aContext)
|
sl@0
|
62 |
Intended Usage : Standardised safe construction which leaves CObserverStub* upon the cleanup stack.
|
sl@0
|
63 |
Error Condition : Leaves with the error code.
|
sl@0
|
64 |
@leave KErrNoMemory.
|
sl@0
|
65 |
@since 7.0
|
sl@0
|
66 |
@param CUnitTest& aOwner" "
|
sl@0
|
67 |
@return CObserverStub*
|
sl@0
|
68 |
@pre None
|
sl@0
|
69 |
@post CObserverStub is fully constructed and initialised, and remains on the cleanup stack.
|
sl@0
|
70 |
*/
|
sl@0
|
71 |
static CObserverStub* NewLC(CUnitTest& aOwner, CDiscoverer_UnitTestContext& aContext);
|
sl@0
|
72 |
|
sl@0
|
73 |
/**
|
sl@0
|
74 |
@fn CObserverStub::~CObserverStub()
|
sl@0
|
75 |
Intended Usage : Default Destructor
|
sl@0
|
76 |
@since 7.0
|
sl@0
|
77 |
@pre CObserverStub is fully constructed
|
sl@0
|
78 |
@post CObserverStub is fully destroyed
|
sl@0
|
79 |
*/
|
sl@0
|
80 |
virtual ~CObserverStub();
|
sl@0
|
81 |
|
sl@0
|
82 |
// Observer methods requiring overload
|
sl@0
|
83 |
/**
|
sl@0
|
84 |
@fn DiscoveriesBegin()
|
sl@0
|
85 |
Intended Usage : Overload of the MDiscovererObserver callback method.
|
sl@0
|
86 |
to signal that a discovery session is starting.
|
sl@0
|
87 |
Error Condition : None.
|
sl@0
|
88 |
@since 7.0
|
sl@0
|
89 |
@return None.
|
sl@0
|
90 |
@pre The MDiscovererObserver must be fully constructed, and
|
sl@0
|
91 |
capable of accepting discoveries for registration.
|
sl@0
|
92 |
@post Discovery start is noted, and any appropriate action
|
sl@0
|
93 |
for the observer is completed.
|
sl@0
|
94 |
*/
|
sl@0
|
95 |
virtual void DiscoveriesBegin();
|
sl@0
|
96 |
|
sl@0
|
97 |
/**
|
sl@0
|
98 |
@fn RegisterDiscoveryL(const TEntry& aDirEntry)
|
sl@0
|
99 |
Intended Usage : Overload of the MDiscovererObserver callback method.
|
sl@0
|
100 |
to register a discovery.
|
sl@0
|
101 |
Error Condition : Depends upon the implementation class.
|
sl@0
|
102 |
@leave Implementation class dependent. @see CRegistrar.
|
sl@0
|
103 |
@since 7.0
|
sl@0
|
104 |
@param aDirEntry A reference to the Discovered directory entry.
|
sl@0
|
105 |
@return None.
|
sl@0
|
106 |
@pre The MDiscovererObserver must be fully constructed, and
|
sl@0
|
107 |
capable of accepting discoveries for registration.
|
sl@0
|
108 |
@post Discovery is registered.
|
sl@0
|
109 |
*/
|
sl@0
|
110 |
virtual void RegisterDiscoveryL(const TEntry& aDirEntry);
|
sl@0
|
111 |
|
sl@0
|
112 |
/**
|
sl@0
|
113 |
@fn DiscoveriesComplete(TBool aSuccessful)
|
sl@0
|
114 |
Intended Usage : Overload of the MDiscovererObserver callback method.
|
sl@0
|
115 |
to signal that a discovery session is complete.
|
sl@0
|
116 |
Error Condition : None.
|
sl@0
|
117 |
@since 7.0
|
sl@0
|
118 |
@param aSuccessful ETrue indicates the scan completed successfully,
|
sl@0
|
119 |
EFalse, that the scan was only partial.
|
sl@0
|
120 |
@return None.
|
sl@0
|
121 |
@pre The MDiscovererObserver must be fully constructed, and
|
sl@0
|
122 |
capable of accepting discoveries for registration.
|
sl@0
|
123 |
@post Discovery completion is noted, and any appropriate action
|
sl@0
|
124 |
for the observer is completed.
|
sl@0
|
125 |
*/
|
sl@0
|
126 |
virtual void DiscoveriesComplete(TBool aSuccessful);
|
sl@0
|
127 |
|
sl@0
|
128 |
/**
|
sl@0
|
129 |
@fn DriveRemovedL(TDriveUnit aDrive)
|
sl@0
|
130 |
Intended Usage :Overload of the MDiscovererObserver callback method.
|
sl@0
|
131 |
to notify the observer that a drive letter
|
sl@0
|
132 |
is no longer available for use.
|
sl@0
|
133 |
Error Condition : None.
|
sl@0
|
134 |
@since 7.0 :
|
sl@0
|
135 |
@param aDrive The drive identifier.
|
sl@0
|
136 |
@pre The MDiscovererObserver must be fully constructed, and
|
sl@0
|
137 |
capable of accepting discoveries for registration.
|
sl@0
|
138 |
@post Drive removal is noted, and any appropriate action
|
sl@0
|
139 |
for the observer is completed.
|
sl@0
|
140 |
E.g. The registered implementation groupings
|
sl@0
|
141 |
stored upon the specified drive are no
|
sl@0
|
142 |
longer available for use.
|
sl@0
|
143 |
*/
|
sl@0
|
144 |
virtual void DriveRemovedL(TDriveUnit aDrive);
|
sl@0
|
145 |
|
sl@0
|
146 |
/**
|
sl@0
|
147 |
@fn DriveReinstatedL(TDriveUnit aDrive)
|
sl@0
|
148 |
Intended Usage :Overload of the MDiscovererObserver callback method.
|
sl@0
|
149 |
to notify the observer that a drive letter
|
sl@0
|
150 |
has become available for use.
|
sl@0
|
151 |
Error Condition : None.
|
sl@0
|
152 |
@since 7.0 :
|
sl@0
|
153 |
@param aDrive The drive identifier.
|
sl@0
|
154 |
@pre The MDiscovererObserver must be fully constructed, and
|
sl@0
|
155 |
capable of accepting discoveries for registration.
|
sl@0
|
156 |
@post Drive removal is noted, and any appropriate action
|
sl@0
|
157 |
for the observer is completed.
|
sl@0
|
158 |
E.g. The registered implementation groupings
|
sl@0
|
159 |
stored upon the specified drive are again
|
sl@0
|
160 |
made available for use.
|
sl@0
|
161 |
*/
|
sl@0
|
162 |
virtual void DriveReinstatedL(TDriveUnit aDrive);
|
sl@0
|
163 |
|
sl@0
|
164 |
/**
|
sl@0
|
165 |
@fn NotifiedWithErrorCode(TInt aError)
|
sl@0
|
166 |
Intended Usage :Overload of the MDiscovererObserver callback method.
|
sl@0
|
167 |
The notification that the notifier has been activated
|
sl@0
|
168 |
with an error status code. The observer should instruct
|
sl@0
|
169 |
the notification object how to proceed.
|
sl@0
|
170 |
Error Condition : None.
|
sl@0
|
171 |
@since 7.0 :
|
sl@0
|
172 |
@param aError The error value recieved by the notifier.
|
sl@0
|
173 |
@return ETrue for ignore error, EFalse otherwise.
|
sl@0
|
174 |
@pre CRegistrar is fully constructed.
|
sl@0
|
175 |
@post The status code should be used by the observer to instruct
|
sl@0
|
176 |
the notifier to cease recieving notifications or not.
|
sl@0
|
177 |
*/
|
sl@0
|
178 |
virtual TBool NotifiedWithErrorCode(TInt aError);
|
sl@0
|
179 |
|
sl@0
|
180 |
private:
|
sl@0
|
181 |
/**
|
sl@0
|
182 |
@fn CObserverStub::CObserverStub(CUnitTest& aOwner, CDiscoverer_UnitTestContext& aContext)
|
sl@0
|
183 |
Intended Usage : Default Constructor : usable only by derived classes
|
sl@0
|
184 |
@since 7.0
|
sl@0
|
185 |
@param CUnitTest& A reference to the owning CUnitTest
|
sl@0
|
186 |
@return None
|
sl@0
|
187 |
@pre None
|
sl@0
|
188 |
@post CObserverStub is fully constructed
|
sl@0
|
189 |
*/
|
sl@0
|
190 |
CObserverStub(CUnitTest& aOwner, CDiscoverer_UnitTestContext& aContext);
|
sl@0
|
191 |
|
sl@0
|
192 |
/**
|
sl@0
|
193 |
@fn void CObserverStub::ConstructL()
|
sl@0
|
194 |
Intended Usage : Completes the safe construction of the CObserverStub object
|
sl@0
|
195 |
Error Condition : Leaves with the error code.
|
sl@0
|
196 |
@leave KErrNoMemory.
|
sl@0
|
197 |
@since 7.0
|
sl@0
|
198 |
@return None
|
sl@0
|
199 |
@pre CObserverStub is fully constructed
|
sl@0
|
200 |
@post CObserverStub is fully initialised
|
sl@0
|
201 |
*/
|
sl@0
|
202 |
void ConstructL();
|
sl@0
|
203 |
|
sl@0
|
204 |
// Attributes / Properties
|
sl@0
|
205 |
private:
|
sl@0
|
206 |
/** A reference to the owning CUnitTest */
|
sl@0
|
207 |
CUnitTest& iOwner;
|
sl@0
|
208 |
/** A reference to the Unit Test context object */
|
sl@0
|
209 |
CDiscoverer_UnitTestContext& iContext;
|
sl@0
|
210 |
}; // End of CObserverStub definition
|
sl@0
|
211 |
|
sl@0
|
212 |
|
sl@0
|
213 |
#endif // __DISCOVEREROBSERVERSTUB_H__
|