os/ossrv/lowlevellibsandfws/pluginfw/Test_Bed/DefaultLogOutputTest/DefaultLogOutputTransitions.h
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/ossrv/lowlevellibsandfws/pluginfw/Test_Bed/DefaultLogOutputTest/DefaultLogOutputTransitions.h Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,326 @@
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 definitions of the transition classes upon the CDefaultLogOutput class methods.
1.18 +//
1.19 +//
1.20 +
1.21 +#ifndef __DEFAULTLOGOUTPUTTRANSITIONS_H__
1.22 +#define __DEFAULTLOGOUTPUTTRANSITIONS_H__
1.23 +
1.24 +#include "TestUtilities.h"
1.25 +#include "StateAccessor.h"
1.26 +#include "LeakTestTransition.h"
1.27 +#include <ecom/test_bed/datalogger.h>
1.28 +#include "DefaultLogOutput.h"
1.29 +#include "DefaultLogOutputStateAccessor.h"
1.30 +#include <ecom/test_bed/unittest.h>
1.31 +
1.32 +#define CTransitionType CLeakTestTransition
1.33 +
1.34 +// ______________________________________________________________________________
1.35 +//
1.36 +/**
1.37 + @internalComponent
1.38 +
1.39 + Comments : Provide all the CDefaultLogOutput specific
1.40 + parameters and behaviour on the CDefaultLogOutput
1.41 + test class for a transition.
1.42 + */
1.43 +class CDefaultLogOutput_UnitTestContext : public CUnitTestContext
1.44 + {
1.45 +public:
1.46 + /**
1.47 + @fn CDefaultLogOutput_UnitTestContext(CDataLogger& aDataLogger,
1.48 + MStateAccessor& aStateAccessor,
1.49 + MTransitionObserver& aObserver)
1.50 + Intended Usage : Default constructor.
1.51 + Error Condition : None.
1.52 + @since 7.0
1.53 + @param aDataLogger The output logging object.
1.54 + @param aObserver The observer of this UnitTest's Transitions.
1.55 + @param aStateAccessor WhiteBox state access to the CDefaultLogOutput class under test.
1.56 + @pre None.
1.57 + @post CDefaultLogOutput_UnitTestContext is fully constructed, and initialised.
1.58 + */
1.59 + inline CDefaultLogOutput_UnitTestContext(CDataLogger& aDataLogger,
1.60 + MStateAccessor& aStateAccessor,
1.61 + MTransitionObserver& aObserver);
1.62 +
1.63 + /**
1.64 + @fn ~CDefaultLogOutput_UnitTestContext()
1.65 + Intended Usage : Default Destructor
1.66 + @since 7.0
1.67 + @pre CDefaultLogOutput_UnitTestContext is fully constructed.
1.68 + @post CDefaultLogOutput_UnitTestContext is fully destroyed
1.69 + */
1.70 + virtual inline ~CDefaultLogOutput_UnitTestContext();
1.71 +
1.72 + /** The instance of the class under test */
1.73 + CDefaultLogOutput* iDefaultLogOutput;
1.74 + /** The text to output to the test log file */
1.75 + const TDesC* iOutput;
1.76 + }; // CDefaultLogOutput_UnitTestContext
1.77 +
1.78 +// ______________________________________________________________________________
1.79 +//
1.80 +/**
1.81 + @internalComponent
1.82 +
1.83 + Comments : Transition test of the CDefaultLogOutput::NewL method.
1.84 + */
1.85 +class CDefaultLogOutput_NewL_Transition : public CTransitionType
1.86 + {
1.87 +public:
1.88 + /**
1.89 + @fn CDefaultLogOutput_NewL_Transition(CUnitTestContext& aUTContext,
1.90 + TTransitionValidator& aValidator)
1.91 + Intended Usage : Standard c'tor method.
1.92 + Error Condition : None.
1.93 + @since 7.0
1.94 + @param aUTContext The context this transition is operating in.
1.95 + @param aValidator Used for checking the pre & post conditions of the test object.
1.96 + @pre None.
1.97 + @post CDefaultLogOutput_NewL_Transition is fully constructed.
1.98 + */
1.99 + CDefaultLogOutput_NewL_Transition(CUnitTestContext& aUTContext,
1.100 + TTransitionValidator& aValidator);
1.101 + /**
1.102 + @fn TransitMethodL()
1.103 + Intended Usage : To execute the CDefaultLogOutput::NewL method for the test harness.
1.104 + Error Condition : Leaves with an error code.
1.105 + @leave KErrNoMemory, (@see CDefaultLogOutput::NewL)
1.106 + @since 7.0
1.107 + @return None
1.108 + @pre CDefaultLogOutput_NewL_Transition is fully constructed.
1.109 + @post No change in the CDefaultLogOutput_NewL_Transition apart
1.110 + from iDefaultLogOutput, which may have changed state.
1.111 + (@see CDefaultLogOutput::NewL post-condition) for iDefaultLogOutput's new state.
1.112 + */
1.113 + inline void TransitMethodL();
1.114 +
1.115 + /**
1.116 + @fn Context() const
1.117 + Intended Usage : To provide access to the unit test context cast to the correct type.
1.118 + Error Condition : None.
1.119 + @since 7.0
1.120 + @return The unit test context cast to a CDefaultLogOutput_UnitTestContext
1.121 + @pre iUTContext is a valid CDefaultLogOutput_UnitTestContext.
1.122 + @post No change in the CDefaultLogOutput_NewL_Transition
1.123 + */
1.124 + inline CDefaultLogOutput_UnitTestContext& Context() const;
1.125 + }; // CDefaultLogOutput_NewL_Transition
1.126 +
1.127 +// ______________________________________________________________________________
1.128 +//
1.129 +/**
1.130 + @internalComponent
1.131 +
1.132 + Comments : Transition test of the CDefaultLogOutput::Dtor method.
1.133 + */
1.134 +class CDefaultLogOutput_Dtor_Transition : public CTransition
1.135 + {
1.136 +public:
1.137 + /**
1.138 + @fn CDefaultLogOutput_Dtor_Transition(CUnitTestContext& aUTContext,
1.139 + TTransitionValidator& aValidator)
1.140 + Intended Usage : Standard c'tor method.
1.141 + Error Condition : None.
1.142 + @since 7.0
1.143 + @param aUTContext The context this transition is operating in.
1.144 + @param aValidator Used for checking the pre & post conditions of the test object.
1.145 + @pre None.
1.146 + @post CDefaultLogOutput_Dtor_Transition is fully constructed.
1.147 + */
1.148 + CDefaultLogOutput_Dtor_Transition(CUnitTestContext& aUTContext,
1.149 + TTransitionValidator& aValidator);
1.150 + /**
1.151 + @fn TransitMethodL()
1.152 + Intended Usage : To execute the CDefaultLogOutput::Dtor method for the test harness.
1.153 + Error Condition : Leaves with an error code.
1.154 + @leave KErrNoMemory, (@see CDefaultLogOutput::Dtor)
1.155 + @since 7.0
1.156 + @return None
1.157 + @pre CDefaultLogOutput_Dtor_Transition is fully constructed.
1.158 + @post No change in the CDefaultLogOutput_Dtor_Transition apart
1.159 + from iDefaultLogOutput, which may have changed state.
1.160 + (@see CDefaultLogOutput::Dtor post-condition) for iDefaultLogOutput's new state.
1.161 + */
1.162 + inline void TransitMethodL();
1.163 +
1.164 + /**
1.165 + @fn Context() const
1.166 + Intended Usage : To provide access to the unit test context cast to the correct type.
1.167 + Error Condition : None.
1.168 + @since 7.0
1.169 + @return The unit test context cast to a CDefaultLogOutput_UnitTestContext
1.170 + @pre iUTContext is a valid CDefaultLogOutput_UnitTestContext.
1.171 + @post No change in the CDefaultLogOutput_Dtor_Transition
1.172 + */
1.173 + inline CDefaultLogOutput_UnitTestContext& Context() const;
1.174 + }; // CDefaultLogOutput_Dtor_Transition
1.175 +
1.176 +// ______________________________________________________________________________
1.177 +//
1.178 +/**
1.179 + @internalComponent
1.180 +
1.181 + Comments : Transition test of the CDefaultLogOutput::OpenL method.
1.182 + */
1.183 +class CDefaultLogOutput_OpenL_Transition : public CTransitionType
1.184 + {
1.185 +public:
1.186 + /**
1.187 + @fn CDefaultLogOutput_OpenL_Transition(CUnitTestContext& aUTContext,
1.188 + TTransitionValidator& aValidator)
1.189 + Intended Usage : Standard c'tor method.
1.190 + Error Condition : None.
1.191 + @since 7.0
1.192 + @param aUTContext The context this transition is operating in.
1.193 + @param aValidator Used for checking the pre & post conditions of the test object.
1.194 + @pre None.
1.195 + @post CDefaultLogOutput_OpenL_Transition is fully constructed.
1.196 + */
1.197 + CDefaultLogOutput_OpenL_Transition(CUnitTestContext& aUTContext,
1.198 + TTransitionValidator& aValidator);
1.199 + /**
1.200 + @fn TransitMethodL()
1.201 + Intended Usage : To execute the CDefaultLogOutput::OpenL method for the test harness.
1.202 + Error Condition : Leaves with an error code.
1.203 + @leave KErrNoMemory, (@see CDefaultLogOutput::OpenL)
1.204 + @since 7.0
1.205 + @return None
1.206 + @pre CDefaultLogOutput_OpenL_Transition is fully constructed.
1.207 + @post No change in the CDefaultLogOutput_OpenL_Transition apart
1.208 + from iDefaultLogOutput, which may have changed state.
1.209 + (@see CDefaultLogOutput::OpenL post-condition) for iDefaultLogOutput's new state.
1.210 + */
1.211 + inline void TransitMethodL();
1.212 +
1.213 + /**
1.214 + @fn Context() const
1.215 + Intended Usage : To provide access to the unit test context cast to the correct type.
1.216 + Error Condition : None.
1.217 + @since 7.0
1.218 + @return The unit test context cast to a CDefaultLogOutput_UnitTestContext
1.219 + @pre iUTContext is a valid CDefaultLogOutput_UnitTestContext.
1.220 + @post No change in the CDefaultLogOutput_OpenL_Transition
1.221 + */
1.222 + inline CDefaultLogOutput_UnitTestContext& Context() const;
1.223 + }; // CDefaultLogOutput_OpenL_Transition
1.224 +
1.225 +
1.226 +// ______________________________________________________________________________
1.227 +//
1.228 +/**
1.229 + @internalComponent
1.230 +
1.231 + Comments : Transition test of the CDefaultLogOutput::Close method.
1.232 + */
1.233 +class CDefaultLogOutput_Close_Transition : public CTransition
1.234 + {
1.235 +public:
1.236 + /**
1.237 + @fn CDefaultLogOutput_Close_Transition(CUnitTestContext& aUTContext,
1.238 + TTransitionValidator& aValidator)
1.239 + Intended Usage : Standard c'tor method.
1.240 + Error Condition : None.
1.241 + @since 7.0
1.242 + @param aUTContext The context this transition is operating in.
1.243 + @param aValidator Used for checking the pre & post conditions of the test object.
1.244 + @pre None.
1.245 + @post CDefaultLogOutput_Close_Transition is fully constructed.
1.246 + */
1.247 + CDefaultLogOutput_Close_Transition(CUnitTestContext& aUTContext,
1.248 + TTransitionValidator& aValidator);
1.249 + /**
1.250 + @fn TransitMethodL()
1.251 + Intended Usage : To execute the CDefaultLogOutput::Close method for the test harness.
1.252 + Error Condition : Leaves with an error code.
1.253 + @leave KErrNoMemory, (@see CDefaultLogOutput::Close)
1.254 + @since 7.0
1.255 + @return None
1.256 + @pre CDefaultLogOutput_Close_Transition is fully constructed.
1.257 + @post No change in the CDefaultLogOutput_Close_Transition apart
1.258 + from iDefaultLogOutput, which may have changed state.
1.259 + (@see CDefaultLogOutput::Close post-condition) for iDefaultLogOutput's new state.
1.260 + */
1.261 + inline void TransitMethodL();
1.262 +
1.263 + /**
1.264 + @fn Context() const
1.265 + Intended Usage : To provide access to the unit test context cast to the correct type.
1.266 + Error Condition : None.
1.267 + @since 7.0
1.268 + @return The unit test context cast to a CDefaultLogOutput_UnitTestContext
1.269 + @pre iUTContext is a valid CDefaultLogOutput_UnitTestContext.
1.270 + @post No change in the CDefaultLogOutput_Close_Transition
1.271 + */
1.272 + inline CDefaultLogOutput_UnitTestContext& Context() const;
1.273 + }; // CDefaultLogOutput_Close_Transition
1.274 +
1.275 +// ______________________________________________________________________________
1.276 +//
1.277 +/**
1.278 + @internalComponent
1.279 +
1.280 + Comments : Transition test of the CDefaultLogOutput::Write method.
1.281 + */
1.282 +class CDefaultLogOutput_Write_Transition : public CTransition
1.283 + {
1.284 +public:
1.285 + /**
1.286 + @fn CDefaultLogOutput_Write_Transition(CUnitTestContext& aUTContext,
1.287 + TTransitionValidator& aValidator)
1.288 + Intended Usage : Standard c'tor method.
1.289 + Error Condition : None.
1.290 + @since 7.0
1.291 + @param aUTContext The context this transition is operating in.
1.292 + @param aValidator Used for checking the pre & post conditions of the test object.
1.293 + @pre None.
1.294 + @post CDefaultLogOutput_Write_Transition is fully constructed.
1.295 + */
1.296 + CDefaultLogOutput_Write_Transition(CUnitTestContext& aUTContext,
1.297 + TTransitionValidator& aValidator);
1.298 + /**
1.299 + @fn TransitMethodL()
1.300 + Intended Usage : To execute the CDefaultLogOutput::Write method for the test harness.
1.301 + Error Condition : Leaves with an error code.
1.302 + @leave KErrNoMemory, (@see CDefaultLogOutput::Write)
1.303 + @since 7.0
1.304 + @return None
1.305 + @pre CDefaultLogOutput_Write_Transition is fully constructed.
1.306 + @post No change in the CDefaultLogOutput_Write_Transition apart
1.307 + from iDefaultLogOutput, which may have changed state.
1.308 + (@see CDefaultLogOutput::Write post-condition) for iDefaultLogOutput's new state.
1.309 + */
1.310 + inline void TransitMethodL();
1.311 +
1.312 + /**
1.313 + @fn Context() const
1.314 + Intended Usage : To provide access to the unit test context cast to the correct type.
1.315 + Error Condition : None.
1.316 + @since 7.0
1.317 + @return The unit test context cast to a CDefaultLogOutput_UnitTestContext
1.318 + @pre iUTContext is a valid CDefaultLogOutput_UnitTestContext.
1.319 + @post No change in the CDefaultLogOutput_Write_Transition
1.320 + */
1.321 + inline CDefaultLogOutput_UnitTestContext& Context() const;
1.322 + }; // CDefaultLogOutput_Write_Transition
1.323 +
1.324 +#include "DefaultLogOutputTransitions.inl"
1.325 +
1.326 +#include "DefaultLogOutputUnitTestContext.inl"
1.327 +
1.328 +#endif // __DEFAULTLOGOUTPUTTRANSITIONS_H__
1.329 +