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".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // Overload of the CTransition test that provides
15 // Heap and Handle leak testing upon a test method.
19 #include <ecom/test_bed/datalogger.h>
20 #include "LeakTestTransition.h"
22 EXPORT_C CLeakTestTransition::CLeakTestTransition(const TDesC& aTransitionId,
23 CUnitTestContext& aUTContext,
24 TTransitionValidator& aValidator)
25 : CTransition(aTransitionId, aUTContext, aValidator),
26 iFailStep(KMemoryLeakTestFailInit),
27 iBreakStep(KMemoryLeakTestBreakNone)
32 // Define the overloaded RunL behaviour here
33 EXPORT_C void CLeakTestTransition::RunL()
35 // Setup leak check and call the base RunL
36 iThread.HandleCount(iStartProcessHandleCount, iStartThreadHandleCount);
37 __UHEAP_SETFAIL(RHeap::EDeterministic,iFailStep);
39 if(iBreakStep == iFailStep)
41 // Drop into the debugger because an unexpected leave occured
42 // on the last run of the RunL. (This is therefore a repeat run...)
44 iBreakStep = KMemoryLeakTestBreakNone;
47 if(iStatus == KErrNoMemory)
49 // Special case of Async Process signalling
50 // a failure during the notification
51 _LIT(KAsyncProblem, "CLeakTestTransition::RunL() async completion with error %d.");
52 iUTContext.DataLogger().LogInformationWithParameters(KAsyncProblem, iStatus.Int());
53 User::Leave(iStatus.Int());
57 if(iTransitionFinished)
59 // Successful completion.
60 if(iStatus == KErrNone)
62 _LIT(KTransitionRunSuccess, "CLeakTestTransition::TransitMethodL() successful completion on iteration %d.");
63 iUTContext.DataLogger().LogInformationWithParameters(KTransitionRunSuccess, iFailStep);
65 else if(iStatus == KRequestPending)
67 //This transition was to set up an asynchronous request
68 _LIT(KTransitionRunAsync, "CLeakTestTransition::TransitMethodL() successful called async method on iteration %d.");
69 iUTContext.DataLogger().LogInformationWithParameters(KTransitionRunAsync, iFailStep);
73 _LIT(KTransitionRunError, "CLeakTestTransition::TransitMethodL() error %d completion on iteration %d.");
74 iUTContext.DataLogger().LogInformationWithParameters(KTransitionRunError, iStatus.Int(), iFailStep);
79 __DEBUGGER(); // An impossible case ????
83 EXPORT_C TInt CLeakTestTransition::RunError(TInt aErrorCode)
85 if(aErrorCode != KErrNoMemory)
87 iLeaveError = aErrorCode;
88 // Check if the leave is associated with a repeat request
89 // I.e. it was an execution path test from a stub.
90 if(iLeaveError == KTestBedRepeatTest && iRepeatThis)
92 _LIT(KTransitionRunRepeat, "CLeakTestTransition::TransitMethodL() leaving on iteration %d for repeat test.");
93 iUTContext.DataLogger().LogInformationWithParameters(KTransitionRunRepeat, iFailStep);
94 User::RequestComplete(iUnitTestStatus, KTestBedRepeatTest);
98 iBreakStep = iFailStep; // Unexpected so
99 // Record the leave and signal completed with a leave code
100 _LIT(KTransitionRunError, "CLeakTestTransition::TransitMethodL() leaving error %d on iteration %d.");
101 iUTContext.DataLogger().LogInformationWithParameters(KTransitionRunError,
104 User::RequestComplete(iUnitTestStatus, KTestBedTestLeft);
109 ++iFailStep; // Caused by this test harness
110 // Safety check in case we are testing a function which always leaves with KErrNoMemory
111 if(iFailStep > KProbablyInfinitelyLooping)
112 User::RequestComplete(iUnitTestStatus, KTestBedLeakTestLoopDetected);
116 // Only Reset if its not a stub repeat
117 // request via a leave
118 if(aErrorCode != KTestBedRepeatTest)
119 iTransitionInfo.iIteration = 0;
121 TRequestStatus* status = &iStatus;
122 User::RequestComplete(status, KErrNone);
125 // Check leak cleanup
126 iThread.HandleCount(iEndProcessHandleCount, iEndThreadHandleCount);
127 if(iStartThreadHandleCount != iEndThreadHandleCount)
129 __DEBUGGER(); // Oops leaked some handles
132 __UHEAP_SETFAIL(RHeap::ENone, KMemoryLeakTestFailInit); // No more fails
136 EXPORT_C void CLeakTestTransition::PostTransitionCleanup()
138 __UHEAP_SETFAIL(RHeap::ENone, KMemoryLeakTestFailInit); // No more fails