1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/ossrv/lowlevellibsandfws/pluginfw/Framework/ResolverTest/ResolverUnitTests.h Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,225 @@
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 CResolver unit test classes.
1.18 +//
1.19 +//
1.20 +
1.21 +#ifndef __RESOLVERUNITTESTS_H__
1.22 +#define __RESOLVERUNITTESTS_H__
1.23 +
1.24 +#include "ResolverTransitions.h"
1.25 +#include "ResolverStateAccessor.h"
1.26 +#include "ResolverTransitionValidation.h"
1.27 +
1.28 +// ______________________________________________________________________________
1.29 +//
1.30 +/**
1.31 + @internalComponent
1.32 +
1.33 + Comments : Unit Test for CreateAndDestroy on CDefaultResolver, the class under test.
1.34 + */
1.35 +class CDefaultResolver_CreateAndDestroy_UnitTest : public CUnitTest
1.36 + {
1.37 +public:
1.38 + /**
1.39 + @fn NewL(CDataLogger& aDataLogger,
1.40 + MUnitTestObserver& aObserver)
1.41 + Intended Usage : Standard two-phase construction which leaves nothing on the
1.42 + cleanup stack.
1.43 + Error Condition : Leaves with the error code.
1.44 + @leave KErrNoMemory
1.45 + @since 7.0
1.46 + @param aDataLogger The output logging object.
1.47 + @param aObserver The observer of this UnitTest.
1.48 + @return CDefaultResolver_CreateAndDestroy_UnitTest* The constructed object.
1.49 + @pre None.
1.50 + @post CDefaultResolver_CreateAndDestroy_UnitTest is fully constructed, and initialised.
1.51 + */
1.52 + static CDefaultResolver_CreateAndDestroy_UnitTest* NewL(CDataLogger& aDataLogger,
1.53 + MUnitTestObserver& aObserver);
1.54 +
1.55 + /**
1.56 + @fn RunError(TInt aError)
1.57 + Intended Usage : Intercept the panic caused by a RunL leave,
1.58 + to restore the CDefaultResolver_CreateAndDestroy_UnitTest
1.59 + object to a sensible state.
1.60 + (called by the Active Scheduler immediately before the Panic).
1.61 + Error Condition : @see CUnitTest::RunError().
1.62 + @since 7.0
1.63 + @return TInt KErrNone if cleanup successful, otherwise
1.64 + @see CUnitTest::RunError()
1.65 + @pre CDefaultResolver_CreateAndDestroy_UnitTest is fully constructed, and initialised.
1.66 + @post The object has been restored to a sensible state.
1.67 + */
1.68 + inline TInt RunError(TInt aError);
1.69 +
1.70 + /**
1.71 + @fn ~CDefaultResolver_CreateAndDestroy_UnitTest()
1.72 + Intended Usage : Standard Destructor.
1.73 + Error Condition : None.
1.74 + @since 7.0
1.75 + @pre CDefaultResolver_CreateAndDestroy_UnitTest is fully constructed.
1.76 + @post CDefaultResolver_CreateAndDestroy_UnitTest is fully destroyed.
1.77 + */
1.78 + ~CDefaultResolver_CreateAndDestroy_UnitTest();
1.79 +
1.80 +/**
1.81 + @fn PrepareUnitTestL()
1.82 + Intended Usage : Called by test framework just before test is run to allow
1.83 + any test preparation to take place.
1.84 + Error Condition :
1.85 + @since 7.0
1.86 + @pre CDefaultResolver_CreateAndDestroy_UnitTest is fully constructed.
1.87 + @post This unit test is ready to run.
1.88 +*/
1.89 + void PrepareUnitTestL();
1.90 +
1.91 +private:
1.92 + /**
1.93 + @fn CDefaultResolver_CreateAndDestroy_UnitTest(CDataLogger& aDataLogger,
1.94 + MUnitTestObserver& aObserver)
1.95 + Intended Usage : Default constructor.
1.96 + Error Condition : None.
1.97 + @since 7.0
1.98 + @param aDataLogger The output logging object.
1.99 + @param aObserver The observer of this UnitTest.
1.100 + @param aStateAccessor WhiteBox state access to the CDefaultResolver class.
1.101 + @pre None.
1.102 + @post CDefaultResolver_CreateAndDestroy_UnitTest is fully constructed.
1.103 + */
1.104 + inline CDefaultResolver_CreateAndDestroy_UnitTest(CDataLogger& aDataLogger,
1.105 + MUnitTestObserver& aObserver);
1.106 +
1.107 + /**
1.108 + @fn void ConstructL()
1.109 + Intended Usage : Second phase of safe two phase construction,
1.110 + to complete the object initialisation.
1.111 + Error Condition : Leaves with an error code.
1.112 + @leave KErrNoMemory, and @see CUnitTest::BaseNewL().
1.113 + @since 7.0
1.114 + @return None
1.115 + @pre CDefaultResolver_CreateAndDestroy_UnitTest is fully constructed.
1.116 + @post CDefaultResolver_CreateAndDestroy_UnitTest is fully initialised.
1.117 + */
1.118 + void ConstructL();
1.119 +
1.120 + /**
1.121 + The context of the Unit Test.
1.122 + i.e The CDefaultResolver class tested by this UnitTest's transitions.
1.123 + */
1.124 + CDefaultResolver_UnitTestContext* iUTContext;
1.125 + TDefaultResolver_StateAccessor* iStateAccessor;
1.126 + // C'tor, d'tor, and method transition validators
1.127 + TDefaultResolver_Ctor_TransitionValidator* iCtorValidator;
1.128 + TDefaultResolver_Dtor_TransitionValidator* iDtorValidator;
1.129 + }; // CDefaultResolver_CreateAndDestroy_UnitTest
1.130 +
1.131 +// ______________________________________________________________________________
1.132 +//
1.133 +/**
1.134 + @internalComponent
1.135 +
1.136 + Comments : Unit Test for IdentifyImplementation on CDefaultResolver, the class under test.
1.137 + */
1.138 +class CDefaultResolver_IdentifyImplementation_UnitTest : public CUnitTest
1.139 + {
1.140 +public:
1.141 + /**
1.142 + @fn NewL(CDataLogger& aDataLogger,
1.143 + MUnitTestObserver& aObserver)
1.144 + Intended Usage : Standard two-phase construction which leaves nothing on the
1.145 + cleanup stack.
1.146 + Error Condition : Leaves with the error code.
1.147 + @leave KErrNoMemory
1.148 + @since 7.0
1.149 + @param aDataLogger The output logging object.
1.150 + @param aObserver The observer of this UnitTest.
1.151 + @return CDefaultResolver_IdentifyImplementation_UnitTest* The constructed object.
1.152 + @pre None.
1.153 + @post CDefaultResolver_IdentifyImplementation_UnitTest is fully constructed, and initialised.
1.154 + */
1.155 + static CDefaultResolver_IdentifyImplementation_UnitTest* NewL(CDataLogger& aDataLogger,
1.156 + MUnitTestObserver& aObserver);
1.157 +
1.158 + /**
1.159 + @fn RunError(TInt aError)
1.160 + Intended Usage : Intercept the panic caused by a RunL leave,
1.161 + to restore the CDefaultResolver_IdentifyImplementation_UnitTest
1.162 + object to a sensible state.
1.163 + (called by the Active Scheduler immediately before the Panic).
1.164 + Error Condition : @see CUnitTest::RunError().
1.165 + @since 7.0
1.166 + @return TInt KErrNone if cleanup successful, otherwise
1.167 + @see CUnitTest::RunError()
1.168 + @pre CDefaultResolver_IdentifyImplementation_UnitTest is fully constructed, and initialised.
1.169 + @post The object has been restored to a sensible state.
1.170 + */
1.171 + inline TInt RunError(TInt aError);
1.172 +
1.173 + /**
1.174 + @fn ~CDefaultResolver_IdentifyImplementation_UnitTest()
1.175 + Intended Usage : Standard Destructor.
1.176 + Error Condition : None.
1.177 + @since 7.0
1.178 + @pre CDefaultResolver_IdentifyImplementation_UnitTest is fully constructed.
1.179 + @post CDefaultResolver_IdentifyImplementation_UnitTest is fully destroyed.
1.180 + */
1.181 + ~CDefaultResolver_IdentifyImplementation_UnitTest();
1.182 +
1.183 +private:
1.184 + /**
1.185 + @fn CDefaultResolver_IdentifyImplementation_UnitTest(CDataLogger& aDataLogger,
1.186 + MUnitTestObserver& aObserver)
1.187 + Intended Usage : Default constructor.
1.188 + Error Condition : None.
1.189 + @since 7.0
1.190 + @param aDataLogger The output logging object.
1.191 + @param aObserver The observer of this UnitTest.
1.192 + @param aStateAccessor WhiteBox state access to the CDefaultResolver class.
1.193 + @pre None.
1.194 + @post CDefaultResolver_IdentifyImplementation_UnitTest is fully constructed.
1.195 + */
1.196 + inline CDefaultResolver_IdentifyImplementation_UnitTest(CDataLogger& aDataLogger,
1.197 + MUnitTestObserver& aObserver);
1.198 +
1.199 + /**
1.200 + @fn void ConstructL()
1.201 + Intended Usage : Second phase of safe two phase construction,
1.202 + to complete the object initialisation.
1.203 + Error Condition : Leaves with an error code.
1.204 + @leave KErrNoMemory, and @see CUnitTest::BaseNewL().
1.205 + @since 7.0
1.206 + @return None
1.207 + @pre CDefaultResolver_IdentifyImplementation_UnitTest is fully constructed.
1.208 + @post CDefaultResolver_IdentifyImplementation_UnitTest is fully initialised.
1.209 + */
1.210 + void ConstructL();
1.211 +
1.212 + /**
1.213 + The context of the Unit Test.
1.214 + i.e The CDefaultResolver class tested by this UnitTest's transitions.
1.215 + */
1.216 + CDefaultResolver_UnitTestContext* iUTContext;
1.217 + TDefaultResolver_StateAccessor* iStateAccessor;
1.218 + // C'tor, d'tor, and method transition validators
1.219 + TDefaultResolver_Ctor_TransitionValidator* iCtorValidator;
1.220 + TDefaultResolver_Default_TransitionValidator* iDefaultValidator;
1.221 + TDefaultResolver_Match_TransitionValidator* iMatchValidator;
1.222 + TDefaultResolver_IdentifyImplementationL_TransitionValidator* iIdentifyImplementationValidator;
1.223 + TDefaultResolver_Dtor_TransitionValidator* iDtorValidator;
1.224 + }; // CDefaultResolver_IdentifyImplementation_UnitTest
1.225 +
1.226 +#include "ResolverUnitTests.inl"
1.227 +
1.228 +#endif // __RESOLVERUNITTESTS_H__