os/ossrv/lowlevellibsandfws/pluginfw/Test_Bed/UnitTestTest/UnitTestTransitionValidation.inl
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 // Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
     2 // All rights reserved.
     3 // This component and the accompanying materials are made available
     4 // under the terms of "Eclipse Public License v1.0"
     5 // which accompanies this distribution, and is available
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 // The implementation of the transition validation classes upon the CUnitTest class methods.
    15 // 
    16 //
    17 
    18 // ______________________________________________________________________________
    19 //
    20 inline TUnitTest_Ctor_TransitionValidator::TUnitTest_Ctor_TransitionValidator(CUnitTestContext& aUTContext)
    21 :TTransitionValidator(aUTContext)
    22 	{
    23 	// Do nothing
    24 	}
    25 
    26 inline TBool TUnitTest_Ctor_TransitionValidator::ValidatePreConditions()
    27 	{
    28 	return ETrue;
    29 	}
    30 
    31 inline TBool TUnitTest_Ctor_TransitionValidator::ValidatePostConditions(TTestBedAsyncState /* aAsyncState */)
    32 	{
    33 	if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CUnitTest_UnitTestContext&,iUTContext).iUnitTest))
    34 		return EFalse;
    35 	return ETrue;
    36 	}
    37 
    38 // ______________________________________________________________________________
    39 //
    40 inline TUnitTest_Dtor_TransitionValidator::TUnitTest_Dtor_TransitionValidator(CUnitTestContext& aUTContext)
    41 :TTransitionValidator(aUTContext)
    42 	{
    43 	// Do nothing
    44 	}
    45 
    46 inline TBool TUnitTest_Dtor_TransitionValidator::ValidatePreConditions()
    47 	{
    48 	if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CUnitTest_UnitTestContext&,iUTContext).iUnitTest))
    49 		return EFalse;
    50 	return ETrue;
    51 	}
    52 
    53 inline TBool TUnitTest_Dtor_TransitionValidator::ValidatePostConditions(TTestBedAsyncState /* aAsyncState */)
    54 	{
    55 	return ETrue;
    56 	}
    57 
    58 // ______________________________________________________________________________
    59 //
    60 inline TUnitTest_TransitionSet_TransitionValidator::TUnitTest_TransitionSet_TransitionValidator(CUnitTestContext& aUTContext)
    61 :TTransitionValidator(aUTContext)
    62 	{
    63 	// Do nothing
    64 	}
    65 
    66 inline TBool TUnitTest_TransitionSet_TransitionValidator::ValidatePreConditions()
    67 	{
    68 	return ETrue;
    69 	}
    70 
    71 inline TBool TUnitTest_TransitionSet_TransitionValidator::ValidatePostConditions(TTestBedAsyncState /* aAsyncState */)
    72 	{
    73 	// Implement the correct post-condition test for this unit test transition. 
    74 //#pragma message( __FILE__LINE__ "TO DO : Implement the correct post-condition test for this unit test transition.")
    75 	// For a d'tor this should be empty.
    76 	if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CUnitTest_UnitTestContext&,iUTContext).iUnitTest))
    77 		return EFalse;
    78 	return ETrue;
    79 	}
    80 
    81 // ______________________________________________________________________________
    82 //
    83 inline TUnitTest_GetCurrentTransition_TransitionValidator::TUnitTest_GetCurrentTransition_TransitionValidator(CUnitTestContext& aUTContext)
    84 :TTransitionValidator(aUTContext)
    85 	{
    86 	// Do nothing
    87 	}
    88 
    89 inline TBool TUnitTest_GetCurrentTransition_TransitionValidator::ValidatePreConditions()
    90 	{
    91 	return ETrue;
    92 	}
    93 
    94 inline TBool TUnitTest_GetCurrentTransition_TransitionValidator::ValidatePostConditions(TTestBedAsyncState /* aAsyncState */)
    95 	{
    96 	// Implement the correct post-condition test for this unit test transition. 
    97 //#pragma message( __FILE__LINE__ "TO DO : Implement the correct post-condition test for this unit test transition.")
    98 	// For a d'tor this should be empty.
    99 	if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CUnitTest_UnitTestContext&,iUTContext).iUnitTest))
   100 		return EFalse;
   101 	return ETrue;
   102 	}
   103 
   104 // ______________________________________________________________________________
   105 //
   106 inline TUnitTest_SetCurrentTransition_TransitionValidator::TUnitTest_SetCurrentTransition_TransitionValidator(CUnitTestContext& aUTContext)
   107 :TTransitionValidator(aUTContext)
   108 	{
   109 	// Do nothing
   110 	}
   111 
   112 inline TBool TUnitTest_SetCurrentTransition_TransitionValidator::ValidatePreConditions()
   113 	{
   114 	// Implement the correct pre-condition test for this unit test transition.
   115 //#pragma message( __FILE__LINE__ "TO DO : Implement the correct pre-condition test for this unit test transition.")
   116 	// For a c'tor this should be empty.
   117 	if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CUnitTest_UnitTestContext&,iUTContext).iUnitTest))
   118 		return EFalse;
   119 	return ETrue;
   120 	}
   121 
   122 inline TBool TUnitTest_SetCurrentTransition_TransitionValidator::ValidatePostConditions(TTestBedAsyncState /* aAsyncState */)
   123 	{
   124 	// Implement the correct post-condition test for this unit test transition.
   125 //#pragma message( __FILE__LINE__ "TO DO : Implement the correct post-condition test for this unit test transition.")
   126 	// For a d'tor this should be empty.
   127 	if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CUnitTest_UnitTestContext&,iUTContext).iUnitTest))
   128 		return EFalse;
   129 	return ETrue;
   130 	}
   131 
   132 // ______________________________________________________________________________
   133 //
   134 inline TUnitTest_SetParameters_TransitionValidator::TUnitTest_SetParameters_TransitionValidator(CUnitTestContext& aUTContext)
   135 :TTransitionValidator(aUTContext)
   136 	{
   137 	// Do nothing
   138 	}
   139 
   140 inline TBool TUnitTest_SetParameters_TransitionValidator::ValidatePreConditions()
   141 	{
   142 	// Implement the correct pre-condition test for this unit test transition.
   143 //#pragma message( __FILE__LINE__ "TO DO : Implement the correct pre-condition test for this unit test transition.")
   144 	// For a c'tor this should be empty.
   145 	if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CUnitTest_UnitTestContext&,iUTContext).iUnitTest))
   146 		return EFalse;
   147 	return ETrue;
   148 	}
   149 
   150 inline TBool TUnitTest_SetParameters_TransitionValidator::ValidatePostConditions(TTestBedAsyncState /* aAsyncState */)
   151 	{
   152 	// Implement the correct post-condition test for this unit test transition.
   153 //#pragma message( __FILE__LINE__ "TO DO : Implement the correct post-condition test for this unit test transition.")
   154 	// For a d'tor this should be empty.
   155 	if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CUnitTest_UnitTestContext&,iUTContext).iUnitTest))
   156 		return EFalse;
   157 	return ETrue;
   158 	}
   159 
   160 // ______________________________________________________________________________
   161 //
   162 inline TUnitTest_PrepareUnitTest_TransitionValidator::TUnitTest_PrepareUnitTest_TransitionValidator(CUnitTestContext& aUTContext)
   163 :TTransitionValidator(aUTContext)
   164 	{
   165 	// Do nothing
   166 	}
   167 
   168 _LIT(KPrepareUnitTestFailedInvariant,
   169 	"CUnitTest_PrepareUnitTest_Transition invariant failure");
   170 
   171 inline TBool TUnitTest_PrepareUnitTest_TransitionValidator::ValidatePreConditions()
   172 	{
   173 	// Implement the correct pre-condition test for this unit test transition.
   174 //#pragma message( __FILE__LINE__ "TO DO : Implement the correct pre-condition test for this unit test transition.")
   175 	// For a c'tor this should be empty.
   176 	if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CUnitTest_UnitTestContext&,iUTContext).iUnitTest))
   177 		{
   178 		iUTContext.DataLogger().LogInformation(KPrepareUnitTestFailedInvariant);
   179 		return EFalse;
   180 		}
   181 	return ETrue;
   182 	}
   183 
   184 inline TBool TUnitTest_PrepareUnitTest_TransitionValidator::ValidatePostConditions(TTestBedAsyncState /* aAsyncState */)
   185 	{
   186 	// Implement the correct post-condition test for this unit test transition.
   187 //#pragma message( __FILE__LINE__ "TO DO : Implement the correct post-condition test for this unit test transition.")
   188 	// For a d'tor this should be empty.
   189 	if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CUnitTest_UnitTestContext&,iUTContext).iUnitTest))
   190 		{
   191 		iUTContext.DataLogger().LogInformation(KPrepareUnitTestFailedInvariant);
   192 		return EFalse;
   193 		}
   194 	return ETrue;
   195 	}
   196 
   197 // ______________________________________________________________________________
   198 //
   199 inline TUnitTest_RunTest_TransitionValidator::TUnitTest_RunTest_TransitionValidator(CUnitTestContext& aUTContext)
   200 :TTransitionValidator(aUTContext)
   201 	{
   202 	// Do nothing
   203 	}
   204 
   205 inline TBool TUnitTest_RunTest_TransitionValidator::ValidatePreConditions()
   206 	{
   207 	return ETrue;
   208 	}
   209 
   210 inline TBool TUnitTest_RunTest_TransitionValidator::ValidatePostConditions(TTestBedAsyncState /* aAsyncState */)
   211 	{
   212 	// Implement the correct post-condition test for this unit test transition.
   213 //#pragma message( __FILE__LINE__ "TO DO : Implement the correct post-condition test for this unit test transition.")
   214 	// For a d'tor this should be empty.
   215 	if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CUnitTest_UnitTestContext&,iUTContext).iUnitTest))
   216 		return EFalse;
   217 	return ETrue;
   218 	}
   219 
   220 // ______________________________________________________________________________
   221 //
   222 inline TUnitTest_AddTransition_TransitionValidator::TUnitTest_AddTransition_TransitionValidator(CUnitTestContext& aUTContext)
   223 :TTransitionValidator(aUTContext)
   224 	{
   225 	// Do nothing
   226 	}
   227 
   228 inline TBool TUnitTest_AddTransition_TransitionValidator::ValidatePreConditions()
   229 	{
   230 	// Implement the correct pre-condition test for this unit test transition.
   231 //#pragma message( __FILE__LINE__ "TO DO : Implement the correct pre-condition test for this unit test transition.")
   232 	// For a c'tor this should be empty.
   233 	if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CUnitTest_UnitTestContext&,iUTContext).iUnitTest))
   234 		return EFalse;
   235 	return ETrue;
   236 	}
   237 
   238 inline TBool TUnitTest_AddTransition_TransitionValidator::ValidatePostConditions(TTestBedAsyncState /* aAsyncState */)
   239 	{
   240 	// Implement the correct post-condition test for this unit test transition.
   241 //#pragma message( __FILE__LINE__ "TO DO : Implement the correct post-condition test for this unit test transition.")
   242 	// For a d'tor this should be empty.
   243 	if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CUnitTest_UnitTestContext&,iUTContext).iUnitTest))
   244 		return EFalse;
   245 	return ETrue;
   246 	}
   247 
   248 // ______________________________________________________________________________
   249 //
   250 inline TUnitTest_AddBlockingTransition_TransitionValidator::TUnitTest_AddBlockingTransition_TransitionValidator(CUnitTestContext& aUTContext)
   251 :TTransitionValidator(aUTContext)
   252 	{
   253 	// Do nothing
   254 	}
   255 
   256 inline TBool TUnitTest_AddBlockingTransition_TransitionValidator::ValidatePreConditions()
   257 	{
   258 	// Implement the correct pre-condition test for this unit test transition.
   259 //#pragma message( __FILE__LINE__ "TO DO : Implement the correct pre-condition test for this unit test transition.")
   260 	// For a c'tor this should be empty.
   261 	if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CUnitTest_UnitTestContext&,iUTContext).iUnitTest))
   262 		return EFalse;
   263 	return ETrue;
   264 	}
   265 
   266 inline TBool TUnitTest_AddBlockingTransition_TransitionValidator::ValidatePostConditions(TTestBedAsyncState /* aAsyncState */)
   267 	{
   268 	// Implement the correct post-condition test for this unit test transition.
   269 //#pragma message( __FILE__LINE__ "TO DO : Implement the correct post-condition test for this unit test transition.")
   270 	// For a d'tor this should be empty.
   271 	if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CUnitTest_UnitTestContext&,iUTContext).iUnitTest))
   272 		return EFalse;
   273 	return ETrue;
   274 	}
   275 
   276 // ______________________________________________________________________________
   277 //
   278 inline TUnitTest_AddLeaveErrorCode_TransitionValidator::TUnitTest_AddLeaveErrorCode_TransitionValidator(CUnitTestContext& aUTContext)
   279 :TTransitionValidator(aUTContext)
   280 	{
   281 	// Do nothing
   282 	}
   283 
   284 _LIT(KAddLeaveErrorCodeFailedInvariant,
   285 	"CUnitTest_AddLeaveErrorCode_Transition invariant failure");
   286 
   287 inline TBool TUnitTest_AddLeaveErrorCode_TransitionValidator::ValidatePreConditions()
   288 	{
   289 	// Implement the correct pre-condition test for this unit test transition.
   290 //#pragma message( __FILE__LINE__ "TO DO : Implement the correct pre-condition test for this unit test transition.")
   291 	// For a c'tor this should be empty.
   292 	if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CUnitTest_UnitTestContext&,iUTContext).iUnitTest))
   293 		{
   294 		iUTContext.DataLogger().LogInformation(KAddLeaveErrorCodeFailedInvariant);
   295 		return EFalse;
   296 		}
   297 	return ETrue;
   298 	}
   299 
   300 inline TBool TUnitTest_AddLeaveErrorCode_TransitionValidator::ValidatePostConditions(TTestBedAsyncState /* aAsyncState */)
   301 	{
   302 	// Implement the correct post-condition test for this unit test transition.
   303 //#pragma message( __FILE__LINE__ "TO DO : Implement the correct post-condition test for this unit test transition.")
   304 	// For a d'tor this should be empty.
   305 	if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CUnitTest_UnitTestContext&,iUTContext).iUnitTest))
   306 		{
   307 		iUTContext.DataLogger().LogInformation(KAddLeaveErrorCodeFailedInvariant);
   308 		return EFalse;
   309 		}
   310 	return ETrue;
   311 	}
   312 
   313 // ______________________________________________________________________________
   314 //
   315 inline TUnitTest_UnitTestName_TransitionValidator::TUnitTest_UnitTestName_TransitionValidator(CUnitTestContext& aUTContext)
   316 :TTransitionValidator(aUTContext)
   317 	{
   318 	// Do nothing
   319 	}
   320 
   321 inline TBool TUnitTest_UnitTestName_TransitionValidator::ValidatePreConditions()
   322 	{
   323 	return ETrue;
   324 	}
   325 
   326 inline TBool TUnitTest_UnitTestName_TransitionValidator::ValidatePostConditions(TTestBedAsyncState /* aAsyncState */)
   327 	{
   328 	// Implement the correct post-condition test for this unit test transition.
   329 //#pragma message( __FILE__LINE__ "TO DO : Implement the correct post-condition test for this unit test transition.")
   330 	// For a d'tor this should be empty.
   331 	if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CUnitTest_UnitTestContext&,iUTContext).iUnitTest))
   332 		return EFalse;
   333 	return ETrue;
   334 	}