Update contrib.
1 // Copyright (c) 2006-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 // test code for RTextBuf - DEF015702
21 LOCAL_D RTest test(_L("RTextBuf"));
23 const TInt KErrSimulated = -100001;
24 _LIT(KThreadName,"newThread");
29 CleanupClosePushL(buf);
31 CleanupStack::PopAndDestroy();
34 TInt ThreadFunc(TAny*)
36 CTrapCleanup* trapCleanup = CTrapCleanup::New();
37 TRAPD(err, PanicFuncL());
43 @SYMTestCaseID SYSLIB-BAFL-UT-1795
44 @SYMTestCaseDesc Testing panic on RTextBuf class(JustInTimeDebug is disabled)
46 @SYMTestActions Test that panics, when the condition inside __ASSERT is made false, by passing 0 as parameter to SetMaxLengthL function
47 @SYMTestExpectedResults Tests must panic
52 test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-UT-1795 "));
53 TRequestStatus threadStatus;
57 jit = User::JustInTime();
58 User::SetJustInTime(EFalse);
60 rc = thread.Create(KThreadName, ThreadFunc,
61 KDefaultStackSize, KMinHeapSize, KMinHeapSize*4,NULL);
64 thread.Logon(threadStatus);
67 User::WaitForRequest(threadStatus);
68 User::SetJustInTime(jit);
70 test(thread.ExitType() == EExitPanic);
76 @SYMTestCaseID SYSLIB-BAFL-CT-0466
77 @SYMTestCaseDesc Tests for Defect number DEF015702
79 @SYMTestActions Tests for clean completion even after Leave
80 @SYMTestExpectedResults Test must not fail
86 * RTextBuf is not safe.
87 * RTextBuf has a destructor; but the destructor will not be called if a leave occurs
88 * (if the RTextBuf is on the stack).
91 test.Start(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0466 Testing fix for defect DEF015702 "));
95 CleanupClosePushL(buf);
97 buf.SetMaxLengthL(20);
98 //Test that raises a panic
100 buf.SetText(_L("0123456789"));
102 // Simulate a problem with calling of User::Leave(KErrSimulated).
103 // There should be no "Panic ALLOC" in epocwind.out file.
104 //And te test should be completed with OK.
105 User::Leave(KErrSimulated);
113 CTrapCleanup* trapCleanup = CTrapCleanup::New();
114 TRAPD(error, DEF015702());
117 TUint32 badCell = __UHEAP_MARKEND;
119 if(error == KErrSimulated)
126 User::After(3000000);
139 CTrapCleanup* trapCleanup = CTrapCleanup::New();
140 TRAPD(error, DoE32MainL());