os/ossrv/lowlevellibsandfws/pluginfw/Framework/SuicideTests/SuicideUnitTests.cpp
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 // This file contains the definition of the 
    15 // class CAllTransitionsUnitTest	
    16 // 
    17 //
    18 
    19 #include <e32uid.h>
    20 
    21 #include "TestUtilities.h"	// For __FILE__LINE__
    22 #include "Interface.h"
    23 #include <test_bed/datalogger.h>
    24 
    25 #include "SuicideUnitTests.h"
    26 #include "SuicideTransitions.h"
    27 #include "SuicideTransitionValidation.h"
    28 
    29 #include "TlsData.h"		// For GlobalData
    30 
    31 // ______________________________________________________________________________
    32 //
    33 _LIT(KInterfaceCreateAndDestroyUnitTest,"CSuicideInterfaceCreateAndDestroyUnitTest");
    34 
    35 CSuicideInterfaceCreateAndDestroyUnitTest* CSuicideInterfaceCreateAndDestroyUnitTest::NewL(CDataLogger& aDataLogger,
    36 											MUnitTestObserver& aObserver)
    37 	{
    38 	CSuicideInterfaceCreateAndDestroyUnitTest* self = 
    39 					new(ELeave) CSuicideInterfaceCreateAndDestroyUnitTest(aDataLogger,
    40 																aObserver);
    41 	CleanupStack::PushL(self);
    42 	// Chain to the base which calls the ConstructL
    43 	self->ConstructL();
    44 	CleanupStack::Pop();
    45 	return self; 
    46 	}
    47 
    48 TInt CSuicideInterfaceCreateAndDestroyUnitTest::RunError(TInt aError)
    49 	{
    50 	// The RunL left so chain to the base first and then cleanup
    51 	TInt error = CUnitTest::RunError(aError);	// Chain to base
    52 	delete iUTContext;
    53 	iUTContext = NULL;
    54 	delete iStateAccessor;
    55 	iStateAccessor = NULL;
    56 	delete iCtorValidator;
    57 	delete iDtorValidator;
    58 	
    59 	iCtorValidator = 0;
    60 	iDtorValidator = 0;
    61 
    62 	return error;
    63 	}
    64 
    65 CSuicideInterfaceCreateAndDestroyUnitTest::~CSuicideInterfaceCreateAndDestroyUnitTest()
    66 	{
    67 	// Simply delete our test class instance
    68 	delete iUTContext;
    69 	delete iStateAccessor;
    70 	delete iCtorValidator;
    71 	delete iDtorValidator;
    72 
    73 	}
    74 
    75 CSuicideInterfaceCreateAndDestroyUnitTest::CSuicideInterfaceCreateAndDestroyUnitTest(CDataLogger& aDataLogger,
    76 																	MUnitTestObserver& aObserver)
    77 : CUnitTest(KInterfaceCreateAndDestroyUnitTest, aDataLogger, aObserver)
    78 	{
    79 	//Do nothing
    80 	}
    81 
    82 // Now the Individual transitions need to be added.
    83 void CSuicideInterfaceCreateAndDestroyUnitTest::ConstructL()
    84 	{
    85 	// Perform the base class initialization
    86 	UnitTestConstructL();
    87 
    88 	// Create the Unit test state accessor
    89 	iStateAccessor = new(ELeave) TSuicideInterface_StateAccessor();
    90 	
    91 	// context
    92 	iUTContext = new(ELeave) CSuicideInterface_UnitTestContext(iDataLogger, *iStateAccessor, *this);
    93 
    94 	// Add the Transitions in the order they are to run
    95 	// C'tor first, D'tor last...
    96 	iCtorValidator = new(ELeave) TSuicideInterface_Ctor_TransitionValidator(*iUTContext);
    97 	AddTransitionL(new(ELeave)CSuicideInterfaceNewLTransition(*iUTContext,*iCtorValidator));
    98 	
    99 	iDtorValidator = new(ELeave) TSuicideInterface_Dtor_TransitionValidator(*iUTContext);
   100 	AddTransitionL(new(ELeave)CSuicideInterfaceDtorTransition(*iUTContext,*iDtorValidator));
   101 	}
   102 // ______________________________________________________________________________
   103 //
   104 _LIT(KInterfaceFireAndForgetUnitTest,"CSuicideInterfaceFireAndForgetUnitTest");
   105 
   106 CSuicideInterfaceFireAndForgetUnitTest* CSuicideInterfaceFireAndForgetUnitTest::NewL(CDataLogger& aDataLogger, 
   107 																					 MUnitTestObserver& aObserver)
   108 	{
   109 	CSuicideInterfaceFireAndForgetUnitTest* self = new(ELeave) CSuicideInterfaceFireAndForgetUnitTest(aDataLogger, aObserver);
   110 	CleanupStack::PushL(self);
   111 	// Chain to the base which calls the ConstructL
   112 	self->ConstructL();
   113 	CleanupStack::Pop();
   114 	return self; 
   115 	}
   116 
   117 TInt CSuicideInterfaceFireAndForgetUnitTest::RunError(TInt aError)
   118 	{
   119 	TInt error = CUnitTest::RunError(aError);	// Chain to base
   120 	delete iUTContext;
   121 	iUTContext = NULL;
   122 	delete iStateAccessor;
   123 	iStateAccessor = NULL;
   124 	delete iCtorValidator;
   125 	iCtorValidator = NULL;
   126 	delete iFireAndForgetValidator;
   127 	iFireAndForgetValidator = NULL;
   128 
   129 	return error;
   130 	}
   131 
   132 CSuicideInterfaceFireAndForgetUnitTest::~CSuicideInterfaceFireAndForgetUnitTest()
   133 	{
   134 	delete iUTContext;
   135 	delete iStateAccessor;
   136 	delete iCtorValidator;
   137 	delete iFireAndForgetValidator;
   138 
   139 	}
   140 
   141 CSuicideInterfaceFireAndForgetUnitTest::CSuicideInterfaceFireAndForgetUnitTest(CDataLogger& aDataLogger, MUnitTestObserver& aObserver)
   142 : CUnitTest(KInterfaceFireAndForgetUnitTest, aDataLogger, aObserver)
   143 	{
   144 	//Do nothing
   145 	}
   146 
   147 // Now the Individual transitions need to be added.
   148 void CSuicideInterfaceFireAndForgetUnitTest::ConstructL()
   149 	{
   150 	UnitTestConstructL();
   151 
   152 	// Create the Unit test state accessor
   153 	iStateAccessor = new(ELeave) TSuicideInterface_StateAccessor();
   154 	// context
   155 	iUTContext = new(ELeave) CSuicideInterface_UnitTestContext(iDataLogger, *iStateAccessor, *this);
   156 	// Add the Transitions in the order they are to run
   157 	// C'tor first, D'tor last...
   158 	iCtorValidator = new(ELeave) TSuicideInterface_Ctor_TransitionValidator(*iUTContext);
   159 	AddTransitionL(new(ELeave)CSuicideInterfaceNewLTransition(*iUTContext,*iCtorValidator));
   160 
   161 	iFireAndForgetValidator = new(ELeave) TSuicideInterface_FireAndForget_TransitionValidator(*iUTContext);
   162 	AddTransitionL(new(ELeave)CSuicideInterfaceFireAndForgetTransition(*iUTContext, *iFireAndForgetValidator));
   163 	}
   164