sl@0
|
1 |
// Copyright (c) 2009-2010 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 |
//
|
sl@0
|
15 |
|
sl@0
|
16 |
#include <e32test.h>
|
sl@0
|
17 |
#include <bautils.h>
|
sl@0
|
18 |
#include "featmgrserver.h"
|
sl@0
|
19 |
#include "featmgrconfiguration.h"
|
sl@0
|
20 |
|
sl@0
|
21 |
static TInt TheProcessHandleCount = 0;
|
sl@0
|
22 |
static TInt TheThreadHandleCount = 0;
|
sl@0
|
23 |
static TInt TheAllocatedCellsCount = 0;
|
sl@0
|
24 |
|
sl@0
|
25 |
#ifdef _DEBUG
|
sl@0
|
26 |
static const TInt KBurstRate = 20;
|
sl@0
|
27 |
#endif
|
sl@0
|
28 |
|
sl@0
|
29 |
void DestroyTestEnv();
|
sl@0
|
30 |
///////////////////////////////////////////////////////////////////////////////////////
|
sl@0
|
31 |
|
sl@0
|
32 |
static RTest TheTest(_L("t_fmgrstartup"));
|
sl@0
|
33 |
|
sl@0
|
34 |
#ifdef EXTENDED_FEATURE_MANAGER_TEST
|
sl@0
|
35 |
_LIT( KZOrgFeaturesFile, "Z:\\Private\\10205054\\features.dat" );
|
sl@0
|
36 |
_LIT( KFeaturesFile, "C:\\Private\\102836E5\\features.dat" );
|
sl@0
|
37 |
_LIT( KFeaturesDir, "C:\\Private\\102836E5\\" );
|
sl@0
|
38 |
#endif
|
sl@0
|
39 |
|
sl@0
|
40 |
///////////////////////////////////////////////////////////////////////////////////////
|
sl@0
|
41 |
//Test macros and functions
|
sl@0
|
42 |
void Check1(TInt aValue, TInt aLine)
|
sl@0
|
43 |
{
|
sl@0
|
44 |
if(!aValue)
|
sl@0
|
45 |
{
|
sl@0
|
46 |
DestroyTestEnv();
|
sl@0
|
47 |
RDebug::Print(_L("*** Expression evaluated to false. Line %d\r\n"), aLine);
|
sl@0
|
48 |
TheTest(EFalse, aLine);
|
sl@0
|
49 |
}
|
sl@0
|
50 |
}
|
sl@0
|
51 |
void Check2(TInt aValue, TInt aExpected, TInt aLine)
|
sl@0
|
52 |
{
|
sl@0
|
53 |
if(aValue != aExpected)
|
sl@0
|
54 |
{
|
sl@0
|
55 |
DestroyTestEnv();
|
sl@0
|
56 |
RDebug::Print(_L("*** Expected: %d, got: %d. Line %d\r\n"), aExpected, aValue, aLine);
|
sl@0
|
57 |
TheTest(EFalse, aLine);
|
sl@0
|
58 |
}
|
sl@0
|
59 |
}
|
sl@0
|
60 |
#define TEST(arg) ::Check1((arg), __LINE__)
|
sl@0
|
61 |
#define TEST2(aValue, aExpected) ::Check2(aValue, aExpected, __LINE__)
|
sl@0
|
62 |
|
sl@0
|
63 |
///////////////////////////////////////////////////////////////////////////////////////
|
sl@0
|
64 |
void CreateTestEnv()
|
sl@0
|
65 |
{
|
sl@0
|
66 |
//KFeaturesDir is defined only if EXTENDED_FEATURE_MANAGER_TEST is defined
|
sl@0
|
67 |
#ifdef EXTENDED_FEATURE_MANAGER_TEST
|
sl@0
|
68 |
RFs fs;
|
sl@0
|
69 |
TInt err = fs.Connect();
|
sl@0
|
70 |
TEST2(err, KErrNone);
|
sl@0
|
71 |
|
sl@0
|
72 |
err = fs.MkDir(KFeaturesDir);
|
sl@0
|
73 |
TEST (err == KErrNone || err == KErrAlreadyExists);
|
sl@0
|
74 |
|
sl@0
|
75 |
(void)fs.Delete(KFeaturesFile);
|
sl@0
|
76 |
err = BaflUtils::CopyFile(fs, KZOrgFeaturesFile, KFeaturesDir);
|
sl@0
|
77 |
TEST2 (err, KErrNone);
|
sl@0
|
78 |
err = fs.SetAtt(KFeaturesFile, KEntryAttNormal, KEntryAttReadOnly);
|
sl@0
|
79 |
TEST2 (err, KErrNone);
|
sl@0
|
80 |
fs.Close();
|
sl@0
|
81 |
#endif
|
sl@0
|
82 |
}
|
sl@0
|
83 |
|
sl@0
|
84 |
//Deletes all created test files.
|
sl@0
|
85 |
void DestroyTestEnv()
|
sl@0
|
86 |
{
|
sl@0
|
87 |
//KFeaturesDir is defined only if EXTENDED_FEATURE_MANAGER_TEST is defined
|
sl@0
|
88 |
#ifdef EXTENDED_FEATURE_MANAGER_TEST
|
sl@0
|
89 |
RFs fs;
|
sl@0
|
90 |
TInt err = fs.Connect();
|
sl@0
|
91 |
if(err == KErrNone)
|
sl@0
|
92 |
{
|
sl@0
|
93 |
err = fs.Delete(KFeaturesFile);
|
sl@0
|
94 |
if (err != KErrNone)
|
sl@0
|
95 |
{
|
sl@0
|
96 |
RDebug::Print(_L("Warning: Clean test enviroment failed with error %d"), err);
|
sl@0
|
97 |
}
|
sl@0
|
98 |
}
|
sl@0
|
99 |
fs.Close();
|
sl@0
|
100 |
#endif
|
sl@0
|
101 |
}
|
sl@0
|
102 |
///////////////////////////////////////////////////////////////////////////////////////
|
sl@0
|
103 |
|
sl@0
|
104 |
static void MarkHandles()
|
sl@0
|
105 |
{
|
sl@0
|
106 |
RThread().HandleCount(TheProcessHandleCount, TheThreadHandleCount);
|
sl@0
|
107 |
}
|
sl@0
|
108 |
|
sl@0
|
109 |
static void MarkAllocatedCells()
|
sl@0
|
110 |
{
|
sl@0
|
111 |
TheAllocatedCellsCount = User::CountAllocCells();
|
sl@0
|
112 |
}
|
sl@0
|
113 |
|
sl@0
|
114 |
static void CheckAllocatedCells()
|
sl@0
|
115 |
{
|
sl@0
|
116 |
TInt allocatedCellsCount = User::CountAllocCells();
|
sl@0
|
117 |
TEST2(allocatedCellsCount, TheAllocatedCellsCount);
|
sl@0
|
118 |
}
|
sl@0
|
119 |
|
sl@0
|
120 |
static void CheckHandles()
|
sl@0
|
121 |
{
|
sl@0
|
122 |
TInt endProcessHandleCount;
|
sl@0
|
123 |
TInt endThreadHandleCount;
|
sl@0
|
124 |
|
sl@0
|
125 |
RThread().HandleCount(endProcessHandleCount, endThreadHandleCount);
|
sl@0
|
126 |
|
sl@0
|
127 |
TEST2(TheProcessHandleCount, endProcessHandleCount);
|
sl@0
|
128 |
TEST2(TheThreadHandleCount, endThreadHandleCount);
|
sl@0
|
129 |
}
|
sl@0
|
130 |
|
sl@0
|
131 |
static void OomPreStep(TInt aFailingAllocationNo)
|
sl@0
|
132 |
{
|
sl@0
|
133 |
aFailingAllocationNo = aFailingAllocationNo; //to silent the warning in urel build
|
sl@0
|
134 |
MarkHandles();
|
sl@0
|
135 |
MarkAllocatedCells();
|
sl@0
|
136 |
__UHEAP_MARK;
|
sl@0
|
137 |
__UHEAP_SETBURSTFAIL(RAllocator::EBurstFailNext, aFailingAllocationNo, KBurstRate);
|
sl@0
|
138 |
}
|
sl@0
|
139 |
|
sl@0
|
140 |
static void OomPostStep()
|
sl@0
|
141 |
{
|
sl@0
|
142 |
__UHEAP_RESET;
|
sl@0
|
143 |
__UHEAP_MARKEND;
|
sl@0
|
144 |
CheckAllocatedCells();
|
sl@0
|
145 |
CheckHandles();
|
sl@0
|
146 |
}
|
sl@0
|
147 |
|
sl@0
|
148 |
///////////////////////////////////////////////////////////////////////////////////////
|
sl@0
|
149 |
|
sl@0
|
150 |
static void CreateAndDestroyFeatMgrServerL()
|
sl@0
|
151 |
{
|
sl@0
|
152 |
CFeatMgrServer* server = CFeatMgrServer::NewLC(KServerCActivePriority);
|
sl@0
|
153 |
CleanupStack::PopAndDestroy(server);
|
sl@0
|
154 |
}
|
sl@0
|
155 |
|
sl@0
|
156 |
/**
|
sl@0
|
157 |
@SYMTestCaseID PDS-EFM-CT-4109
|
sl@0
|
158 |
@SYMTestCaseDesc
|
sl@0
|
159 |
@SYMTestPriority High
|
sl@0
|
160 |
@SYMTestActions
|
sl@0
|
161 |
@SYMTestExpectedResults Test must not fail
|
sl@0
|
162 |
@SYMDEF DEF144262
|
sl@0
|
163 |
*/
|
sl@0
|
164 |
void FeatMgrServerStartupOomTest()
|
sl@0
|
165 |
{
|
sl@0
|
166 |
TInt err = KErrNoMemory;
|
sl@0
|
167 |
TInt failingAllocationNo = 0;
|
sl@0
|
168 |
TheTest.Printf(_L("Iteration:\r\n"));
|
sl@0
|
169 |
while(err == KErrNoMemory)
|
sl@0
|
170 |
{
|
sl@0
|
171 |
TheTest.Printf(_L(" %d"), ++failingAllocationNo);
|
sl@0
|
172 |
OomPreStep(failingAllocationNo);
|
sl@0
|
173 |
TRAP(err, CreateAndDestroyFeatMgrServerL());
|
sl@0
|
174 |
OomPostStep();
|
sl@0
|
175 |
}
|
sl@0
|
176 |
if(err != KErrNoMemory)
|
sl@0
|
177 |
{
|
sl@0
|
178 |
TEST2(err, KErrNone);
|
sl@0
|
179 |
}
|
sl@0
|
180 |
TheTest.Printf(_L("\r\n===OOM test succeeded at heap failure rate of %d ===\r\n"), failingAllocationNo);
|
sl@0
|
181 |
}
|
sl@0
|
182 |
|
sl@0
|
183 |
/**
|
sl@0
|
184 |
@SYMTestCaseID PDS-EFM-CT-4110
|
sl@0
|
185 |
@SYMTestCaseDesc
|
sl@0
|
186 |
@SYMTestPriority High
|
sl@0
|
187 |
@SYMTestActions
|
sl@0
|
188 |
@SYMTestExpectedResults Test must not fail
|
sl@0
|
189 |
@SYMDEF DEF144262
|
sl@0
|
190 |
*/
|
sl@0
|
191 |
void FeatMgrServerStartupFileIoTest()
|
sl@0
|
192 |
{
|
sl@0
|
193 |
RFs fs;
|
sl@0
|
194 |
TInt err = fs.Connect();
|
sl@0
|
195 |
TEST2(err, KErrNone);
|
sl@0
|
196 |
err = KErrNotFound;
|
sl@0
|
197 |
TInt cnt=1;
|
sl@0
|
198 |
for(;err<KErrNone;++cnt)
|
sl@0
|
199 |
{
|
sl@0
|
200 |
TheTest.Printf(_L("===Iteration %d. Simulated error:\r\n"), cnt);
|
sl@0
|
201 |
for (TInt fsError=KErrNotFound;fsError>=KErrBadName;--fsError)
|
sl@0
|
202 |
{
|
sl@0
|
203 |
// if(fsError == KErrNotFound || fsError == KErrCorrupt || fsError == KErrPathNotFound || fsError == KErrEof)
|
sl@0
|
204 |
// {
|
sl@0
|
205 |
// continue;//The server code panics
|
sl@0
|
206 |
// }
|
sl@0
|
207 |
TheTest.Printf(_L("%d "), fsError);
|
sl@0
|
208 |
(void)fs.SetErrorCondition(fsError, cnt);
|
sl@0
|
209 |
TRAP(err, CreateAndDestroyFeatMgrServerL());
|
sl@0
|
210 |
(void)fs.SetErrorCondition(KErrNone);
|
sl@0
|
211 |
}
|
sl@0
|
212 |
TheTest.Printf(_L("\r\n"));
|
sl@0
|
213 |
}
|
sl@0
|
214 |
fs.Close();
|
sl@0
|
215 |
TheTest.Printf(_L("\r\n===File I/O error simulation test succeeded on iteration %d===\r\n"), cnt);
|
sl@0
|
216 |
}
|
sl@0
|
217 |
|
sl@0
|
218 |
|
sl@0
|
219 |
void DoTestsL()
|
sl@0
|
220 |
{
|
sl@0
|
221 |
CActiveScheduler* scheduler = new CActiveScheduler;
|
sl@0
|
222 |
TEST(scheduler != NULL);
|
sl@0
|
223 |
CActiveScheduler::Install(scheduler);
|
sl@0
|
224 |
|
sl@0
|
225 |
TheTest.Start(_L("@SYMTestCaseID:PDS-EFM-CT-4109 CFeatMgrServer::NewLC() OOM test"));
|
sl@0
|
226 |
FeatMgrServerStartupOomTest();
|
sl@0
|
227 |
|
sl@0
|
228 |
TheTest.Next(_L("@SYMTestCaseID:PDS-EFM-CT-4110 CFeatMgrServer::NewLC() file I/O error simulation test"));
|
sl@0
|
229 |
FeatMgrServerStartupFileIoTest();
|
sl@0
|
230 |
|
sl@0
|
231 |
delete scheduler;
|
sl@0
|
232 |
}
|
sl@0
|
233 |
|
sl@0
|
234 |
TInt E32Main()
|
sl@0
|
235 |
{
|
sl@0
|
236 |
TheTest.Title();
|
sl@0
|
237 |
|
sl@0
|
238 |
CTrapCleanup* tc = CTrapCleanup::New();
|
sl@0
|
239 |
TheTest(tc != NULL);
|
sl@0
|
240 |
|
sl@0
|
241 |
__UHEAP_MARK;
|
sl@0
|
242 |
|
sl@0
|
243 |
CreateTestEnv();
|
sl@0
|
244 |
TRAPD(err, DoTestsL());
|
sl@0
|
245 |
DestroyTestEnv();
|
sl@0
|
246 |
TEST2(err, KErrNone);
|
sl@0
|
247 |
|
sl@0
|
248 |
__UHEAP_MARKEND;
|
sl@0
|
249 |
|
sl@0
|
250 |
TheTest.End();
|
sl@0
|
251 |
TheTest.Close();
|
sl@0
|
252 |
|
sl@0
|
253 |
delete tc;
|
sl@0
|
254 |
|
sl@0
|
255 |
User::Heap().Check();
|
sl@0
|
256 |
return KErrNone;
|
sl@0
|
257 |
}
|