sl@0: // Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // The implementaition of the unit tests for the CRegistryData class. sl@0: // sl@0: // sl@0: sl@0: const TUid KCExampleInterfaceUid = {0x10009DC0}; sl@0: const TUid KCExampleInterfaceImp = {0x10009DC3}; sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: _LIT(KRegistryDataCreateAndDestroyUnitTest,"CRegistryData_CreateAndDestroy_UnitTest"); sl@0: sl@0: CRegistryData_CreateAndDestroy_UnitTest* CRegistryData_CreateAndDestroy_UnitTest::NewL(CDataLogger& aDataLogger, sl@0: MUnitTestObserver& aObserver) sl@0: { sl@0: CRegistryData_CreateAndDestroy_UnitTest* self = sl@0: new(ELeave) CRegistryData_CreateAndDestroy_UnitTest(aDataLogger, sl@0: aObserver); sl@0: CleanupStack::PushL(self); sl@0: self->ConstructL(); sl@0: CleanupStack::Pop(); sl@0: return self; sl@0: } sl@0: sl@0: inline TInt CRegistryData_CreateAndDestroy_UnitTest::RunError(TInt aError) sl@0: { sl@0: // The RunL left so chain to the base first and then cleanup sl@0: TInt error = CUnitTest::RunError(aError); // Chain to base sl@0: delete iUTContext; sl@0: delete iStateAccessor; sl@0: delete iCtorValidator; sl@0: delete iDtorValidator; sl@0: return error; sl@0: } sl@0: sl@0: inline CRegistryData_CreateAndDestroy_UnitTest::~CRegistryData_CreateAndDestroy_UnitTest() sl@0: { sl@0: // Simply delete our test class instance sl@0: delete iUTContext; sl@0: delete iStateAccessor; sl@0: delete iCtorValidator; sl@0: delete iDtorValidator; sl@0: } sl@0: sl@0: inline CRegistryData_CreateAndDestroy_UnitTest::CRegistryData_CreateAndDestroy_UnitTest(CDataLogger& aDataLogger, sl@0: MUnitTestObserver& aObserver) sl@0: : CUnitTest(KRegistryDataCreateAndDestroyUnitTest, aDataLogger, aObserver) sl@0: { sl@0: //Do nothing sl@0: } sl@0: sl@0: // Now the Individual transitions need to be added. sl@0: inline void CRegistryData_CreateAndDestroy_UnitTest::ConstructL() sl@0: { sl@0: // Perform the base class initialization sl@0: UnitTestConstructL(); sl@0: sl@0: // Create the Unit test state accessor sl@0: iStateAccessor = new(ELeave) TRegistryData_StateAccessor; sl@0: // Construct the Unit test context. sl@0: iUTContext = new(ELeave) CRegistryData_UnitTestContext(iDataLogger, *iStateAccessor, *this, iFs); sl@0: // and a default validator sl@0: iCtorValidator = new(ELeave) TRegistryData_Ctor_TransitionValidator(*iUTContext); sl@0: iDtorValidator = new(ELeave) TRegistryData_Dtor_TransitionValidator(*iUTContext); sl@0: // Add the Transitions in the order they are to run sl@0: // C'tor first, D'tor last... sl@0: // Examples of C'tor and D'tor transitions on CRegistryData class. sl@0: AddTransitionL(new(ELeave)CRegistryData_NewL_Transition(*iUTContext,*iCtorValidator)); sl@0: AddTransitionL(new(ELeave)CRegistryData_Dtor_Transition(*iUTContext,*iDtorValidator)); sl@0: } sl@0: sl@0: void CRegistryData_CreateAndDestroy_UnitTest::PrepareUnitTestL() sl@0: { sl@0: } sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: _LIT(KRegistryDataAddDataUnitTest,"CRegistryData_AddData_UnitTest"); sl@0: sl@0: CRegistryData_AddData_UnitTest* CRegistryData_AddData_UnitTest::NewL(CDataLogger& aDataLogger, sl@0: MUnitTestObserver& aObserver) sl@0: { sl@0: CRegistryData_AddData_UnitTest* self = sl@0: new(ELeave) CRegistryData_AddData_UnitTest(aDataLogger, sl@0: aObserver); sl@0: CleanupStack::PushL(self); sl@0: self->ConstructL(); sl@0: CleanupStack::Pop(); sl@0: return self; sl@0: } sl@0: sl@0: inline TInt CRegistryData_AddData_UnitTest::RunError(TInt aError) sl@0: { sl@0: // The RunL left so chain to the base first and then cleanup sl@0: TInt error = CUnitTest::RunError(aError); // Chain to base sl@0: delete iUTContext; sl@0: delete iStateAccessor; sl@0: sl@0: delete iCtorValidator; sl@0: delete iSetObserverValidator; sl@0: delete iUndoTemporaryUninstallValidator; sl@0: delete iAddDllDataValidator; sl@0: delete iIsRegisteredValidator; sl@0: delete iUpdateDllDataValidator; sl@0: delete iTemporaryUninstallValidator; sl@0: delete iPersistNowValidator; sl@0: delete iDtorValidator; sl@0: sl@0: return error; sl@0: } sl@0: sl@0: inline CRegistryData_AddData_UnitTest::~CRegistryData_AddData_UnitTest() sl@0: { sl@0: // Simply delete our test class instance sl@0: delete iUTContext; sl@0: delete iStateAccessor; sl@0: sl@0: // delete any validators used sl@0: delete iCtorValidator; sl@0: delete iSetObserverValidator; sl@0: delete iUndoTemporaryUninstallValidator; sl@0: delete iAddDllDataValidator; sl@0: delete iIsRegisteredValidator; sl@0: delete iUpdateDllDataValidator; sl@0: delete iTemporaryUninstallValidator; sl@0: delete iPersistNowValidator; sl@0: sl@0: delete iDtorValidator; sl@0: } sl@0: sl@0: inline CRegistryData_AddData_UnitTest::CRegistryData_AddData_UnitTest(CDataLogger& aDataLogger, sl@0: MUnitTestObserver& aObserver) sl@0: : CUnitTest(KRegistryDataAddDataUnitTest, aDataLogger, aObserver) sl@0: { sl@0: //Do nothing sl@0: } sl@0: sl@0: // Now the Individual transitions need to be added. sl@0: inline void CRegistryData_AddData_UnitTest::ConstructL() sl@0: { sl@0: // Perform the base class initialization sl@0: UnitTestConstructL(); sl@0: sl@0: // Create the Unit test state accessor sl@0: iStateAccessor = new(ELeave) TRegistryData_StateAccessor; sl@0: sl@0: // Construct the Unit test context. sl@0: iUTContext = new(ELeave) CRegistryData_UnitTestContext(iDataLogger, sl@0: *iStateAccessor, sl@0: *this, sl@0: iFs); sl@0: _LIT(KDDriveLetter, "D"); sl@0: iUTContext->iDriveUnit = KDDriveLetter; sl@0: iUTContext->iFoundDriveIndex = -1; sl@0: TUid thirdUid = {0x10009DB1}; sl@0: iUTContext->iDllEntry.iType = TUidType(KNullUid, KNullUid, thirdUid); sl@0: iUTContext->iDllData = CRegistryData::CDllData::NewLC(iUTContext->iDllEntry); sl@0: CleanupStack::Pop(iUTContext->iDllData); sl@0: iUTContext->iNewDllData = CRegistryData::CDllData::NewLC(iUTContext->iDllEntry); sl@0: CleanupStack::Pop(iUTContext->iNewDllData); sl@0: sl@0: // Add the Transitions in the order they are to run sl@0: // C'tor first, D'tor last... sl@0: iCtorValidator = new(ELeave) TRegistryData_Ctor_TransitionValidator(*iUTContext); sl@0: iSetObserverValidator = new(ELeave) TRegistryData_SetPolicyObserver_TransitionValidator(*iUTContext); sl@0: iUndoTemporaryUninstallValidator = new(ELeave) TRegistryData_UndoTemporaryUninstall_TransitionValidator(*iUTContext); sl@0: iAddDllDataValidator = new(ELeave) TRegistryData_AddDllDataL_TransitionValidator(*iUTContext); sl@0: iIsRegisteredValidator = new(ELeave) TRegistryData_IsRegisteredWithDate_TransitionValidator(*iUTContext); sl@0: iUpdateDllDataValidator = new(ELeave) TRegistryData_UpdateDllData_TransitionValidator(*iUTContext); sl@0: iTemporaryUninstallValidator = new(ELeave) TRegistryData_TemporaryUninstall_TransitionValidator(*iUTContext); sl@0: iPersistNowValidator = new(ELeave) TRegistryData_PersistNow_TransitionValidator(*iUTContext); sl@0: iDtorValidator = new(ELeave) TRegistryData_Dtor_TransitionValidator(*iUTContext); sl@0: sl@0: AddTransitionL(new(ELeave)CRegistryData_NewL_Transition(*iUTContext,*iCtorValidator)); sl@0: AddTransitionL(new(ELeave)CRegistryData_UndoTemporaryUninstallL_Transition(*iUTContext,*iUndoTemporaryUninstallValidator)); sl@0: AddTransitionL(new(ELeave)CRegistryData_AddDllDataL_Transition(*iUTContext,*iAddDllDataValidator)); sl@0: AddTransitionL(new(ELeave)CRegistryData_IsRegisteredWithDateL_Transition(*iUTContext,*iIsRegisteredValidator)); sl@0: AddTransitionL(new(ELeave)CRegistryData_UpdateDllDataL_Transition(*iUTContext,*iUpdateDllDataValidator)); sl@0: AddTransitionL(new(ELeave)CRegistryData_TemporaryUninstallL_Transition(*iUTContext,*iTemporaryUninstallValidator)); sl@0: AddTransitionL(new(ELeave)CRegistryData_PersistNowL_Transition(*iUTContext,*iPersistNowValidator)); sl@0: AddTransitionL(new(ELeave)CRegistryData_Dtor_Transition(*iUTContext,*iDtorValidator)); sl@0: } sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: _LIT(KRegistryDataRetrieveInfoUnitTest,"CRegistryData_RetrieveInfo_UnitTest"); sl@0: sl@0: CRegistryData_RetrieveInfo_UnitTest* CRegistryData_RetrieveInfo_UnitTest::NewL(CDataLogger& aDataLogger, sl@0: MUnitTestObserver& aObserver) sl@0: { sl@0: CRegistryData_RetrieveInfo_UnitTest* self = sl@0: new(ELeave) CRegistryData_RetrieveInfo_UnitTest(aDataLogger, sl@0: aObserver); sl@0: CleanupStack::PushL(self); sl@0: self->ConstructL(); sl@0: CleanupStack::Pop(); sl@0: return self; sl@0: } sl@0: sl@0: inline TInt CRegistryData_RetrieveInfo_UnitTest::RunError(TInt aError) sl@0: { sl@0: // The RunL left so chain to the base first and then cleanup sl@0: TInt error = CUnitTest::RunError(aError); // Chain to base sl@0: delete iUTContext; sl@0: delete iStateAccessor; sl@0: /* delete any validators used */ sl@0: delete iCtorValidator; sl@0: delete iListImplementationsValidator; sl@0: delete iGetImplementationInformationValidator; sl@0: delete iDtorValidator; sl@0: return error; sl@0: } sl@0: sl@0: inline CRegistryData_RetrieveInfo_UnitTest::~CRegistryData_RetrieveInfo_UnitTest() sl@0: { sl@0: // Simply delete our test class instance sl@0: delete iUTContext; sl@0: delete iStateAccessor; sl@0: sl@0: delete iCtorValidator; sl@0: delete iListImplementationsValidator; sl@0: delete iGetImplementationInformationValidator; sl@0: delete iDtorValidator; sl@0: } sl@0: sl@0: inline CRegistryData_RetrieveInfo_UnitTest::CRegistryData_RetrieveInfo_UnitTest(CDataLogger& aDataLogger, sl@0: MUnitTestObserver& aObserver) sl@0: : CUnitTest(KRegistryDataRetrieveInfoUnitTest, aDataLogger, aObserver) sl@0: { sl@0: //Do nothing sl@0: } sl@0: sl@0: // Now the Individual transitions need to be added. sl@0: inline void CRegistryData_RetrieveInfo_UnitTest::ConstructL() sl@0: { sl@0: // Perform the base class initialization sl@0: UnitTestConstructL(); sl@0: sl@0: // Create the Unit test state accessor sl@0: iStateAccessor = new(ELeave) TRegistryData_StateAccessor; sl@0: sl@0: // Construct the Unit test context. sl@0: iUTContext = new(ELeave) CRegistryData_UnitTestContext(iDataLogger, sl@0: *iStateAccessor, sl@0: *this, sl@0: iFs); sl@0: iUTContext->iInterfaceUid.iUid = KCExampleInterfaceUid.iUid; sl@0: iUTContext->iImplementationUid.iUid = KCExampleInterfaceImp.iUid; sl@0: sl@0: // Add the Transitions in the order they are to run sl@0: iCtorValidator = new(ELeave) TRegistryData_Ctor_TransitionValidator(*iUTContext); sl@0: iListImplementationsValidator = new(ELeave) TRegistryData_ListImplementations_TransitionValidator(*iUTContext); sl@0: iGetImplementationInformationValidator = new(ELeave) TRegistryData_GetImplementationInformation_TransitionValidator(*iUTContext); sl@0: iDtorValidator = new(ELeave) TRegistryData_Dtor_TransitionValidator(*iUTContext); sl@0: sl@0: AddTransitionL(new(ELeave)CRegistryData_NewL_Transition(*iUTContext,*iCtorValidator)); sl@0: AddTransitionL(new(ELeave)CRegistryData_ListImplementationsL_Transition(*iUTContext, sl@0: *iListImplementationsValidator)); sl@0: AddTransitionL(new(ELeave)CRegistryData_GetImplementationInformationL_Transition(*iUTContext, sl@0: *iGetImplementationInformationValidator)); sl@0: AddTransitionL(new(ELeave)CRegistryData_Dtor_Transition(*iUTContext,*iDtorValidator)); sl@0: sl@0: // Add the permissible error codes for failures sl@0: AddLeaveErrorCodeL(KEComErrNoInterfaceIdentified); sl@0: } sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: _LIT(KRegistryDataInfoWhileDiscoveringUnitTest,"CRegistryData_GetImplInfoWhileDiscovering_UnitTest"); sl@0: sl@0: CRegistryData_GetImplInfoWhileDiscovering_UnitTest* sl@0: CRegistryData_GetImplInfoWhileDiscovering_UnitTest::NewL(CDataLogger& aDataLogger, sl@0: MUnitTestObserver& aObserver) sl@0: { sl@0: CRegistryData_GetImplInfoWhileDiscovering_UnitTest* self = sl@0: new(ELeave) CRegistryData_GetImplInfoWhileDiscovering_UnitTest(aDataLogger, sl@0: aObserver); sl@0: CleanupStack::PushL(self); sl@0: self->ConstructL(); sl@0: CleanupStack::Pop(self); sl@0: return self; sl@0: } sl@0: sl@0: inline TInt CRegistryData_GetImplInfoWhileDiscovering_UnitTest::RunError(TInt aError) sl@0: { sl@0: // The RunL left so chain to the base first and then cleanup sl@0: TInt error = CUnitTest::RunError(aError); // Chain to base sl@0: delete iUTContext; sl@0: delete iStateAccessor; sl@0: // delete any validators used sl@0: delete iCtorValidator; sl@0: delete iGetImplInfoValidator; sl@0: delete iDiscoveriesBeginningValidator; sl@0: delete iGetSecondImplInfoValidator; sl@0: delete iDtorValidator; sl@0: sl@0: return error; sl@0: } sl@0: sl@0: inline CRegistryData_GetImplInfoWhileDiscovering_UnitTest::~CRegistryData_GetImplInfoWhileDiscovering_UnitTest() sl@0: { sl@0: // Simply delete our test class instance sl@0: delete iUTContext; sl@0: delete iStateAccessor; sl@0: sl@0: // delete any validators used sl@0: delete iCtorValidator; sl@0: delete iGetImplInfoValidator; sl@0: delete iDiscoveriesBeginningValidator; sl@0: delete iGetSecondImplInfoValidator; sl@0: delete iDtorValidator; sl@0: } sl@0: sl@0: inline CRegistryData_GetImplInfoWhileDiscovering_UnitTest:: sl@0: CRegistryData_GetImplInfoWhileDiscovering_UnitTest(CDataLogger& aDataLogger, sl@0: MUnitTestObserver& aObserver) sl@0: : CUnitTest(KRegistryDataInfoWhileDiscoveringUnitTest, aDataLogger, aObserver) sl@0: { sl@0: //Do nothing sl@0: } sl@0: sl@0: // Now the Individual transitions need to be added. sl@0: inline void CRegistryData_GetImplInfoWhileDiscovering_UnitTest::ConstructL() sl@0: { sl@0: // Perform the base class initialization sl@0: UnitTestConstructL(); sl@0: sl@0: // Create the Unit test state accessor sl@0: iStateAccessor = new(ELeave) TRegistryData_StateAccessor; sl@0: sl@0: // Construct the Unit test context. sl@0: iUTContext = new(ELeave) CRegistryData_UnitTestContext(iDataLogger, sl@0: *iStateAccessor, sl@0: *this, sl@0: iFs); sl@0: sl@0: iUTContext->iInterfaceUid.iUid = KCExampleInterfaceUid.iUid; sl@0: iUTContext->iImplementationUid.iUid = KCExampleInterfaceImp.iUid; sl@0: sl@0: // Add the Transitions in the order they are to run sl@0: // C'tor first, D'tor last... sl@0: iCtorValidator = new(ELeave) TRegistryData_Ctor_TransitionValidator(*iUTContext); sl@0: iGetImplInfoValidator = new(ELeave) TRegistryData_GetImplementationInformation_TransitionValidator(*iUTContext); sl@0: iDiscoveriesBeginningValidator = new(ELeave) TRegistryData_DiscoveriesBeginning_TransitionValidator(*iUTContext); sl@0: iGetSecondImplInfoValidator = new(ELeave) TRegistryData_GetSecondImplInfo_TransitionValidator(*iUTContext); sl@0: iDtorValidator = new(ELeave) TRegistryData_Dtor_TransitionValidator(*iUTContext); sl@0: sl@0: AddTransitionL(new(ELeave)CRegistryData_NewL_Transition(*iUTContext,*iCtorValidator)); sl@0: AddTransitionL(new(ELeave)CRegistryData_GetImplementationInformationL_Transition(*iUTContext,*iGetImplInfoValidator)); sl@0: AddTransitionL(new(ELeave)CRegistryData_DiscoveriesBeginning_Transition(*iUTContext,*iDiscoveriesBeginningValidator)); sl@0: AddTransitionL(new(ELeave)CRegistryData_GetImplementationInformationL_Transition(*iUTContext,*iGetSecondImplInfoValidator)); sl@0: AddTransitionL(new(ELeave)CRegistryData_Dtor_Transition(*iUTContext,*iDtorValidator)); sl@0: } sl@0: