os/ossrv/lowlevellibsandfws/pluginfw/Framework/ResolverTest/ResolverUnitTests.inl
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/ossrv/lowlevellibsandfws/pluginfw/Framework/ResolverTest/ResolverUnitTests.inl	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,234 @@
     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 implementation of the CResolver unit test classes.
    1.18 +// 
    1.19 +//
    1.20 +
    1.21 +#include "ResolverStateAccessor.h"
    1.22 +
    1.23 +const TUid KCExampleInterfaceUid			= {0x10009DC0};
    1.24 +const TUid KCExampleInterfaceImp			= {0x10009DC1};
    1.25 +
    1.26 +// ______________________________________________________________________________
    1.27 +//
    1.28 +_LIT(KDefaultResolverCreateAndDestroyUnitTest,"CDefaultResolver_CreateAndDestroy_UnitTest");
    1.29 +
    1.30 +CDefaultResolver_CreateAndDestroy_UnitTest* CDefaultResolver_CreateAndDestroy_UnitTest::NewL(CDataLogger& aDataLogger,
    1.31 +											MUnitTestObserver& aObserver)
    1.32 +	{
    1.33 +	CDefaultResolver_CreateAndDestroy_UnitTest* self = 
    1.34 +					new(ELeave) CDefaultResolver_CreateAndDestroy_UnitTest(aDataLogger,
    1.35 +																aObserver);
    1.36 +	CleanupStack::PushL(self);
    1.37 +	self->ConstructL();
    1.38 +	CleanupStack::Pop();
    1.39 +	return self; 
    1.40 +	}
    1.41 +
    1.42 +inline TInt CDefaultResolver_CreateAndDestroy_UnitTest::RunError(TInt aError)
    1.43 +	{
    1.44 +	// The RunL left so chain to the base first and then cleanup
    1.45 +	TInt error = CUnitTest::RunError(aError);	// Chain to base
    1.46 +	delete iUTContext;
    1.47 +	iUTContext = NULL;
    1.48 +	delete iStateAccessor;
    1.49 +	iStateAccessor = NULL;
    1.50 +	/* delete any validators used */
    1.51 +	delete iCtorValidator;
    1.52 +	iCtorValidator = NULL;
    1.53 +	delete iDtorValidator;
    1.54 +	iDtorValidator = NULL;
    1.55 +	return error;
    1.56 +	}
    1.57 +
    1.58 +inline CDefaultResolver_CreateAndDestroy_UnitTest::~CDefaultResolver_CreateAndDestroy_UnitTest()
    1.59 +	{
    1.60 +	// Simply delete our test class instance
    1.61 +	delete iUTContext;
    1.62 +	delete iStateAccessor;
    1.63 +
    1.64 +	// delete any validators used
    1.65 +	delete iCtorValidator;
    1.66 +	delete iDtorValidator;
    1.67 +	}
    1.68 +
    1.69 +inline CDefaultResolver_CreateAndDestroy_UnitTest::CDefaultResolver_CreateAndDestroy_UnitTest(CDataLogger& aDataLogger,
    1.70 +																	MUnitTestObserver& aObserver)
    1.71 +: CUnitTest(KDefaultResolverCreateAndDestroyUnitTest, aDataLogger, aObserver)
    1.72 +	{
    1.73 +	//Do nothing
    1.74 +	}
    1.75 +
    1.76 +// Now the Individual transitions need to be added.
    1.77 +inline void CDefaultResolver_CreateAndDestroy_UnitTest::ConstructL()
    1.78 +	{
    1.79 +	// Perform the base class initialization
    1.80 +	UnitTestConstructL();
    1.81 +
    1.82 +	// Create the Unit test state accessor
    1.83 +	iStateAccessor = new(ELeave) TDefaultResolver_StateAccessor;
    1.84 +	// Construct the Unit test context.
    1.85 +	iUTContext = new(ELeave) CDefaultResolver_UnitTestContext(iDataLogger, 
    1.86 +															  *iStateAccessor, 
    1.87 +															  *this);
    1.88 +
    1.89 +	User::LeaveIfError(iUTContext->iFs.Connect());
    1.90 +
    1.91 +	// Add the Transitions in the order they are to run
    1.92 +	// C'tor first, D'tor last...
    1.93 +	iCtorValidator = new(ELeave) TDefaultResolver_Ctor_TransitionValidator(*iUTContext);
    1.94 +	iDtorValidator = new(ELeave) TDefaultResolver_Dtor_TransitionValidator(*iUTContext);
    1.95 +
    1.96 +	AddTransitionL(new(ELeave)CDefaultResolver_NewL_Transition(*iUTContext,*iCtorValidator));
    1.97 +	AddTransitionL(new(ELeave)CDefaultResolver_Dtor_Transition(*iUTContext,*iDtorValidator));
    1.98 +	}
    1.99 +
   1.100 +void CDefaultResolver_CreateAndDestroy_UnitTest::PrepareUnitTestL()
   1.101 +	{
   1.102 +	iUTContext->iRegistry = CRegistryData::NewL(iUTContext->iFs);
   1.103 +	}
   1.104 +
   1.105 +// ______________________________________________________________________________
   1.106 +//
   1.107 +_LIT(KDefaultResolverIdentifyImplementationUnitTest,"CDefaultResolver_IdentifyImplementation_UnitTest");
   1.108 +
   1.109 +CDefaultResolver_IdentifyImplementation_UnitTest* CDefaultResolver_IdentifyImplementation_UnitTest::NewL(CDataLogger& aDataLogger,
   1.110 +											MUnitTestObserver& aObserver)
   1.111 +	{
   1.112 +	CDefaultResolver_IdentifyImplementation_UnitTest* self = 
   1.113 +					new(ELeave) CDefaultResolver_IdentifyImplementation_UnitTest(aDataLogger,
   1.114 +																aObserver);
   1.115 +	CleanupStack::PushL(self);
   1.116 +	self->ConstructL();
   1.117 +	CleanupStack::Pop();
   1.118 +	return self; 
   1.119 +	}
   1.120 +
   1.121 +inline TInt CDefaultResolver_IdentifyImplementation_UnitTest::RunError(TInt aError)
   1.122 +	{
   1.123 +	// The RunL left so chain to the base first and then cleanup
   1.124 +	TInt error = CUnitTest::RunError(aError);	// Chain to base
   1.125 +
   1.126 +	// Delete all the iImplementationData (which we created)
   1.127 +	while(iUTContext->iImplementationData.Count())
   1.128 +		{
   1.129 +		CImplementationInformation* impInfo = iUTContext->iImplementationData[0];
   1.130 +		iUTContext->iImplementationData.Remove(0);
   1.131 +		delete impInfo;
   1.132 +		}
   1.133 +
   1.134 +	delete iUTContext;
   1.135 +	delete iStateAccessor;
   1.136 +	// delete any validators used
   1.137 +	delete iCtorValidator;
   1.138 +	delete iDefaultValidator;
   1.139 +	delete iMatchValidator;
   1.140 +	delete iIdentifyImplementationValidator;
   1.141 +	delete iDtorValidator;
   1.142 +
   1.143 +	return error;
   1.144 +	}
   1.145 +
   1.146 +inline CDefaultResolver_IdentifyImplementation_UnitTest::~CDefaultResolver_IdentifyImplementation_UnitTest()
   1.147 +	{
   1.148 +	if(iUTContext)
   1.149 +		{
   1.150 +		// Delete all the iImplementationData (which we created)
   1.151 +		while(iUTContext->iImplementationData.Count())
   1.152 +			{
   1.153 +			CImplementationInformation* impInfo = iUTContext->iImplementationData[0];
   1.154 +			iUTContext->iImplementationData.Remove(0);
   1.155 +			delete impInfo;
   1.156 +			}
   1.157 +		delete iUTContext;
   1.158 +		}
   1.159 +
   1.160 +	delete iStateAccessor;
   1.161 +	// delete any validators used
   1.162 +	delete iCtorValidator;
   1.163 +	delete iDefaultValidator;
   1.164 +	delete iMatchValidator;
   1.165 +	delete iIdentifyImplementationValidator;
   1.166 +	delete iDtorValidator;
   1.167 +	}
   1.168 +
   1.169 +inline CDefaultResolver_IdentifyImplementation_UnitTest::CDefaultResolver_IdentifyImplementation_UnitTest(CDataLogger& aDataLogger,
   1.170 +																	MUnitTestObserver& aObserver)
   1.171 +: CUnitTest(KDefaultResolverIdentifyImplementationUnitTest, aDataLogger, aObserver)
   1.172 +	{
   1.173 +	//Do nothing
   1.174 +	}
   1.175 +
   1.176 +// Now the Individual transitions need to be added.
   1.177 +inline void CDefaultResolver_IdentifyImplementation_UnitTest::ConstructL()
   1.178 +	{
   1.179 +	// Perform the base class initialization
   1.180 +	UnitTestConstructL();
   1.181 +
   1.182 +	// Create the Unit test state accessor
   1.183 +	iStateAccessor = new(ELeave) TDefaultResolver_StateAccessor;
   1.184 +
   1.185 +	// Construct the Unit test context.
   1.186 +	iUTContext = new(ELeave) CDefaultResolver_UnitTestContext(iDataLogger, *iStateAccessor, *this);
   1.187 +	User::LeaveIfError(iUTContext->iFs.Connect());
   1.188 +	iUTContext->iRegistry = CRegistryData::NewL(iUTContext->iFs);
   1.189 +
   1.190 +	// Set up the match type and implementation type for use in the Match transition
   1.191 +	_LIT8(KResolveImplementationType, "DataType2||DataType1");
   1.192 +	_LIT8(KResolveMatchType, "DataType1");
   1.193 +
   1.194 +	iUTContext->iImplementationType = HBufC8::NewMaxL(KResolveImplementationType().Length());
   1.195 +	TPtr8 impType = iUTContext->iImplementationType->Des();
   1.196 +	impType = KResolveImplementationType;
   1.197 +
   1.198 +	iUTContext->iMatchType = HBufC8::NewMaxL(KResolveMatchType().Length());
   1.199 +	TPtr8 matchType = iUTContext->iMatchType->Des();
   1.200 +	matchType = KResolveMatchType;
   1.201 +
   1.202 +	iUTContext->iExpectedMatchResult = ETrue; // Based on iMatchType and iImplementationType
   1.203 +
   1.204 +	iUTContext->iInterfaceUid.iUid = KCExampleInterfaceUid.iUid;
   1.205 +
   1.206 +	TUid impUid;
   1.207 +	impUid.iUid = KCExampleInterfaceImp.iUid;
   1.208 +	HBufC8* implType = HBufC8::NewMaxL(KResolveImplementationType().Length());
   1.209 +	TPtr8 impPtr = implType->Des();
   1.210 +	impPtr = KResolveImplementationType;
   1.211 +	TDriveUnit drive(EDriveC);
   1.212 +	CImplementationInformation* impData = 
   1.213 +		CImplementationInformation::NewL(impUid, 0, NULL, implType, NULL, drive, EFalse, EFalse);
   1.214 +	CleanupStack::PushL(impData);
   1.215 +	User::LeaveIfError(iUTContext->iImplementationData.Append(impData));
   1.216 +	CleanupStack::Pop(impData);
   1.217 +
   1.218 +	iUTContext->iAdditionalParameters.SetDataType(*iUTContext->iMatchType);
   1.219 +
   1.220 +	// Add the Transitions in the order they are to run
   1.221 +	// C'tor first, D'tor last...
   1.222 +	iCtorValidator = new(ELeave) TDefaultResolver_Ctor_TransitionValidator(*iUTContext);
   1.223 +	iIdentifyImplementationValidator = new(ELeave) TDefaultResolver_IdentifyImplementationL_TransitionValidator(*iUTContext);
   1.224 +	iDefaultValidator = new(ELeave) TDefaultResolver_Default_TransitionValidator(*iUTContext);
   1.225 +	iMatchValidator = new(ELeave) TDefaultResolver_Match_TransitionValidator(*iUTContext);
   1.226 +	iDtorValidator = new(ELeave) TDefaultResolver_Dtor_TransitionValidator(*iUTContext);
   1.227 +
   1.228 +	AddTransitionL(new(ELeave)CDefaultResolver_NewL_Transition(*iUTContext,*iCtorValidator));
   1.229 +	AddTransitionL(new(ELeave)CDefaultResolver_Match_Transition(*iUTContext,*iMatchValidator));
   1.230 +	AddTransitionL(new(ELeave)CDefaultResolver_Resolve_Transition(*iUTContext,*iDefaultValidator));
   1.231 +	AddTransitionL(new(ELeave)CDefaultResolver_IdentifyImplementationL_Transition(*iUTContext,*iIdentifyImplementationValidator));
   1.232 +	AddTransitionL(new(ELeave)CDefaultResolver_Dtor_Transition(*iUTContext,*iDtorValidator));
   1.233 +
   1.234 +	// Add the permissible error codes for failures
   1.235 +	AddLeaveErrorCodeL(KEComErrNoInterfaceIdentified);
   1.236 +	}
   1.237 +