os/ossrv/lowlevellibsandfws/pluginfw/Framework/SuicideTests/SuicideUnitTests.cpp
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
sl@0
     1
// Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
// All rights reserved.
sl@0
     3
// This component and the accompanying materials are made available
sl@0
     4
// under the terms of "Eclipse Public License v1.0"
sl@0
     5
// which accompanies this distribution, and is available
sl@0
     6
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
//
sl@0
     8
// Initial Contributors:
sl@0
     9
// Nokia Corporation - initial contribution.
sl@0
    10
//
sl@0
    11
// Contributors:
sl@0
    12
//
sl@0
    13
// Description:
sl@0
    14
// This file contains the definition of the 
sl@0
    15
// class CAllTransitionsUnitTest	
sl@0
    16
// 
sl@0
    17
//
sl@0
    18
sl@0
    19
#include <e32uid.h>
sl@0
    20
sl@0
    21
#include "TestUtilities.h"	// For __FILE__LINE__
sl@0
    22
#include "Interface.h"
sl@0
    23
#include <test_bed/datalogger.h>
sl@0
    24
sl@0
    25
#include "SuicideUnitTests.h"
sl@0
    26
#include "SuicideTransitions.h"
sl@0
    27
#include "SuicideTransitionValidation.h"
sl@0
    28
sl@0
    29
#include "TlsData.h"		// For GlobalData
sl@0
    30
sl@0
    31
// ______________________________________________________________________________
sl@0
    32
//
sl@0
    33
_LIT(KInterfaceCreateAndDestroyUnitTest,"CSuicideInterfaceCreateAndDestroyUnitTest");
sl@0
    34
sl@0
    35
CSuicideInterfaceCreateAndDestroyUnitTest* CSuicideInterfaceCreateAndDestroyUnitTest::NewL(CDataLogger& aDataLogger,
sl@0
    36
											MUnitTestObserver& aObserver)
sl@0
    37
	{
sl@0
    38
	CSuicideInterfaceCreateAndDestroyUnitTest* self = 
sl@0
    39
					new(ELeave) CSuicideInterfaceCreateAndDestroyUnitTest(aDataLogger,
sl@0
    40
																aObserver);
sl@0
    41
	CleanupStack::PushL(self);
sl@0
    42
	// Chain to the base which calls the ConstructL
sl@0
    43
	self->ConstructL();
sl@0
    44
	CleanupStack::Pop();
sl@0
    45
	return self; 
sl@0
    46
	}
sl@0
    47
sl@0
    48
TInt CSuicideInterfaceCreateAndDestroyUnitTest::RunError(TInt aError)
sl@0
    49
	{
sl@0
    50
	// The RunL left so chain to the base first and then cleanup
sl@0
    51
	TInt error = CUnitTest::RunError(aError);	// Chain to base
sl@0
    52
	delete iUTContext;
sl@0
    53
	iUTContext = NULL;
sl@0
    54
	delete iStateAccessor;
sl@0
    55
	iStateAccessor = NULL;
sl@0
    56
	delete iCtorValidator;
sl@0
    57
	delete iDtorValidator;
sl@0
    58
	
sl@0
    59
	iCtorValidator = 0;
sl@0
    60
	iDtorValidator = 0;
sl@0
    61
sl@0
    62
	return error;
sl@0
    63
	}
sl@0
    64
sl@0
    65
CSuicideInterfaceCreateAndDestroyUnitTest::~CSuicideInterfaceCreateAndDestroyUnitTest()
sl@0
    66
	{
sl@0
    67
	// Simply delete our test class instance
sl@0
    68
	delete iUTContext;
sl@0
    69
	delete iStateAccessor;
sl@0
    70
	delete iCtorValidator;
sl@0
    71
	delete iDtorValidator;
sl@0
    72
sl@0
    73
	}
sl@0
    74
sl@0
    75
CSuicideInterfaceCreateAndDestroyUnitTest::CSuicideInterfaceCreateAndDestroyUnitTest(CDataLogger& aDataLogger,
sl@0
    76
																	MUnitTestObserver& aObserver)
sl@0
    77
: CUnitTest(KInterfaceCreateAndDestroyUnitTest, aDataLogger, aObserver)
sl@0
    78
	{
sl@0
    79
	//Do nothing
sl@0
    80
	}
sl@0
    81
sl@0
    82
// Now the Individual transitions need to be added.
sl@0
    83
void CSuicideInterfaceCreateAndDestroyUnitTest::ConstructL()
sl@0
    84
	{
sl@0
    85
	// Perform the base class initialization
sl@0
    86
	UnitTestConstructL();
sl@0
    87
sl@0
    88
	// Create the Unit test state accessor
sl@0
    89
	iStateAccessor = new(ELeave) TSuicideInterface_StateAccessor();
sl@0
    90
	
sl@0
    91
	// context
sl@0
    92
	iUTContext = new(ELeave) CSuicideInterface_UnitTestContext(iDataLogger, *iStateAccessor, *this);
sl@0
    93
sl@0
    94
	// Add the Transitions in the order they are to run
sl@0
    95
	// C'tor first, D'tor last...
sl@0
    96
	iCtorValidator = new(ELeave) TSuicideInterface_Ctor_TransitionValidator(*iUTContext);
sl@0
    97
	AddTransitionL(new(ELeave)CSuicideInterfaceNewLTransition(*iUTContext,*iCtorValidator));
sl@0
    98
	
sl@0
    99
	iDtorValidator = new(ELeave) TSuicideInterface_Dtor_TransitionValidator(*iUTContext);
sl@0
   100
	AddTransitionL(new(ELeave)CSuicideInterfaceDtorTransition(*iUTContext,*iDtorValidator));
sl@0
   101
	}
sl@0
   102
// ______________________________________________________________________________
sl@0
   103
//
sl@0
   104
_LIT(KInterfaceFireAndForgetUnitTest,"CSuicideInterfaceFireAndForgetUnitTest");
sl@0
   105
sl@0
   106
CSuicideInterfaceFireAndForgetUnitTest* CSuicideInterfaceFireAndForgetUnitTest::NewL(CDataLogger& aDataLogger, 
sl@0
   107
																					 MUnitTestObserver& aObserver)
sl@0
   108
	{
sl@0
   109
	CSuicideInterfaceFireAndForgetUnitTest* self = new(ELeave) CSuicideInterfaceFireAndForgetUnitTest(aDataLogger, aObserver);
sl@0
   110
	CleanupStack::PushL(self);
sl@0
   111
	// Chain to the base which calls the ConstructL
sl@0
   112
	self->ConstructL();
sl@0
   113
	CleanupStack::Pop();
sl@0
   114
	return self; 
sl@0
   115
	}
sl@0
   116
sl@0
   117
TInt CSuicideInterfaceFireAndForgetUnitTest::RunError(TInt aError)
sl@0
   118
	{
sl@0
   119
	TInt error = CUnitTest::RunError(aError);	// Chain to base
sl@0
   120
	delete iUTContext;
sl@0
   121
	iUTContext = NULL;
sl@0
   122
	delete iStateAccessor;
sl@0
   123
	iStateAccessor = NULL;
sl@0
   124
	delete iCtorValidator;
sl@0
   125
	iCtorValidator = NULL;
sl@0
   126
	delete iFireAndForgetValidator;
sl@0
   127
	iFireAndForgetValidator = NULL;
sl@0
   128
sl@0
   129
	return error;
sl@0
   130
	}
sl@0
   131
sl@0
   132
CSuicideInterfaceFireAndForgetUnitTest::~CSuicideInterfaceFireAndForgetUnitTest()
sl@0
   133
	{
sl@0
   134
	delete iUTContext;
sl@0
   135
	delete iStateAccessor;
sl@0
   136
	delete iCtorValidator;
sl@0
   137
	delete iFireAndForgetValidator;
sl@0
   138
sl@0
   139
	}
sl@0
   140
sl@0
   141
CSuicideInterfaceFireAndForgetUnitTest::CSuicideInterfaceFireAndForgetUnitTest(CDataLogger& aDataLogger, MUnitTestObserver& aObserver)
sl@0
   142
: CUnitTest(KInterfaceFireAndForgetUnitTest, aDataLogger, aObserver)
sl@0
   143
	{
sl@0
   144
	//Do nothing
sl@0
   145
	}
sl@0
   146
sl@0
   147
// Now the Individual transitions need to be added.
sl@0
   148
void CSuicideInterfaceFireAndForgetUnitTest::ConstructL()
sl@0
   149
	{
sl@0
   150
	UnitTestConstructL();
sl@0
   151
sl@0
   152
	// Create the Unit test state accessor
sl@0
   153
	iStateAccessor = new(ELeave) TSuicideInterface_StateAccessor();
sl@0
   154
	// context
sl@0
   155
	iUTContext = new(ELeave) CSuicideInterface_UnitTestContext(iDataLogger, *iStateAccessor, *this);
sl@0
   156
	// Add the Transitions in the order they are to run
sl@0
   157
	// C'tor first, D'tor last...
sl@0
   158
	iCtorValidator = new(ELeave) TSuicideInterface_Ctor_TransitionValidator(*iUTContext);
sl@0
   159
	AddTransitionL(new(ELeave)CSuicideInterfaceNewLTransition(*iUTContext,*iCtorValidator));
sl@0
   160
sl@0
   161
	iFireAndForgetValidator = new(ELeave) TSuicideInterface_FireAndForget_TransitionValidator(*iUTContext);
sl@0
   162
	AddTransitionL(new(ELeave)CSuicideInterfaceFireAndForgetTransition(*iUTContext, *iFireAndForgetValidator));
sl@0
   163
	}
sl@0
   164