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