os/ossrv/lowlevellibsandfws/pluginfw/Framework/RegistryDataTest/RegistryDataUnitTests.h
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/ossrv/lowlevellibsandfws/pluginfw/Framework/RegistryDataTest/RegistryDataUnitTests.h Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,420 @@
1.4 +// Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
1.5 +// All rights reserved.
1.6 +// This component and the accompanying materials are made available
1.7 +// under the terms of "Eclipse Public License v1.0"
1.8 +// which accompanies this distribution, and is available
1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.10 +//
1.11 +// Initial Contributors:
1.12 +// Nokia Corporation - initial contribution.
1.13 +//
1.14 +// Contributors:
1.15 +//
1.16 +// Description:
1.17 +// The definition of the unit stet classes for the CRegistryData testing.
1.18 +//
1.19 +//
1.20 +
1.21 +#ifndef __REGISTRYDATAUNITTESTS_H__
1.22 +#define __REGISTRTDATAUNITTESTS_H__
1.23 +
1.24 +#include "RegistryDataTransitionValidation.h"
1.25 +
1.26 +// ______________________________________________________________________________
1.27 +//
1.28 +/**
1.29 + @internalComponent
1.30 +
1.31 + Comments : Unit Test for CreateAndDestroy on CRegistryData, the class under test.
1.32 + */
1.33 +class CRegistryData_CreateAndDestroy_UnitTest : public CUnitTest
1.34 + {
1.35 +public:
1.36 + /**
1.37 + @fn NewL(CDataLogger& aDataLogger,
1.38 + MUnitTestObserver& aObserver)
1.39 + Intended Usage : Standard two-phase construction which leaves nothing on the
1.40 + cleanup stack.
1.41 + Error Condition : Leaves with the error code.
1.42 + @leave KErrNoMemory
1.43 + @since 7.0
1.44 + @param aDataLogger The output logging object.
1.45 + @param aObserver The observer of this UnitTest.
1.46 + @return CRegistryData_CreateAndDestroy_UnitTest* The constructed object.
1.47 + @pre None.
1.48 + @post CRegistryData_CreateAndDestroy_UnitTest is fully constructed, and initialised.
1.49 + */
1.50 + static CRegistryData_CreateAndDestroy_UnitTest* NewL(CDataLogger& aDataLogger,
1.51 + MUnitTestObserver& aObserver);
1.52 +
1.53 + /**
1.54 + @fn RunError(TInt aError)
1.55 + Intended Usage : Intercept the panic caused by a RunL leave,
1.56 + to restore the CRegistryData_CreateAndDestroy_UnitTest
1.57 + object to a sensible state.
1.58 + (called by the Active Scheduler immediately before the Panic).
1.59 + Error Condition : @see CUnitTest::RunError().
1.60 + @since 7.0
1.61 + @return TInt KErrNone if cleanup successful, otherwise
1.62 + @see CUnitTest::RunError()
1.63 + @pre CRegistryData_CreateAndDestroy_UnitTest is fully constructed, and initialised.
1.64 + @post The object has been restored to a sensible state.
1.65 + */
1.66 + inline TInt RunError(TInt aError);
1.67 +
1.68 + /**
1.69 + @fn ~CRegistryData_CreateAndDestroy_UnitTest()
1.70 + Intended Usage : Standard Destructor.
1.71 + Error Condition : None.
1.72 + @since 7.0
1.73 + @pre CRegistryData_CreateAndDestroy_UnitTest is fully constructed.
1.74 + @post CRegistryData_CreateAndDestroy_UnitTest is fully destroyed.
1.75 + */
1.76 + ~CRegistryData_CreateAndDestroy_UnitTest();
1.77 +
1.78 +/**
1.79 + @fn PrepareUnitTestL()
1.80 + Intended Usage : Called by test framework just before test is run to allow
1.81 + any test preparation to take place.
1.82 + Error Condition :
1.83 + @since 7.0
1.84 + @pre CRegistryData_CreateAndDestroy_UnitTest is fully constructed.
1.85 + @post This unit test is ready to run.
1.86 +*/
1.87 + void PrepareUnitTestL();
1.88 +
1.89 +private:
1.90 + /**
1.91 + @fn CRegistryData_CreateAndDestroy_UnitTest(CDataLogger& aDataLogger,
1.92 + MUnitTestObserver& aObserver)
1.93 + Intended Usage : Default constructor.
1.94 + Error Condition : None.
1.95 + @since 7.0
1.96 + @param aDataLogger The output logging object.
1.97 + @param aObserver The observer of this UnitTest.
1.98 + @param aStateAccessor WhiteBox state access to the CRegistryData class.
1.99 + @pre None.
1.100 + @post CRegistryData_CreateAndDestroy_UnitTest is fully constructed.
1.101 + */
1.102 + inline CRegistryData_CreateAndDestroy_UnitTest(CDataLogger& aDataLogger,
1.103 + MUnitTestObserver& aObserver);
1.104 +
1.105 + /**
1.106 + @fn void ConstructL()
1.107 + Intended Usage : Second phase of safe two phase construction,
1.108 + to complete the object initialisation.
1.109 + Error Condition : Leaves with an error code.
1.110 + @leave KErrNoMemory, and @see CUnitTest::BaseNewL().
1.111 + @since 7.0
1.112 + @return None
1.113 + @pre CRegistryData_CreateAndDestroy_UnitTest is fully constructed.
1.114 + @post CRegistryData_CreateAndDestroy_UnitTest is fully initialised.
1.115 + */
1.116 + inline void ConstructL();
1.117 +
1.118 + /**
1.119 + The context of the Unit Test.
1.120 + i.e The CRegistryData class tested by this UnitTest's transitions.
1.121 + */
1.122 + CRegistryData_UnitTestContext* iUTContext;
1.123 + TRegistryData_Ctor_TransitionValidator* iCtorValidator;
1.124 + TRegistryData_Dtor_TransitionValidator* iDtorValidator;
1.125 + TRegistryData_StateAccessor* iStateAccessor;
1.126 + }; // CRegistryData_CreateAndDestroy_UnitTest
1.127 +
1.128 +// ______________________________________________________________________________
1.129 +//
1.130 +/**
1.131 + @internalComponent
1.132 +
1.133 + Comments : Unit Test for AddData on CRegistryData, the class under test.
1.134 + */
1.135 +class CRegistryData_AddData_UnitTest : public CUnitTest
1.136 + {
1.137 +public:
1.138 + /**
1.139 + @fn NewL(CDataLogger& aDataLogger,
1.140 + MUnitTestObserver& aObserver)
1.141 + Intended Usage : Standard two-phase construction which leaves nothing on the
1.142 + cleanup stack.
1.143 + Error Condition : Leaves with the error code.
1.144 + @leave KErrNoMemory
1.145 + @since 7.0
1.146 + @param aDataLogger The output logging object.
1.147 + @param aObserver The observer of this UnitTest.
1.148 + @return CRegistryData_AddData_UnitTest* The constructed object.
1.149 + @pre None.
1.150 + @post CRegistryData_AddData_UnitTest is fully constructed, and initialised.
1.151 + */
1.152 + static CRegistryData_AddData_UnitTest* NewL(CDataLogger& aDataLogger,
1.153 + MUnitTestObserver& aObserver);
1.154 +
1.155 + /**
1.156 + @fn RunError(TInt aError)
1.157 + Intended Usage : Intercept the panic caused by a RunL leave,
1.158 + to restore the CRegistryData_AddData_UnitTest
1.159 + object to a sensible state.
1.160 + (called by the Active Scheduler immediately before the Panic).
1.161 + Error Condition : @see CUnitTest::RunError().
1.162 + @since 7.0
1.163 + @return TInt KErrNone if cleanup successful, otherwise
1.164 + @see CUnitTest::RunError()
1.165 + @pre CRegistryData_AddData_UnitTest is fully constructed, and initialised.
1.166 + @post The object has been restored to a sensible state.
1.167 + */
1.168 + inline TInt RunError(TInt aError);
1.169 +
1.170 + /**
1.171 + @fn ~CRegistryData_AddData_UnitTest()
1.172 + Intended Usage : Standard Destructor.
1.173 + Error Condition : None.
1.174 + @since 7.0
1.175 + @pre CRegistryData_AddData_UnitTest is fully constructed.
1.176 + @post CRegistryData_AddData_UnitTest is fully destroyed.
1.177 + */
1.178 + ~CRegistryData_AddData_UnitTest();
1.179 +
1.180 +private:
1.181 + /**
1.182 + @fn CRegistryData_AddData_UnitTest(CDataLogger& aDataLogger,
1.183 + MUnitTestObserver& aObserver)
1.184 + Intended Usage : Default constructor.
1.185 + Error Condition : None.
1.186 + @since 7.0
1.187 + @param aDataLogger The output logging object.
1.188 + @param aObserver The observer of this UnitTest.
1.189 + @param aStateAccessor WhiteBox state access to the CRegistryData class.
1.190 + @pre None.
1.191 + @post CRegistryData_AddData_UnitTest is fully constructed.
1.192 + */
1.193 + inline CRegistryData_AddData_UnitTest(CDataLogger& aDataLogger,
1.194 + MUnitTestObserver& aObserver);
1.195 +
1.196 + /**
1.197 + @fn void ConstructL()
1.198 + Intended Usage : Second phase of safe two phase construction,
1.199 + to complete the object initialisation.
1.200 + Error Condition : Leaves with an error code.
1.201 + @leave KErrNoMemory, and @see CUnitTest::BaseNewL().
1.202 + @since 7.0
1.203 + @return None
1.204 + @pre CRegistryData_AddData_UnitTest is fully constructed.
1.205 + @post CRegistryData_AddData_UnitTest is fully initialised.
1.206 + */
1.207 + void ConstructL();
1.208 +
1.209 + /**
1.210 + The context of the Unit Test.
1.211 + i.e The CRegistryData class tested by this UnitTest's transitions.
1.212 + */
1.213 + CRegistryData_UnitTestContext* iUTContext;
1.214 + TRegistryData_StateAccessor* iStateAccessor;
1.215 +
1.216 + TRegistryData_Ctor_TransitionValidator* iCtorValidator;
1.217 + TRegistryData_SetPolicyObserver_TransitionValidator* iSetObserverValidator;
1.218 + TRegistryData_UndoTemporaryUninstall_TransitionValidator* iUndoTemporaryUninstallValidator;
1.219 + TRegistryData_AddDllDataL_TransitionValidator* iAddDllDataValidator;
1.220 + TRegistryData_IsRegisteredWithDate_TransitionValidator* iIsRegisteredValidator;
1.221 + TRegistryData_UpdateDllData_TransitionValidator* iUpdateDllDataValidator;
1.222 + TRegistryData_TemporaryUninstall_TransitionValidator* iTemporaryUninstallValidator;
1.223 + TRegistryData_PersistNow_TransitionValidator* iPersistNowValidator;
1.224 + TRegistryData_Dtor_TransitionValidator* iDtorValidator;
1.225 + }; // CRegistryData_AddData_UnitTest
1.226 +
1.227 +// ______________________________________________________________________________
1.228 +//
1.229 +/**
1.230 + @internalComponent
1.231 +
1.232 + Comments : Unit Test for RetrieveInfo on CRegistryData, the class under test.
1.233 + */
1.234 +class CRegistryData_RetrieveInfo_UnitTest : public CUnitTest
1.235 + {
1.236 +public:
1.237 + /**
1.238 + @fn NewL(CDataLogger& aDataLogger,
1.239 + MUnitTestObserver& aObserver)
1.240 + Intended Usage : Standard two-phase construction which leaves nothing on the
1.241 + cleanup stack.
1.242 + Error Condition : Leaves with the error code.
1.243 + @leave KErrNoMemory
1.244 + @since 7.0
1.245 + @param aDataLogger The output logging object.
1.246 + @param aObserver The observer of this UnitTest.
1.247 + @return CRegistryData_RetrieveInfo_UnitTest* The constructed object.
1.248 + @pre None.
1.249 + @post CRegistryData_RetrieveInfo_UnitTest is fully constructed, and initialised.
1.250 + */
1.251 + static CRegistryData_RetrieveInfo_UnitTest* NewL(CDataLogger& aDataLogger,
1.252 + MUnitTestObserver& aObserver);
1.253 +
1.254 + /**
1.255 + @fn RunError(TInt aError)
1.256 + Intended Usage : Intercept the panic caused by a RunL leave,
1.257 + to restore the CRegistryData_RetrieveInfo_UnitTest
1.258 + object to a sensible state.
1.259 + (called by the Active Scheduler immediately before the Panic).
1.260 + Error Condition : @see CUnitTest::RunError().
1.261 + @since 7.0
1.262 + @return TInt KErrNone if cleanup successful, otherwise
1.263 + @see CUnitTest::RunError()
1.264 + @pre CRegistryData_RetrieveInfo_UnitTest is fully constructed, and initialised.
1.265 + @post The object has been restored to a sensible state.
1.266 + */
1.267 + inline TInt RunError(TInt aError);
1.268 +
1.269 + /**
1.270 + @fn ~CRegistryData_RetrieveInfo_UnitTest()
1.271 + Intended Usage : Standard Destructor.
1.272 + Error Condition : None.
1.273 + @since 7.0
1.274 + @pre CRegistryData_RetrieveInfo_UnitTest is fully constructed.
1.275 + @post CRegistryData_RetrieveInfo_UnitTest is fully destroyed.
1.276 + */
1.277 + ~CRegistryData_RetrieveInfo_UnitTest();
1.278 +
1.279 +private:
1.280 + /**
1.281 + @fn CRegistryData_RetrieveInfo_UnitTest(CDataLogger& aDataLogger,
1.282 + MUnitTestObserver& aObserver)
1.283 + Intended Usage : Default constructor.
1.284 + Error Condition : None.
1.285 + @since 7.0
1.286 + @param aDataLogger The output logging object.
1.287 + @param aObserver The observer of this UnitTest.
1.288 + @param aStateAccessor WhiteBox state access to the CRegistryData class.
1.289 + @pre None.
1.290 + @post CRegistryData_RetrieveInfo_UnitTest is fully constructed.
1.291 + */
1.292 + inline CRegistryData_RetrieveInfo_UnitTest(CDataLogger& aDataLogger,
1.293 + MUnitTestObserver& aObserver);
1.294 +
1.295 + /**
1.296 + @fn void ConstructL()
1.297 + Intended Usage : Second phase of safe two phase construction,
1.298 + to complete the object initialisation.
1.299 + Error Condition : Leaves with an error code.
1.300 + @leave KErrNoMemory, and @see CUnitTest::BaseNewL().
1.301 + @since 7.0
1.302 + @return None
1.303 + @pre CRegistryData_RetrieveInfo_UnitTest is fully constructed.
1.304 + @post CRegistryData_RetrieveInfo_UnitTest is fully initialised.
1.305 + */
1.306 + void ConstructL();
1.307 +
1.308 + /**
1.309 + The context of the Unit Test.
1.310 + i.e The CRegistryData class tested by this UnitTest's transitions.
1.311 + */
1.312 + CRegistryData_UnitTestContext* iUTContext;
1.313 + TRegistryData_StateAccessor* iStateAccessor;
1.314 +
1.315 + // C'tor, d'tor, and default transition validators
1.316 + TRegistryData_Ctor_TransitionValidator* iCtorValidator;
1.317 + TRegistryData_ListImplementations_TransitionValidator* iListImplementationsValidator;
1.318 + TRegistryData_GetImplementationInformation_TransitionValidator* iGetImplementationInformationValidator;
1.319 + TRegistryData_Dtor_TransitionValidator* iDtorValidator;
1.320 + }; // CRegistryData_RetrieveInfo_UnitTest
1.321 +
1.322 +// ______________________________________________________________________________
1.323 +//
1.324 +/**
1.325 + @internalComponent
1.326 +
1.327 + Comments : Unit Test for ConstructIndex on CRegistryData, the class under test.
1.328 + */
1.329 +class CRegistryData_GetImplInfoWhileDiscovering_UnitTest : public CUnitTest
1.330 + {
1.331 +public:
1.332 + /**
1.333 + @fn NewL(CDataLogger& aDataLogger, MUnitTestObserver& aObserver)
1.334 + Intended Usage : Standard two-phase construction which leaves nothing on the
1.335 + cleanup stack.
1.336 + Error Condition : Leaves with the error code.
1.337 + @leave KErrNoMemory
1.338 + @since 7.0
1.339 + @param aDataLogger The output logging object.
1.340 + @param aObserver The observer of this UnitTest.
1.341 + @return CRegistryData_GetImplInfoWhileDiscovering_UnitTest* The
1.342 + constructed object.
1.343 + @pre None.
1.344 + @post CRegistryData_GetImplInfoWhileDiscovering_UnitTest is fully
1.345 + constructed, and initialised.
1.346 + */
1.347 + static CRegistryData_GetImplInfoWhileDiscovering_UnitTest* NewL(CDataLogger& aDataLogger,
1.348 + MUnitTestObserver& aObserver);
1.349 +
1.350 + /**
1.351 + @fn RunError(TInt aError)
1.352 + Intended Usage : Intercept the panic caused by a RunL leave,
1.353 + to restore the CRegistryData_ConstructIndex_UnitTest
1.354 + object to a sensible state.
1.355 + (called by the Active Scheduler immediately before the Panic).
1.356 + Error Condition : @see CUnitTest::RunError().
1.357 + @since 7.0
1.358 + @return TInt KErrNone if cleanup successful, otherwise
1.359 + @see CUnitTest::RunError()
1.360 + @pre CRegistryData_GetImplInfoWhileDiscovering_UnitTest is fully
1.361 + constructed, and initialised.
1.362 + @post The object has been restored to a sensible state.
1.363 + */
1.364 + inline TInt RunError(TInt aError);
1.365 +
1.366 + /**
1.367 + @fn ~CRegistryData_GetImplInfoWhileDiscovering_UnitTest()
1.368 + Intended Usage : Standard Destructor.
1.369 + Error Condition : None.
1.370 + @since 7.0
1.371 + @pre CRegistryData_GetImplInfoWhileDiscovering_UnitTest is fully constructed.
1.372 + @post CRegistryData_GetImplInfoWhileDiscovering_UnitTest is fully destroyed.
1.373 + */
1.374 + ~CRegistryData_GetImplInfoWhileDiscovering_UnitTest();
1.375 +
1.376 +private:
1.377 + /**
1.378 + @fn CRegistryData_GetImplInfoWhileDiscovering_UnitTest(CDataLogger& aDataLogger,
1.379 + MUnitTestObserver& aObserver)
1.380 + Intended Usage : Default constructor.
1.381 + Error Condition : None.
1.382 + @since 7.0
1.383 + @param aDataLogger The output logging object.
1.384 + @param aObserver The observer of this UnitTest.
1.385 + @param aStateAccessor WhiteBox state access to the CRegistryData class.
1.386 + @pre None.
1.387 + @post CRegistryData_GetImplInfoWhileDiscovering_UnitTest is fully constructed.
1.388 + */
1.389 + inline CRegistryData_GetImplInfoWhileDiscovering_UnitTest(CDataLogger& aDataLogger,
1.390 + MUnitTestObserver& aObserver);
1.391 +
1.392 + /**
1.393 + @fn void ConstructL()
1.394 + Intended Usage : Second phase of safe two phase construction,
1.395 + to complete the object initialisation.
1.396 + Error Condition : Leaves with an error code.
1.397 + @leave KErrNoMemory, and @see CUnitTest::BaseNewL().
1.398 + @since 7.0
1.399 + @return None
1.400 + @pre CRegistryData_GetImplInfoWhileDiscovering_UnitTest is fully constructed.
1.401 + @post CRegistryData_GetImplInfoWhileDiscovering_UnitTest is fully initialised.
1.402 + */
1.403 + void ConstructL();
1.404 +
1.405 + /**
1.406 + The context of the Unit Test.
1.407 + i.e The CRegistryData class tested by this UnitTest's transitions.
1.408 + */
1.409 + CRegistryData_UnitTestContext* iUTContext;
1.410 + TRegistryData_StateAccessor* iStateAccessor;
1.411 +
1.412 + // C'tor, d'tor, and method transition validators
1.413 + TRegistryData_Ctor_TransitionValidator* iCtorValidator;
1.414 + TRegistryData_GetImplementationInformation_TransitionValidator* iGetImplInfoValidator;
1.415 + TRegistryData_DiscoveriesBeginning_TransitionValidator* iDiscoveriesBeginningValidator;
1.416 + TRegistryData_GetSecondImplInfo_TransitionValidator* iGetSecondImplInfoValidator;
1.417 + TRegistryData_Dtor_TransitionValidator* iDtorValidator;
1.418 +
1.419 + }; // CRegistryData_GetImplInfoWhileDiscovering_UnitTest
1.420 +
1.421 +#include "RegistryDataUnitTests.inl"
1.422 +
1.423 +#endif // __REGISTRYDATAUNITTESTS_H__