os/ossrv/lowlevellibsandfws/pluginfw/Framework/ResolverTest/ResolverTransitionValidation.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 validation classes for the CResolver tests.
    15 // 
    16 //
    17 
    18 // ______________________________________________________________________________
    19 //
    20 inline TDefaultResolver_Ctor_TransitionValidator::TDefaultResolver_Ctor_TransitionValidator(CUnitTestContext& aUTContext)
    21 :TTransitionValidator(aUTContext)
    22 	{
    23 	// Do nothing
    24 	}
    25 
    26 inline TBool TDefaultResolver_Ctor_TransitionValidator::ValidatePreConditions()
    27 	{
    28 	return ETrue;
    29 	}
    30 
    31 inline TBool TDefaultResolver_Ctor_TransitionValidator::ValidatePostConditions(TTestBedAsyncState /* aAsyncState */)
    32 	{
    33 	if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CDefaultResolver_UnitTestContext&,iUTContext).iDefaultResolver))
    34 		return EFalse;
    35 	return ETrue;
    36 	}
    37 
    38 // ______________________________________________________________________________
    39 //
    40 inline TDefaultResolver_Dtor_TransitionValidator::TDefaultResolver_Dtor_TransitionValidator(CUnitTestContext& aUTContext)
    41 :TTransitionValidator(aUTContext)
    42 	{
    43 	// Do nothing
    44 	}
    45 
    46 inline TBool TDefaultResolver_Dtor_TransitionValidator::ValidatePreConditions()
    47 	{
    48 	if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CDefaultResolver_UnitTestContext&,iUTContext).iDefaultResolver))
    49 		return EFalse;
    50 	return ETrue;
    51 	}
    52 
    53 inline TBool TDefaultResolver_Dtor_TransitionValidator::ValidatePostConditions(TTestBedAsyncState /* aAsyncState */)
    54 	{
    55 	return ETrue;
    56 	}
    57 
    58 // ______________________________________________________________________________
    59 //
    60 inline TDefaultResolver_Default_TransitionValidator::TDefaultResolver_Default_TransitionValidator(CUnitTestContext& aUTContext)
    61 :TTransitionValidator(aUTContext)
    62 	{
    63 	// Do nothing
    64 	}
    65 
    66 inline TBool TDefaultResolver_Default_TransitionValidator::ValidatePreConditions()
    67 	{
    68 	if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CDefaultResolver_UnitTestContext&,iUTContext).iDefaultResolver))
    69 		return EFalse;
    70 	return ETrue;
    71 	}
    72 
    73 inline TBool TDefaultResolver_Default_TransitionValidator::ValidatePostConditions(TTestBedAsyncState /* aAsyncState */)
    74 	{
    75 	if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CDefaultResolver_UnitTestContext&,iUTContext).iDefaultResolver))
    76 		return EFalse;
    77 	return ETrue;
    78 	}
    79 
    80 // ______________________________________________________________________________
    81 //
    82 inline TDefaultResolver_IdentifyImplementationL_TransitionValidator::TDefaultResolver_IdentifyImplementationL_TransitionValidator(CUnitTestContext& aUTContext)
    83 :TTransitionValidator(aUTContext)
    84 	{
    85 	// Do nothing
    86 	}
    87 
    88 inline TBool TDefaultResolver_IdentifyImplementationL_TransitionValidator::ValidatePreConditions()
    89 	{
    90 	if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CDefaultResolver_UnitTestContext&,iUTContext).iDefaultResolver))
    91 		return EFalse;
    92 	return ETrue;
    93 	}
    94 
    95 inline TBool TDefaultResolver_IdentifyImplementationL_TransitionValidator::ValidatePostConditions(TTestBedAsyncState /* aAsyncState */)
    96 	{
    97 	CDefaultResolver_UnitTestContext& context = 
    98 		REINTERPRET_CAST(CDefaultResolver_UnitTestContext&,iUTContext);
    99 
   100 	_LIT(KIdentifiedUidMessage, "IdentifyImplmentationL() returned uid 0x%x");
   101 	context.DataLogger().LogInformationWithParameters(KIdentifiedUidMessage, 
   102 													  context.iResolvedImpUid.iUid);
   103 
   104 	if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CDefaultResolver_UnitTestContext&,iUTContext).iDefaultResolver))
   105 		return EFalse;
   106 	return ETrue;
   107 	}
   108 
   109 // ______________________________________________________________________________
   110 //
   111 inline TDefaultResolver_Match_TransitionValidator::TDefaultResolver_Match_TransitionValidator(CUnitTestContext& aUTContext)
   112 :TTransitionValidator(aUTContext)
   113 	{
   114 	// Do nothing
   115 	}
   116 
   117 inline TBool TDefaultResolver_Match_TransitionValidator::ValidatePreConditions()
   118 	{
   119 	if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CDefaultResolver_UnitTestContext&,iUTContext).iDefaultResolver))
   120 		return EFalse;
   121 	return ETrue;
   122 	}
   123 
   124 inline TBool TDefaultResolver_Match_TransitionValidator::ValidatePostConditions(TTestBedAsyncState /* aAsyncState */)
   125 	{
   126 	CDefaultResolver_UnitTestContext& context = 
   127 		REINTERPRET_CAST(CDefaultResolver_UnitTestContext&,iUTContext);
   128 	if(context.iMatchResult != context.iExpectedMatchResult)
   129 		{
   130 		// Log that we got the wrong result but carry on because we don't want the test to end
   131 		_LIT(KIncorrectMatchResult, "CDefaultResolver::Match returned incorrect result");
   132 		context.DataLogger().LogInformation(KIncorrectMatchResult);
   133 		}
   134 
   135 	if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CDefaultResolver_UnitTestContext&,iUTContext).iDefaultResolver))
   136 		return EFalse;
   137 	return ETrue;
   138 	}
   139