os/ossrv/lowlevellibsandfws/pluginfw/Framework/FrameTests/MagicTransitions.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
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 definitions for
sl@0
    15
// the transition classes for testing the
sl@0
    16
// CExampleInterface class.
sl@0
    17
// 
sl@0
    18
//
sl@0
    19
sl@0
    20
#ifndef __MAGICTRANSITION_H__
sl@0
    21
#define __MAGICTRANSITION_H__
sl@0
    22
sl@0
    23
#include <ecom/test_bed/transition.h>
sl@0
    24
#include "LeakTestTransition.h"
sl@0
    25
#include "Interface.h"
sl@0
    26
sl@0
    27
class CExampleInterface;
sl@0
    28
sl@0
    29
#define CTransitionType CLeakTestTransition
sl@0
    30
sl@0
    31
// ______________________________________________________________________________
sl@0
    32
//
sl@0
    33
/**
sl@0
    34
	Comments : The context in which the transitions will run
sl@0
    35
				That is to say the container in which the transition 
sl@0
    36
				parameters are passed around
sl@0
    37
 */
sl@0
    38
class CExampleInterface_UnitTestContext : public CUnitTestContext
sl@0
    39
	{
sl@0
    40
public:
sl@0
    41
	inline CExampleInterface_UnitTestContext(CDataLogger& aDataLogger, 
sl@0
    42
							  MStateAccessor& aAccessor,
sl@0
    43
							  MTransitionObserver& aObserver);
sl@0
    44
	inline ~CExampleInterface_UnitTestContext();
sl@0
    45
sl@0
    46
	CExampleInterface* iExampleInterface;
sl@0
    47
	CExampleInterface* iSecondExampleInterface;
sl@0
    48
	RImplInfoPtrArray iImplementations;
sl@0
    49
	/** An extra thread so that we can use ECom multi-threaded */
sl@0
    50
	RThread iListImplThread;
sl@0
    51
	};
sl@0
    52
sl@0
    53
/**
sl@0
    54
	Comments : Transition of the NewL method
sl@0
    55
 */
sl@0
    56
class CExampleInterfaceNewLTransition : public CTransitionType
sl@0
    57
	{
sl@0
    58
public:
sl@0
    59
	inline CExampleInterfaceNewLTransition( CUnitTestContext& aUTContext,
sl@0
    60
											TTransitionValidator& aValidator);
sl@0
    61
	inline void TransitMethodL();
sl@0
    62
	inline CExampleInterface_UnitTestContext& Context();
sl@0
    63
	};
sl@0
    64
sl@0
    65
/**
sl@0
    66
	Comments : Transition of the NewL method with parameters.
sl@0
    67
 */
sl@0
    68
class CExampleInterfaceNewWPLTransition : public CTransitionType
sl@0
    69
	{
sl@0
    70
public:
sl@0
    71
	inline CExampleInterfaceNewWPLTransition( CUnitTestContext& aUTContext,
sl@0
    72
											TTransitionValidator& aValidator);
sl@0
    73
	inline void TransitMethodL();
sl@0
    74
	inline CExampleInterface_UnitTestContext& Context();
sl@0
    75
	};
sl@0
    76
sl@0
    77
/**
sl@0
    78
	Comments : Transition of the NewL method with a match descriptor for resolving.
sl@0
    79
 */
sl@0
    80
class CExampleInterfaceNewResolveLTransition : public CTransitionType
sl@0
    81
	{
sl@0
    82
public:
sl@0
    83
	inline CExampleInterfaceNewResolveLTransition( CUnitTestContext& aUTContext,
sl@0
    84
											TTransitionValidator& aValidator);
sl@0
    85
	inline void TransitMethodL();
sl@0
    86
	inline CExampleInterface_UnitTestContext& Context();
sl@0
    87
	};
sl@0
    88
sl@0
    89
/**
sl@0
    90
	Comments : Special transition which creates two objects
sl@0
    91
 */
sl@0
    92
class CExampleInterfaceDoubleNewLTransition : public CTransitionType
sl@0
    93
	{
sl@0
    94
public:
sl@0
    95
	inline CExampleInterfaceDoubleNewLTransition( CUnitTestContext& aUTContext,
sl@0
    96
											TTransitionValidator& aValidator);
sl@0
    97
	inline void TransitMethodL();
sl@0
    98
	inline CExampleInterface_UnitTestContext& Context();
sl@0
    99
	};
sl@0
   100
sl@0
   101
/**
sl@0
   102
	Comments : Transition of the destructor method
sl@0
   103
 */
sl@0
   104
class CExampleInterfaceDtorTransition : public CTransitionType
sl@0
   105
	{
sl@0
   106
public:
sl@0
   107
	inline CExampleInterfaceDtorTransition( CUnitTestContext& aUTContext,
sl@0
   108
											TTransitionValidator& aValidator);
sl@0
   109
	inline void TransitMethodL();
sl@0
   110
	inline CExampleInterface_UnitTestContext& Context();
sl@0
   111
	};
sl@0
   112
sl@0
   113
/**
sl@0
   114
	Comments : Special destructor transition which destroys two implementations
sl@0
   115
 */
sl@0
   116
class CExampleInterfaceDoubleDtorTransition : public CTransitionType
sl@0
   117
	{
sl@0
   118
public:
sl@0
   119
	inline CExampleInterfaceDoubleDtorTransition( CUnitTestContext& aUTContext,
sl@0
   120
											TTransitionValidator& aValidator);
sl@0
   121
	inline void TransitMethodL();
sl@0
   122
	inline CExampleInterface_UnitTestContext& Context();
sl@0
   123
	};
sl@0
   124
sl@0
   125
/**
sl@0
   126
	Comments : Transition of the DoMethodL method
sl@0
   127
 */
sl@0
   128
class CExampleInterfaceDoMethodLTransition : public CTransitionType
sl@0
   129
	{
sl@0
   130
public:
sl@0
   131
	inline CExampleInterfaceDoMethodLTransition( CUnitTestContext& aUTContext,
sl@0
   132
											TTransitionValidator& aValidator);
sl@0
   133
	inline void TransitMethodL();
sl@0
   134
	inline CExampleInterface_UnitTestContext& Context();
sl@0
   135
	};
sl@0
   136
sl@0
   137
/**
sl@0
   138
	Comments : Transition of the ListImplementationsL method
sl@0
   139
 */
sl@0
   140
class CExampleInterfaceListImplementationsLTransition : public CTransitionType
sl@0
   141
	{
sl@0
   142
public:
sl@0
   143
	inline CExampleInterfaceListImplementationsLTransition( CUnitTestContext& aUTContext,
sl@0
   144
											TTransitionValidator& aValidator);
sl@0
   145
	inline void TransitMethodL();
sl@0
   146
	inline CExampleInterface_UnitTestContext& Context();
sl@0
   147
	};
sl@0
   148
sl@0
   149
/**
sl@0
   150
	Comments : Transition of the ListAllImplementationsL method
sl@0
   151
 */
sl@0
   152
class CExampleInterfaceListAllImplementationsLTransition : public CTransitionType
sl@0
   153
	{
sl@0
   154
public:
sl@0
   155
	inline CExampleInterfaceListAllImplementationsLTransition( CUnitTestContext& aUTContext,
sl@0
   156
											TTransitionValidator& aValidator);
sl@0
   157
	inline void TransitMethodL();
sl@0
   158
	inline CExampleInterface_UnitTestContext& Context();
sl@0
   159
	};
sl@0
   160
sl@0
   161
/**
sl@0
   162
	Comments : Transition of the ListAllImplementationsL method which occurs in a separate thread
sl@0
   163
 */
sl@0
   164
class CExampleInterfaceListImplementationsLNewThreadTransition : public CTransitionType
sl@0
   165
	{
sl@0
   166
public:
sl@0
   167
	inline CExampleInterfaceListImplementationsLNewThreadTransition( CUnitTestContext& aUTContext,
sl@0
   168
											TTransitionValidator& aValidator);
sl@0
   169
	inline void TransitMethodL();
sl@0
   170
	inline CExampleInterface_UnitTestContext& Context();
sl@0
   171
	};
sl@0
   172
sl@0
   173
#include "MagicTransitions.inl"
sl@0
   174
sl@0
   175
#endif	// __MAGICLeakTestTransition_H__