sl@0
|
1 |
// Copyright (c) 2005-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 |
// t_oomcenrep.cpp
|
sl@0
|
15 |
//
|
sl@0
|
16 |
//
|
sl@0
|
17 |
|
sl@0
|
18 |
#include "t_cenrep_helper.h"
|
sl@0
|
19 |
#include <e32test.h>
|
sl@0
|
20 |
#include <f32file.h>
|
sl@0
|
21 |
#include <utf.h>
|
sl@0
|
22 |
#include "srvsess.h"
|
sl@0
|
23 |
#include "sessmgr.h"
|
sl@0
|
24 |
#include "srvres.h"
|
sl@0
|
25 |
#include "srvreqs.h"
|
sl@0
|
26 |
#include "cachemgr.h"
|
sl@0
|
27 |
#include "clientrequest.h"
|
sl@0
|
28 |
#include "install.h"
|
sl@0
|
29 |
#include <bautils.h>
|
sl@0
|
30 |
|
sl@0
|
31 |
LOCAL_D RFs TheFs;
|
sl@0
|
32 |
LOCAL_D RTest TheTest (_L ("t_oomcenrep.exe"));
|
sl@0
|
33 |
|
sl@0
|
34 |
#ifdef __SECURE_DATA__
|
sl@0
|
35 |
_LIT(KInstallDirFile, "c:\\private\\10202BE9\\persists\\installdir.bin");
|
sl@0
|
36 |
|
sl@0
|
37 |
_LIT(KPersistsFile, "c:\\private\\10202BE9\\persists\\11111111.cre");
|
sl@0
|
38 |
_LIT(KInstallPersistsFile, "c:\\private\\10202BE9\\persists\\11111110.cre");
|
sl@0
|
39 |
_LIT(KPersistsFileNoUpgrade, "c:\\private\\10202BE9\\bur\\11111111.crn");
|
sl@0
|
40 |
_LIT(KPersistsFileUpgraded, "c:\\private\\10202BE9\\bur\\11111111.cru");
|
sl@0
|
41 |
|
sl@0
|
42 |
_LIT(KRomUpgradeRev1File, "z:\\private\\10202BE9\\11111111.txu");
|
sl@0
|
43 |
_LIT(KRomUpgradeRev2File, "z:\\private\\10202BE9\\11111112.txu");
|
sl@0
|
44 |
_LIT(KUpgradeFile, "c:\\private\\10202BE9\\11111111.txt");
|
sl@0
|
45 |
|
sl@0
|
46 |
_LIT(KInstallOnlyFile, "z:\\private\\10202BE9\\11111110.cri");
|
sl@0
|
47 |
_LIT(KInstallOnlyUpgradeFile, "z:\\private\\10202BE9\\11111110.cru");
|
sl@0
|
48 |
_LIT(KInstallFile, "c:\\private\\10202BE9\\11111110.cre");
|
sl@0
|
49 |
|
sl@0
|
50 |
#else
|
sl@0
|
51 |
_LIT(KPersistsFiles, "c:\\system\\data\\cenrep\\persists\\*.*");
|
sl@0
|
52 |
#endif
|
sl@0
|
53 |
|
sl@0
|
54 |
|
sl@0
|
55 |
//Test repositories Uid
|
sl@0
|
56 |
const TUid KTestRepositoryUid={0x11111111};
|
sl@0
|
57 |
const TUid KCorruptRepositoryUid={0xBADBADBB};
|
sl@0
|
58 |
|
sl@0
|
59 |
static TUid KCurrentTestUid;
|
sl@0
|
60 |
|
sl@0
|
61 |
///////////////////////////////////////////////////////////////////////////////////////
|
sl@0
|
62 |
//Test macroses and functions
|
sl@0
|
63 |
LOCAL_C void CheckL(TInt aValue, TInt aLine)
|
sl@0
|
64 |
{
|
sl@0
|
65 |
if(!aValue)
|
sl@0
|
66 |
{
|
sl@0
|
67 |
RDebug::Print(_L("Error\r\n"));
|
sl@0
|
68 |
CleanupCDriveL();
|
sl@0
|
69 |
TheTest(EFalse, aLine);
|
sl@0
|
70 |
}
|
sl@0
|
71 |
}
|
sl@0
|
72 |
LOCAL_C void CheckL(TInt aValue, TInt aExpected, TInt aLine)
|
sl@0
|
73 |
{
|
sl@0
|
74 |
if(aValue != aExpected)
|
sl@0
|
75 |
{
|
sl@0
|
76 |
RDebug::Print(_L("*** Expected error: %d, got: %d\r\n"), aExpected, aValue);
|
sl@0
|
77 |
CleanupCDriveL();
|
sl@0
|
78 |
TheTest(EFalse, aLine);
|
sl@0
|
79 |
}
|
sl@0
|
80 |
}
|
sl@0
|
81 |
#define TESTL(arg) ::CheckL((arg), __LINE__)
|
sl@0
|
82 |
#define TEST2L(aValue, aExpected) ::CheckL(aValue, aExpected, __LINE__)
|
sl@0
|
83 |
#define TESTKErrNoneL(aValue) ::CheckL(aValue,0,__LINE__);
|
sl@0
|
84 |
|
sl@0
|
85 |
/////////////////////////////////////////////////////////////////////////////////////////
|
sl@0
|
86 |
class CenrepSrvOOMTest :public CBase
|
sl@0
|
87 |
{
|
sl@0
|
88 |
public:
|
sl@0
|
89 |
void GetL();
|
sl@0
|
90 |
void FindL();
|
sl@0
|
91 |
void ResetL();
|
sl@0
|
92 |
void NotifyL();
|
sl@0
|
93 |
void SetL();
|
sl@0
|
94 |
void CreateL();
|
sl@0
|
95 |
void DeleteL();
|
sl@0
|
96 |
void MoveL();
|
sl@0
|
97 |
|
sl@0
|
98 |
CenrepSrvOOMTest();
|
sl@0
|
99 |
~CenrepSrvOOMTest();
|
sl@0
|
100 |
static CenrepSrvOOMTest* NewL();
|
sl@0
|
101 |
#ifdef SYMBIAN_CENTREP_SUPPORT_MULTIROFS
|
sl@0
|
102 |
void DoHeapRepositoryContentCheckL();
|
sl@0
|
103 |
#endif
|
sl@0
|
104 |
private:
|
sl@0
|
105 |
void ConstructL();
|
sl@0
|
106 |
public:
|
sl@0
|
107 |
CServerRepository* iServerRepo;
|
sl@0
|
108 |
CSessionNotifier* iSessionNotif;
|
sl@0
|
109 |
};
|
sl@0
|
110 |
|
sl@0
|
111 |
//////////////////////////////////////////////////////////////////////////////////////////////////
|
sl@0
|
112 |
class CenrepSwiOOMTest :public CBase
|
sl@0
|
113 |
{
|
sl@0
|
114 |
public:
|
sl@0
|
115 |
void UpgradeROMRev1L(TBool aIsSetup);
|
sl@0
|
116 |
void UpgradeROMRev2L(TBool aIsSetup);
|
sl@0
|
117 |
void UninstallROMUpgradeL(TBool aIsSetup);
|
sl@0
|
118 |
|
sl@0
|
119 |
void InstallL(TBool aIsSetup);
|
sl@0
|
120 |
void UpgradeInstallL(TBool aIsSetup);
|
sl@0
|
121 |
void UninstallL(TBool aIsSetup);
|
sl@0
|
122 |
|
sl@0
|
123 |
CenrepSwiOOMTest();
|
sl@0
|
124 |
~CenrepSwiOOMTest();
|
sl@0
|
125 |
static CenrepSwiOOMTest* NewL();
|
sl@0
|
126 |
private:
|
sl@0
|
127 |
void ConstructL();
|
sl@0
|
128 |
CCentRepSWIWatcher* iSwiWatcher;
|
sl@0
|
129 |
public:
|
sl@0
|
130 |
};
|
sl@0
|
131 |
//////////////////////////////////////////////////////////////////////////////////////////////////
|
sl@0
|
132 |
|
sl@0
|
133 |
CenrepSrvOOMTest::CenrepSrvOOMTest(){}
|
sl@0
|
134 |
|
sl@0
|
135 |
CenrepSrvOOMTest::~CenrepSrvOOMTest()
|
sl@0
|
136 |
{
|
sl@0
|
137 |
if (iServerRepo)
|
sl@0
|
138 |
{
|
sl@0
|
139 |
if (iSessionNotif)
|
sl@0
|
140 |
{
|
sl@0
|
141 |
iServerRepo->Close();
|
sl@0
|
142 |
}
|
sl@0
|
143 |
delete iServerRepo;
|
sl@0
|
144 |
}
|
sl@0
|
145 |
if (iSessionNotif)
|
sl@0
|
146 |
delete iSessionNotif;
|
sl@0
|
147 |
|
sl@0
|
148 |
// Cache must be disabled here. Otherwise, if any idle repositories exists, they will
|
sl@0
|
149 |
// still be open (have their pointers in the iOpenRepositories list) and the list will leak.
|
sl@0
|
150 |
TServerResources::iCacheManager->DisableCache();
|
sl@0
|
151 |
TServerResources::iObserver->CloseiOpenRepositories();
|
sl@0
|
152 |
}
|
sl@0
|
153 |
|
sl@0
|
154 |
CenrepSrvOOMTest* CenrepSrvOOMTest::NewL()
|
sl@0
|
155 |
{
|
sl@0
|
156 |
CenrepSrvOOMTest* self=new (ELeave)CenrepSrvOOMTest;
|
sl@0
|
157 |
CleanupStack::PushL(self);
|
sl@0
|
158 |
self->ConstructL();
|
sl@0
|
159 |
CleanupStack::Pop(self);
|
sl@0
|
160 |
return self;
|
sl@0
|
161 |
}
|
sl@0
|
162 |
|
sl@0
|
163 |
void CenrepSrvOOMTest::ConstructL()
|
sl@0
|
164 |
{
|
sl@0
|
165 |
iServerRepo=new (ELeave)CServerRepository();
|
sl@0
|
166 |
iSessionNotif=new (ELeave) CSessionNotifier();
|
sl@0
|
167 |
|
sl@0
|
168 |
iServerRepo->OpenL(KCurrentTestUid,*iSessionNotif);
|
sl@0
|
169 |
}
|
sl@0
|
170 |
|
sl@0
|
171 |
//////////////////////////////////////////////////////////////////////////////////////////////////
|
sl@0
|
172 |
|
sl@0
|
173 |
CenrepSwiOOMTest::CenrepSwiOOMTest(){}
|
sl@0
|
174 |
|
sl@0
|
175 |
CenrepSwiOOMTest::~CenrepSwiOOMTest()
|
sl@0
|
176 |
{
|
sl@0
|
177 |
delete iSwiWatcher;
|
sl@0
|
178 |
}
|
sl@0
|
179 |
|
sl@0
|
180 |
CenrepSwiOOMTest* CenrepSwiOOMTest::NewL()
|
sl@0
|
181 |
{
|
sl@0
|
182 |
CenrepSwiOOMTest* self=new (ELeave)CenrepSwiOOMTest;
|
sl@0
|
183 |
CleanupStack::PushL(self);
|
sl@0
|
184 |
self->ConstructL();
|
sl@0
|
185 |
CleanupStack::Pop(self);
|
sl@0
|
186 |
return self;
|
sl@0
|
187 |
}
|
sl@0
|
188 |
|
sl@0
|
189 |
void CenrepSwiOOMTest::ConstructL()
|
sl@0
|
190 |
{
|
sl@0
|
191 |
iSwiWatcher = CCentRepSWIWatcher::NewL(TServerResources::iFs);
|
sl@0
|
192 |
}
|
sl@0
|
193 |
|
sl@0
|
194 |
//Getting various information and security policy from the repository
|
sl@0
|
195 |
//TInt CServerRepository::Get(TUint32 aId,T& aVal)
|
sl@0
|
196 |
//TServerSetting* CServerRepository::GetSetting(TUint32 aId)
|
sl@0
|
197 |
void CenrepSrvOOMTest::GetL()
|
sl@0
|
198 |
{
|
sl@0
|
199 |
TInt err=KErrNone;
|
sl@0
|
200 |
TInt keyInt=0;
|
sl@0
|
201 |
TServerSetting* srvsetting;
|
sl@0
|
202 |
//----------Getting the TInt(1-15)-----------------------------
|
sl@0
|
203 |
for (TInt i=1;i<=15;i++)
|
sl@0
|
204 |
{
|
sl@0
|
205 |
err=iServerRepo->Get(i,keyInt);
|
sl@0
|
206 |
//Remember the policy check is done at the session level
|
sl@0
|
207 |
TESTKErrNoneL(err);
|
sl@0
|
208 |
TESTL(i==keyInt);
|
sl@0
|
209 |
srvsetting=iServerRepo->GetSetting(i);
|
sl@0
|
210 |
TESTL(srvsetting->Key()==static_cast<TUint32>(i));
|
sl@0
|
211 |
}
|
sl@0
|
212 |
//---------Getting the TReal(16-19)---------------------------
|
sl@0
|
213 |
TReal keyValue;
|
sl@0
|
214 |
err=iServerRepo->Get(16,keyValue);
|
sl@0
|
215 |
TESTKErrNoneL(err);
|
sl@0
|
216 |
TESTL(keyValue==10.1010);
|
sl@0
|
217 |
srvsetting=iServerRepo->GetSetting(16);
|
sl@0
|
218 |
TESTL(srvsetting->Key()==16);
|
sl@0
|
219 |
|
sl@0
|
220 |
err=iServerRepo->Get(19,keyValue);
|
sl@0
|
221 |
TESTKErrNoneL(err);
|
sl@0
|
222 |
TESTL(keyValue==13.1313);
|
sl@0
|
223 |
|
sl@0
|
224 |
//----------Getting the String(20-23)-----------------------
|
sl@0
|
225 |
TBuf8<50> keyString;
|
sl@0
|
226 |
_LIT(KFourteen,"fourteen");
|
sl@0
|
227 |
err=iServerRepo->Get(20,keyString);
|
sl@0
|
228 |
TESTKErrNoneL(err);
|
sl@0
|
229 |
//Even ascii(8 bytes) are stored as 16 bytes!!!
|
sl@0
|
230 |
TPtr16 str16((TUint16*) keyString.Ptr(),keyString.Length()/2,keyString.Length()/2);
|
sl@0
|
231 |
TESTL(str16.Compare(KFourteen)==0);
|
sl@0
|
232 |
srvsetting=iServerRepo->GetSetting(20);
|
sl@0
|
233 |
TESTL(srvsetting->Key()==20);
|
sl@0
|
234 |
|
sl@0
|
235 |
//---------Getting the String8(0x79)------------------------
|
sl@0
|
236 |
TBuf8<50> keyString8;
|
sl@0
|
237 |
_LIT8(KString8,"string8");
|
sl@0
|
238 |
err=iServerRepo->Get(0x79,keyString8);
|
sl@0
|
239 |
TESTKErrNoneL(err);
|
sl@0
|
240 |
TESTL(keyString8.Compare(KString8)==0);
|
sl@0
|
241 |
srvsetting=iServerRepo->GetSetting(0x79);
|
sl@0
|
242 |
TESTL(srvsetting->Key()==0x79);
|
sl@0
|
243 |
|
sl@0
|
244 |
//---------Getting the binary(0x82)-------------------------
|
sl@0
|
245 |
TBuf8<50> keyBinary;
|
sl@0
|
246 |
_LIT8(KBinary8,"\x12\x34\xAB\xCD");
|
sl@0
|
247 |
err=iServerRepo->Get(0x82,keyBinary);
|
sl@0
|
248 |
TESTKErrNoneL(err);
|
sl@0
|
249 |
//temporarily added to solve coverage problem in WINSCW
|
sl@0
|
250 |
#ifdef __EPOC32__
|
sl@0
|
251 |
TESTL(keyBinary.Compare(KBinary8)==0);
|
sl@0
|
252 |
#endif
|
sl@0
|
253 |
srvsetting=iServerRepo->GetSetting(0x82);
|
sl@0
|
254 |
TESTL(srvsetting->Key()==0x82);
|
sl@0
|
255 |
|
sl@0
|
256 |
//----------Getting individual policy-----------------------
|
sl@0
|
257 |
//Current Exe has caps AllFiles+WriteDeviceData+ReadDeviceData
|
sl@0
|
258 |
RThread currentThread;
|
sl@0
|
259 |
TSecurityPolicy secPolicy;
|
sl@0
|
260 |
//default policy
|
sl@0
|
261 |
secPolicy=iServerRepo->GetDefaultReadAccessPolicy();
|
sl@0
|
262 |
TESTL(secPolicy.CheckPolicy(currentThread)==1);
|
sl@0
|
263 |
secPolicy=iServerRepo->GetDefaultWriteAccessPolicy();
|
sl@0
|
264 |
TESTL(secPolicy.CheckPolicy(currentThread)==1);
|
sl@0
|
265 |
|
sl@0
|
266 |
//check settings policies
|
sl@0
|
267 |
//0x2 int 2 1 cap_rd=CommDD cap_wr=WriteDeviceData
|
sl@0
|
268 |
//0x19 int 25 0 //defined in range policies with cap_rd=NetworkServices
|
sl@0
|
269 |
secPolicy=iServerRepo->GetReadAccessPolicy(2);
|
sl@0
|
270 |
TESTL(secPolicy.CheckPolicy(currentThread)==0);
|
sl@0
|
271 |
secPolicy=iServerRepo->GetWriteAccessPolicy(2);
|
sl@0
|
272 |
TESTL(secPolicy.CheckPolicy(currentThread)==1);
|
sl@0
|
273 |
secPolicy=iServerRepo->GetReadAccessPolicy(25);
|
sl@0
|
274 |
TESTL(secPolicy.CheckPolicy(currentThread)==0);
|
sl@0
|
275 |
|
sl@0
|
276 |
}
|
sl@0
|
277 |
|
sl@0
|
278 |
// now that write operations must be done in transactions, setting up this helper
|
sl@0
|
279 |
// function to perform single Sets for the purpose of this test.
|
sl@0
|
280 |
template<class T>
|
sl@0
|
281 |
static TInt RepositorySingleSetL(CServerRepository& aRep, TUint32 aKey, const T& aValue)
|
sl@0
|
282 |
{
|
sl@0
|
283 |
aRep.StartTransaction(EConcurrentReadWriteTransaction);
|
sl@0
|
284 |
aRep.CleanupCancelTransactionPushL();
|
sl@0
|
285 |
aRep.TransactionSetL(aKey, aValue);
|
sl@0
|
286 |
CleanupStack::Pop();
|
sl@0
|
287 |
TUint32 keyInfo;
|
sl@0
|
288 |
return User::LeaveIfError(aRep.CommitTransaction(keyInfo));
|
sl@0
|
289 |
};
|
sl@0
|
290 |
|
sl@0
|
291 |
//Setting OOM testing
|
sl@0
|
292 |
void CenrepSrvOOMTest::SetL()
|
sl@0
|
293 |
{
|
sl@0
|
294 |
TInt ret=KErrNone;
|
sl@0
|
295 |
TInt intValue=0;
|
sl@0
|
296 |
TReal realValue=0;
|
sl@0
|
297 |
|
sl@0
|
298 |
//---------------SetL-----------------------------------
|
sl@0
|
299 |
//Setting an integer key
|
sl@0
|
300 |
ret = RepositorySingleSetL(*iServerRepo, 0x60, 600);
|
sl@0
|
301 |
TESTKErrNoneL(ret);
|
sl@0
|
302 |
ret=iServerRepo->Get(0x60,intValue);
|
sl@0
|
303 |
TESTL(intValue== 600);
|
sl@0
|
304 |
|
sl@0
|
305 |
//Setting a real key
|
sl@0
|
306 |
ret = RepositorySingleSetL(*iServerRepo, 0x66, 99.99);
|
sl@0
|
307 |
TESTKErrNoneL(ret);
|
sl@0
|
308 |
ret=iServerRepo->Get(0x66,realValue);
|
sl@0
|
309 |
TESTL(realValue==99.99);
|
sl@0
|
310 |
|
sl@0
|
311 |
//Setting a string key
|
sl@0
|
312 |
//Even ascii(8 bytes) are stored as 16 bytes!!!
|
sl@0
|
313 |
_LIT8(KString,"sixhundred");
|
sl@0
|
314 |
TBuf8<50> stringChangeValue=KString();
|
sl@0
|
315 |
ret = RepositorySingleSetL(*iServerRepo, 0x69, stringChangeValue);
|
sl@0
|
316 |
TESTKErrNoneL(ret);
|
sl@0
|
317 |
|
sl@0
|
318 |
TBuf8<50> keyString;
|
sl@0
|
319 |
ret=iServerRepo->Get(0x69,keyString);
|
sl@0
|
320 |
TESTKErrNoneL(ret);
|
sl@0
|
321 |
TESTL(keyString.Compare(KString)==0);
|
sl@0
|
322 |
}
|
sl@0
|
323 |
|
sl@0
|
324 |
// now that write operations must be done in transactions, setting up this helper
|
sl@0
|
325 |
// function to perform single Creates for the purpose of this test.
|
sl@0
|
326 |
template<class T>
|
sl@0
|
327 |
static TInt RepositorySingleCreateL(CServerRepository& aRep, TUint32 aKey, const T& aValue, TUint32* aMeta)
|
sl@0
|
328 |
{
|
sl@0
|
329 |
aRep.StartTransaction(EConcurrentReadWriteTransaction);
|
sl@0
|
330 |
aRep.CleanupCancelTransactionPushL();
|
sl@0
|
331 |
aRep.TransactionCreateL(aKey, aValue, aMeta);
|
sl@0
|
332 |
CleanupStack::Pop();
|
sl@0
|
333 |
TUint32 keyInfo;
|
sl@0
|
334 |
return User::LeaveIfError(aRep.CommitTransaction(keyInfo));
|
sl@0
|
335 |
};
|
sl@0
|
336 |
|
sl@0
|
337 |
void CenrepSrvOOMTest::CreateL()
|
sl@0
|
338 |
{
|
sl@0
|
339 |
TInt ret=KErrNone;
|
sl@0
|
340 |
TInt intValue=0;
|
sl@0
|
341 |
TReal realValue=0;
|
sl@0
|
342 |
|
sl@0
|
343 |
//--------------CreateL-----------------------------------
|
sl@0
|
344 |
//Creating an integer key
|
sl@0
|
345 |
TInt intRetValue;
|
sl@0
|
346 |
intValue=9000;
|
sl@0
|
347 |
RepositorySingleCreateL(*iServerRepo, 0x90, intValue, NULL);
|
sl@0
|
348 |
TESTKErrNoneL(ret);
|
sl@0
|
349 |
ret=iServerRepo->Get(0x90,intRetValue);
|
sl@0
|
350 |
TESTKErrNoneL(ret);
|
sl@0
|
351 |
TESTL(intRetValue==intValue);
|
sl@0
|
352 |
|
sl@0
|
353 |
//Creating a real key
|
sl@0
|
354 |
TReal realRetValue;
|
sl@0
|
355 |
realValue=33.3333;
|
sl@0
|
356 |
RepositorySingleCreateL(*iServerRepo, 0x92, realValue, NULL);
|
sl@0
|
357 |
TESTKErrNoneL(ret);
|
sl@0
|
358 |
ret=iServerRepo->Get(0x92,realRetValue);
|
sl@0
|
359 |
TESTKErrNoneL(ret);
|
sl@0
|
360 |
TESTL(realValue==realRetValue);
|
sl@0
|
361 |
|
sl@0
|
362 |
//Creating a string key
|
sl@0
|
363 |
_LIT8(KStringValue,"creatingkey");
|
sl@0
|
364 |
TBuf8<50> stringCreateValue=KStringValue();
|
sl@0
|
365 |
RepositorySingleCreateL(*iServerRepo, 0x93, stringCreateValue, NULL);
|
sl@0
|
366 |
TESTKErrNoneL(ret);
|
sl@0
|
367 |
}
|
sl@0
|
368 |
|
sl@0
|
369 |
// now that write operations must be done in transactions, setting up this helper
|
sl@0
|
370 |
// function to perform single Creates for the purpose of this test.
|
sl@0
|
371 |
static TInt RepositorySingleDeleteL(CServerRepository& aRep, TUint32 aKey)
|
sl@0
|
372 |
{
|
sl@0
|
373 |
aRep.StartTransaction(EConcurrentReadWriteTransaction);
|
sl@0
|
374 |
aRep.CleanupCancelTransactionPushL();
|
sl@0
|
375 |
aRep.TransactionDeleteL(aKey);
|
sl@0
|
376 |
CleanupStack::Pop();
|
sl@0
|
377 |
TUint32 keyInfo;
|
sl@0
|
378 |
return User::LeaveIfError(aRep.CommitTransaction(keyInfo));
|
sl@0
|
379 |
};
|
sl@0
|
380 |
|
sl@0
|
381 |
void CenrepSrvOOMTest::DeleteL()
|
sl@0
|
382 |
{
|
sl@0
|
383 |
TInt ret=KErrNone;
|
sl@0
|
384 |
//--------------Delete-----------------------------------
|
sl@0
|
385 |
//Find the settings 0x10A-0x10C to ensure it is still there
|
sl@0
|
386 |
RSettingPointerArray matchingArray;
|
sl@0
|
387 |
TUint32 partialId=0x100;
|
sl@0
|
388 |
TUint32 idMask=0xFFFFFFF0;
|
sl@0
|
389 |
ret=iServerRepo->FindSettings(partialId,idMask,matchingArray);
|
sl@0
|
390 |
if (ret==KErrNoMemory)
|
sl@0
|
391 |
{
|
sl@0
|
392 |
matchingArray.Close();
|
sl@0
|
393 |
User::LeaveNoMemory();
|
sl@0
|
394 |
}
|
sl@0
|
395 |
|
sl@0
|
396 |
TESTKErrNoneL(ret);
|
sl@0
|
397 |
TESTL(matchingArray.Count()==3);
|
sl@0
|
398 |
matchingArray.Close();
|
sl@0
|
399 |
|
sl@0
|
400 |
//Deleting settings 0x10A to 0x10C
|
sl@0
|
401 |
for (TInt i=0x10A;i<=0x10C;i++)
|
sl@0
|
402 |
{
|
sl@0
|
403 |
RepositorySingleDeleteL(*iServerRepo, i);
|
sl@0
|
404 |
TESTKErrNoneL(ret);
|
sl@0
|
405 |
}
|
sl@0
|
406 |
//After deleting try to find the persistent settings again
|
sl@0
|
407 |
ret=iServerRepo->FindSettings(partialId,idMask,matchingArray);
|
sl@0
|
408 |
if (ret==KErrNoMemory)
|
sl@0
|
409 |
{
|
sl@0
|
410 |
matchingArray.Close();
|
sl@0
|
411 |
User::LeaveNoMemory();
|
sl@0
|
412 |
}
|
sl@0
|
413 |
TESTKErrNoneL(ret);
|
sl@0
|
414 |
TESTL(matchingArray.Count()==0);
|
sl@0
|
415 |
matchingArray.Close();
|
sl@0
|
416 |
|
sl@0
|
417 |
//-------------DeleteRange---------------------------------
|
sl@0
|
418 |
//Deleting settings 0x1 to 0xF
|
sl@0
|
419 |
TClientRequest dummyrequest;
|
sl@0
|
420 |
TUint32 errId=0;
|
sl@0
|
421 |
partialId=0;
|
sl@0
|
422 |
idMask=0xFFFFFFF0;
|
sl@0
|
423 |
ret=iServerRepo->FindSettings(partialId,idMask,matchingArray);
|
sl@0
|
424 |
if (ret==KErrNoMemory)
|
sl@0
|
425 |
{
|
sl@0
|
426 |
matchingArray.Close();
|
sl@0
|
427 |
User::LeaveNoMemory();
|
sl@0
|
428 |
}
|
sl@0
|
429 |
TESTKErrNoneL(ret) ;
|
sl@0
|
430 |
TESTL(matchingArray.Count()==15);
|
sl@0
|
431 |
matchingArray.Close();
|
sl@0
|
432 |
|
sl@0
|
433 |
//Deleting settings using the DeleteRange
|
sl@0
|
434 |
dummyrequest.SetParam(0,partialId);
|
sl@0
|
435 |
dummyrequest.SetParam(1,idMask);
|
sl@0
|
436 |
dummyrequest.SetPolicyCheck(ETrue);
|
sl@0
|
437 |
|
sl@0
|
438 |
// write operation must take place in a transaction
|
sl@0
|
439 |
iServerRepo->StartTransaction(EConcurrentReadWriteTransaction);
|
sl@0
|
440 |
iServerRepo->CleanupCancelTransactionPushL();
|
sl@0
|
441 |
iServerRepo->TransactionDeleteRangeL(dummyrequest,errId);
|
sl@0
|
442 |
CleanupStack::Pop();
|
sl@0
|
443 |
TUint32 keyInfo;
|
sl@0
|
444 |
User::LeaveIfError(iServerRepo->CommitTransaction(keyInfo));
|
sl@0
|
445 |
|
sl@0
|
446 |
//Now try to find the key being deleted
|
sl@0
|
447 |
ret=iServerRepo->FindSettings(partialId,idMask,matchingArray);
|
sl@0
|
448 |
if (ret==KErrNoMemory)
|
sl@0
|
449 |
{
|
sl@0
|
450 |
matchingArray.Close();
|
sl@0
|
451 |
User::LeaveNoMemory();
|
sl@0
|
452 |
}
|
sl@0
|
453 |
TESTKErrNoneL(ret);
|
sl@0
|
454 |
TESTL(matchingArray.Count()==0);
|
sl@0
|
455 |
matchingArray.Close();
|
sl@0
|
456 |
}
|
sl@0
|
457 |
|
sl@0
|
458 |
//Setting existing key value then follow by commit
|
sl@0
|
459 |
void CenrepSrvOOMTest::MoveL()
|
sl@0
|
460 |
{
|
sl@0
|
461 |
RSettingPointerArray matchingArray;
|
sl@0
|
462 |
TUint32 idMask=0xFFFFFFF0;
|
sl@0
|
463 |
|
sl@0
|
464 |
/*---------------MoveL-------------------------------------
|
sl@0
|
465 |
TUint32 sourcePartialId = aMessage.Int0();
|
sl@0
|
466 |
TUint32 targetPartialId = aMessage.Int1();
|
sl@0
|
467 |
TUint32 idMask = aMessage.Int2();
|
sl@0
|
468 |
*/
|
sl@0
|
469 |
TClientRequest dummyrequest;
|
sl@0
|
470 |
TUint32 errId=0;
|
sl@0
|
471 |
TUint32 sourcePartialId=0x110;
|
sl@0
|
472 |
TUint32 targetPartialId=0x120;
|
sl@0
|
473 |
idMask=0xFFFFFFF0;
|
sl@0
|
474 |
|
sl@0
|
475 |
TKeyFilter srcKeyIdentifier = {sourcePartialId, idMask};
|
sl@0
|
476 |
TPckg<TKeyFilter> pSrcIdentifier(srcKeyIdentifier);
|
sl@0
|
477 |
TKeyFilter tgtKeyIdentifier = {targetPartialId, idMask};
|
sl@0
|
478 |
TPckg<TKeyFilter> pTgtIdentifier(tgtKeyIdentifier);
|
sl@0
|
479 |
|
sl@0
|
480 |
//First check to ensure the target key before move does not exist
|
sl@0
|
481 |
User::LeaveIfError(iServerRepo->FindSettings(targetPartialId,idMask,matchingArray));
|
sl@0
|
482 |
TESTL(matchingArray.Count()==0);
|
sl@0
|
483 |
matchingArray.Close();
|
sl@0
|
484 |
|
sl@0
|
485 |
//moving from 0x110(0x11B,0x11C,0x11E) to 0x120
|
sl@0
|
486 |
dummyrequest.SetParam(0, &pSrcIdentifier);
|
sl@0
|
487 |
dummyrequest.SetParam(1, &pTgtIdentifier);
|
sl@0
|
488 |
dummyrequest.SetPolicyCheck(ETrue);
|
sl@0
|
489 |
|
sl@0
|
490 |
// write operation must take place in a transaction
|
sl@0
|
491 |
iServerRepo->StartTransaction(EConcurrentReadWriteTransaction);
|
sl@0
|
492 |
iServerRepo->CleanupCancelTransactionPushL();
|
sl@0
|
493 |
iServerRepo->TransactionMoveL(dummyrequest,errId);
|
sl@0
|
494 |
CleanupStack::Pop();
|
sl@0
|
495 |
TUint32 keyInfo;
|
sl@0
|
496 |
User::LeaveIfError(iServerRepo->CommitTransaction(keyInfo));
|
sl@0
|
497 |
|
sl@0
|
498 |
//Now try to find the key being moved
|
sl@0
|
499 |
User::LeaveIfError(iServerRepo->FindSettings(targetPartialId,idMask,matchingArray));
|
sl@0
|
500 |
TESTL(matchingArray.Count()==3);
|
sl@0
|
501 |
matchingArray.Close();
|
sl@0
|
502 |
}
|
sl@0
|
503 |
|
sl@0
|
504 |
//Finding keys from the settings
|
sl@0
|
505 |
//TInt FindSettings(TUint32 aPartialId,TUint32 aIdMask,RSettingPointerArray& aMatches)
|
sl@0
|
506 |
//Guarantees the heap free in aMatches if this function fail
|
sl@0
|
507 |
void CenrepSrvOOMTest::FindL()
|
sl@0
|
508 |
{
|
sl@0
|
509 |
TInt ret=KErrNone;
|
sl@0
|
510 |
RSettingPointerArray foundIdArray;
|
sl@0
|
511 |
TUint32 partialId=0;
|
sl@0
|
512 |
TUint32 idMask=0;
|
sl@0
|
513 |
//-----------Finding settings array using partial id & mask------
|
sl@0
|
514 |
|
sl@0
|
515 |
//------------------Real type---------------------------------
|
sl@0
|
516 |
//0x42,0x44,0x45,0x48
|
sl@0
|
517 |
partialId=0x40;
|
sl@0
|
518 |
idMask=0xFFFFFFF0;
|
sl@0
|
519 |
User::LeaveIfError(iServerRepo->FindSettings(partialId,idMask,foundIdArray));
|
sl@0
|
520 |
TESTKErrNoneL(ret);
|
sl@0
|
521 |
TESTL(foundIdArray.Count()==4);
|
sl@0
|
522 |
foundIdArray.Close();
|
sl@0
|
523 |
|
sl@0
|
524 |
//-----------------String type-------------------------------
|
sl@0
|
525 |
//0x51,0x54,0x5B
|
sl@0
|
526 |
partialId=0x50;
|
sl@0
|
527 |
idMask=0xFFFFFFF0;
|
sl@0
|
528 |
User::LeaveIfError(iServerRepo->FindSettings(partialId,idMask,foundIdArray));
|
sl@0
|
529 |
TESTKErrNoneL(ret);
|
sl@0
|
530 |
TESTL(foundIdArray.Count()==3);
|
sl@0
|
531 |
foundIdArray.Close();
|
sl@0
|
532 |
|
sl@0
|
533 |
//--------------------Int type----------------------------------------------------
|
sl@0
|
534 |
partialId=0x30;
|
sl@0
|
535 |
idMask=0xFFFFFFF0;
|
sl@0
|
536 |
//This should return only 0x30,0x34,0x35,0x39,0x3B( 5 items)
|
sl@0
|
537 |
User::LeaveIfError(iServerRepo->FindSettings(partialId,idMask,foundIdArray));
|
sl@0
|
538 |
TESTKErrNoneL(ret);
|
sl@0
|
539 |
TESTL(foundIdArray.Count()==5);
|
sl@0
|
540 |
|
sl@0
|
541 |
//----------------Find comparison using EEqual & ENotEqual------------------------
|
sl@0
|
542 |
TInt searchValue=100;
|
sl@0
|
543 |
TClientRequest dummyrequest;
|
sl@0
|
544 |
RArray<TUint32> idArray;
|
sl@0
|
545 |
//Set the policycheck to always pass
|
sl@0
|
546 |
dummyrequest.SetPolicyCheck(ETrue);
|
sl@0
|
547 |
//Comparison using Equal
|
sl@0
|
548 |
TRAP(ret,iServerRepo->FindCompareL(foundIdArray,searchValue,EEqual,idArray));
|
sl@0
|
549 |
if (ret==KErrNoMemory)
|
sl@0
|
550 |
{
|
sl@0
|
551 |
//do not need to reset idArray as it is done inside the function itself when it returns not KErrNone
|
sl@0
|
552 |
foundIdArray.Close();
|
sl@0
|
553 |
User::LeaveNoMemory();
|
sl@0
|
554 |
}
|
sl@0
|
555 |
TESTL(idArray.Count()==2);
|
sl@0
|
556 |
TESTL((idArray[0]==0x30 && idArray[1]==0x34) || (idArray[0]==0x34 && idArray[1]==0x30));
|
sl@0
|
557 |
idArray.Close();
|
sl@0
|
558 |
//Comparison using ENotEqual
|
sl@0
|
559 |
TRAP(ret,iServerRepo->FindCompareL(foundIdArray,searchValue,ENotEqual,idArray));
|
sl@0
|
560 |
if (ret==KErrNoMemory)
|
sl@0
|
561 |
{
|
sl@0
|
562 |
//do not need to reset idArray as it is done inside the function itself when it returns not KErrNone
|
sl@0
|
563 |
foundIdArray.Close();
|
sl@0
|
564 |
User::LeaveNoMemory();
|
sl@0
|
565 |
}
|
sl@0
|
566 |
TESTL(idArray.Count()==3);
|
sl@0
|
567 |
idArray.Close();
|
sl@0
|
568 |
foundIdArray.Close();
|
sl@0
|
569 |
|
sl@0
|
570 |
}
|
sl@0
|
571 |
|
sl@0
|
572 |
//Resetting settings
|
sl@0
|
573 |
void CenrepSrvOOMTest::ResetL()
|
sl@0
|
574 |
{
|
sl@0
|
575 |
TInt ret=KErrNone;
|
sl@0
|
576 |
TInt retValue=0;
|
sl@0
|
577 |
TReal realValue=0;
|
sl@0
|
578 |
|
sl@0
|
579 |
//-------------Single key reset----------------------------
|
sl@0
|
580 |
|
sl@0
|
581 |
ret = RepositorySingleSetL(*iServerRepo, 1, 500);
|
sl@0
|
582 |
TESTKErrNoneL(ret);
|
sl@0
|
583 |
ret=iServerRepo->Get(1,retValue);
|
sl@0
|
584 |
TESTL(retValue==500);
|
sl@0
|
585 |
|
sl@0
|
586 |
//Resetting individual settings
|
sl@0
|
587 |
ret=iServerRepo->ResetL(1);
|
sl@0
|
588 |
TESTKErrNoneL(ret);
|
sl@0
|
589 |
|
sl@0
|
590 |
//Check for value once being reset
|
sl@0
|
591 |
ret=iServerRepo->Get(1,retValue);
|
sl@0
|
592 |
TESTL(retValue==1);
|
sl@0
|
593 |
|
sl@0
|
594 |
//------------All keys reset------------------------------
|
sl@0
|
595 |
ret = RepositorySingleSetL(*iServerRepo, 17, 3.1343424);
|
sl@0
|
596 |
TESTKErrNoneL(ret);
|
sl@0
|
597 |
|
sl@0
|
598 |
//Reset all settings from Rom
|
sl@0
|
599 |
User::LeaveIfError(iServerRepo->ResetAllL());
|
sl@0
|
600 |
TESTKErrNoneL(ret);
|
sl@0
|
601 |
|
sl@0
|
602 |
//Check for value once all being reset
|
sl@0
|
603 |
|
sl@0
|
604 |
ret=iServerRepo->Get(17,realValue);
|
sl@0
|
605 |
TESTL(realValue==11.1111);
|
sl@0
|
606 |
}
|
sl@0
|
607 |
|
sl@0
|
608 |
void CenrepSrvOOMTest::NotifyL()
|
sl@0
|
609 |
{
|
sl@0
|
610 |
TInt err=KErrNone;
|
sl@0
|
611 |
|
sl@0
|
612 |
//addding individual requests
|
sl@0
|
613 |
for (TInt i=0;i<10;i++)
|
sl@0
|
614 |
{
|
sl@0
|
615 |
TClientRequest dummyRequest;
|
sl@0
|
616 |
User::LeaveIfError(iSessionNotif->AddRequest(i,dummyRequest));
|
sl@0
|
617 |
}
|
sl@0
|
618 |
|
sl@0
|
619 |
//adding group requests
|
sl@0
|
620 |
for (TInt i=0;i<10;i++)
|
sl@0
|
621 |
{
|
sl@0
|
622 |
TClientRequest dummyRequest;
|
sl@0
|
623 |
TUint32 partialId=100*i;
|
sl@0
|
624 |
TUint32 idMask=0xFFFFFFF0;
|
sl@0
|
625 |
User::LeaveIfError(iSessionNotif->AddRequest(partialId,idMask,dummyRequest));
|
sl@0
|
626 |
}
|
sl@0
|
627 |
|
sl@0
|
628 |
//cancelling individual requests
|
sl@0
|
629 |
User::LeaveIfError(iSessionNotif->CancelRequest(5));
|
sl@0
|
630 |
//Check to ensure that it has been deleted so calling cancel again will return KErrNotFound
|
sl@0
|
631 |
err=iSessionNotif->CancelRequest(5);
|
sl@0
|
632 |
TESTL(err==KErrNotFound);
|
sl@0
|
633 |
|
sl@0
|
634 |
//cancelling group requests
|
sl@0
|
635 |
User::LeaveIfError(iSessionNotif->CancelRequest(500,0xFFFFFFF0));
|
sl@0
|
636 |
err=iSessionNotif->CancelRequest(500,0xFFFFFF0);
|
sl@0
|
637 |
TESTL(err==KErrNotFound);
|
sl@0
|
638 |
|
sl@0
|
639 |
//Finally cancel ALL requests
|
sl@0
|
640 |
iSessionNotif->CancelAllRequests();
|
sl@0
|
641 |
|
sl@0
|
642 |
}
|
sl@0
|
643 |
|
sl@0
|
644 |
//Deletes the CServerRepository object properly
|
sl@0
|
645 |
LOCAL_C void ReleaseRepository(TAny* aServerRepository)
|
sl@0
|
646 |
{
|
sl@0
|
647 |
CServerRepository* serverRepository = static_cast<CServerRepository*>(aServerRepository);
|
sl@0
|
648 |
|
sl@0
|
649 |
TServerResources::iCacheManager->DisableCache();
|
sl@0
|
650 |
TServerResources::iObserver->CloseiOpenRepositories();
|
sl@0
|
651 |
delete serverRepository;
|
sl@0
|
652 |
TServerResources::iCacheManager->EnableCache();
|
sl@0
|
653 |
}
|
sl@0
|
654 |
|
sl@0
|
655 |
//Opening a repository and closing the repository
|
sl@0
|
656 |
LOCAL_C void CreateDeleteL(TBool /*aOOMMode*/)
|
sl@0
|
657 |
{
|
sl@0
|
658 |
CServerRepository* serverRepo=new (ELeave)CServerRepository();
|
sl@0
|
659 |
TCleanupItem cleanupItem(&ReleaseRepository, serverRepo);
|
sl@0
|
660 |
CleanupStack::PushL(cleanupItem);
|
sl@0
|
661 |
|
sl@0
|
662 |
CSessionNotifier* sessNotif=new (ELeave)CSessionNotifier();
|
sl@0
|
663 |
CleanupStack::PushL(sessNotif);
|
sl@0
|
664 |
|
sl@0
|
665 |
// test access to a valid repository
|
sl@0
|
666 |
serverRepo->OpenL(KCurrentTestUid,*sessNotif);
|
sl@0
|
667 |
serverRepo->Close();
|
sl@0
|
668 |
|
sl@0
|
669 |
CleanupStack::PopAndDestroy(sessNotif);
|
sl@0
|
670 |
CleanupStack::PopAndDestroy(1);
|
sl@0
|
671 |
}
|
sl@0
|
672 |
|
sl@0
|
673 |
LOCAL_C void CreateDeleteCorruptL(TBool /*aOOMMode*/)
|
sl@0
|
674 |
{
|
sl@0
|
675 |
CServerRepository* serverRepo=new (ELeave)CServerRepository();
|
sl@0
|
676 |
TCleanupItem cleanupItem(&ReleaseRepository, serverRepo);
|
sl@0
|
677 |
CleanupStack::PushL(cleanupItem);
|
sl@0
|
678 |
|
sl@0
|
679 |
CSessionNotifier* sessNotif=new (ELeave)CSessionNotifier();
|
sl@0
|
680 |
CleanupStack::PushL(sessNotif);
|
sl@0
|
681 |
|
sl@0
|
682 |
// test access to a corrupt repository
|
sl@0
|
683 |
// trap KErrCorrupt
|
sl@0
|
684 |
TRAPD(err, serverRepo->OpenL(KCorruptRepositoryUid,*sessNotif));
|
sl@0
|
685 |
// leave if not KErrCorrupt
|
sl@0
|
686 |
User::LeaveIfError((err == KErrCorrupt) ? KErrNone : err);
|
sl@0
|
687 |
serverRepo->Close();
|
sl@0
|
688 |
|
sl@0
|
689 |
CleanupStack::PopAndDestroy(sessNotif);
|
sl@0
|
690 |
CleanupStack::PopAndDestroy(1);
|
sl@0
|
691 |
}
|
sl@0
|
692 |
|
sl@0
|
693 |
void CenrepSwiOOMTest::UpgradeROMRev1L(TBool aIsSetup)
|
sl@0
|
694 |
{
|
sl@0
|
695 |
if(aIsSetup)
|
sl@0
|
696 |
{
|
sl@0
|
697 |
RFs fs;
|
sl@0
|
698 |
User::LeaveIfError(fs.Connect());
|
sl@0
|
699 |
CleanupClosePushL(fs);
|
sl@0
|
700 |
CFileMan* fm = CFileMan::NewL(fs);
|
sl@0
|
701 |
CleanupStack::PushL(fm);
|
sl@0
|
702 |
|
sl@0
|
703 |
// Copy rev 1 file into install dir & Reset read-only bit
|
sl@0
|
704 |
User::LeaveIfError(fm->Copy(KRomUpgradeRev1File, KUpgradeFile));
|
sl@0
|
705 |
User::LeaveIfError(fm->Attribs(KUpgradeFile,0,KEntryAttReadOnly,TTime(0)));
|
sl@0
|
706 |
CleanupStack::PopAndDestroy(2); // fs and fm
|
sl@0
|
707 |
}
|
sl@0
|
708 |
else
|
sl@0
|
709 |
{
|
sl@0
|
710 |
iSwiWatcher->HandleSWIEventL(ESASwisInstall | ESASwisStatusSuccess);
|
sl@0
|
711 |
}
|
sl@0
|
712 |
}
|
sl@0
|
713 |
|
sl@0
|
714 |
LOCAL_C void ModifyTimeStampL(RFs &fs, TDesC *fileName, TTime aTime)
|
sl@0
|
715 |
{
|
sl@0
|
716 |
// Reset read-only bit
|
sl@0
|
717 |
User::LeaveIfError(fs.SetAtt(*fileName, 0, KEntryAttReadOnly));
|
sl@0
|
718 |
TTimeIntervalHours interval(1);
|
sl@0
|
719 |
TTime newTime=aTime+interval;
|
sl@0
|
720 |
User::LeaveIfError(fs.SetModified(*fileName, newTime));
|
sl@0
|
721 |
}
|
sl@0
|
722 |
|
sl@0
|
723 |
|
sl@0
|
724 |
void CenrepSwiOOMTest::UpgradeROMRev2L(TBool aIsSetup)
|
sl@0
|
725 |
{
|
sl@0
|
726 |
if(aIsSetup)
|
sl@0
|
727 |
{
|
sl@0
|
728 |
// Set up rev 1
|
sl@0
|
729 |
UpgradeROMRev1L(ETrue);
|
sl@0
|
730 |
UpgradeROMRev1L(EFalse);
|
sl@0
|
731 |
|
sl@0
|
732 |
RFs fs;
|
sl@0
|
733 |
User::LeaveIfError(fs.Connect());
|
sl@0
|
734 |
CleanupClosePushL(fs);
|
sl@0
|
735 |
CFileMan* fm = CFileMan::NewL(fs);
|
sl@0
|
736 |
CleanupStack::PushL(fm);
|
sl@0
|
737 |
|
sl@0
|
738 |
// Get modification time
|
sl@0
|
739 |
TTime time;
|
sl@0
|
740 |
TBuf<50> fileName(KUpgradeFile);
|
sl@0
|
741 |
fs.Modified(fileName, time);
|
sl@0
|
742 |
|
sl@0
|
743 |
// Copy rev2 file into install dir & Reset read-only bit
|
sl@0
|
744 |
User::LeaveIfError(fm->Copy(KRomUpgradeRev2File, KUpgradeFile));
|
sl@0
|
745 |
User::LeaveIfError(fm->Attribs(KUpgradeFile,0,KEntryAttReadOnly,TTime(0)));
|
sl@0
|
746 |
// Modify timestamp to cause upgrade
|
sl@0
|
747 |
ModifyTimeStampL(fs,&fileName, time);
|
sl@0
|
748 |
|
sl@0
|
749 |
CleanupStack::PopAndDestroy(2); // fs and fm
|
sl@0
|
750 |
}
|
sl@0
|
751 |
else
|
sl@0
|
752 |
{
|
sl@0
|
753 |
iSwiWatcher->HandleSWIEventL(ESASwisInstall | ESASwisStatusSuccess);
|
sl@0
|
754 |
}
|
sl@0
|
755 |
|
sl@0
|
756 |
}
|
sl@0
|
757 |
|
sl@0
|
758 |
void CenrepSwiOOMTest::UninstallROMUpgradeL(TBool aIsSetup)
|
sl@0
|
759 |
{
|
sl@0
|
760 |
if(aIsSetup)
|
sl@0
|
761 |
{
|
sl@0
|
762 |
// Install rev 2
|
sl@0
|
763 |
UpgradeROMRev2L(ETrue);
|
sl@0
|
764 |
UpgradeROMRev2L(EFalse);
|
sl@0
|
765 |
|
sl@0
|
766 |
RFs fs;
|
sl@0
|
767 |
User::LeaveIfError(fs.Connect());
|
sl@0
|
768 |
CleanupClosePushL(fs);
|
sl@0
|
769 |
CFileMan* fm = CFileMan::NewL(fs);
|
sl@0
|
770 |
CleanupStack::PushL(fm);
|
sl@0
|
771 |
|
sl@0
|
772 |
// Delete file from install dir
|
sl@0
|
773 |
User::LeaveIfError(fm->Attribs(KUpgradeFile,0,KEntryAttReadOnly,TTime(0)));
|
sl@0
|
774 |
TInt err=fs.Delete(KUpgradeFile);
|
sl@0
|
775 |
if((err!=KErrNone)&&(err!=KErrNotFound))
|
sl@0
|
776 |
User::Leave(err);
|
sl@0
|
777 |
|
sl@0
|
778 |
CleanupStack::PopAndDestroy(2); // fs and fm
|
sl@0
|
779 |
}
|
sl@0
|
780 |
else
|
sl@0
|
781 |
{
|
sl@0
|
782 |
iSwiWatcher->HandleSWIEventL(ESASwisUninstall | ESASwisStatusSuccess);
|
sl@0
|
783 |
}
|
sl@0
|
784 |
}
|
sl@0
|
785 |
|
sl@0
|
786 |
void CenrepSwiOOMTest::InstallL(TBool aIsSetup)
|
sl@0
|
787 |
{
|
sl@0
|
788 |
if(aIsSetup)
|
sl@0
|
789 |
{
|
sl@0
|
790 |
RFs fs;
|
sl@0
|
791 |
User::LeaveIfError(fs.Connect());
|
sl@0
|
792 |
CleanupClosePushL(fs);
|
sl@0
|
793 |
CFileMan* fm = CFileMan::NewL(fs);
|
sl@0
|
794 |
CleanupStack::PushL(fm);
|
sl@0
|
795 |
|
sl@0
|
796 |
// Copy rev 1 file into install dir & Reset read-only bit
|
sl@0
|
797 |
User::LeaveIfError(fm->Copy(KInstallOnlyFile, KInstallFile));
|
sl@0
|
798 |
User::LeaveIfError(fm->Attribs(KInstallFile,0,KEntryAttReadOnly,TTime(0)));
|
sl@0
|
799 |
|
sl@0
|
800 |
CleanupStack::PopAndDestroy(2); // fs and fm
|
sl@0
|
801 |
}
|
sl@0
|
802 |
else
|
sl@0
|
803 |
{
|
sl@0
|
804 |
iSwiWatcher->HandleSWIEventL(ESASwisInstall | ESASwisStatusSuccess);
|
sl@0
|
805 |
}
|
sl@0
|
806 |
}
|
sl@0
|
807 |
|
sl@0
|
808 |
void CenrepSwiOOMTest::UpgradeInstallL(TBool aIsSetup)
|
sl@0
|
809 |
{
|
sl@0
|
810 |
if(aIsSetup)
|
sl@0
|
811 |
{
|
sl@0
|
812 |
// Install file
|
sl@0
|
813 |
InstallL(ETrue);
|
sl@0
|
814 |
InstallL(EFalse);
|
sl@0
|
815 |
|
sl@0
|
816 |
RFs fs;
|
sl@0
|
817 |
User::LeaveIfError(fs.Connect());
|
sl@0
|
818 |
CleanupClosePushL(fs);
|
sl@0
|
819 |
CFileMan* fm = CFileMan::NewL(fs);
|
sl@0
|
820 |
CleanupStack::PushL(fm);
|
sl@0
|
821 |
|
sl@0
|
822 |
// Get modification time
|
sl@0
|
823 |
TTime time;
|
sl@0
|
824 |
TBuf<50> fileName(KInstallFile);
|
sl@0
|
825 |
fs.Modified(fileName, time);
|
sl@0
|
826 |
|
sl@0
|
827 |
// Copy upgrade file into install dir & Reset read-only bit
|
sl@0
|
828 |
User::LeaveIfError(fm->Copy(KInstallOnlyUpgradeFile, KInstallFile));
|
sl@0
|
829 |
User::LeaveIfError(fm->Attribs(KInstallFile,0,KEntryAttReadOnly,TTime(0)));
|
sl@0
|
830 |
// Modify timestamp to cause upgrade
|
sl@0
|
831 |
ModifyTimeStampL(fs,&fileName, time);
|
sl@0
|
832 |
|
sl@0
|
833 |
CleanupStack::PopAndDestroy(2); // fs and fm
|
sl@0
|
834 |
}
|
sl@0
|
835 |
else
|
sl@0
|
836 |
{
|
sl@0
|
837 |
iSwiWatcher->HandleSWIEventL(ESASwisInstall | ESASwisStatusSuccess);
|
sl@0
|
838 |
}
|
sl@0
|
839 |
}
|
sl@0
|
840 |
|
sl@0
|
841 |
void CenrepSwiOOMTest::UninstallL(TBool aIsSetup)
|
sl@0
|
842 |
{
|
sl@0
|
843 |
if(aIsSetup)
|
sl@0
|
844 |
{
|
sl@0
|
845 |
// Install upgrade
|
sl@0
|
846 |
UpgradeInstallL(ETrue);
|
sl@0
|
847 |
UpgradeInstallL(EFalse);
|
sl@0
|
848 |
|
sl@0
|
849 |
RFs fs;
|
sl@0
|
850 |
User::LeaveIfError(fs.Connect());
|
sl@0
|
851 |
CleanupClosePushL(fs);
|
sl@0
|
852 |
CFileMan* fm = CFileMan::NewL(fs);
|
sl@0
|
853 |
CleanupStack::PushL(fm);
|
sl@0
|
854 |
|
sl@0
|
855 |
// Delete file from install dir
|
sl@0
|
856 |
User::LeaveIfError(fm->Attribs(KInstallFile,0,KEntryAttReadOnly,TTime(0)));
|
sl@0
|
857 |
TInt err=fs.Delete(KInstallFile);
|
sl@0
|
858 |
if((err!=KErrNone)&&(err!=KErrNotFound))
|
sl@0
|
859 |
User::Leave(err);
|
sl@0
|
860 |
|
sl@0
|
861 |
// Create a cre persists file, doesn't matter what's in it, it should be deleted
|
sl@0
|
862 |
User::LeaveIfError(fm->Copy(KPersistsFileUpgraded, KInstallPersistsFile));
|
sl@0
|
863 |
User::LeaveIfError(fm->Attribs(KInstallPersistsFile,0,KEntryAttReadOnly,TTime(0)));
|
sl@0
|
864 |
|
sl@0
|
865 |
CleanupStack::PopAndDestroy(2); // fs and fm
|
sl@0
|
866 |
}
|
sl@0
|
867 |
else
|
sl@0
|
868 |
{
|
sl@0
|
869 |
iSwiWatcher->HandleSWIEventL(ESASwisUninstall | ESASwisStatusSuccess);
|
sl@0
|
870 |
}
|
sl@0
|
871 |
}
|
sl@0
|
872 |
|
sl@0
|
873 |
LOCAL_C void StartupUpgradeL(TBool aIsSetup)
|
sl@0
|
874 |
{
|
sl@0
|
875 |
if(aIsSetup)
|
sl@0
|
876 |
{
|
sl@0
|
877 |
// Set up files for test
|
sl@0
|
878 |
RFs fs;
|
sl@0
|
879 |
User::LeaveIfError(fs.Connect());
|
sl@0
|
880 |
CleanupClosePushL(fs);
|
sl@0
|
881 |
CFileMan* fm = CFileMan::NewL(fs);
|
sl@0
|
882 |
CleanupStack::PushL(fm);
|
sl@0
|
883 |
|
sl@0
|
884 |
// Clean out files
|
sl@0
|
885 |
TInt err=fs.Delete(KInstallDirFile);
|
sl@0
|
886 |
if((err!=KErrNone)&&(err!=KErrNotFound))
|
sl@0
|
887 |
User::Leave(err);
|
sl@0
|
888 |
|
sl@0
|
889 |
// Cause directory listing with no files to be written
|
sl@0
|
890 |
CCentRepSWIWatcher* swiWatcher = CCentRepSWIWatcher::NewL(TServerResources::iFs);
|
sl@0
|
891 |
delete swiWatcher;
|
sl@0
|
892 |
|
sl@0
|
893 |
User::LeaveIfError(fm->Copy(KPersistsFileNoUpgrade, KPersistsFile));
|
sl@0
|
894 |
User::LeaveIfError(fm->Attribs(KPersistsFile,0,KEntryAttReadOnly,TTime(0)));
|
sl@0
|
895 |
|
sl@0
|
896 |
User::LeaveIfError(fm->Copy(KRomUpgradeRev1File, KUpgradeFile));
|
sl@0
|
897 |
User::LeaveIfError(fm->Attribs(KUpgradeFile,0,KEntryAttReadOnly,TTime(0)));
|
sl@0
|
898 |
|
sl@0
|
899 |
CleanupStack::PopAndDestroy(2); // fs and fm
|
sl@0
|
900 |
}
|
sl@0
|
901 |
else
|
sl@0
|
902 |
{
|
sl@0
|
903 |
CCentRepSWIWatcher* swiWatcher = CCentRepSWIWatcher::NewL(TServerResources::iFs);
|
sl@0
|
904 |
delete swiWatcher;
|
sl@0
|
905 |
}
|
sl@0
|
906 |
}
|
sl@0
|
907 |
|
sl@0
|
908 |
LOCAL_C void StartupDowngradeL(TBool aIsSetup)
|
sl@0
|
909 |
{
|
sl@0
|
910 |
if(aIsSetup)
|
sl@0
|
911 |
{
|
sl@0
|
912 |
StartupUpgradeL(ETrue);
|
sl@0
|
913 |
StartupUpgradeL(EFalse);
|
sl@0
|
914 |
|
sl@0
|
915 |
// Set up files for test
|
sl@0
|
916 |
RFs fs;
|
sl@0
|
917 |
User::LeaveIfError(fs.Connect());
|
sl@0
|
918 |
CleanupClosePushL(fs);
|
sl@0
|
919 |
TInt err=fs.Delete(KUpgradeFile);
|
sl@0
|
920 |
if((err!=KErrNone)&&(err!=KErrNotFound))
|
sl@0
|
921 |
User::Leave(err);
|
sl@0
|
922 |
|
sl@0
|
923 |
CleanupStack::PopAndDestroy(); // fs
|
sl@0
|
924 |
}
|
sl@0
|
925 |
else
|
sl@0
|
926 |
{
|
sl@0
|
927 |
CCentRepSWIWatcher* swiWatcher = CCentRepSWIWatcher::NewL(TServerResources::iFs);
|
sl@0
|
928 |
delete swiWatcher;
|
sl@0
|
929 |
}
|
sl@0
|
930 |
}
|
sl@0
|
931 |
|
sl@0
|
932 |
LOCAL_C void StartupUninstallL(TBool aIsSetup)
|
sl@0
|
933 |
{
|
sl@0
|
934 |
if(aIsSetup)
|
sl@0
|
935 |
{
|
sl@0
|
936 |
RFs fs;
|
sl@0
|
937 |
User::LeaveIfError(fs.Connect());
|
sl@0
|
938 |
CleanupClosePushL(fs);
|
sl@0
|
939 |
CFileMan* fm = CFileMan::NewL(fs);
|
sl@0
|
940 |
CleanupStack::PushL(fm);
|
sl@0
|
941 |
|
sl@0
|
942 |
// Copy rev 1 file into install dir & Reset read-only bit
|
sl@0
|
943 |
User::LeaveIfError(fm->Copy(KInstallOnlyFile, KInstallFile));
|
sl@0
|
944 |
User::LeaveIfError(fm->Attribs(KInstallFile,0,KEntryAttReadOnly,TTime(0)));
|
sl@0
|
945 |
|
sl@0
|
946 |
// Cause directory listing to be written and file to be installed
|
sl@0
|
947 |
CCentRepSWIWatcher* swiWatcher = CCentRepSWIWatcher::NewL(TServerResources::iFs);
|
sl@0
|
948 |
delete swiWatcher;
|
sl@0
|
949 |
|
sl@0
|
950 |
// Create a persists file that will be deleted
|
sl@0
|
951 |
User::LeaveIfError(fm->Copy(KPersistsFileUpgraded, KInstallPersistsFile));
|
sl@0
|
952 |
User::LeaveIfError(fm->Attribs(KInstallPersistsFile,0,KEntryAttReadOnly,TTime(0)));
|
sl@0
|
953 |
|
sl@0
|
954 |
TInt err=fs.Delete(KInstallFile);
|
sl@0
|
955 |
if((err!=KErrNone)&&(err!=KErrNotFound))
|
sl@0
|
956 |
User::Leave(err);
|
sl@0
|
957 |
|
sl@0
|
958 |
CleanupStack::PopAndDestroy(2); // fs and fm
|
sl@0
|
959 |
}
|
sl@0
|
960 |
else
|
sl@0
|
961 |
{
|
sl@0
|
962 |
CCentRepSWIWatcher* swiWatcher = CCentRepSWIWatcher::NewL(TServerResources::iFs);
|
sl@0
|
963 |
delete swiWatcher;
|
sl@0
|
964 |
}
|
sl@0
|
965 |
}
|
sl@0
|
966 |
|
sl@0
|
967 |
// Type definition for pointer to function
|
sl@0
|
968 |
// Used for functions that can't use CenrepSrvOOMTest::ConstructL
|
sl@0
|
969 |
typedef void (*FuncPtrL) (TBool);
|
sl@0
|
970 |
/**
|
sl@0
|
971 |
Wrapper function to call all OOM test functions
|
sl@0
|
972 |
@param testFuncL pointer to OOM test function
|
sl@0
|
973 |
@param aTestDesc test function name
|
sl@0
|
974 |
*/
|
sl@0
|
975 |
LOCAL_C void DoOOMNoServReposL( FuncPtrL atestFuncL, const TDesC& aTestDesc, TBool aOOMMode)
|
sl@0
|
976 |
{
|
sl@0
|
977 |
TheTest.Next(aTestDesc);
|
sl@0
|
978 |
|
sl@0
|
979 |
TInt err;
|
sl@0
|
980 |
TInt tryCount = 0;
|
sl@0
|
981 |
do
|
sl@0
|
982 |
{
|
sl@0
|
983 |
__UHEAP_MARK;
|
sl@0
|
984 |
|
sl@0
|
985 |
//Initializing the server resources
|
sl@0
|
986 |
TServerResources::InitialiseL ();
|
sl@0
|
987 |
//Clear any files in the persist directory
|
sl@0
|
988 |
CleanupCDriveL();
|
sl@0
|
989 |
|
sl@0
|
990 |
// find out the number of open handles
|
sl@0
|
991 |
TInt startProcessHandleCount;
|
sl@0
|
992 |
TInt startThreadHandleCount;
|
sl@0
|
993 |
RThread().HandleCount(startProcessHandleCount, startThreadHandleCount);
|
sl@0
|
994 |
|
sl@0
|
995 |
(*atestFuncL)(ETrue);
|
sl@0
|
996 |
|
sl@0
|
997 |
if (aOOMMode)
|
sl@0
|
998 |
__UHEAP_SETFAIL(RHeap::EDeterministic, ++tryCount);
|
sl@0
|
999 |
|
sl@0
|
1000 |
TRAP(err, (*atestFuncL)(EFalse));
|
sl@0
|
1001 |
if (err!=KErrNoMemory)
|
sl@0
|
1002 |
TESTKErrNoneL(err);
|
sl@0
|
1003 |
|
sl@0
|
1004 |
if (aOOMMode)
|
sl@0
|
1005 |
__UHEAP_SETFAIL(RHeap::ENone, 0);
|
sl@0
|
1006 |
|
sl@0
|
1007 |
// check that no handles have leaked
|
sl@0
|
1008 |
TInt endProcessHandleCount;
|
sl@0
|
1009 |
TInt endThreadHandleCount;
|
sl@0
|
1010 |
RThread().HandleCount(endProcessHandleCount, endThreadHandleCount);
|
sl@0
|
1011 |
TEST2L(startProcessHandleCount, endProcessHandleCount);
|
sl@0
|
1012 |
TEST2L(startThreadHandleCount, endThreadHandleCount);
|
sl@0
|
1013 |
|
sl@0
|
1014 |
//Freeing the server resources
|
sl@0
|
1015 |
TServerResources::Close();
|
sl@0
|
1016 |
|
sl@0
|
1017 |
__UHEAP_MARKEND;
|
sl@0
|
1018 |
} while(err == KErrNoMemory);
|
sl@0
|
1019 |
|
sl@0
|
1020 |
TESTKErrNoneL(err);
|
sl@0
|
1021 |
if (aOOMMode)
|
sl@0
|
1022 |
TheTest.Printf(_L("- server succeeded at heap failure rate of %i\n"), tryCount);
|
sl@0
|
1023 |
}
|
sl@0
|
1024 |
|
sl@0
|
1025 |
// Type definition for pointer to member function.
|
sl@0
|
1026 |
// Used in calling the CRegistryDataTest member function for testing.
|
sl@0
|
1027 |
typedef void (CenrepSrvOOMTest::*ClassFuncPtrL) (void);
|
sl@0
|
1028 |
/**
|
sl@0
|
1029 |
Wrapper function to call all OOM test functions
|
sl@0
|
1030 |
@param testFuncL pointer to OOM test function
|
sl@0
|
1031 |
@param aTestDesc test function name
|
sl@0
|
1032 |
@param aOOMMode to enable/disable the OOM environment
|
sl@0
|
1033 |
*/
|
sl@0
|
1034 |
LOCAL_C void DoOOMTestL(ClassFuncPtrL testFuncL, const TDesC& aTestDesc,TBool aOOMMode)
|
sl@0
|
1035 |
{
|
sl@0
|
1036 |
TheTest.Next(aTestDesc);
|
sl@0
|
1037 |
|
sl@0
|
1038 |
TInt err=KErrNone;
|
sl@0
|
1039 |
TInt tryCount = 0;
|
sl@0
|
1040 |
do
|
sl@0
|
1041 |
{
|
sl@0
|
1042 |
__UHEAP_MARK;
|
sl@0
|
1043 |
|
sl@0
|
1044 |
//Initializing the server resources
|
sl@0
|
1045 |
TServerResources::InitialiseL ();
|
sl@0
|
1046 |
|
sl@0
|
1047 |
//Clear any files in the persist directory
|
sl@0
|
1048 |
CleanupCDriveL();
|
sl@0
|
1049 |
|
sl@0
|
1050 |
CenrepSrvOOMTest* theTest=CenrepSrvOOMTest::NewL();
|
sl@0
|
1051 |
CleanupStack::PushL(theTest);
|
sl@0
|
1052 |
|
sl@0
|
1053 |
TInt startProcessHandleCount;
|
sl@0
|
1054 |
TInt startThreadHandleCount;
|
sl@0
|
1055 |
RThread().HandleCount(startProcessHandleCount, startThreadHandleCount);
|
sl@0
|
1056 |
|
sl@0
|
1057 |
if (aOOMMode)
|
sl@0
|
1058 |
__UHEAP_SETFAIL(RHeap::EDeterministic, ++tryCount);
|
sl@0
|
1059 |
|
sl@0
|
1060 |
TRAP(err, (theTest->*testFuncL)());
|
sl@0
|
1061 |
|
sl@0
|
1062 |
if (aOOMMode)
|
sl@0
|
1063 |
__UHEAP_SETFAIL(RHeap::ENone, 0);
|
sl@0
|
1064 |
|
sl@0
|
1065 |
if (err!=KErrNoMemory)
|
sl@0
|
1066 |
TESTKErrNoneL(err);
|
sl@0
|
1067 |
|
sl@0
|
1068 |
CleanupStack::PopAndDestroy(theTest);
|
sl@0
|
1069 |
|
sl@0
|
1070 |
// check that no handles have leaked
|
sl@0
|
1071 |
TInt endProcessHandleCount;
|
sl@0
|
1072 |
TInt endThreadHandleCount;
|
sl@0
|
1073 |
RThread().HandleCount(endProcessHandleCount, endThreadHandleCount);
|
sl@0
|
1074 |
|
sl@0
|
1075 |
TEST2L(startProcessHandleCount, endProcessHandleCount);
|
sl@0
|
1076 |
TEST2L(startThreadHandleCount, endThreadHandleCount);
|
sl@0
|
1077 |
|
sl@0
|
1078 |
//Freeing the server resources
|
sl@0
|
1079 |
TServerResources::Close();
|
sl@0
|
1080 |
__UHEAP_MARKEND;
|
sl@0
|
1081 |
} while(err == KErrNoMemory);
|
sl@0
|
1082 |
|
sl@0
|
1083 |
TESTKErrNoneL(err);
|
sl@0
|
1084 |
if (aOOMMode)
|
sl@0
|
1085 |
TheTest.Printf(_L("- server succeeded at heap failure rate of %i\n"), tryCount);
|
sl@0
|
1086 |
}
|
sl@0
|
1087 |
|
sl@0
|
1088 |
// Type definition for pointer to member function.
|
sl@0
|
1089 |
// Used in calling the CRegistryDataTest member function for testing.
|
sl@0
|
1090 |
typedef void (CenrepSwiOOMTest::*ClassSwiFuncPtrL) (TBool);
|
sl@0
|
1091 |
/**
|
sl@0
|
1092 |
Wrapper function to call all OOM test functions
|
sl@0
|
1093 |
@param testFuncL pointer to OOM test function
|
sl@0
|
1094 |
@param aTestDesc test function name
|
sl@0
|
1095 |
@param aOOMMode to enable/disable the OOM environment
|
sl@0
|
1096 |
*/
|
sl@0
|
1097 |
LOCAL_C void DoOOMSwiTestL(ClassSwiFuncPtrL aTestFuncL, const TDesC& aTestDesc,TBool aOOMMode)
|
sl@0
|
1098 |
{
|
sl@0
|
1099 |
TheTest.Next(aTestDesc);
|
sl@0
|
1100 |
|
sl@0
|
1101 |
TInt err=KErrNone;
|
sl@0
|
1102 |
TInt tryCount = 0;
|
sl@0
|
1103 |
do
|
sl@0
|
1104 |
{
|
sl@0
|
1105 |
__UHEAP_MARK;
|
sl@0
|
1106 |
|
sl@0
|
1107 |
//Initializing the server resources
|
sl@0
|
1108 |
TServerResources::InitialiseL ();
|
sl@0
|
1109 |
//Clear any files in the persist directory
|
sl@0
|
1110 |
CleanupCDriveL();
|
sl@0
|
1111 |
|
sl@0
|
1112 |
TInt startProcessHandleCount;
|
sl@0
|
1113 |
TInt startThreadHandleCount;
|
sl@0
|
1114 |
RThread().HandleCount(startProcessHandleCount, startThreadHandleCount);
|
sl@0
|
1115 |
|
sl@0
|
1116 |
CenrepSwiOOMTest* theTest=CenrepSwiOOMTest::NewL();
|
sl@0
|
1117 |
CleanupStack::PushL(theTest);
|
sl@0
|
1118 |
|
sl@0
|
1119 |
// Set up test
|
sl@0
|
1120 |
(theTest->*aTestFuncL)(ETrue);
|
sl@0
|
1121 |
|
sl@0
|
1122 |
if (aOOMMode)
|
sl@0
|
1123 |
__UHEAP_SETFAIL(RHeap::EDeterministic, ++tryCount);
|
sl@0
|
1124 |
|
sl@0
|
1125 |
TRAP(err, (theTest->*aTestFuncL)(EFalse));
|
sl@0
|
1126 |
|
sl@0
|
1127 |
if (aOOMMode)
|
sl@0
|
1128 |
__UHEAP_SETFAIL(RHeap::ENone, 0);
|
sl@0
|
1129 |
|
sl@0
|
1130 |
if (err!=KErrNoMemory)
|
sl@0
|
1131 |
TESTKErrNoneL(err);
|
sl@0
|
1132 |
|
sl@0
|
1133 |
CleanupStack::PopAndDestroy(theTest);
|
sl@0
|
1134 |
|
sl@0
|
1135 |
// check that no handles have leaked
|
sl@0
|
1136 |
TInt endProcessHandleCount;
|
sl@0
|
1137 |
TInt endThreadHandleCount;
|
sl@0
|
1138 |
RThread().HandleCount(endProcessHandleCount, endThreadHandleCount);
|
sl@0
|
1139 |
|
sl@0
|
1140 |
TEST2L(startProcessHandleCount, endProcessHandleCount);
|
sl@0
|
1141 |
TEST2L(startThreadHandleCount, endThreadHandleCount);
|
sl@0
|
1142 |
|
sl@0
|
1143 |
//Freeing the server resources
|
sl@0
|
1144 |
TServerResources::Close();
|
sl@0
|
1145 |
__UHEAP_MARKEND;
|
sl@0
|
1146 |
} while(err == KErrNoMemory);
|
sl@0
|
1147 |
|
sl@0
|
1148 |
TESTKErrNoneL(err);
|
sl@0
|
1149 |
if (aOOMMode)
|
sl@0
|
1150 |
TheTest.Printf(_L("- server succeeded at heap failure rate of %i\n"), tryCount);
|
sl@0
|
1151 |
}
|
sl@0
|
1152 |
|
sl@0
|
1153 |
#ifdef SYMBIAN_CENTREP_SUPPORT_MULTIROFS
|
sl@0
|
1154 |
void CenrepSrvOOMTest::DoHeapRepositoryContentCheckL()
|
sl@0
|
1155 |
{
|
sl@0
|
1156 |
CServerRepository* srv=iServerRepo;
|
sl@0
|
1157 |
//check setting and its meta
|
sl@0
|
1158 |
TServerSetting* setting=NULL;
|
sl@0
|
1159 |
|
sl@0
|
1160 |
setting=srv->GetSetting(1);
|
sl@0
|
1161 |
TESTL(setting->iKey==1);
|
sl@0
|
1162 |
TESTL(setting->iMeta==0x80000010);
|
sl@0
|
1163 |
//points to global default policy here
|
sl@0
|
1164 |
TESTL(setting->iAccessPolicy->LowKey()==KUnspecifiedKey);
|
sl@0
|
1165 |
TESTL(setting->iAccessPolicy->HighKey()==1);
|
sl@0
|
1166 |
TESTL(setting->iAccessPolicy->KeyMask()==1);
|
sl@0
|
1167 |
|
sl@0
|
1168 |
setting=srv->GetSetting(2);
|
sl@0
|
1169 |
TESTL(setting->iKey==2);
|
sl@0
|
1170 |
TESTL(setting->iMeta==0xA0000010);
|
sl@0
|
1171 |
//points to global default policy here
|
sl@0
|
1172 |
TESTL(setting->iAccessPolicy->LowKey()==KUnspecifiedKey);
|
sl@0
|
1173 |
TESTL(setting->iAccessPolicy->HighKey()==1);
|
sl@0
|
1174 |
TESTL(setting->iAccessPolicy->KeyMask()==1);
|
sl@0
|
1175 |
|
sl@0
|
1176 |
setting=srv->GetSetting(3);
|
sl@0
|
1177 |
TESTL(setting->iKey==3);
|
sl@0
|
1178 |
TESTL(setting->iMeta==0x800000FF);
|
sl@0
|
1179 |
//points to global default policy here
|
sl@0
|
1180 |
TESTL(setting->iAccessPolicy->LowKey()==KUnspecifiedKey);
|
sl@0
|
1181 |
TESTL(setting->iAccessPolicy->HighKey()==1);
|
sl@0
|
1182 |
TESTL(setting->iAccessPolicy->KeyMask()==1);
|
sl@0
|
1183 |
|
sl@0
|
1184 |
setting=srv->GetSetting(4);
|
sl@0
|
1185 |
TESTL(setting->iKey==4);
|
sl@0
|
1186 |
TESTL(setting->iMeta==0x80000010);
|
sl@0
|
1187 |
TESTL(setting->iAccessPolicy->LowKey()==4);
|
sl@0
|
1188 |
TESTL(setting->iAccessPolicy->HighKey()==1);
|
sl@0
|
1189 |
TESTL(setting->iAccessPolicy->KeyMask()==0);
|
sl@0
|
1190 |
|
sl@0
|
1191 |
setting=srv->GetSetting(5);
|
sl@0
|
1192 |
TESTL(setting->iKey==5);
|
sl@0
|
1193 |
TESTL(setting->iMeta==0xC0000063);
|
sl@0
|
1194 |
//points to global default policy here
|
sl@0
|
1195 |
TESTL(setting->iAccessPolicy->LowKey()==KUnspecifiedKey);
|
sl@0
|
1196 |
TESTL(setting->iAccessPolicy->HighKey()==1);
|
sl@0
|
1197 |
TESTL(setting->iAccessPolicy->KeyMask()==1);
|
sl@0
|
1198 |
|
sl@0
|
1199 |
setting=srv->GetSetting(6);
|
sl@0
|
1200 |
TESTL(setting->iKey==6);
|
sl@0
|
1201 |
TESTL(setting->iMeta==0x90000010);
|
sl@0
|
1202 |
TESTL(setting->iAccessPolicy->LowKey()==6);
|
sl@0
|
1203 |
TESTL(setting->iAccessPolicy->HighKey()==1);
|
sl@0
|
1204 |
TESTL(setting->iAccessPolicy->KeyMask()==0);
|
sl@0
|
1205 |
|
sl@0
|
1206 |
setting=srv->GetSetting(7);
|
sl@0
|
1207 |
TESTL(setting->iKey==7);
|
sl@0
|
1208 |
TESTL(setting->iMeta==0x80000010);
|
sl@0
|
1209 |
TESTL(setting->iAccessPolicy->LowKey()==7);
|
sl@0
|
1210 |
TESTL(setting->iAccessPolicy->HighKey()==1);
|
sl@0
|
1211 |
TESTL(setting->iAccessPolicy->KeyMask()==0);
|
sl@0
|
1212 |
|
sl@0
|
1213 |
setting=srv->GetSetting(9);
|
sl@0
|
1214 |
TESTL(setting->iKey==9);
|
sl@0
|
1215 |
TESTL(setting->iMeta==0x80000010);
|
sl@0
|
1216 |
TESTL(setting->iAccessPolicy->LowKey()==KUnspecifiedKey);
|
sl@0
|
1217 |
TESTL(setting->iAccessPolicy->HighKey()==1);
|
sl@0
|
1218 |
TESTL(setting->iAccessPolicy->KeyMask()==1);
|
sl@0
|
1219 |
|
sl@0
|
1220 |
setting=srv->GetSetting(10);
|
sl@0
|
1221 |
TESTL(setting->iKey==10);
|
sl@0
|
1222 |
TESTL(setting->iMeta==0x80000010);
|
sl@0
|
1223 |
TESTL(setting->iAccessPolicy->LowKey()==10);
|
sl@0
|
1224 |
TESTL(setting->iAccessPolicy->HighKey()==1);
|
sl@0
|
1225 |
TESTL(setting->iAccessPolicy->KeyMask()==0);
|
sl@0
|
1226 |
|
sl@0
|
1227 |
setting=srv->GetSetting(300);
|
sl@0
|
1228 |
TESTL(setting->iKey==300);
|
sl@0
|
1229 |
TESTL(setting->iMeta==0x900003E7);
|
sl@0
|
1230 |
TESTL(setting->iAccessPolicy->LowKey()==KUnspecifiedKey);
|
sl@0
|
1231 |
TESTL(setting->iAccessPolicy->HighKey()==1);
|
sl@0
|
1232 |
TESTL(setting->iAccessPolicy->KeyMask()==1);
|
sl@0
|
1233 |
}
|
sl@0
|
1234 |
|
sl@0
|
1235 |
LOCAL_C void DoAdditionalCheckingL()
|
sl@0
|
1236 |
{
|
sl@0
|
1237 |
TServerResources::InitialiseL ();
|
sl@0
|
1238 |
|
sl@0
|
1239 |
CenrepSrvOOMTest* test=CenrepSrvOOMTest::NewL();
|
sl@0
|
1240 |
CleanupStack::PushL(test);
|
sl@0
|
1241 |
test->DoHeapRepositoryContentCheckL();
|
sl@0
|
1242 |
|
sl@0
|
1243 |
CleanupStack::PopAndDestroy();
|
sl@0
|
1244 |
|
sl@0
|
1245 |
TServerResources::Close();
|
sl@0
|
1246 |
}
|
sl@0
|
1247 |
|
sl@0
|
1248 |
/**
|
sl@0
|
1249 |
@SYMTestCaseID PDS-CENTRALREPOSITORY-UT-4050
|
sl@0
|
1250 |
@SYMTestCaseDesc Verifying that CRE generated will have the latest CRE version which is currently 2
|
sl@0
|
1251 |
@SYMTestPriority High
|
sl@0
|
1252 |
@SYMTestActions Validating that CRE files generated with post PREQ2112 code will always contain version 2.
|
sl@0
|
1253 |
The unit test will load a txt repository and then modify some settings so that it gets persisted
|
sl@0
|
1254 |
in the persists directory. The test then read the cre files to verify that the version persisted
|
sl@0
|
1255 |
is the latest which is 2.
|
sl@0
|
1256 |
@SYMTestExpectedResults The correct file version is returned.
|
sl@0
|
1257 |
@SYMREQ REQ11282
|
sl@0
|
1258 |
*/
|
sl@0
|
1259 |
LOCAL_C void DoPersistedVersionCheckingL()
|
sl@0
|
1260 |
{
|
sl@0
|
1261 |
TheTest.Next (_L (" @SYMTestCaseID:PDS-CENTRALREPOSITORY-UT-4050 Verifying CRE generated will always be version 2 "));
|
sl@0
|
1262 |
TServerResources::InitialiseL ();
|
sl@0
|
1263 |
|
sl@0
|
1264 |
const TUid KTestUid={0x88880000};
|
sl@0
|
1265 |
KCurrentTestUid=KTestUid;
|
sl@0
|
1266 |
|
sl@0
|
1267 |
CenrepSrvOOMTest* test=CenrepSrvOOMTest::NewL();
|
sl@0
|
1268 |
CleanupStack::PushL(test);
|
sl@0
|
1269 |
|
sl@0
|
1270 |
//persist immediately
|
sl@0
|
1271 |
test->iServerRepo->CommitChangesL();
|
sl@0
|
1272 |
|
sl@0
|
1273 |
//now check the version of the CRE file
|
sl@0
|
1274 |
CHeapRepository* heap=CHeapRepository::NewL(KTestUid);
|
sl@0
|
1275 |
CleanupStack::PushL(heap);
|
sl@0
|
1276 |
TUint8 creVersion;
|
sl@0
|
1277 |
heap->CreateRepositoryFromCreFileL(TServerResources::iFs,_L("c:\\private\\10202be9\\persists\\88880000.cre"),creVersion);
|
sl@0
|
1278 |
TESTL(creVersion==KPersistFormatSupportsIndMetaIndicator);
|
sl@0
|
1279 |
|
sl@0
|
1280 |
CleanupStack::PopAndDestroy(2,test);
|
sl@0
|
1281 |
TServerResources::Close();
|
sl@0
|
1282 |
}
|
sl@0
|
1283 |
/**
|
sl@0
|
1284 |
@SYMTestCaseID PDS-CENTRALREPOSITORY-UT-4051
|
sl@0
|
1285 |
@SYMTestCaseDesc Server side OOM loading of a multiple repository files
|
sl@0
|
1286 |
@SYMTestPriority High
|
sl@0
|
1287 |
@SYMTestActions Create the server class CServerRepository and used it to load the multi ROFS keyspace.
|
sl@0
|
1288 |
Test are repeated for the following keyspace combination such as TXT/TXT, CRE/TXT or TXT/CRE and CRE/CRE.
|
sl@0
|
1289 |
Test will also verify the resulting merged settings which includes checking
|
sl@0
|
1290 |
individual metadata bits and security policy bits
|
sl@0
|
1291 |
@SYMTestExpectedResults Server loading of the multi rofs keypsace should not fail and leak memory under OOM condition.
|
sl@0
|
1292 |
@SYMREQ REQ11282
|
sl@0
|
1293 |
*/
|
sl@0
|
1294 |
LOCAL_C void DoOOMMultiRofsTestL()
|
sl@0
|
1295 |
{
|
sl@0
|
1296 |
TheTest.Next (_L (" @SYMTestCaseID:PDS-CENTRALREPOSITORY-UT-4051 CENREPSRV MultiROFS OOM Test "));
|
sl@0
|
1297 |
|
sl@0
|
1298 |
const TUid KMultiRofsRepositoryUid1={0xFFFF0000};
|
sl@0
|
1299 |
const TUid KMultiRofsRepositoryUid2={0xEEEE0000};
|
sl@0
|
1300 |
const TUid KMultiRofsRepositoryUid3={0xDDDD0000};
|
sl@0
|
1301 |
const TUid KMultiRofsRepositoryUid4={0xCCCC0000};
|
sl@0
|
1302 |
|
sl@0
|
1303 |
//First Testuid=KMultiRofsRepositoryUid
|
sl@0
|
1304 |
//Testing the OOM of multi rofs processing
|
sl@0
|
1305 |
KCurrentTestUid=KMultiRofsRepositoryUid1;
|
sl@0
|
1306 |
DoOOMNoServReposL(&CreateDeleteL, _L("Create Delete OOM Multi ROFS Test"),ETrue);
|
sl@0
|
1307 |
DoAdditionalCheckingL();
|
sl@0
|
1308 |
KCurrentTestUid=KMultiRofsRepositoryUid2;
|
sl@0
|
1309 |
DoOOMNoServReposL(&CreateDeleteL, _L("Create Delete OOM Multi ROFS Test"),ETrue);
|
sl@0
|
1310 |
DoAdditionalCheckingL();
|
sl@0
|
1311 |
KCurrentTestUid=KMultiRofsRepositoryUid3;
|
sl@0
|
1312 |
DoOOMNoServReposL(&CreateDeleteL, _L("Create Delete OOM Multi ROFS Test"),ETrue);
|
sl@0
|
1313 |
DoAdditionalCheckingL();
|
sl@0
|
1314 |
KCurrentTestUid=KMultiRofsRepositoryUid4;
|
sl@0
|
1315 |
DoOOMNoServReposL(&CreateDeleteL, _L("Create Delete OOM Multi ROFS Test"),ETrue);
|
sl@0
|
1316 |
DoAdditionalCheckingL();
|
sl@0
|
1317 |
}
|
sl@0
|
1318 |
#endif
|
sl@0
|
1319 |
|
sl@0
|
1320 |
LOCAL_C void DoOOMTestsL()
|
sl@0
|
1321 |
{
|
sl@0
|
1322 |
TheTest.Next (_L (" @SYMTestCaseID:SYSLIB-CENTRALREPOSITORY-LEGACY-T_OOMCENREP-0001 Starting CENREPSRV OOM Test "));
|
sl@0
|
1323 |
RFs fs;
|
sl@0
|
1324 |
User::LeaveIfError(fs.Connect());
|
sl@0
|
1325 |
CleanupClosePushL(fs);
|
sl@0
|
1326 |
CFileMan* fm = CFileMan::NewL(fs);
|
sl@0
|
1327 |
CleanupStack::PushL(fm);
|
sl@0
|
1328 |
|
sl@0
|
1329 |
//Clear any files in the persist directory
|
sl@0
|
1330 |
CleanupCDriveL();
|
sl@0
|
1331 |
|
sl@0
|
1332 |
//First Testuid=KTestRepositoryUid
|
sl@0
|
1333 |
KCurrentTestUid=KTestRepositoryUid;
|
sl@0
|
1334 |
|
sl@0
|
1335 |
DoOOMTestL(&CenrepSrvOOMTest::GetL,_L("Get Basic Test"),EFalse);
|
sl@0
|
1336 |
DoOOMTestL(&CenrepSrvOOMTest::FindL,_L("FindL Basic Test"),EFalse);
|
sl@0
|
1337 |
DoOOMTestL(&CenrepSrvOOMTest::NotifyL,_L("NotifyL Basic Test"),EFalse);
|
sl@0
|
1338 |
DoOOMTestL(&CenrepSrvOOMTest::ResetL,_L("ResetL Basic Test"),EFalse);
|
sl@0
|
1339 |
// Save file without timestamp
|
sl@0
|
1340 |
User::LeaveIfError(fm->Copy(KPersistsFile, KPersistsFileNoUpgrade));
|
sl@0
|
1341 |
DoOOMTestL(&CenrepSrvOOMTest::SetL,_L("SetL Basic Test"),EFalse);
|
sl@0
|
1342 |
DoOOMTestL(&CenrepSrvOOMTest::CreateL,_L("CreateL Basic Test"),EFalse);
|
sl@0
|
1343 |
DoOOMTestL(&CenrepSrvOOMTest::DeleteL,_L("DeleteL Basic Test"),EFalse);
|
sl@0
|
1344 |
DoOOMTestL(&CenrepSrvOOMTest::MoveL,_L("MoveL Basic Test"),EFalse);
|
sl@0
|
1345 |
|
sl@0
|
1346 |
//Clear any files in the persist directory
|
sl@0
|
1347 |
CleanupCDriveL();
|
sl@0
|
1348 |
|
sl@0
|
1349 |
// Simulate response to SWI rom-upgrade and downgrade events
|
sl@0
|
1350 |
DoOOMSwiTestL(&CenrepSwiOOMTest::UpgradeROMRev1L,_L("SwiUpgradeROMRev1L Basic Test"),EFalse);
|
sl@0
|
1351 |
// Save file with timestamp
|
sl@0
|
1352 |
User::LeaveIfError(fm->Copy(KPersistsFile, KPersistsFileUpgraded));
|
sl@0
|
1353 |
DoOOMSwiTestL(&CenrepSwiOOMTest::UpgradeROMRev2L,_L("SwiUpgradeROMRev2L Basic Test"),EFalse);
|
sl@0
|
1354 |
DoOOMSwiTestL(&CenrepSwiOOMTest::UninstallROMUpgradeL,_L("SwiUninstallROMUpgradeL Basic Test"),EFalse);
|
sl@0
|
1355 |
|
sl@0
|
1356 |
// Simulate response to SWI new rep install/uninstall event events
|
sl@0
|
1357 |
DoOOMSwiTestL(&CenrepSwiOOMTest::InstallL,_L("SwiInstallL Basic Test"),EFalse);
|
sl@0
|
1358 |
DoOOMSwiTestL(&CenrepSwiOOMTest::UpgradeInstallL,_L("SwiUpgradeInstallL Basic Test"),EFalse);
|
sl@0
|
1359 |
DoOOMSwiTestL(&CenrepSwiOOMTest::UninstallL,_L("SwiUninstallL Basic Test"),EFalse);
|
sl@0
|
1360 |
|
sl@0
|
1361 |
// Simulate SWI events before server startup
|
sl@0
|
1362 |
DoOOMNoServReposL(&StartupUpgradeL, _L("Startup Upgrade Basic Test"), EFalse);
|
sl@0
|
1363 |
DoOOMNoServReposL(&StartupDowngradeL, _L("Startup Downgrade Basic Test"), EFalse);
|
sl@0
|
1364 |
DoOOMNoServReposL(&StartupUninstallL,_L("Startup Uninstall Basic Test"), EFalse);
|
sl@0
|
1365 |
|
sl@0
|
1366 |
//OOM Test aOOMMode=ETrue
|
sl@0
|
1367 |
DoOOMNoServReposL(&CreateDeleteL, _L("Create Delete OOM Test"),ETrue);
|
sl@0
|
1368 |
DoOOMNoServReposL(&CreateDeleteCorruptL, _L("Create Delete Corrupt OOM Test"),ETrue);
|
sl@0
|
1369 |
DoOOMTestL(&CenrepSrvOOMTest::GetL,_L("Get OOM Test"),ETrue);
|
sl@0
|
1370 |
DoOOMTestL(&CenrepSrvOOMTest::FindL,_L("FindL OOM Test"),ETrue);
|
sl@0
|
1371 |
DoOOMTestL(&CenrepSrvOOMTest::NotifyL,_L("NotifyL OOM Test"),ETrue);
|
sl@0
|
1372 |
DoOOMTestL(&CenrepSrvOOMTest::ResetL,_L("ResetL OOM Test"),ETrue);
|
sl@0
|
1373 |
DoOOMTestL(&CenrepSrvOOMTest::SetL,_L("SetL OOM Test"),ETrue);
|
sl@0
|
1374 |
DoOOMTestL(&CenrepSrvOOMTest::CreateL,_L("CreateL OOM Test"),ETrue);
|
sl@0
|
1375 |
DoOOMTestL(&CenrepSrvOOMTest::DeleteL,_L("DeleteL OOM Test"),ETrue);
|
sl@0
|
1376 |
DoOOMTestL(&CenrepSrvOOMTest::MoveL,_L("MoveL OOM Test"),ETrue);
|
sl@0
|
1377 |
|
sl@0
|
1378 |
//Clear any files in the persist directory
|
sl@0
|
1379 |
CleanupCDriveL();
|
sl@0
|
1380 |
|
sl@0
|
1381 |
DoOOMSwiTestL(&CenrepSwiOOMTest::UpgradeROMRev1L,_L("SwiUpgradeROMRev1L OOM Test"),ETrue);
|
sl@0
|
1382 |
DoOOMSwiTestL(&CenrepSwiOOMTest::UpgradeROMRev2L,_L("SwiUpgradeROMRev2L OOM Test"),ETrue);
|
sl@0
|
1383 |
DoOOMSwiTestL(&CenrepSwiOOMTest::UninstallROMUpgradeL,_L("SwiUninstallROMUpgradeL OOM Test"),ETrue);
|
sl@0
|
1384 |
|
sl@0
|
1385 |
DoOOMSwiTestL(&CenrepSwiOOMTest::InstallL,_L("SwiInstallL OOM Test"),ETrue);
|
sl@0
|
1386 |
DoOOMSwiTestL(&CenrepSwiOOMTest::UpgradeInstallL,_L("SwiUpgradeInstallL OOM Test"),ETrue);
|
sl@0
|
1387 |
DoOOMSwiTestL(&CenrepSwiOOMTest::UninstallL,_L("SwiUninstallL OOM Test"),ETrue);
|
sl@0
|
1388 |
|
sl@0
|
1389 |
DoOOMNoServReposL(&StartupUpgradeL, _L("Startup Upgrade OOM Test"), ETrue);
|
sl@0
|
1390 |
DoOOMNoServReposL(&StartupDowngradeL, _L("Startup Downgrade OOM Test"), ETrue);
|
sl@0
|
1391 |
DoOOMNoServReposL(&StartupUninstallL, _L("Startup Uninstall OOM Test"), ETrue);
|
sl@0
|
1392 |
|
sl@0
|
1393 |
#ifdef SYMBIAN_CENTREP_SUPPORT_MULTIROFS
|
sl@0
|
1394 |
DoPersistedVersionCheckingL();
|
sl@0
|
1395 |
DoOOMMultiRofsTestL();
|
sl@0
|
1396 |
#endif
|
sl@0
|
1397 |
|
sl@0
|
1398 |
// Delete files from bur dir
|
sl@0
|
1399 |
User::LeaveIfError(fm->Attribs(KPersistsFileNoUpgrade,0,KEntryAttReadOnly,TTime(0)));
|
sl@0
|
1400 |
TInt err=fs.Delete(KPersistsFileNoUpgrade);
|
sl@0
|
1401 |
if((err!=KErrNone)&&(err!=KErrNotFound))
|
sl@0
|
1402 |
User::Leave(err);
|
sl@0
|
1403 |
|
sl@0
|
1404 |
User::LeaveIfError(fm->Attribs(KPersistsFileUpgraded,0,KEntryAttReadOnly,TTime(0)));
|
sl@0
|
1405 |
err=fs.Delete(KPersistsFileUpgraded);
|
sl@0
|
1406 |
if((err!=KErrNone)&&(err!=KErrNotFound))
|
sl@0
|
1407 |
User::Leave(err);
|
sl@0
|
1408 |
|
sl@0
|
1409 |
|
sl@0
|
1410 |
//Clear any files in the persist directory
|
sl@0
|
1411 |
CleanupCDriveL();
|
sl@0
|
1412 |
|
sl@0
|
1413 |
CleanupStack::PopAndDestroy (2); // fs and fm
|
sl@0
|
1414 |
}
|
sl@0
|
1415 |
|
sl@0
|
1416 |
|
sl@0
|
1417 |
LOCAL_C void MainL()
|
sl@0
|
1418 |
{
|
sl@0
|
1419 |
TheTest.Title ();
|
sl@0
|
1420 |
TheTest.Start (_L("OOM Cenrepserv Test"));
|
sl@0
|
1421 |
|
sl@0
|
1422 |
CActiveScheduler* scheduler = new(ELeave)CActiveScheduler;
|
sl@0
|
1423 |
CActiveScheduler::Install(scheduler);
|
sl@0
|
1424 |
|
sl@0
|
1425 |
DoOOMTestsL();
|
sl@0
|
1426 |
|
sl@0
|
1427 |
//Clear any files in the persist directory
|
sl@0
|
1428 |
CleanupCDriveL();
|
sl@0
|
1429 |
|
sl@0
|
1430 |
TheFs.Close ();
|
sl@0
|
1431 |
|
sl@0
|
1432 |
delete scheduler;
|
sl@0
|
1433 |
|
sl@0
|
1434 |
TheTest.End ();
|
sl@0
|
1435 |
TheTest.Close ();
|
sl@0
|
1436 |
}
|
sl@0
|
1437 |
|
sl@0
|
1438 |
TInt E32Main ()
|
sl@0
|
1439 |
{
|
sl@0
|
1440 |
|
sl@0
|
1441 |
__UHEAP_MARK;
|
sl@0
|
1442 |
CTrapCleanup* cleanup = CTrapCleanup::New();
|
sl@0
|
1443 |
if(!cleanup)
|
sl@0
|
1444 |
return KErrNoMemory;
|
sl@0
|
1445 |
|
sl@0
|
1446 |
TRAPD(err, MainL());
|
sl@0
|
1447 |
if (err != KErrNone)
|
sl@0
|
1448 |
User::Panic(_L("Testing failed: "), err);
|
sl@0
|
1449 |
|
sl@0
|
1450 |
delete cleanup;
|
sl@0
|
1451 |
__UHEAP_MARKEND;
|
sl@0
|
1452 |
|
sl@0
|
1453 |
return KErrNone;
|
sl@0
|
1454 |
}
|