sl@0
|
1 |
// Copyright (c) 2006-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 |
// test code for RTextBuf - DEF015702
|
sl@0
|
15 |
//
|
sl@0
|
16 |
//
|
sl@0
|
17 |
|
sl@0
|
18 |
#include <bamatch.h>
|
sl@0
|
19 |
#include <e32test.h>
|
sl@0
|
20 |
|
sl@0
|
21 |
LOCAL_D RTest test(_L("RTextBuf"));
|
sl@0
|
22 |
|
sl@0
|
23 |
const TInt KErrSimulated = -100001;
|
sl@0
|
24 |
_LIT(KThreadName,"newThread");
|
sl@0
|
25 |
|
sl@0
|
26 |
void PanicFuncL()
|
sl@0
|
27 |
{
|
sl@0
|
28 |
RTextBuf buf;
|
sl@0
|
29 |
CleanupClosePushL(buf);
|
sl@0
|
30 |
buf.SetMaxLengthL(0);
|
sl@0
|
31 |
CleanupStack::PopAndDestroy();
|
sl@0
|
32 |
}
|
sl@0
|
33 |
|
sl@0
|
34 |
TInt ThreadFunc(TAny*)
|
sl@0
|
35 |
{
|
sl@0
|
36 |
CTrapCleanup* trapCleanup = CTrapCleanup::New();
|
sl@0
|
37 |
TRAPD(err, PanicFuncL());
|
sl@0
|
38 |
delete trapCleanup;
|
sl@0
|
39 |
return err;
|
sl@0
|
40 |
}
|
sl@0
|
41 |
|
sl@0
|
42 |
/**
|
sl@0
|
43 |
@SYMTestCaseID SYSLIB-BAFL-UT-1795
|
sl@0
|
44 |
@SYMTestCaseDesc Testing panic on RTextBuf class(JustInTimeDebug is disabled)
|
sl@0
|
45 |
@SYMTestPriority Low
|
sl@0
|
46 |
@SYMTestActions Test that panics, when the condition inside __ASSERT is made false, by passing 0 as parameter to SetMaxLengthL function
|
sl@0
|
47 |
@SYMTestExpectedResults Tests must panic
|
sl@0
|
48 |
@SYMREQ REQ0000
|
sl@0
|
49 |
*/
|
sl@0
|
50 |
void PanicTest()
|
sl@0
|
51 |
{
|
sl@0
|
52 |
test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-UT-1795 "));
|
sl@0
|
53 |
TRequestStatus threadStatus;
|
sl@0
|
54 |
RThread thread;
|
sl@0
|
55 |
TInt rc;
|
sl@0
|
56 |
TBool jit;
|
sl@0
|
57 |
jit = User::JustInTime();
|
sl@0
|
58 |
User::SetJustInTime(EFalse);
|
sl@0
|
59 |
|
sl@0
|
60 |
rc = thread.Create(KThreadName, ThreadFunc,
|
sl@0
|
61 |
KDefaultStackSize, KMinHeapSize, KMinHeapSize*4,NULL);
|
sl@0
|
62 |
test(KErrNone == rc);
|
sl@0
|
63 |
|
sl@0
|
64 |
thread.Logon(threadStatus);
|
sl@0
|
65 |
thread.Resume();
|
sl@0
|
66 |
|
sl@0
|
67 |
User::WaitForRequest(threadStatus);
|
sl@0
|
68 |
User::SetJustInTime(jit);
|
sl@0
|
69 |
|
sl@0
|
70 |
test(thread.ExitType() == EExitPanic);
|
sl@0
|
71 |
thread.Close();
|
sl@0
|
72 |
}
|
sl@0
|
73 |
|
sl@0
|
74 |
/*
|
sl@0
|
75 |
|
sl@0
|
76 |
@SYMTestCaseID SYSLIB-BAFL-CT-0466
|
sl@0
|
77 |
@SYMTestCaseDesc Tests for Defect number DEF015702
|
sl@0
|
78 |
@SYMTestPriority High
|
sl@0
|
79 |
@SYMTestActions Tests for clean completion even after Leave
|
sl@0
|
80 |
@SYMTestExpectedResults Test must not fail
|
sl@0
|
81 |
@SYMREQ REQ0000
|
sl@0
|
82 |
*/
|
sl@0
|
83 |
void DEF015702()
|
sl@0
|
84 |
/**
|
sl@0
|
85 |
* Test DEF015702.
|
sl@0
|
86 |
* RTextBuf is not safe.
|
sl@0
|
87 |
* RTextBuf has a destructor; but the destructor will not be called if a leave occurs
|
sl@0
|
88 |
* (if the RTextBuf is on the stack).
|
sl@0
|
89 |
*/
|
sl@0
|
90 |
{
|
sl@0
|
91 |
test.Start(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0466 Testing fix for defect DEF015702 "));
|
sl@0
|
92 |
|
sl@0
|
93 |
RTextBuf buf;
|
sl@0
|
94 |
|
sl@0
|
95 |
CleanupClosePushL(buf);
|
sl@0
|
96 |
|
sl@0
|
97 |
buf.SetMaxLengthL(20);
|
sl@0
|
98 |
//Test that raises a panic
|
sl@0
|
99 |
PanicTest();
|
sl@0
|
100 |
buf.SetText(_L("0123456789"));
|
sl@0
|
101 |
|
sl@0
|
102 |
// Simulate a problem with calling of User::Leave(KErrSimulated).
|
sl@0
|
103 |
// There should be no "Panic ALLOC" in epocwind.out file.
|
sl@0
|
104 |
//And te test should be completed with OK.
|
sl@0
|
105 |
User::Leave(KErrSimulated);
|
sl@0
|
106 |
}
|
sl@0
|
107 |
|
sl@0
|
108 |
|
sl@0
|
109 |
void DoE32MainL()
|
sl@0
|
110 |
{
|
sl@0
|
111 |
//
|
sl@0
|
112 |
__UHEAP_MARK;
|
sl@0
|
113 |
CTrapCleanup* trapCleanup = CTrapCleanup::New();
|
sl@0
|
114 |
TRAPD(error, DEF015702());
|
sl@0
|
115 |
delete trapCleanup;
|
sl@0
|
116 |
#ifdef _DEBUG
|
sl@0
|
117 |
TUint32 badCell = __UHEAP_MARKEND;
|
sl@0
|
118 |
#endif
|
sl@0
|
119 |
if(error == KErrSimulated)
|
sl@0
|
120 |
{
|
sl@0
|
121 |
#ifdef _DEBUG
|
sl@0
|
122 |
if(badCell == 0)
|
sl@0
|
123 |
#endif
|
sl@0
|
124 |
{
|
sl@0
|
125 |
test.End();
|
sl@0
|
126 |
User::After(3000000);
|
sl@0
|
127 |
}
|
sl@0
|
128 |
}
|
sl@0
|
129 |
//
|
sl@0
|
130 |
}
|
sl@0
|
131 |
|
sl@0
|
132 |
|
sl@0
|
133 |
TInt E32Main()
|
sl@0
|
134 |
{
|
sl@0
|
135 |
__UHEAP_MARK;
|
sl@0
|
136 |
|
sl@0
|
137 |
test.Title();
|
sl@0
|
138 |
|
sl@0
|
139 |
CTrapCleanup* trapCleanup = CTrapCleanup::New();
|
sl@0
|
140 |
TRAPD(error, DoE32MainL());
|
sl@0
|
141 |
|
sl@0
|
142 |
delete trapCleanup;
|
sl@0
|
143 |
|
sl@0
|
144 |
test.Close();
|
sl@0
|
145 |
|
sl@0
|
146 |
__UHEAP_MARKEND;
|
sl@0
|
147 |
|
sl@0
|
148 |
return error;
|
sl@0
|
149 |
}
|