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 |
#include <ecom/test_bed/datalogger.h>
|
sl@0
|
20 |
#include "LeakTestTransition.h"
|
sl@0
|
21 |
|
sl@0
|
22 |
EXPORT_C CLeakTestTransition::CLeakTestTransition(const TDesC& aTransitionId,
|
sl@0
|
23 |
CUnitTestContext& aUTContext,
|
sl@0
|
24 |
TTransitionValidator& aValidator)
|
sl@0
|
25 |
: CTransition(aTransitionId, aUTContext, aValidator),
|
sl@0
|
26 |
iFailStep(KMemoryLeakTestFailInit),
|
sl@0
|
27 |
iBreakStep(KMemoryLeakTestBreakNone)
|
sl@0
|
28 |
{
|
sl@0
|
29 |
// Do nothing here
|
sl@0
|
30 |
}
|
sl@0
|
31 |
|
sl@0
|
32 |
// Define the overloaded RunL behaviour here
|
sl@0
|
33 |
EXPORT_C void CLeakTestTransition::RunL()
|
sl@0
|
34 |
{
|
sl@0
|
35 |
// Setup leak check and call the base RunL
|
sl@0
|
36 |
iThread.HandleCount(iStartProcessHandleCount, iStartThreadHandleCount);
|
sl@0
|
37 |
__UHEAP_SETFAIL(RHeap::EDeterministic,iFailStep);
|
sl@0
|
38 |
__UHEAP_MARK;
|
sl@0
|
39 |
if(iBreakStep == iFailStep)
|
sl@0
|
40 |
{
|
sl@0
|
41 |
// Drop into the debugger because an unexpected leave occured
|
sl@0
|
42 |
// on the last run of the RunL. (This is therefore a repeat run...)
|
sl@0
|
43 |
__DEBUGGER();
|
sl@0
|
44 |
iBreakStep = KMemoryLeakTestBreakNone;
|
sl@0
|
45 |
}
|
sl@0
|
46 |
|
sl@0
|
47 |
if(iStatus == KErrNoMemory)
|
sl@0
|
48 |
{
|
sl@0
|
49 |
// Special case of Async Process signalling
|
sl@0
|
50 |
// a failure during the notification
|
sl@0
|
51 |
_LIT(KAsyncProblem, "CLeakTestTransition::RunL() async completion with error %d.");
|
sl@0
|
52 |
iUTContext.DataLogger().LogInformationWithParameters(KAsyncProblem, iStatus.Int());
|
sl@0
|
53 |
User::Leave(iStatus.Int());
|
sl@0
|
54 |
}
|
sl@0
|
55 |
|
sl@0
|
56 |
CTransition::RunL();
|
sl@0
|
57 |
if(iTransitionFinished)
|
sl@0
|
58 |
{
|
sl@0
|
59 |
// Successful completion.
|
sl@0
|
60 |
if(iStatus == KErrNone)
|
sl@0
|
61 |
{
|
sl@0
|
62 |
_LIT(KTransitionRunSuccess, "CLeakTestTransition::TransitMethodL() successful completion on iteration %d.");
|
sl@0
|
63 |
iUTContext.DataLogger().LogInformationWithParameters(KTransitionRunSuccess, iFailStep);
|
sl@0
|
64 |
}
|
sl@0
|
65 |
else if(iStatus == KRequestPending)
|
sl@0
|
66 |
{
|
sl@0
|
67 |
//This transition was to set up an asynchronous request
|
sl@0
|
68 |
_LIT(KTransitionRunAsync, "CLeakTestTransition::TransitMethodL() successful called async method on iteration %d.");
|
sl@0
|
69 |
iUTContext.DataLogger().LogInformationWithParameters(KTransitionRunAsync, iFailStep);
|
sl@0
|
70 |
}
|
sl@0
|
71 |
else
|
sl@0
|
72 |
{
|
sl@0
|
73 |
_LIT(KTransitionRunError, "CLeakTestTransition::TransitMethodL() error %d completion on iteration %d.");
|
sl@0
|
74 |
iUTContext.DataLogger().LogInformationWithParameters(KTransitionRunError, iStatus.Int(), iFailStep);
|
sl@0
|
75 |
}
|
sl@0
|
76 |
}
|
sl@0
|
77 |
else
|
sl@0
|
78 |
{
|
sl@0
|
79 |
__DEBUGGER(); // An impossible case ????
|
sl@0
|
80 |
}
|
sl@0
|
81 |
}
|
sl@0
|
82 |
|
sl@0
|
83 |
EXPORT_C TInt CLeakTestTransition::RunError(TInt aErrorCode)
|
sl@0
|
84 |
{
|
sl@0
|
85 |
if(aErrorCode != KErrNoMemory)
|
sl@0
|
86 |
{
|
sl@0
|
87 |
iLeaveError = aErrorCode;
|
sl@0
|
88 |
// Check if the leave is associated with a repeat request
|
sl@0
|
89 |
// I.e. it was an execution path test from a stub.
|
sl@0
|
90 |
if(iLeaveError == KTestBedRepeatTest && iRepeatThis)
|
sl@0
|
91 |
{
|
sl@0
|
92 |
_LIT(KTransitionRunRepeat, "CLeakTestTransition::TransitMethodL() leaving on iteration %d for repeat test.");
|
sl@0
|
93 |
iUTContext.DataLogger().LogInformationWithParameters(KTransitionRunRepeat, iFailStep);
|
sl@0
|
94 |
User::RequestComplete(iUnitTestStatus, KTestBedRepeatTest);
|
sl@0
|
95 |
}
|
sl@0
|
96 |
else
|
sl@0
|
97 |
{
|
sl@0
|
98 |
iBreakStep = iFailStep; // Unexpected so
|
sl@0
|
99 |
// Record the leave and signal completed with a leave code
|
sl@0
|
100 |
_LIT(KTransitionRunError, "CLeakTestTransition::TransitMethodL() leaving error %d on iteration %d.");
|
sl@0
|
101 |
iUTContext.DataLogger().LogInformationWithParameters(KTransitionRunError,
|
sl@0
|
102 |
aErrorCode,
|
sl@0
|
103 |
iFailStep);
|
sl@0
|
104 |
User::RequestComplete(iUnitTestStatus, KTestBedTestLeft);
|
sl@0
|
105 |
}
|
sl@0
|
106 |
}
|
sl@0
|
107 |
else
|
sl@0
|
108 |
{
|
sl@0
|
109 |
++iFailStep; // Caused by this test harness
|
sl@0
|
110 |
// Safety check in case we are testing a function which always leaves with KErrNoMemory
|
sl@0
|
111 |
if(iFailStep > KProbablyInfinitelyLooping)
|
sl@0
|
112 |
User::RequestComplete(iUnitTestStatus, KTestBedLeakTestLoopDetected);
|
sl@0
|
113 |
else
|
sl@0
|
114 |
{
|
sl@0
|
115 |
// Re-Schedule
|
sl@0
|
116 |
// Only Reset if its not a stub repeat
|
sl@0
|
117 |
// request via a leave
|
sl@0
|
118 |
if(aErrorCode != KTestBedRepeatTest)
|
sl@0
|
119 |
iTransitionInfo.iIteration = 0;
|
sl@0
|
120 |
SetActive();
|
sl@0
|
121 |
TRequestStatus* status = &iStatus;
|
sl@0
|
122 |
User::RequestComplete(status, KErrNone);
|
sl@0
|
123 |
}
|
sl@0
|
124 |
}
|
sl@0
|
125 |
// Check leak cleanup
|
sl@0
|
126 |
iThread.HandleCount(iEndProcessHandleCount, iEndThreadHandleCount);
|
sl@0
|
127 |
if(iStartThreadHandleCount != iEndThreadHandleCount)
|
sl@0
|
128 |
{
|
sl@0
|
129 |
__DEBUGGER(); // Oops leaked some handles
|
sl@0
|
130 |
}
|
sl@0
|
131 |
__UHEAP_MARKEND;
|
sl@0
|
132 |
__UHEAP_SETFAIL(RHeap::ENone, KMemoryLeakTestFailInit); // No more fails
|
sl@0
|
133 |
return KErrNone;
|
sl@0
|
134 |
}
|
sl@0
|
135 |
|
sl@0
|
136 |
EXPORT_C void CLeakTestTransition::PostTransitionCleanup()
|
sl@0
|
137 |
{
|
sl@0
|
138 |
__UHEAP_SETFAIL(RHeap::ENone, KMemoryLeakTestFailInit); // No more fails
|
sl@0
|
139 |
}
|