sl@0: // Copyright (c) 2009-2010 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // sl@0: sl@0: #include sl@0: #include sl@0: #include "featmgrserver.h" sl@0: #include "featmgrconfiguration.h" sl@0: sl@0: static TInt TheProcessHandleCount = 0; sl@0: static TInt TheThreadHandleCount = 0; sl@0: static TInt TheAllocatedCellsCount = 0; sl@0: sl@0: #ifdef _DEBUG sl@0: static const TInt KBurstRate = 20; sl@0: #endif sl@0: sl@0: void DestroyTestEnv(); sl@0: /////////////////////////////////////////////////////////////////////////////////////// sl@0: sl@0: static RTest TheTest(_L("t_fmgrstartup")); sl@0: sl@0: #ifdef EXTENDED_FEATURE_MANAGER_TEST sl@0: _LIT( KZOrgFeaturesFile, "Z:\\Private\\10205054\\features.dat" ); sl@0: _LIT( KFeaturesFile, "C:\\Private\\102836E5\\features.dat" ); sl@0: _LIT( KFeaturesDir, "C:\\Private\\102836E5\\" ); sl@0: #endif sl@0: sl@0: /////////////////////////////////////////////////////////////////////////////////////// sl@0: //Test macros and functions sl@0: void Check1(TInt aValue, TInt aLine) sl@0: { sl@0: if(!aValue) sl@0: { sl@0: DestroyTestEnv(); sl@0: RDebug::Print(_L("*** Expression evaluated to false. Line %d\r\n"), aLine); sl@0: TheTest(EFalse, aLine); sl@0: } sl@0: } sl@0: void Check2(TInt aValue, TInt aExpected, TInt aLine) sl@0: { sl@0: if(aValue != aExpected) sl@0: { sl@0: DestroyTestEnv(); sl@0: RDebug::Print(_L("*** Expected: %d, got: %d. Line %d\r\n"), aExpected, aValue, aLine); sl@0: TheTest(EFalse, aLine); sl@0: } sl@0: } sl@0: #define TEST(arg) ::Check1((arg), __LINE__) sl@0: #define TEST2(aValue, aExpected) ::Check2(aValue, aExpected, __LINE__) sl@0: sl@0: /////////////////////////////////////////////////////////////////////////////////////// sl@0: void CreateTestEnv() sl@0: { sl@0: //KFeaturesDir is defined only if EXTENDED_FEATURE_MANAGER_TEST is defined sl@0: #ifdef EXTENDED_FEATURE_MANAGER_TEST sl@0: RFs fs; sl@0: TInt err = fs.Connect(); sl@0: TEST2(err, KErrNone); sl@0: sl@0: err = fs.MkDir(KFeaturesDir); sl@0: TEST (err == KErrNone || err == KErrAlreadyExists); sl@0: sl@0: (void)fs.Delete(KFeaturesFile); sl@0: err = BaflUtils::CopyFile(fs, KZOrgFeaturesFile, KFeaturesDir); sl@0: TEST2 (err, KErrNone); sl@0: err = fs.SetAtt(KFeaturesFile, KEntryAttNormal, KEntryAttReadOnly); sl@0: TEST2 (err, KErrNone); sl@0: fs.Close(); sl@0: #endif sl@0: } sl@0: sl@0: //Deletes all created test files. sl@0: void DestroyTestEnv() sl@0: { sl@0: //KFeaturesDir is defined only if EXTENDED_FEATURE_MANAGER_TEST is defined sl@0: #ifdef EXTENDED_FEATURE_MANAGER_TEST sl@0: RFs fs; sl@0: TInt err = fs.Connect(); sl@0: if(err == KErrNone) sl@0: { sl@0: err = fs.Delete(KFeaturesFile); sl@0: if (err != KErrNone) sl@0: { sl@0: RDebug::Print(_L("Warning: Clean test enviroment failed with error %d"), err); sl@0: } sl@0: } sl@0: fs.Close(); sl@0: #endif sl@0: } sl@0: /////////////////////////////////////////////////////////////////////////////////////// sl@0: sl@0: static void MarkHandles() sl@0: { sl@0: RThread().HandleCount(TheProcessHandleCount, TheThreadHandleCount); sl@0: } sl@0: sl@0: static void MarkAllocatedCells() sl@0: { sl@0: TheAllocatedCellsCount = User::CountAllocCells(); sl@0: } sl@0: sl@0: static void CheckAllocatedCells() sl@0: { sl@0: TInt allocatedCellsCount = User::CountAllocCells(); sl@0: TEST2(allocatedCellsCount, TheAllocatedCellsCount); sl@0: } sl@0: sl@0: static void CheckHandles() sl@0: { sl@0: TInt endProcessHandleCount; sl@0: TInt endThreadHandleCount; sl@0: sl@0: RThread().HandleCount(endProcessHandleCount, endThreadHandleCount); sl@0: sl@0: TEST2(TheProcessHandleCount, endProcessHandleCount); sl@0: TEST2(TheThreadHandleCount, endThreadHandleCount); sl@0: } sl@0: sl@0: static void OomPreStep(TInt aFailingAllocationNo) sl@0: { sl@0: aFailingAllocationNo = aFailingAllocationNo; //to silent the warning in urel build sl@0: MarkHandles(); sl@0: MarkAllocatedCells(); sl@0: __UHEAP_MARK; sl@0: __UHEAP_SETBURSTFAIL(RAllocator::EBurstFailNext, aFailingAllocationNo, KBurstRate); sl@0: } sl@0: sl@0: static void OomPostStep() sl@0: { sl@0: __UHEAP_RESET; sl@0: __UHEAP_MARKEND; sl@0: CheckAllocatedCells(); sl@0: CheckHandles(); sl@0: } sl@0: sl@0: /////////////////////////////////////////////////////////////////////////////////////// sl@0: sl@0: static void CreateAndDestroyFeatMgrServerL() sl@0: { sl@0: CFeatMgrServer* server = CFeatMgrServer::NewLC(KServerCActivePriority); sl@0: CleanupStack::PopAndDestroy(server); sl@0: } sl@0: sl@0: /** sl@0: @SYMTestCaseID PDS-EFM-CT-4109 sl@0: @SYMTestCaseDesc sl@0: @SYMTestPriority High sl@0: @SYMTestActions sl@0: @SYMTestExpectedResults Test must not fail sl@0: @SYMDEF DEF144262 sl@0: */ sl@0: void FeatMgrServerStartupOomTest() sl@0: { sl@0: TInt err = KErrNoMemory; sl@0: TInt failingAllocationNo = 0; sl@0: TheTest.Printf(_L("Iteration:\r\n")); sl@0: while(err == KErrNoMemory) sl@0: { sl@0: TheTest.Printf(_L(" %d"), ++failingAllocationNo); sl@0: OomPreStep(failingAllocationNo); sl@0: TRAP(err, CreateAndDestroyFeatMgrServerL()); sl@0: OomPostStep(); sl@0: } sl@0: if(err != KErrNoMemory) sl@0: { sl@0: TEST2(err, KErrNone); sl@0: } sl@0: TheTest.Printf(_L("\r\n===OOM test succeeded at heap failure rate of %d ===\r\n"), failingAllocationNo); sl@0: } sl@0: sl@0: /** sl@0: @SYMTestCaseID PDS-EFM-CT-4110 sl@0: @SYMTestCaseDesc sl@0: @SYMTestPriority High sl@0: @SYMTestActions sl@0: @SYMTestExpectedResults Test must not fail sl@0: @SYMDEF DEF144262 sl@0: */ sl@0: void FeatMgrServerStartupFileIoTest() sl@0: { sl@0: RFs fs; sl@0: TInt err = fs.Connect(); sl@0: TEST2(err, KErrNone); sl@0: err = KErrNotFound; sl@0: TInt cnt=1; sl@0: for(;err=KErrBadName;--fsError) sl@0: { sl@0: // if(fsError == KErrNotFound || fsError == KErrCorrupt || fsError == KErrPathNotFound || fsError == KErrEof) sl@0: // { sl@0: // continue;//The server code panics sl@0: // } sl@0: TheTest.Printf(_L("%d "), fsError); sl@0: (void)fs.SetErrorCondition(fsError, cnt); sl@0: TRAP(err, CreateAndDestroyFeatMgrServerL()); sl@0: (void)fs.SetErrorCondition(KErrNone); sl@0: } sl@0: TheTest.Printf(_L("\r\n")); sl@0: } sl@0: fs.Close(); sl@0: TheTest.Printf(_L("\r\n===File I/O error simulation test succeeded on iteration %d===\r\n"), cnt); sl@0: } sl@0: sl@0: sl@0: void DoTestsL() sl@0: { sl@0: CActiveScheduler* scheduler = new CActiveScheduler; sl@0: TEST(scheduler != NULL); sl@0: CActiveScheduler::Install(scheduler); sl@0: sl@0: TheTest.Start(_L("@SYMTestCaseID:PDS-EFM-CT-4109 CFeatMgrServer::NewLC() OOM test")); sl@0: FeatMgrServerStartupOomTest(); sl@0: sl@0: TheTest.Next(_L("@SYMTestCaseID:PDS-EFM-CT-4110 CFeatMgrServer::NewLC() file I/O error simulation test")); sl@0: FeatMgrServerStartupFileIoTest(); sl@0: sl@0: delete scheduler; sl@0: } sl@0: sl@0: TInt E32Main() sl@0: { sl@0: TheTest.Title(); sl@0: sl@0: CTrapCleanup* tc = CTrapCleanup::New(); sl@0: TheTest(tc != NULL); sl@0: sl@0: __UHEAP_MARK; sl@0: sl@0: CreateTestEnv(); sl@0: TRAPD(err, DoTestsL()); sl@0: DestroyTestEnv(); sl@0: TEST2(err, KErrNone); sl@0: sl@0: __UHEAP_MARKEND; sl@0: sl@0: TheTest.End(); sl@0: TheTest.Close(); sl@0: sl@0: delete tc; sl@0: sl@0: User::Heap().Check(); sl@0: return KErrNone; sl@0: }