os/ossrv/lowlevellibsandfws/pluginfw/Framework/RegistryDataTest/RegistryDataUnitTests.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 definition of the unit stet classes for the CRegistryData testing.
18 #ifndef __REGISTRYDATAUNITTESTS_H__
19 #define __REGISTRTDATAUNITTESTS_H__
21 #include "RegistryDataTransitionValidation.h"
23 // ______________________________________________________________________________
28 Comments : Unit Test for CreateAndDestroy on CRegistryData, the class under test.
30 class CRegistryData_CreateAndDestroy_UnitTest : public CUnitTest
34 @fn NewL(CDataLogger& aDataLogger,
35 MUnitTestObserver& aObserver)
36 Intended Usage : Standard two-phase construction which leaves nothing on the
38 Error Condition : Leaves with the error code.
41 @param aDataLogger The output logging object.
42 @param aObserver The observer of this UnitTest.
43 @return CRegistryData_CreateAndDestroy_UnitTest* The constructed object.
45 @post CRegistryData_CreateAndDestroy_UnitTest is fully constructed, and initialised.
47 static CRegistryData_CreateAndDestroy_UnitTest* NewL(CDataLogger& aDataLogger,
48 MUnitTestObserver& aObserver);
51 @fn RunError(TInt aError)
52 Intended Usage : Intercept the panic caused by a RunL leave,
53 to restore the CRegistryData_CreateAndDestroy_UnitTest
54 object to a sensible state.
55 (called by the Active Scheduler immediately before the Panic).
56 Error Condition : @see CUnitTest::RunError().
58 @return TInt KErrNone if cleanup successful, otherwise
59 @see CUnitTest::RunError()
60 @pre CRegistryData_CreateAndDestroy_UnitTest is fully constructed, and initialised.
61 @post The object has been restored to a sensible state.
63 inline TInt RunError(TInt aError);
66 @fn ~CRegistryData_CreateAndDestroy_UnitTest()
67 Intended Usage : Standard Destructor.
68 Error Condition : None.
70 @pre CRegistryData_CreateAndDestroy_UnitTest is fully constructed.
71 @post CRegistryData_CreateAndDestroy_UnitTest is fully destroyed.
73 ~CRegistryData_CreateAndDestroy_UnitTest();
76 @fn PrepareUnitTestL()
77 Intended Usage : Called by test framework just before test is run to allow
78 any test preparation to take place.
81 @pre CRegistryData_CreateAndDestroy_UnitTest is fully constructed.
82 @post This unit test is ready to run.
84 void PrepareUnitTestL();
88 @fn CRegistryData_CreateAndDestroy_UnitTest(CDataLogger& aDataLogger,
89 MUnitTestObserver& aObserver)
90 Intended Usage : Default constructor.
91 Error Condition : None.
93 @param aDataLogger The output logging object.
94 @param aObserver The observer of this UnitTest.
95 @param aStateAccessor WhiteBox state access to the CRegistryData class.
97 @post CRegistryData_CreateAndDestroy_UnitTest is fully constructed.
99 inline CRegistryData_CreateAndDestroy_UnitTest(CDataLogger& aDataLogger,
100 MUnitTestObserver& aObserver);
103 @fn void ConstructL()
104 Intended Usage : Second phase of safe two phase construction,
105 to complete the object initialisation.
106 Error Condition : Leaves with an error code.
107 @leave KErrNoMemory, and @see CUnitTest::BaseNewL().
110 @pre CRegistryData_CreateAndDestroy_UnitTest is fully constructed.
111 @post CRegistryData_CreateAndDestroy_UnitTest is fully initialised.
113 inline void ConstructL();
116 The context of the Unit Test.
117 i.e The CRegistryData class tested by this UnitTest's transitions.
119 CRegistryData_UnitTestContext* iUTContext;
120 TRegistryData_Ctor_TransitionValidator* iCtorValidator;
121 TRegistryData_Dtor_TransitionValidator* iDtorValidator;
122 TRegistryData_StateAccessor* iStateAccessor;
123 }; // CRegistryData_CreateAndDestroy_UnitTest
125 // ______________________________________________________________________________
130 Comments : Unit Test for AddData on CRegistryData, the class under test.
132 class CRegistryData_AddData_UnitTest : public CUnitTest
136 @fn NewL(CDataLogger& aDataLogger,
137 MUnitTestObserver& aObserver)
138 Intended Usage : Standard two-phase construction which leaves nothing on the
140 Error Condition : Leaves with the error code.
143 @param aDataLogger The output logging object.
144 @param aObserver The observer of this UnitTest.
145 @return CRegistryData_AddData_UnitTest* The constructed object.
147 @post CRegistryData_AddData_UnitTest is fully constructed, and initialised.
149 static CRegistryData_AddData_UnitTest* NewL(CDataLogger& aDataLogger,
150 MUnitTestObserver& aObserver);
153 @fn RunError(TInt aError)
154 Intended Usage : Intercept the panic caused by a RunL leave,
155 to restore the CRegistryData_AddData_UnitTest
156 object to a sensible state.
157 (called by the Active Scheduler immediately before the Panic).
158 Error Condition : @see CUnitTest::RunError().
160 @return TInt KErrNone if cleanup successful, otherwise
161 @see CUnitTest::RunError()
162 @pre CRegistryData_AddData_UnitTest is fully constructed, and initialised.
163 @post The object has been restored to a sensible state.
165 inline TInt RunError(TInt aError);
168 @fn ~CRegistryData_AddData_UnitTest()
169 Intended Usage : Standard Destructor.
170 Error Condition : None.
172 @pre CRegistryData_AddData_UnitTest is fully constructed.
173 @post CRegistryData_AddData_UnitTest is fully destroyed.
175 ~CRegistryData_AddData_UnitTest();
179 @fn CRegistryData_AddData_UnitTest(CDataLogger& aDataLogger,
180 MUnitTestObserver& aObserver)
181 Intended Usage : Default constructor.
182 Error Condition : None.
184 @param aDataLogger The output logging object.
185 @param aObserver The observer of this UnitTest.
186 @param aStateAccessor WhiteBox state access to the CRegistryData class.
188 @post CRegistryData_AddData_UnitTest is fully constructed.
190 inline CRegistryData_AddData_UnitTest(CDataLogger& aDataLogger,
191 MUnitTestObserver& aObserver);
194 @fn void ConstructL()
195 Intended Usage : Second phase of safe two phase construction,
196 to complete the object initialisation.
197 Error Condition : Leaves with an error code.
198 @leave KErrNoMemory, and @see CUnitTest::BaseNewL().
201 @pre CRegistryData_AddData_UnitTest is fully constructed.
202 @post CRegistryData_AddData_UnitTest is fully initialised.
207 The context of the Unit Test.
208 i.e The CRegistryData class tested by this UnitTest's transitions.
210 CRegistryData_UnitTestContext* iUTContext;
211 TRegistryData_StateAccessor* iStateAccessor;
213 TRegistryData_Ctor_TransitionValidator* iCtorValidator;
214 TRegistryData_SetPolicyObserver_TransitionValidator* iSetObserverValidator;
215 TRegistryData_UndoTemporaryUninstall_TransitionValidator* iUndoTemporaryUninstallValidator;
216 TRegistryData_AddDllDataL_TransitionValidator* iAddDllDataValidator;
217 TRegistryData_IsRegisteredWithDate_TransitionValidator* iIsRegisteredValidator;
218 TRegistryData_UpdateDllData_TransitionValidator* iUpdateDllDataValidator;
219 TRegistryData_TemporaryUninstall_TransitionValidator* iTemporaryUninstallValidator;
220 TRegistryData_PersistNow_TransitionValidator* iPersistNowValidator;
221 TRegistryData_Dtor_TransitionValidator* iDtorValidator;
222 }; // CRegistryData_AddData_UnitTest
224 // ______________________________________________________________________________
229 Comments : Unit Test for RetrieveInfo on CRegistryData, the class under test.
231 class CRegistryData_RetrieveInfo_UnitTest : public CUnitTest
235 @fn NewL(CDataLogger& aDataLogger,
236 MUnitTestObserver& aObserver)
237 Intended Usage : Standard two-phase construction which leaves nothing on the
239 Error Condition : Leaves with the error code.
242 @param aDataLogger The output logging object.
243 @param aObserver The observer of this UnitTest.
244 @return CRegistryData_RetrieveInfo_UnitTest* The constructed object.
246 @post CRegistryData_RetrieveInfo_UnitTest is fully constructed, and initialised.
248 static CRegistryData_RetrieveInfo_UnitTest* NewL(CDataLogger& aDataLogger,
249 MUnitTestObserver& aObserver);
252 @fn RunError(TInt aError)
253 Intended Usage : Intercept the panic caused by a RunL leave,
254 to restore the CRegistryData_RetrieveInfo_UnitTest
255 object to a sensible state.
256 (called by the Active Scheduler immediately before the Panic).
257 Error Condition : @see CUnitTest::RunError().
259 @return TInt KErrNone if cleanup successful, otherwise
260 @see CUnitTest::RunError()
261 @pre CRegistryData_RetrieveInfo_UnitTest is fully constructed, and initialised.
262 @post The object has been restored to a sensible state.
264 inline TInt RunError(TInt aError);
267 @fn ~CRegistryData_RetrieveInfo_UnitTest()
268 Intended Usage : Standard Destructor.
269 Error Condition : None.
271 @pre CRegistryData_RetrieveInfo_UnitTest is fully constructed.
272 @post CRegistryData_RetrieveInfo_UnitTest is fully destroyed.
274 ~CRegistryData_RetrieveInfo_UnitTest();
278 @fn CRegistryData_RetrieveInfo_UnitTest(CDataLogger& aDataLogger,
279 MUnitTestObserver& aObserver)
280 Intended Usage : Default constructor.
281 Error Condition : None.
283 @param aDataLogger The output logging object.
284 @param aObserver The observer of this UnitTest.
285 @param aStateAccessor WhiteBox state access to the CRegistryData class.
287 @post CRegistryData_RetrieveInfo_UnitTest is fully constructed.
289 inline CRegistryData_RetrieveInfo_UnitTest(CDataLogger& aDataLogger,
290 MUnitTestObserver& aObserver);
293 @fn void ConstructL()
294 Intended Usage : Second phase of safe two phase construction,
295 to complete the object initialisation.
296 Error Condition : Leaves with an error code.
297 @leave KErrNoMemory, and @see CUnitTest::BaseNewL().
300 @pre CRegistryData_RetrieveInfo_UnitTest is fully constructed.
301 @post CRegistryData_RetrieveInfo_UnitTest is fully initialised.
306 The context of the Unit Test.
307 i.e The CRegistryData class tested by this UnitTest's transitions.
309 CRegistryData_UnitTestContext* iUTContext;
310 TRegistryData_StateAccessor* iStateAccessor;
312 // C'tor, d'tor, and default transition validators
313 TRegistryData_Ctor_TransitionValidator* iCtorValidator;
314 TRegistryData_ListImplementations_TransitionValidator* iListImplementationsValidator;
315 TRegistryData_GetImplementationInformation_TransitionValidator* iGetImplementationInformationValidator;
316 TRegistryData_Dtor_TransitionValidator* iDtorValidator;
317 }; // CRegistryData_RetrieveInfo_UnitTest
319 // ______________________________________________________________________________
324 Comments : Unit Test for ConstructIndex on CRegistryData, the class under test.
326 class CRegistryData_GetImplInfoWhileDiscovering_UnitTest : public CUnitTest
330 @fn NewL(CDataLogger& aDataLogger, MUnitTestObserver& aObserver)
331 Intended Usage : Standard two-phase construction which leaves nothing on the
333 Error Condition : Leaves with the error code.
336 @param aDataLogger The output logging object.
337 @param aObserver The observer of this UnitTest.
338 @return CRegistryData_GetImplInfoWhileDiscovering_UnitTest* The
341 @post CRegistryData_GetImplInfoWhileDiscovering_UnitTest is fully
342 constructed, and initialised.
344 static CRegistryData_GetImplInfoWhileDiscovering_UnitTest* NewL(CDataLogger& aDataLogger,
345 MUnitTestObserver& aObserver);
348 @fn RunError(TInt aError)
349 Intended Usage : Intercept the panic caused by a RunL leave,
350 to restore the CRegistryData_ConstructIndex_UnitTest
351 object to a sensible state.
352 (called by the Active Scheduler immediately before the Panic).
353 Error Condition : @see CUnitTest::RunError().
355 @return TInt KErrNone if cleanup successful, otherwise
356 @see CUnitTest::RunError()
357 @pre CRegistryData_GetImplInfoWhileDiscovering_UnitTest is fully
358 constructed, and initialised.
359 @post The object has been restored to a sensible state.
361 inline TInt RunError(TInt aError);
364 @fn ~CRegistryData_GetImplInfoWhileDiscovering_UnitTest()
365 Intended Usage : Standard Destructor.
366 Error Condition : None.
368 @pre CRegistryData_GetImplInfoWhileDiscovering_UnitTest is fully constructed.
369 @post CRegistryData_GetImplInfoWhileDiscovering_UnitTest is fully destroyed.
371 ~CRegistryData_GetImplInfoWhileDiscovering_UnitTest();
375 @fn CRegistryData_GetImplInfoWhileDiscovering_UnitTest(CDataLogger& aDataLogger,
376 MUnitTestObserver& aObserver)
377 Intended Usage : Default constructor.
378 Error Condition : None.
380 @param aDataLogger The output logging object.
381 @param aObserver The observer of this UnitTest.
382 @param aStateAccessor WhiteBox state access to the CRegistryData class.
384 @post CRegistryData_GetImplInfoWhileDiscovering_UnitTest is fully constructed.
386 inline CRegistryData_GetImplInfoWhileDiscovering_UnitTest(CDataLogger& aDataLogger,
387 MUnitTestObserver& aObserver);
390 @fn void ConstructL()
391 Intended Usage : Second phase of safe two phase construction,
392 to complete the object initialisation.
393 Error Condition : Leaves with an error code.
394 @leave KErrNoMemory, and @see CUnitTest::BaseNewL().
397 @pre CRegistryData_GetImplInfoWhileDiscovering_UnitTest is fully constructed.
398 @post CRegistryData_GetImplInfoWhileDiscovering_UnitTest is fully initialised.
403 The context of the Unit Test.
404 i.e The CRegistryData class tested by this UnitTest's transitions.
406 CRegistryData_UnitTestContext* iUTContext;
407 TRegistryData_StateAccessor* iStateAccessor;
409 // C'tor, d'tor, and method transition validators
410 TRegistryData_Ctor_TransitionValidator* iCtorValidator;
411 TRegistryData_GetImplementationInformation_TransitionValidator* iGetImplInfoValidator;
412 TRegistryData_DiscoveriesBeginning_TransitionValidator* iDiscoveriesBeginningValidator;
413 TRegistryData_GetSecondImplInfo_TransitionValidator* iGetSecondImplInfoValidator;
414 TRegistryData_Dtor_TransitionValidator* iDtorValidator;
416 }; // CRegistryData_GetImplInfoWhileDiscovering_UnitTest
418 #include "RegistryDataUnitTests.inl"
420 #endif // __REGISTRYDATAUNITTESTS_H__