os/ossrv/lowlevellibsandfws/pluginfw/Test_Bed/TestControllerTest/TestControllerTransitions.h
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/ossrv/lowlevellibsandfws/pluginfw/Test_Bed/TestControllerTest/TestControllerTransitions.h Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,387 @@
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 CTestController class methods.
1.18 +//
1.19 +//
1.20 +
1.21 +#ifndef __TESTCONTROLLERTRANSITIONS_H__
1.22 +#define __TESTCONTROLLERTRANSITIONS_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 "TestController.h"
1.29 +#include "TestControllerStateAccessor.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 CTestController specific
1.40 + parameters and behaviour on the CTestController
1.41 + test class for a transition.
1.42 + */
1.43 +class CTestController_UnitTestContext : public CUnitTestContext
1.44 + {
1.45 +public:
1.46 + /**
1.47 + @fn CTestController_UnitTestContext(CDataLogger& aDataLogger,
1.48 + MStateAccessor& aStateAccessor,
1.49 + MTransitionObserver& aObserver,
1.50 + RFs& aFs)
1.51 + Intended Usage : Default constructor.
1.52 + Error Condition : None.
1.53 + @since 7.0
1.54 + @param aDataLogger The output logging object.
1.55 + @param aObserver The observer of this UnitTest's Transitions.
1.56 + @param aStateAccessor WhiteBox state access to the CTestController class under test.
1.57 + @param aFs A handle to the file server
1.58 + @pre None.
1.59 + @post CTestController_UnitTestContext is fully constructed, and initialised.
1.60 + */
1.61 + inline CTestController_UnitTestContext(CDataLogger& aDataLogger,
1.62 + MStateAccessor& aStateAccessor,
1.63 + MTransitionObserver& aObserver,
1.64 + RFs& aFs);
1.65 +
1.66 + /**
1.67 + @fn ~CTestController_UnitTestContext()
1.68 + Intended Usage : Default Destructor
1.69 + @since 7.0
1.70 + @pre CTestController_UnitTestContext is fully constructed.
1.71 + @post CTestController_UnitTestContext is fully destroyed
1.72 + */
1.73 + virtual inline ~CTestController_UnitTestContext();
1.74 +
1.75 + /** The instance of the class under test */
1.76 + CTestController* iTestController;
1.77 + /** The active scheduler for the TestController to use */
1.78 + CActiveScheduler* iScheduler;
1.79 + /** An array of tests to be run */
1.80 + RPointerArray<TTestInfo> iTests;
1.81 + /** The logging info for the TestController to use */
1.82 + TLoggingInfo* iLogInfo;
1.83 + /** File server handle */
1.84 + RFs iFs;
1.85 +
1.86 + }; // CTestController_UnitTestContext
1.87 +
1.88 +// ______________________________________________________________________________
1.89 +//
1.90 +/**
1.91 + @internalComponent
1.92 +
1.93 + Comments : Transition test of the CTestController::NewL method.
1.94 + */
1.95 +class CTestController_NewL_Transition : public CTransitionType
1.96 + {
1.97 +public:
1.98 + /**
1.99 + @fn CTestController_NewL_Transition(CUnitTestContext& aUTContext,
1.100 + TTransitionValidator& aValidator)
1.101 + Intended Usage : Standard c'tor method.
1.102 + Error Condition : None.
1.103 + @since 7.0
1.104 + @param aUTContext The context this transition is operating in.
1.105 + @param aValidator Used for checking the pre & post conditions of the test object.
1.106 + @pre None.
1.107 + @post CTestController_NewL_Transition is fully constructed.
1.108 + */
1.109 + CTestController_NewL_Transition(CUnitTestContext& aUTContext,
1.110 + TTransitionValidator& aValidator);
1.111 + /**
1.112 + @fn TransitMethodL()
1.113 + Intended Usage : To execute the CTestController::NewL method for the test harness.
1.114 + Error Condition : Leaves with an error code.
1.115 + @leave KErrNoMemory, (@see CTestController::NewL)
1.116 + @since 7.0
1.117 + @return None
1.118 + @pre CTestController_NewL_Transition is fully constructed.
1.119 + @post No change in the CTestController_NewL_Transition apart
1.120 + from iTestController, which may have changed state.
1.121 + (@see CTestController::NewL post-condition) for iTestController's new state.
1.122 + */
1.123 + inline void TransitMethodL();
1.124 +
1.125 + /**
1.126 + @fn Context() const
1.127 + Intended Usage : To provide access to the unit test context cast to the correct type.
1.128 + Error Condition : None.
1.129 + @since 7.0
1.130 + @return The unit test context cast to a CTestController_UnitTestContext
1.131 + @pre iUTContext is a valid CTestController_UnitTestContext.
1.132 + @post No change in the CTestController_NewL_Transition
1.133 + */
1.134 + inline CTestController_UnitTestContext& Context() const;
1.135 + }; // CTestController_NewL_Transition
1.136 +
1.137 +// ______________________________________________________________________________
1.138 +//
1.139 +/**
1.140 + @internalComponent
1.141 +
1.142 + Comments : Transition test of the CTestController::Dtor method.
1.143 + */
1.144 +class CTestController_Dtor_Transition : public CTransition
1.145 + {
1.146 +public:
1.147 + /**
1.148 + @fn CTestController_Dtor_Transition(CUnitTestContext& aUTContext,
1.149 + TTransitionValidator& aValidator)
1.150 + Intended Usage : Standard c'tor method.
1.151 + Error Condition : None.
1.152 + @since 7.0
1.153 + @param aUTContext The context this transition is operating in.
1.154 + @param aValidator Used for checking the pre & post conditions of the test object.
1.155 + @pre None.
1.156 + @post CTestController_Dtor_Transition is fully constructed.
1.157 + */
1.158 + CTestController_Dtor_Transition(CUnitTestContext& aUTContext,
1.159 + TTransitionValidator& aValidator);
1.160 + /**
1.161 + @fn TransitMethodL()
1.162 + Intended Usage : To execute the CTestController::Dtor method for the test harness.
1.163 + Error Condition : Leaves with an error code.
1.164 + @leave KErrNoMemory, (@see CTestController::Dtor)
1.165 + @since 7.0
1.166 + @return None
1.167 + @pre CTestController_Dtor_Transition is fully constructed.
1.168 + @post No change in the CTestController_Dtor_Transition apart
1.169 + from iTestController, which may have changed state.
1.170 + (@see CTestController::Dtor post-condition) for iTestController's new state.
1.171 + */
1.172 + inline void TransitMethodL();
1.173 +
1.174 + /**
1.175 + @fn Context() const
1.176 + Intended Usage : To provide access to the unit test context cast to the correct type.
1.177 + Error Condition : None.
1.178 + @since 7.0
1.179 + @return The unit test context cast to a CTestController_UnitTestContext
1.180 + @pre iUTContext is a valid CTestController_UnitTestContext.
1.181 + @post No change in the CTestController_Dtor_Transition
1.182 + */
1.183 + inline CTestController_UnitTestContext& Context() const;
1.184 + }; // CTestController_Dtor_Transition
1.185 +
1.186 +// ______________________________________________________________________________
1.187 +//
1.188 +/**
1.189 + @internalComponent
1.190 +
1.191 + Comments : Transition test of the CTestController::ScanDriveL method.
1.192 + */
1.193 +class CTestController_ScanDriveL_Transition : public CTransitionType
1.194 + {
1.195 +public:
1.196 + /**
1.197 + @fn CTestController_ScanDriveL_Transition(CUnitTestContext& aUTContext,
1.198 + TTransitionValidator& aValidator)
1.199 + Intended Usage : Standard c'tor method.
1.200 + Error Condition : None.
1.201 + @since 7.0
1.202 + @param aUTContext The context this transition is operating in.
1.203 + @param aValidator Used for checking the pre & post conditions of the test object.
1.204 + @pre None.
1.205 + @post CTestController_ScanDriveL_Transition is fully constructed.
1.206 + */
1.207 + CTestController_ScanDriveL_Transition(CUnitTestContext& aUTContext,
1.208 + TTransitionValidator& aValidator);
1.209 + /**
1.210 + @fn TransitMethodL()
1.211 + Intended Usage : To execute the CTestController::ScanDriveL method for the test harness.
1.212 + Error Condition : Leaves with an error code.
1.213 + @leave KErrNoMemory, (@see CTestController::ScanDriveL)
1.214 + @since 7.0
1.215 + @return None
1.216 + @pre CTestController_ScanDriveL_Transition is fully constructed.
1.217 + @post No change in the CTestController_ScanDriveL_Transition apart
1.218 + from iTestController, which may have changed state.
1.219 + (@see CTestController::ScanDriveL post-condition) for iTestController's new state.
1.220 + */
1.221 + inline void TransitMethodL();
1.222 +
1.223 + /**
1.224 + @fn Context() const
1.225 + Intended Usage : To provide access to the unit test context cast to the correct type.
1.226 + Error Condition : None.
1.227 + @since 7.0
1.228 + @return The unit test context cast to a CTestController_UnitTestContext
1.229 + @pre iUTContext is a valid CTestController_UnitTestContext.
1.230 + @post No change in the CTestController_ScanDriveL_Transition
1.231 + */
1.232 + inline CTestController_UnitTestContext& Context() const;
1.233 + }; // CTestController_ScanDriveL_Transition
1.234 +
1.235 +// ______________________________________________________________________________
1.236 +//
1.237 +/**
1.238 + @internalComponent
1.239 +
1.240 + Comments : Transition test of the CTestController::DiscoverTestsL method.
1.241 + */
1.242 +class CTestController_DiscoverTestsL_Transition : public CTransitionType
1.243 + {
1.244 +public:
1.245 + /**
1.246 + @fn CTestController_DiscoverTestsL_Transition(CUnitTestContext& aUTContext,
1.247 + TTransitionValidator& aValidator)
1.248 + Intended Usage : Standard c'tor method.
1.249 + Error Condition : None.
1.250 + @since 7.0
1.251 + @param aUTContext The context this transition is operating in.
1.252 + @param aValidator Used for checking the pre & post conditions of the test object.
1.253 + @pre None.
1.254 + @post CTestController_DiscoverTestsL_Transition is fully constructed.
1.255 + */
1.256 + CTestController_DiscoverTestsL_Transition(CUnitTestContext& aUTContext,
1.257 + TTransitionValidator& aValidator);
1.258 + /**
1.259 + @fn TransitMethodL()
1.260 + Intended Usage : To execute the CTestController::DiscoverTestsL method for the test harness.
1.261 + Error Condition : Leaves with an error code.
1.262 + @leave KErrNoMemory, (@see CTestController::DiscoverTestsL)
1.263 + @since 7.0
1.264 + @return None
1.265 + @pre CTestController_DiscoverTestsL_Transition is fully constructed.
1.266 + @post No change in the CTestController_DiscoverTestsL_Transition apart
1.267 + from iTestController, which may have changed state.
1.268 + (@see CTestController::DiscoverTestsL post-condition) for iTestController's new state.
1.269 + */
1.270 + inline void TransitMethodL();
1.271 +
1.272 + /**
1.273 + @fn Context() const
1.274 + Intended Usage : To provide access to the unit test context cast to the correct type.
1.275 + Error Condition : None.
1.276 + @since 7.0
1.277 + @return The unit test context cast to a CTestController_UnitTestContext
1.278 + @pre iUTContext is a valid CTestController_UnitTestContext.
1.279 + @post No change in the CTestController_DiscoverTestsL_Transition
1.280 + */
1.281 + inline CTestController_UnitTestContext& Context() const;
1.282 + }; // CTestController_DiscoverTestsL_Transition
1.283 +
1.284 +// ______________________________________________________________________________
1.285 +//
1.286 +/**
1.287 + @internalComponent
1.288 +
1.289 + Comments : Transition test of the CTestController::FindComponents method.
1.290 + */
1.291 +class CTestController_FindComponents_Transition : public CTransition
1.292 + {
1.293 +public:
1.294 + /**
1.295 + @fn CTestController_FindComponents_Transition(CUnitTestContext& aUTContext,
1.296 + TTransitionValidator& aValidator)
1.297 + Intended Usage : Standard c'tor method.
1.298 + Error Condition : None.
1.299 + @since 7.0
1.300 + @param aUTContext The context this transition is operating in.
1.301 + @param aValidator Used for checking the pre & post conditions of the test object.
1.302 + @pre None.
1.303 + @post CTestController_FindComponents_Transition is fully constructed.
1.304 + */
1.305 + CTestController_FindComponents_Transition(CUnitTestContext& aUTContext,
1.306 + TTransitionValidator& aValidator);
1.307 + /**
1.308 + @fn TransitMethodL()
1.309 + Intended Usage : To execute the CTestController::FindComponents method for the test harness.
1.310 + Error Condition : Leaves with an error code.
1.311 + @leave KErrNoMemory, (@see CTestController::FindComponents)
1.312 + @since 7.0
1.313 + @return None
1.314 + @pre CTestController_FindComponents_Transition is fully constructed.
1.315 + @post No change in the CTestController_FindComponents_Transition apart
1.316 + from iTestController, which may have changed state.
1.317 + (@see CTestController::FindComponents post-condition) for iTestController's new state.
1.318 + */
1.319 + inline void TransitMethodL();
1.320 +
1.321 + /**
1.322 + @fn Context() const
1.323 + Intended Usage : To provide access to the unit test context cast to the correct type.
1.324 + Error Condition : None.
1.325 + @since 7.0
1.326 + @return The unit test context cast to a CTestController_UnitTestContext
1.327 + @pre iUTContext is a valid CTestController_UnitTestContext.
1.328 + @post No change in the CTestController_FindComponents_Transition
1.329 + */
1.330 + inline CTestController_UnitTestContext& Context() const;
1.331 + }; // CTestController_FindComponents_Transition
1.332 +
1.333 +// ______________________________________________________________________________
1.334 +//
1.335 +/**
1.336 + @internalComponent
1.337 +
1.338 + Comments : Transition test of the CTestController::Start method.
1.339 + */
1.340 +class CTestController_Start_Transition : public CTransition
1.341 + {
1.342 +public:
1.343 + /**
1.344 + @fn CTestController_Start_Transition(CUnitTestContext& aUTContext,
1.345 + TTransitionValidator& aValidator)
1.346 + Intended Usage : Standard c'tor method.
1.347 + Error Condition : None.
1.348 + @since 7.0
1.349 + @param aUTContext The context this transition is operating in.
1.350 + @param aValidator Used for checking the pre & post conditions of the test object.
1.351 + @pre None.
1.352 + @post CTestController_Start_Transition is fully constructed.
1.353 + */
1.354 + CTestController_Start_Transition(CUnitTestContext& aUTContext,
1.355 + TTransitionValidator& aValidator);
1.356 + /**
1.357 + @fn TransitMethodL()
1.358 + Intended Usage : To execute the CTestController::Start method for the test harness.
1.359 + Error Condition : Leaves with an error code.
1.360 + @leave KErrNoMemory, (@see CTestController::StartL)
1.361 + @since 7.0
1.362 + @return None
1.363 + @pre CTestController_Start_Transition is fully constructed.
1.364 + @post No change in the CTestController_Start_Transition apart
1.365 + from iTestController, which may have changed state.
1.366 + (@see CTestController::Start post-condition) for iTestController's new state.
1.367 + */
1.368 + inline void TransitMethodL();
1.369 +
1.370 + /**
1.371 + @fn Context() const
1.372 + Intended Usage : To provide access to the unit test context cast to the correct type.
1.373 + Error Condition : None.
1.374 + @since 7.0
1.375 + @return The unit test context cast to a CTestController_UnitTestContext
1.376 + @pre iUTContext is a valid CTestController_UnitTestContext.
1.377 + @post No change in the CTestController_Start_Transition
1.378 + */
1.379 + inline CTestController_UnitTestContext& Context() const;
1.380 + }; // CTestController_Start_Transition
1.381 +
1.382 +
1.383 +// Add additional Transition class definitions here...
1.384 +
1.385 +#include "TestControllerTransitions.inl"
1.386 +
1.387 +#include "TestControllerUnitTestContext.inl"
1.388 +
1.389 +#endif // __TESTCONTROLLERTRANSITIONS_H__
1.390 +