os/ossrv/lowlevellibsandfws/pluginfw/Framework/BackupNotifierTest/BackupNotifierTransitions.h
Update contrib.
1 // Copyright (c) 2001-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.
14 // The definitions of the transition classes upon the CBackupNotifier class methods.
18 #ifndef __BACKUPNOTIFIERTRANSITIONS_H__
19 #define __BACKUPNOTIFIERTRANSITIONS_H__
21 #include "TestUtilities.h"
22 #include "StateAccessor.h"
23 #include "LeakTestTransition.h"
24 #include <test_bed/datalogger.h>
25 #include "BackupNotifier.h"
26 #include "BackupNotifierObserver.h"
27 #include "BackupNotifierStateAccessor.h"
28 #include <test_bed/unittest.h>
30 #define CTransitionType CLeakTestTransition
32 class CNotificationStub : public CBase, public MBackupNotifierObserver
36 @fn CNotificationStub(CDataLogger& aDataLogger)
37 Intended Usage : Default constructor.
38 Error Condition : None.
40 @param aDataLogger The output logging object.
42 @post CNotificationStub is fully constructed, and initialised.
44 inline CNotificationStub(CDataLogger& aDataLogger);
47 @fn ~CNotificationStub()
48 Intended Usage : Default Destructor
50 @pre CNotificationStub is fully constructed.
51 @post CNotificationStub is fully destroyed
53 virtual inline ~CNotificationStub();
57 Intended Usage : Overload of the MBackupNotifierObserver method.
58 Error Condition : None.
60 @pre CNotificationStub has been fully constructed.
61 @post Suspend message is logged.
63 virtual inline TInt Suspend();
67 Intended Usage : Overload of the MBackupNotifierObserver method.
68 Error Condition : None.
70 @pre CNotificationStub has been fully constructed.
71 @post Resume message is logged.
73 virtual inline TInt Resume();
76 CDataLogger& iDataLogger;
79 // ______________________________________________________________________________
84 Comments : Provide all the CBackupNotifier specific
85 parameters and behaviour on the CBackupNotifier
86 test class for a transition.
88 class CBackupNotifier_UnitTestContext : public CUnitTestContext
92 @fn CBackupNotifier_UnitTestContext(CDataLogger& aDataLogger,
93 MStateAccessor& aStateAccessor,
94 MTransitionObserver& aObserver)
95 Intended Usage : Default constructor.
96 Error Condition : None.
98 @param aDataLogger The output logging object.
99 @param aObserver The observer of this UnitTest's Transitions.
100 @param aStateAccessor WhiteBox state access to the CBackupNotifier class under test.
102 @post CBackupNotifier_UnitTestContext is fully constructed, and initialised.
104 inline CBackupNotifier_UnitTestContext(CDataLogger& aDataLogger,
105 MStateAccessor& aStateAccessor,
106 MTransitionObserver& aObserver);
109 @fn ~CBackupNotifier_UnitTestContext()
110 Intended Usage : Default Destructor
112 @pre CBackupNotifier_UnitTestContext is fully constructed.
113 @post CBackupNotifier_UnitTestContext is fully destroyed
115 virtual inline ~CBackupNotifier_UnitTestContext();
117 /** The instance of the class under test */
118 CBackupNotifier* iBackupNotifier;
120 /** The instance of the stubbed observer of the class under test */
121 CNotificationStub* iStub;
122 }; // CBackupNotifier_UnitTestContext
124 // ______________________________________________________________________________
129 Comments : Transition test of the CBackupNotifier::NewL method.
131 class CBackupNotifier_NewL_Transition : public CTransitionType
135 @fn CBackupNotifier_NewL_Transition(CUnitTestContext& aUTContext,
136 TTransitionValidator& aValidator)
137 Intended Usage : Standard c'tor method.
138 Error Condition : None.
140 @param aUTContext The context this transition is operating in.
141 @param aValidator Used for checking the pre & post conditions of the test object.
143 @post CBackupNotifier_NewL_Transition is fully constructed.
145 CBackupNotifier_NewL_Transition(CUnitTestContext& aUTContext,
146 TTransitionValidator& aValidator);
149 Intended Usage : To execute the CBackupNotifier::NewL method for the test harness.
150 Error Condition : Leaves with an error code.
151 @leave KErrNoMemory, (@see CBackupNotifier::NewL)
154 @pre CBackupNotifier_NewL_Transition is fully constructed.
155 @post No change in the CBackupNotifier_NewL_Transition apart
156 from iBackupNotifier, which may have changed state.
157 (@see CBackupNotifier::NewL post-condition) for iBackupNotifier's new state.
159 inline void TransitMethodL();
163 Intended Usage : To provide access to the unit test context cast to the correct type.
164 Error Condition : None.
166 @return The unit test context cast to a CBackupNotifier_UnitTestContext
167 @pre iUTContext is a valid CBackupNotifier_UnitTestContext.
168 @post No change in the CBackupNotifier_NewL_Transition
170 inline CBackupNotifier_UnitTestContext& Context() const;
171 }; // CBackupNotifier_NewL_Transition
173 // ______________________________________________________________________________
178 Comments : Transition test of the CBackupNotifier::Dtor method.
180 class CBackupNotifier_Dtor_Transition : public CTransitionType
184 @fn CBackupNotifier_Dtor_Transition(CUnitTestContext& aUTContext,
185 TTransitionValidator& aValidator)
186 Intended Usage : Standard c'tor method.
187 Error Condition : None.
189 @param aUTContext The context this transition is operating in.
190 @param aValidator Used for checking the pre & post conditions of the test object.
192 @post CBackupNotifier_Dtor_Transition is fully constructed.
194 CBackupNotifier_Dtor_Transition(CUnitTestContext& aUTContext,
195 TTransitionValidator& aValidator);
198 Intended Usage : To execute the CBackupNotifier::Dtor method for the test harness.
199 Error Condition : Leaves with an error code.
200 @leave KErrNoMemory, (@see CBackupNotifier::Dtor)
203 @pre CBackupNotifier_Dtor_Transition is fully constructed.
204 @post No change in the CBackupNotifier_Dtor_Transition apart
205 from iBackupNotifier, which may have changed state.
206 (@see CBackupNotifier::Dtor post-condition) for iBackupNotifier's new state.
208 inline void TransitMethodL();
212 Intended Usage : To provide access to the unit test context cast to the correct type.
213 Error Condition : None.
215 @return The unit test context cast to a CBackupNotifier_UnitTestContext
216 @pre iUTContext is a valid CBackupNotifier_UnitTestContext.
217 @post No change in the CBackupNotifier_Dtor_Transition
219 inline CBackupNotifier_UnitTestContext& Context() const;
220 }; // CBackupNotifier_Dtor_Transition
222 // Add additional Transition class definitions here...
224 #include "BackupNotifierTransitions.inl"
226 #include "BackupNotifierUnitTestContext.inl"
228 #endif // __BACKUPNOTIFIERTRANSITIONS_H__