Update contrib.
1 // Copyright (c) 2009-2010 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.
18 #include "featmgrserver.h"
19 #include "featmgrconfiguration.h"
21 static TInt TheProcessHandleCount = 0;
22 static TInt TheThreadHandleCount = 0;
23 static TInt TheAllocatedCellsCount = 0;
26 static const TInt KBurstRate = 20;
29 void DestroyTestEnv();
30 ///////////////////////////////////////////////////////////////////////////////////////
32 static RTest TheTest(_L("t_fmgrstartup"));
34 #ifdef EXTENDED_FEATURE_MANAGER_TEST
35 _LIT( KZOrgFeaturesFile, "Z:\\Private\\10205054\\features.dat" );
36 _LIT( KFeaturesFile, "C:\\Private\\102836E5\\features.dat" );
37 _LIT( KFeaturesDir, "C:\\Private\\102836E5\\" );
40 ///////////////////////////////////////////////////////////////////////////////////////
41 //Test macros and functions
42 void Check1(TInt aValue, TInt aLine)
47 RDebug::Print(_L("*** Expression evaluated to false. Line %d\r\n"), aLine);
48 TheTest(EFalse, aLine);
51 void Check2(TInt aValue, TInt aExpected, TInt aLine)
53 if(aValue != aExpected)
56 RDebug::Print(_L("*** Expected: %d, got: %d. Line %d\r\n"), aExpected, aValue, aLine);
57 TheTest(EFalse, aLine);
60 #define TEST(arg) ::Check1((arg), __LINE__)
61 #define TEST2(aValue, aExpected) ::Check2(aValue, aExpected, __LINE__)
63 ///////////////////////////////////////////////////////////////////////////////////////
66 //KFeaturesDir is defined only if EXTENDED_FEATURE_MANAGER_TEST is defined
67 #ifdef EXTENDED_FEATURE_MANAGER_TEST
69 TInt err = fs.Connect();
72 err = fs.MkDir(KFeaturesDir);
73 TEST (err == KErrNone || err == KErrAlreadyExists);
75 (void)fs.Delete(KFeaturesFile);
76 err = BaflUtils::CopyFile(fs, KZOrgFeaturesFile, KFeaturesDir);
77 TEST2 (err, KErrNone);
78 err = fs.SetAtt(KFeaturesFile, KEntryAttNormal, KEntryAttReadOnly);
79 TEST2 (err, KErrNone);
84 //Deletes all created test files.
87 //KFeaturesDir is defined only if EXTENDED_FEATURE_MANAGER_TEST is defined
88 #ifdef EXTENDED_FEATURE_MANAGER_TEST
90 TInt err = fs.Connect();
93 err = fs.Delete(KFeaturesFile);
96 RDebug::Print(_L("Warning: Clean test enviroment failed with error %d"), err);
102 ///////////////////////////////////////////////////////////////////////////////////////
104 static void MarkHandles()
106 RThread().HandleCount(TheProcessHandleCount, TheThreadHandleCount);
109 static void MarkAllocatedCells()
111 TheAllocatedCellsCount = User::CountAllocCells();
114 static void CheckAllocatedCells()
116 TInt allocatedCellsCount = User::CountAllocCells();
117 TEST2(allocatedCellsCount, TheAllocatedCellsCount);
120 static void CheckHandles()
122 TInt endProcessHandleCount;
123 TInt endThreadHandleCount;
125 RThread().HandleCount(endProcessHandleCount, endThreadHandleCount);
127 TEST2(TheProcessHandleCount, endProcessHandleCount);
128 TEST2(TheThreadHandleCount, endThreadHandleCount);
131 static void OomPreStep(TInt aFailingAllocationNo)
133 aFailingAllocationNo = aFailingAllocationNo; //to silent the warning in urel build
135 MarkAllocatedCells();
137 __UHEAP_SETBURSTFAIL(RAllocator::EBurstFailNext, aFailingAllocationNo, KBurstRate);
140 static void OomPostStep()
144 CheckAllocatedCells();
148 ///////////////////////////////////////////////////////////////////////////////////////
150 static void CreateAndDestroyFeatMgrServerL()
152 CFeatMgrServer* server = CFeatMgrServer::NewLC(KServerCActivePriority);
153 CleanupStack::PopAndDestroy(server);
157 @SYMTestCaseID PDS-EFM-CT-4109
159 @SYMTestPriority High
161 @SYMTestExpectedResults Test must not fail
164 void FeatMgrServerStartupOomTest()
166 TInt err = KErrNoMemory;
167 TInt failingAllocationNo = 0;
168 TheTest.Printf(_L("Iteration:\r\n"));
169 while(err == KErrNoMemory)
171 TheTest.Printf(_L(" %d"), ++failingAllocationNo);
172 OomPreStep(failingAllocationNo);
173 TRAP(err, CreateAndDestroyFeatMgrServerL());
176 if(err != KErrNoMemory)
178 TEST2(err, KErrNone);
180 TheTest.Printf(_L("\r\n===OOM test succeeded at heap failure rate of %d ===\r\n"), failingAllocationNo);
184 @SYMTestCaseID PDS-EFM-CT-4110
186 @SYMTestPriority High
188 @SYMTestExpectedResults Test must not fail
191 void FeatMgrServerStartupFileIoTest()
194 TInt err = fs.Connect();
195 TEST2(err, KErrNone);
198 for(;err<KErrNone;++cnt)
200 TheTest.Printf(_L("===Iteration %d. Simulated error:\r\n"), cnt);
201 for (TInt fsError=KErrNotFound;fsError>=KErrBadName;--fsError)
203 // if(fsError == KErrNotFound || fsError == KErrCorrupt || fsError == KErrPathNotFound || fsError == KErrEof)
205 // continue;//The server code panics
207 TheTest.Printf(_L("%d "), fsError);
208 (void)fs.SetErrorCondition(fsError, cnt);
209 TRAP(err, CreateAndDestroyFeatMgrServerL());
210 (void)fs.SetErrorCondition(KErrNone);
212 TheTest.Printf(_L("\r\n"));
215 TheTest.Printf(_L("\r\n===File I/O error simulation test succeeded on iteration %d===\r\n"), cnt);
221 CActiveScheduler* scheduler = new CActiveScheduler;
222 TEST(scheduler != NULL);
223 CActiveScheduler::Install(scheduler);
225 TheTest.Start(_L("@SYMTestCaseID:PDS-EFM-CT-4109 CFeatMgrServer::NewLC() OOM test"));
226 FeatMgrServerStartupOomTest();
228 TheTest.Next(_L("@SYMTestCaseID:PDS-EFM-CT-4110 CFeatMgrServer::NewLC() file I/O error simulation test"));
229 FeatMgrServerStartupFileIoTest();
238 CTrapCleanup* tc = CTrapCleanup::New();
244 TRAPD(err, DoTestsL());
246 TEST2(err, KErrNone);
255 User::Heap().Check();