os/ossrv/lowlevellibsandfws/pluginfw/Test_Bed/DefaultLogOutputTest/DefaultLogOutputTransitions.h
Update contrib.
1 // Copyright (c) 1997-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 CDefaultLogOutput class methods.
18 #ifndef __DEFAULTLOGOUTPUTTRANSITIONS_H__
19 #define __DEFAULTLOGOUTPUTTRANSITIONS_H__
21 #include "TestUtilities.h"
22 #include "StateAccessor.h"
23 #include "LeakTestTransition.h"
24 #include <ecom/test_bed/datalogger.h>
25 #include "DefaultLogOutput.h"
26 #include "DefaultLogOutputStateAccessor.h"
27 #include <ecom/test_bed/unittest.h>
29 #define CTransitionType CLeakTestTransition
31 // ______________________________________________________________________________
36 Comments : Provide all the CDefaultLogOutput specific
37 parameters and behaviour on the CDefaultLogOutput
38 test class for a transition.
40 class CDefaultLogOutput_UnitTestContext : public CUnitTestContext
44 @fn CDefaultLogOutput_UnitTestContext(CDataLogger& aDataLogger,
45 MStateAccessor& aStateAccessor,
46 MTransitionObserver& aObserver)
47 Intended Usage : Default constructor.
48 Error Condition : None.
50 @param aDataLogger The output logging object.
51 @param aObserver The observer of this UnitTest's Transitions.
52 @param aStateAccessor WhiteBox state access to the CDefaultLogOutput class under test.
54 @post CDefaultLogOutput_UnitTestContext is fully constructed, and initialised.
56 inline CDefaultLogOutput_UnitTestContext(CDataLogger& aDataLogger,
57 MStateAccessor& aStateAccessor,
58 MTransitionObserver& aObserver);
61 @fn ~CDefaultLogOutput_UnitTestContext()
62 Intended Usage : Default Destructor
64 @pre CDefaultLogOutput_UnitTestContext is fully constructed.
65 @post CDefaultLogOutput_UnitTestContext is fully destroyed
67 virtual inline ~CDefaultLogOutput_UnitTestContext();
69 /** The instance of the class under test */
70 CDefaultLogOutput* iDefaultLogOutput;
71 /** The text to output to the test log file */
73 }; // CDefaultLogOutput_UnitTestContext
75 // ______________________________________________________________________________
80 Comments : Transition test of the CDefaultLogOutput::NewL method.
82 class CDefaultLogOutput_NewL_Transition : public CTransitionType
86 @fn CDefaultLogOutput_NewL_Transition(CUnitTestContext& aUTContext,
87 TTransitionValidator& aValidator)
88 Intended Usage : Standard c'tor method.
89 Error Condition : None.
91 @param aUTContext The context this transition is operating in.
92 @param aValidator Used for checking the pre & post conditions of the test object.
94 @post CDefaultLogOutput_NewL_Transition is fully constructed.
96 CDefaultLogOutput_NewL_Transition(CUnitTestContext& aUTContext,
97 TTransitionValidator& aValidator);
100 Intended Usage : To execute the CDefaultLogOutput::NewL method for the test harness.
101 Error Condition : Leaves with an error code.
102 @leave KErrNoMemory, (@see CDefaultLogOutput::NewL)
105 @pre CDefaultLogOutput_NewL_Transition is fully constructed.
106 @post No change in the CDefaultLogOutput_NewL_Transition apart
107 from iDefaultLogOutput, which may have changed state.
108 (@see CDefaultLogOutput::NewL post-condition) for iDefaultLogOutput's new state.
110 inline void TransitMethodL();
114 Intended Usage : To provide access to the unit test context cast to the correct type.
115 Error Condition : None.
117 @return The unit test context cast to a CDefaultLogOutput_UnitTestContext
118 @pre iUTContext is a valid CDefaultLogOutput_UnitTestContext.
119 @post No change in the CDefaultLogOutput_NewL_Transition
121 inline CDefaultLogOutput_UnitTestContext& Context() const;
122 }; // CDefaultLogOutput_NewL_Transition
124 // ______________________________________________________________________________
129 Comments : Transition test of the CDefaultLogOutput::Dtor method.
131 class CDefaultLogOutput_Dtor_Transition : public CTransition
135 @fn CDefaultLogOutput_Dtor_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 CDefaultLogOutput_Dtor_Transition is fully constructed.
145 CDefaultLogOutput_Dtor_Transition(CUnitTestContext& aUTContext,
146 TTransitionValidator& aValidator);
149 Intended Usage : To execute the CDefaultLogOutput::Dtor method for the test harness.
150 Error Condition : Leaves with an error code.
151 @leave KErrNoMemory, (@see CDefaultLogOutput::Dtor)
154 @pre CDefaultLogOutput_Dtor_Transition is fully constructed.
155 @post No change in the CDefaultLogOutput_Dtor_Transition apart
156 from iDefaultLogOutput, which may have changed state.
157 (@see CDefaultLogOutput::Dtor post-condition) for iDefaultLogOutput'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 CDefaultLogOutput_UnitTestContext
167 @pre iUTContext is a valid CDefaultLogOutput_UnitTestContext.
168 @post No change in the CDefaultLogOutput_Dtor_Transition
170 inline CDefaultLogOutput_UnitTestContext& Context() const;
171 }; // CDefaultLogOutput_Dtor_Transition
173 // ______________________________________________________________________________
178 Comments : Transition test of the CDefaultLogOutput::OpenL method.
180 class CDefaultLogOutput_OpenL_Transition : public CTransitionType
184 @fn CDefaultLogOutput_OpenL_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 CDefaultLogOutput_OpenL_Transition is fully constructed.
194 CDefaultLogOutput_OpenL_Transition(CUnitTestContext& aUTContext,
195 TTransitionValidator& aValidator);
198 Intended Usage : To execute the CDefaultLogOutput::OpenL method for the test harness.
199 Error Condition : Leaves with an error code.
200 @leave KErrNoMemory, (@see CDefaultLogOutput::OpenL)
203 @pre CDefaultLogOutput_OpenL_Transition is fully constructed.
204 @post No change in the CDefaultLogOutput_OpenL_Transition apart
205 from iDefaultLogOutput, which may have changed state.
206 (@see CDefaultLogOutput::OpenL post-condition) for iDefaultLogOutput'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 CDefaultLogOutput_UnitTestContext
216 @pre iUTContext is a valid CDefaultLogOutput_UnitTestContext.
217 @post No change in the CDefaultLogOutput_OpenL_Transition
219 inline CDefaultLogOutput_UnitTestContext& Context() const;
220 }; // CDefaultLogOutput_OpenL_Transition
223 // ______________________________________________________________________________
228 Comments : Transition test of the CDefaultLogOutput::Close method.
230 class CDefaultLogOutput_Close_Transition : public CTransition
234 @fn CDefaultLogOutput_Close_Transition(CUnitTestContext& aUTContext,
235 TTransitionValidator& aValidator)
236 Intended Usage : Standard c'tor method.
237 Error Condition : None.
239 @param aUTContext The context this transition is operating in.
240 @param aValidator Used for checking the pre & post conditions of the test object.
242 @post CDefaultLogOutput_Close_Transition is fully constructed.
244 CDefaultLogOutput_Close_Transition(CUnitTestContext& aUTContext,
245 TTransitionValidator& aValidator);
248 Intended Usage : To execute the CDefaultLogOutput::Close method for the test harness.
249 Error Condition : Leaves with an error code.
250 @leave KErrNoMemory, (@see CDefaultLogOutput::Close)
253 @pre CDefaultLogOutput_Close_Transition is fully constructed.
254 @post No change in the CDefaultLogOutput_Close_Transition apart
255 from iDefaultLogOutput, which may have changed state.
256 (@see CDefaultLogOutput::Close post-condition) for iDefaultLogOutput's new state.
258 inline void TransitMethodL();
262 Intended Usage : To provide access to the unit test context cast to the correct type.
263 Error Condition : None.
265 @return The unit test context cast to a CDefaultLogOutput_UnitTestContext
266 @pre iUTContext is a valid CDefaultLogOutput_UnitTestContext.
267 @post No change in the CDefaultLogOutput_Close_Transition
269 inline CDefaultLogOutput_UnitTestContext& Context() const;
270 }; // CDefaultLogOutput_Close_Transition
272 // ______________________________________________________________________________
277 Comments : Transition test of the CDefaultLogOutput::Write method.
279 class CDefaultLogOutput_Write_Transition : public CTransition
283 @fn CDefaultLogOutput_Write_Transition(CUnitTestContext& aUTContext,
284 TTransitionValidator& aValidator)
285 Intended Usage : Standard c'tor method.
286 Error Condition : None.
288 @param aUTContext The context this transition is operating in.
289 @param aValidator Used for checking the pre & post conditions of the test object.
291 @post CDefaultLogOutput_Write_Transition is fully constructed.
293 CDefaultLogOutput_Write_Transition(CUnitTestContext& aUTContext,
294 TTransitionValidator& aValidator);
297 Intended Usage : To execute the CDefaultLogOutput::Write method for the test harness.
298 Error Condition : Leaves with an error code.
299 @leave KErrNoMemory, (@see CDefaultLogOutput::Write)
302 @pre CDefaultLogOutput_Write_Transition is fully constructed.
303 @post No change in the CDefaultLogOutput_Write_Transition apart
304 from iDefaultLogOutput, which may have changed state.
305 (@see CDefaultLogOutput::Write post-condition) for iDefaultLogOutput's new state.
307 inline void TransitMethodL();
311 Intended Usage : To provide access to the unit test context cast to the correct type.
312 Error Condition : None.
314 @return The unit test context cast to a CDefaultLogOutput_UnitTestContext
315 @pre iUTContext is a valid CDefaultLogOutput_UnitTestContext.
316 @post No change in the CDefaultLogOutput_Write_Transition
318 inline CDefaultLogOutput_UnitTestContext& Context() const;
319 }; // CDefaultLogOutput_Write_Transition
321 #include "DefaultLogOutputTransitions.inl"
323 #include "DefaultLogOutputUnitTestContext.inl"
325 #endif // __DEFAULTLOGOUTPUTTRANSITIONS_H__