sl@0
|
1 |
// Copyright (c) 2001-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 |
// The definitions of the transition classes upon the CBackupNotifier class methods.
|
sl@0
|
15 |
//
|
sl@0
|
16 |
//
|
sl@0
|
17 |
|
sl@0
|
18 |
#ifndef __BACKUPNOTIFIERTRANSITIONS_H__
|
sl@0
|
19 |
#define __BACKUPNOTIFIERTRANSITIONS_H__
|
sl@0
|
20 |
|
sl@0
|
21 |
#include "TestUtilities.h"
|
sl@0
|
22 |
#include "StateAccessor.h"
|
sl@0
|
23 |
#include "LeakTestTransition.h"
|
sl@0
|
24 |
#include <test_bed/datalogger.h>
|
sl@0
|
25 |
#include "BackupNotifier.h"
|
sl@0
|
26 |
#include "BackupNotifierObserver.h"
|
sl@0
|
27 |
#include "BackupNotifierStateAccessor.h"
|
sl@0
|
28 |
#include <test_bed/unittest.h>
|
sl@0
|
29 |
|
sl@0
|
30 |
#define CTransitionType CLeakTestTransition
|
sl@0
|
31 |
|
sl@0
|
32 |
class CNotificationStub : public CBase, public MBackupNotifierObserver
|
sl@0
|
33 |
{
|
sl@0
|
34 |
public:
|
sl@0
|
35 |
/**
|
sl@0
|
36 |
@fn CNotificationStub(CDataLogger& aDataLogger)
|
sl@0
|
37 |
Intended Usage : Default constructor.
|
sl@0
|
38 |
Error Condition : None.
|
sl@0
|
39 |
@since 7.0
|
sl@0
|
40 |
@param aDataLogger The output logging object.
|
sl@0
|
41 |
@pre None.
|
sl@0
|
42 |
@post CNotificationStub is fully constructed, and initialised.
|
sl@0
|
43 |
*/
|
sl@0
|
44 |
inline CNotificationStub(CDataLogger& aDataLogger);
|
sl@0
|
45 |
|
sl@0
|
46 |
/**
|
sl@0
|
47 |
@fn ~CNotificationStub()
|
sl@0
|
48 |
Intended Usage : Default Destructor
|
sl@0
|
49 |
@since 7.0
|
sl@0
|
50 |
@pre CNotificationStub is fully constructed.
|
sl@0
|
51 |
@post CNotificationStub is fully destroyed
|
sl@0
|
52 |
*/
|
sl@0
|
53 |
virtual inline ~CNotificationStub();
|
sl@0
|
54 |
|
sl@0
|
55 |
/**
|
sl@0
|
56 |
@fn Suspend()
|
sl@0
|
57 |
Intended Usage : Overload of the MBackupNotifierObserver method.
|
sl@0
|
58 |
Error Condition : None.
|
sl@0
|
59 |
@since 7.0
|
sl@0
|
60 |
@pre CNotificationStub has been fully constructed.
|
sl@0
|
61 |
@post Suspend message is logged.
|
sl@0
|
62 |
*/
|
sl@0
|
63 |
virtual inline TInt Suspend();
|
sl@0
|
64 |
|
sl@0
|
65 |
/**
|
sl@0
|
66 |
@fn Resume()
|
sl@0
|
67 |
Intended Usage : Overload of the MBackupNotifierObserver method.
|
sl@0
|
68 |
Error Condition : None.
|
sl@0
|
69 |
@since 7.0
|
sl@0
|
70 |
@pre CNotificationStub has been fully constructed.
|
sl@0
|
71 |
@post Resume message is logged.
|
sl@0
|
72 |
*/
|
sl@0
|
73 |
virtual inline TInt Resume();
|
sl@0
|
74 |
|
sl@0
|
75 |
private:
|
sl@0
|
76 |
CDataLogger& iDataLogger;
|
sl@0
|
77 |
};
|
sl@0
|
78 |
|
sl@0
|
79 |
// ______________________________________________________________________________
|
sl@0
|
80 |
//
|
sl@0
|
81 |
/**
|
sl@0
|
82 |
@internalComponent
|
sl@0
|
83 |
|
sl@0
|
84 |
Comments : Provide all the CBackupNotifier specific
|
sl@0
|
85 |
parameters and behaviour on the CBackupNotifier
|
sl@0
|
86 |
test class for a transition.
|
sl@0
|
87 |
*/
|
sl@0
|
88 |
class CBackupNotifier_UnitTestContext : public CUnitTestContext
|
sl@0
|
89 |
{
|
sl@0
|
90 |
public:
|
sl@0
|
91 |
/**
|
sl@0
|
92 |
@fn CBackupNotifier_UnitTestContext(CDataLogger& aDataLogger,
|
sl@0
|
93 |
MStateAccessor& aStateAccessor,
|
sl@0
|
94 |
MTransitionObserver& aObserver)
|
sl@0
|
95 |
Intended Usage : Default constructor.
|
sl@0
|
96 |
Error Condition : None.
|
sl@0
|
97 |
@since 7.0
|
sl@0
|
98 |
@param aDataLogger The output logging object.
|
sl@0
|
99 |
@param aObserver The observer of this UnitTest's Transitions.
|
sl@0
|
100 |
@param aStateAccessor WhiteBox state access to the CBackupNotifier class under test.
|
sl@0
|
101 |
@pre None.
|
sl@0
|
102 |
@post CBackupNotifier_UnitTestContext is fully constructed, and initialised.
|
sl@0
|
103 |
*/
|
sl@0
|
104 |
inline CBackupNotifier_UnitTestContext(CDataLogger& aDataLogger,
|
sl@0
|
105 |
MStateAccessor& aStateAccessor,
|
sl@0
|
106 |
MTransitionObserver& aObserver);
|
sl@0
|
107 |
|
sl@0
|
108 |
/**
|
sl@0
|
109 |
@fn ~CBackupNotifier_UnitTestContext()
|
sl@0
|
110 |
Intended Usage : Default Destructor
|
sl@0
|
111 |
@since 7.0
|
sl@0
|
112 |
@pre CBackupNotifier_UnitTestContext is fully constructed.
|
sl@0
|
113 |
@post CBackupNotifier_UnitTestContext is fully destroyed
|
sl@0
|
114 |
*/
|
sl@0
|
115 |
virtual inline ~CBackupNotifier_UnitTestContext();
|
sl@0
|
116 |
|
sl@0
|
117 |
/** The instance of the class under test */
|
sl@0
|
118 |
CBackupNotifier* iBackupNotifier;
|
sl@0
|
119 |
|
sl@0
|
120 |
/** The instance of the stubbed observer of the class under test */
|
sl@0
|
121 |
CNotificationStub* iStub;
|
sl@0
|
122 |
}; // CBackupNotifier_UnitTestContext
|
sl@0
|
123 |
|
sl@0
|
124 |
// ______________________________________________________________________________
|
sl@0
|
125 |
//
|
sl@0
|
126 |
/**
|
sl@0
|
127 |
@internalComponent
|
sl@0
|
128 |
|
sl@0
|
129 |
Comments : Transition test of the CBackupNotifier::NewL method.
|
sl@0
|
130 |
*/
|
sl@0
|
131 |
class CBackupNotifier_NewL_Transition : public CTransitionType
|
sl@0
|
132 |
{
|
sl@0
|
133 |
public:
|
sl@0
|
134 |
/**
|
sl@0
|
135 |
@fn CBackupNotifier_NewL_Transition(CUnitTestContext& aUTContext,
|
sl@0
|
136 |
TTransitionValidator& aValidator)
|
sl@0
|
137 |
Intended Usage : Standard c'tor method.
|
sl@0
|
138 |
Error Condition : None.
|
sl@0
|
139 |
@since 7.0
|
sl@0
|
140 |
@param aUTContext The context this transition is operating in.
|
sl@0
|
141 |
@param aValidator Used for checking the pre & post conditions of the test object.
|
sl@0
|
142 |
@pre None.
|
sl@0
|
143 |
@post CBackupNotifier_NewL_Transition is fully constructed.
|
sl@0
|
144 |
*/
|
sl@0
|
145 |
CBackupNotifier_NewL_Transition(CUnitTestContext& aUTContext,
|
sl@0
|
146 |
TTransitionValidator& aValidator);
|
sl@0
|
147 |
/**
|
sl@0
|
148 |
@fn TransitMethodL()
|
sl@0
|
149 |
Intended Usage : To execute the CBackupNotifier::NewL method for the test harness.
|
sl@0
|
150 |
Error Condition : Leaves with an error code.
|
sl@0
|
151 |
@leave KErrNoMemory, (@see CBackupNotifier::NewL)
|
sl@0
|
152 |
@since 7.0
|
sl@0
|
153 |
@return None
|
sl@0
|
154 |
@pre CBackupNotifier_NewL_Transition is fully constructed.
|
sl@0
|
155 |
@post No change in the CBackupNotifier_NewL_Transition apart
|
sl@0
|
156 |
from iBackupNotifier, which may have changed state.
|
sl@0
|
157 |
(@see CBackupNotifier::NewL post-condition) for iBackupNotifier's new state.
|
sl@0
|
158 |
*/
|
sl@0
|
159 |
inline void TransitMethodL();
|
sl@0
|
160 |
|
sl@0
|
161 |
/**
|
sl@0
|
162 |
@fn Context() const
|
sl@0
|
163 |
Intended Usage : To provide access to the unit test context cast to the correct type.
|
sl@0
|
164 |
Error Condition : None.
|
sl@0
|
165 |
@since 7.0
|
sl@0
|
166 |
@return The unit test context cast to a CBackupNotifier_UnitTestContext
|
sl@0
|
167 |
@pre iUTContext is a valid CBackupNotifier_UnitTestContext.
|
sl@0
|
168 |
@post No change in the CBackupNotifier_NewL_Transition
|
sl@0
|
169 |
*/
|
sl@0
|
170 |
inline CBackupNotifier_UnitTestContext& Context() const;
|
sl@0
|
171 |
}; // CBackupNotifier_NewL_Transition
|
sl@0
|
172 |
|
sl@0
|
173 |
// ______________________________________________________________________________
|
sl@0
|
174 |
//
|
sl@0
|
175 |
/**
|
sl@0
|
176 |
@internalComponent
|
sl@0
|
177 |
|
sl@0
|
178 |
Comments : Transition test of the CBackupNotifier::Dtor method.
|
sl@0
|
179 |
*/
|
sl@0
|
180 |
class CBackupNotifier_Dtor_Transition : public CTransitionType
|
sl@0
|
181 |
{
|
sl@0
|
182 |
public:
|
sl@0
|
183 |
/**
|
sl@0
|
184 |
@fn CBackupNotifier_Dtor_Transition(CUnitTestContext& aUTContext,
|
sl@0
|
185 |
TTransitionValidator& aValidator)
|
sl@0
|
186 |
Intended Usage : Standard c'tor method.
|
sl@0
|
187 |
Error Condition : None.
|
sl@0
|
188 |
@since 7.0
|
sl@0
|
189 |
@param aUTContext The context this transition is operating in.
|
sl@0
|
190 |
@param aValidator Used for checking the pre & post conditions of the test object.
|
sl@0
|
191 |
@pre None.
|
sl@0
|
192 |
@post CBackupNotifier_Dtor_Transition is fully constructed.
|
sl@0
|
193 |
*/
|
sl@0
|
194 |
CBackupNotifier_Dtor_Transition(CUnitTestContext& aUTContext,
|
sl@0
|
195 |
TTransitionValidator& aValidator);
|
sl@0
|
196 |
/**
|
sl@0
|
197 |
@fn TransitMethodL()
|
sl@0
|
198 |
Intended Usage : To execute the CBackupNotifier::Dtor method for the test harness.
|
sl@0
|
199 |
Error Condition : Leaves with an error code.
|
sl@0
|
200 |
@leave KErrNoMemory, (@see CBackupNotifier::Dtor)
|
sl@0
|
201 |
@since 7.0
|
sl@0
|
202 |
@return None
|
sl@0
|
203 |
@pre CBackupNotifier_Dtor_Transition is fully constructed.
|
sl@0
|
204 |
@post No change in the CBackupNotifier_Dtor_Transition apart
|
sl@0
|
205 |
from iBackupNotifier, which may have changed state.
|
sl@0
|
206 |
(@see CBackupNotifier::Dtor post-condition) for iBackupNotifier's new state.
|
sl@0
|
207 |
*/
|
sl@0
|
208 |
inline void TransitMethodL();
|
sl@0
|
209 |
|
sl@0
|
210 |
/**
|
sl@0
|
211 |
@fn Context() const
|
sl@0
|
212 |
Intended Usage : To provide access to the unit test context cast to the correct type.
|
sl@0
|
213 |
Error Condition : None.
|
sl@0
|
214 |
@since 7.0
|
sl@0
|
215 |
@return The unit test context cast to a CBackupNotifier_UnitTestContext
|
sl@0
|
216 |
@pre iUTContext is a valid CBackupNotifier_UnitTestContext.
|
sl@0
|
217 |
@post No change in the CBackupNotifier_Dtor_Transition
|
sl@0
|
218 |
*/
|
sl@0
|
219 |
inline CBackupNotifier_UnitTestContext& Context() const;
|
sl@0
|
220 |
}; // CBackupNotifier_Dtor_Transition
|
sl@0
|
221 |
|
sl@0
|
222 |
// Add additional Transition class definitions here...
|
sl@0
|
223 |
|
sl@0
|
224 |
#include "BackupNotifierTransitions.inl"
|
sl@0
|
225 |
|
sl@0
|
226 |
#include "BackupNotifierUnitTestContext.inl"
|
sl@0
|
227 |
|
sl@0
|
228 |
#endif // __BACKUPNOTIFIERTRANSITIONS_H__
|
sl@0
|
229 |
|