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 |
// Overload of the CTransition test that provides
|
sl@0
|
15 |
// Heap and Handle leak testing upon a test method.
|
sl@0
|
16 |
//
|
sl@0
|
17 |
//
|
sl@0
|
18 |
|
sl@0
|
19 |
/**
|
sl@0
|
20 |
@test
|
sl@0
|
21 |
*/
|
sl@0
|
22 |
|
sl@0
|
23 |
#ifndef __LEAKTESTTRANSITIONS_H__
|
sl@0
|
24 |
#define __LEAKTESTTRANSITIONS_H__
|
sl@0
|
25 |
|
sl@0
|
26 |
#include <ecom/test_bed/testutilities.h>
|
sl@0
|
27 |
#include <ecom/test_bed/transition.h>
|
sl@0
|
28 |
#include <ecom/test_bed/testbeddefinitions.h>
|
sl@0
|
29 |
|
sl@0
|
30 |
// Constants used to specify various internal states of the CLeakTestTransition
|
sl@0
|
31 |
const TInt KMemoryLeakTestBreakNone = -1;
|
sl@0
|
32 |
const TInt KMemoryLeakTestFailNone = 0;
|
sl@0
|
33 |
const TInt KMemoryLeakTestFailInit = 1;
|
sl@0
|
34 |
/** RunError depth limit test */
|
sl@0
|
35 |
const TInt KProbablyInfinitelyLooping = 10000;
|
sl@0
|
36 |
|
sl@0
|
37 |
/**
|
sl@0
|
38 |
@internalAll
|
sl@0
|
39 |
Comments : Overloaded Base class from which test developers
|
sl@0
|
40 |
can derive their own transitions for both
|
sl@0
|
41 |
synchronous and asynchronous methods on
|
sl@0
|
42 |
the test class.
|
sl@0
|
43 |
@see CTransition.
|
sl@0
|
44 |
This overload checks that memory does not
|
sl@0
|
45 |
leak when using a test method, and that
|
sl@0
|
46 |
open handles are closed correctly.
|
sl@0
|
47 |
It is therefore not suitable for testing methods
|
sl@0
|
48 |
which allocate/ or deallocate memory that persists after the method has
|
sl@0
|
49 |
completed, or which open/close handles to resources for the class
|
sl@0
|
50 |
which remain open/closed after the method completes.
|
sl@0
|
51 |
|
sl@0
|
52 |
This base class is not really suitable for use in testing non-leaving methods.
|
sl@0
|
53 |
(The result being that sections of the code called from within the
|
sl@0
|
54 |
leaving method will if trapped, fail and not exercise the code fully.)
|
sl@0
|
55 |
*/
|
sl@0
|
56 |
|
sl@0
|
57 |
class CLeakTestTransition : public CTransition
|
sl@0
|
58 |
{
|
sl@0
|
59 |
protected:
|
sl@0
|
60 |
/**
|
sl@0
|
61 |
@fn IMPORT_C CLeakTestTransition(const TDesC& aTransitionId,
|
sl@0
|
62 |
CUnitTestContext& aUTContext,
|
sl@0
|
63 |
TTransitionValidator& aValidator)
|
sl@0
|
64 |
Intended Usage : Default Constructor
|
sl@0
|
65 |
@since 7.0
|
sl@0
|
66 |
@param aTransactionId The unique id of this transition.
|
sl@0
|
67 |
@param aUTContext The context to run this transition in
|
sl@0
|
68 |
@param aValidator Provides Pre & Post Validation checking
|
sl@0
|
69 |
@pre None
|
sl@0
|
70 |
@post First phase of two phase construction is complete
|
sl@0
|
71 |
*/
|
sl@0
|
72 |
IMPORT_C CLeakTestTransition(const TDesC& aTransitionId,
|
sl@0
|
73 |
CUnitTestContext& aUTContext,
|
sl@0
|
74 |
TTransitionValidator& aValidator);
|
sl@0
|
75 |
/**
|
sl@0
|
76 |
@fn IMPORT_C virtual void RunL()
|
sl@0
|
77 |
Intended Usage : Override of CTransition virtual method.
|
sl@0
|
78 |
@see CTransition::RunL() for normal CTransition behaviour.
|
sl@0
|
79 |
This overload sets up the heap allocation to fail upon a deterministic
|
sl@0
|
80 |
count that is incremented once for each time the RunError method fires
|
sl@0
|
81 |
with a KErrNoMemory error.
|
sl@0
|
82 |
Whichever method is used the second call of RunL() will complete the request
|
sl@0
|
83 |
of the CUnitTest which called this transition by setting its status word.
|
sl@0
|
84 |
If it has been requested that this transition is repeated then the status
|
sl@0
|
85 |
word will be set to KTestBedRepeatTest.
|
sl@0
|
86 |
Error Condition :
|
sl@0
|
87 |
@since 7.0
|
sl@0
|
88 |
@pre RunTransition() ensures the preconditions for this function
|
sl@0
|
89 |
@post With iTransitionFinished == ETrue test has been completed.
|
sl@0
|
90 |
Otherwise - Leak test has been initialized and
|
sl@0
|
91 |
test method has been called via CTransition::RunL()
|
sl@0
|
92 |
*/
|
sl@0
|
93 |
|
sl@0
|
94 |
IMPORT_C virtual void RunL();
|
sl@0
|
95 |
|
sl@0
|
96 |
|
sl@0
|
97 |
/**
|
sl@0
|
98 |
@fn IMPORT_C virtual TInt RunError(TInt aErrorCode)
|
sl@0
|
99 |
Intended Usage : Handle the RunL leave that upsets the Active Scheduler.
|
sl@0
|
100 |
Error Condition : @see CTransition.
|
sl@0
|
101 |
@since 7.0
|
sl@0
|
102 |
@param anErrorCode The error code that was returned by the Leave;
|
sl@0
|
103 |
@return TInt KErrNone
|
sl@0
|
104 |
@pre CLeakTestTransition has been fully constructed, and initialized and
|
sl@0
|
105 |
RunL left with an error code.
|
sl@0
|
106 |
@post CLeakTestTransition is returned to a sensible state and the test is
|
sl@0
|
107 |
resceduled if aErrorCode was KErrNoMemory.
|
sl@0
|
108 |
*/
|
sl@0
|
109 |
|
sl@0
|
110 |
IMPORT_C virtual TInt RunError(TInt aErrorCode);
|
sl@0
|
111 |
|
sl@0
|
112 |
/**
|
sl@0
|
113 |
@fn PostTransitionCleanup()
|
sl@0
|
114 |
Intended Usage : Called from the RunL immediately after TransitMethodL() executes
|
sl@0
|
115 |
@since 7.0
|
sl@0
|
116 |
@pre Must be called from RunL only after TransitMethodL() has completed.
|
sl@0
|
117 |
@post Heap failure is immediately disabled.
|
sl@0
|
118 |
*/
|
sl@0
|
119 |
|
sl@0
|
120 |
IMPORT_C virtual void PostTransitionCleanup();
|
sl@0
|
121 |
|
sl@0
|
122 |
/** The count of process open handles at the start of the RunL. */
|
sl@0
|
123 |
|
sl@0
|
124 |
TInt iStartProcessHandleCount;
|
sl@0
|
125 |
/** The count of thread open handles at the start of the RunL. */
|
sl@0
|
126 |
|
sl@0
|
127 |
TInt iStartThreadHandleCount;
|
sl@0
|
128 |
/** The count of process open handles at the end of the RunL/RunError. */
|
sl@0
|
129 |
|
sl@0
|
130 |
TInt iEndProcessHandleCount;
|
sl@0
|
131 |
/** The count of thread open handles at the end of the RunL/RunError. */
|
sl@0
|
132 |
|
sl@0
|
133 |
TInt iEndThreadHandleCount;
|
sl@0
|
134 |
/** The current thread handle */
|
sl@0
|
135 |
|
sl@0
|
136 |
RThread iThread;
|
sl@0
|
137 |
|
sl@0
|
138 |
/** The current iteration of the test method upon which to fail. */
|
sl@0
|
139 |
|
sl@0
|
140 |
TInt iFailStep;
|
sl@0
|
141 |
/** The iteration of the test method upon which an unexpected failure occurred. */
|
sl@0
|
142 |
|
sl@0
|
143 |
TInt iBreakStep;
|
sl@0
|
144 |
};
|
sl@0
|
145 |
|
sl@0
|
146 |
#endif // __LEAKTESTTRANSITIONS_H__
|
sl@0
|
147 |
|