os/persistentdata/featuremgmt/featuremgr/test/rtest/src/t_fmgrstartup.cpp
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/persistentdata/featuremgmt/featuremgr/test/rtest/src/t_fmgrstartup.cpp	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,257 @@
     1.4 +// Copyright (c) 2009-2010 Nokia Corporation and/or its subsidiary(-ies).
     1.5 +// All rights reserved.
     1.6 +// This component and the accompanying materials are made available
     1.7 +// under the terms of "Eclipse Public License v1.0"
     1.8 +// which accompanies this distribution, and is available
     1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.10 +//
    1.11 +// Initial Contributors:
    1.12 +// Nokia Corporation - initial contribution.
    1.13 +//
    1.14 +// Contributors:
    1.15 +//
    1.16 +// Description:
    1.17 +//
    1.18 +
    1.19 +#include <e32test.h>
    1.20 +#include <bautils.h>
    1.21 +#include "featmgrserver.h"
    1.22 +#include "featmgrconfiguration.h"
    1.23 +
    1.24 +static TInt TheProcessHandleCount = 0;
    1.25 +static TInt TheThreadHandleCount = 0;
    1.26 +static TInt TheAllocatedCellsCount = 0;
    1.27 +
    1.28 +#ifdef _DEBUG
    1.29 +static const TInt KBurstRate = 20;
    1.30 +#endif
    1.31 +
    1.32 +void DestroyTestEnv();
    1.33 +///////////////////////////////////////////////////////////////////////////////////////
    1.34 +
    1.35 +static RTest TheTest(_L("t_fmgrstartup"));
    1.36 +
    1.37 +#ifdef EXTENDED_FEATURE_MANAGER_TEST
    1.38 +_LIT( KZOrgFeaturesFile, "Z:\\Private\\10205054\\features.dat" );
    1.39 +_LIT( KFeaturesFile, "C:\\Private\\102836E5\\features.dat" );
    1.40 +_LIT( KFeaturesDir, "C:\\Private\\102836E5\\" );
    1.41 +#endif
    1.42 +
    1.43 +///////////////////////////////////////////////////////////////////////////////////////
    1.44 +//Test macros and functions
    1.45 +void Check1(TInt aValue, TInt aLine)
    1.46 +    {
    1.47 +    if(!aValue)
    1.48 +        {
    1.49 +        DestroyTestEnv();
    1.50 +        RDebug::Print(_L("*** Expression evaluated to false. Line %d\r\n"), aLine);
    1.51 +        TheTest(EFalse, aLine);
    1.52 +        }
    1.53 +    }
    1.54 +void Check2(TInt aValue, TInt aExpected, TInt aLine)
    1.55 +    {
    1.56 +    if(aValue != aExpected)
    1.57 +        {
    1.58 +        DestroyTestEnv();
    1.59 +        RDebug::Print(_L("*** Expected: %d, got: %d. Line %d\r\n"), aExpected, aValue, aLine);
    1.60 +        TheTest(EFalse, aLine);
    1.61 +        }
    1.62 +    }
    1.63 +#define TEST(arg) ::Check1((arg), __LINE__)
    1.64 +#define TEST2(aValue, aExpected) ::Check2(aValue, aExpected, __LINE__)
    1.65 +
    1.66 +///////////////////////////////////////////////////////////////////////////////////////
    1.67 +void CreateTestEnv()
    1.68 +    {
    1.69 +    //KFeaturesDir is defined only if EXTENDED_FEATURE_MANAGER_TEST is defined     
    1.70 +#ifdef EXTENDED_FEATURE_MANAGER_TEST    
    1.71 +    RFs fs;
    1.72 +    TInt err = fs.Connect();
    1.73 +    TEST2(err, KErrNone);
    1.74 +    
    1.75 +    err = fs.MkDir(KFeaturesDir);
    1.76 +    TEST (err == KErrNone || err == KErrAlreadyExists);
    1.77 +    
    1.78 +    (void)fs.Delete(KFeaturesFile);
    1.79 +    err = BaflUtils::CopyFile(fs, KZOrgFeaturesFile, KFeaturesDir);
    1.80 +    TEST2 (err, KErrNone);
    1.81 +    err = fs.SetAtt(KFeaturesFile, KEntryAttNormal, KEntryAttReadOnly);
    1.82 +    TEST2 (err, KErrNone);
    1.83 +    fs.Close();
    1.84 +#endif
    1.85 +    }
    1.86 +
    1.87 +//Deletes all created test files.
    1.88 +void DestroyTestEnv()
    1.89 +    {
    1.90 +    //KFeaturesDir is defined only if EXTENDED_FEATURE_MANAGER_TEST is defined     
    1.91 +#ifdef EXTENDED_FEATURE_MANAGER_TEST
    1.92 +    RFs fs;
    1.93 +    TInt err = fs.Connect();
    1.94 +    if(err == KErrNone)
    1.95 +        {
    1.96 +        err = fs.Delete(KFeaturesFile);
    1.97 +        if (err != KErrNone)
    1.98 +            {
    1.99 +            RDebug::Print(_L("Warning: Clean test enviroment failed with error %d"), err);
   1.100 +            }
   1.101 +        }
   1.102 +    fs.Close();
   1.103 +#endif        
   1.104 +    }
   1.105 +///////////////////////////////////////////////////////////////////////////////////////
   1.106 +
   1.107 +static void MarkHandles()
   1.108 +    {
   1.109 +    RThread().HandleCount(TheProcessHandleCount, TheThreadHandleCount);
   1.110 +    }
   1.111 +
   1.112 +static void MarkAllocatedCells()
   1.113 +    {
   1.114 +    TheAllocatedCellsCount = User::CountAllocCells();
   1.115 +    }
   1.116 +
   1.117 +static void CheckAllocatedCells()
   1.118 +    {
   1.119 +    TInt allocatedCellsCount = User::CountAllocCells();
   1.120 +    TEST2(allocatedCellsCount, TheAllocatedCellsCount);
   1.121 +    }
   1.122 +
   1.123 +static void CheckHandles()
   1.124 +    {
   1.125 +    TInt endProcessHandleCount;
   1.126 +    TInt endThreadHandleCount;
   1.127 +    
   1.128 +    RThread().HandleCount(endProcessHandleCount, endThreadHandleCount);
   1.129 +
   1.130 +    TEST2(TheProcessHandleCount, endProcessHandleCount);
   1.131 +    TEST2(TheThreadHandleCount, endThreadHandleCount);
   1.132 +    }
   1.133 +
   1.134 +static void OomPreStep(TInt aFailingAllocationNo)
   1.135 +    {
   1.136 +    aFailingAllocationNo = aFailingAllocationNo; //to silent the warning in urel build
   1.137 +    MarkHandles();
   1.138 +    MarkAllocatedCells();
   1.139 +    __UHEAP_MARK;
   1.140 +    __UHEAP_SETBURSTFAIL(RAllocator::EBurstFailNext, aFailingAllocationNo, KBurstRate);
   1.141 +    }
   1.142 +
   1.143 +static void OomPostStep()
   1.144 +    {
   1.145 +    __UHEAP_RESET;
   1.146 +    __UHEAP_MARKEND;
   1.147 +    CheckAllocatedCells();
   1.148 +    CheckHandles();
   1.149 +    }
   1.150 +
   1.151 +///////////////////////////////////////////////////////////////////////////////////////
   1.152 +
   1.153 +static void CreateAndDestroyFeatMgrServerL()
   1.154 +    {
   1.155 +    CFeatMgrServer* server = CFeatMgrServer::NewLC(KServerCActivePriority);
   1.156 +    CleanupStack::PopAndDestroy(server);
   1.157 +    }
   1.158 +
   1.159 +/**
   1.160 +@SYMTestCaseID          PDS-EFM-CT-4109
   1.161 +@SYMTestCaseDesc        
   1.162 +@SYMTestPriority        High
   1.163 +@SYMTestActions         
   1.164 +@SYMTestExpectedResults Test must not fail
   1.165 +@SYMDEF                 DEF144262
   1.166 +*/
   1.167 +void FeatMgrServerStartupOomTest()
   1.168 +    {
   1.169 +    TInt err = KErrNoMemory;
   1.170 +    TInt failingAllocationNo = 0;
   1.171 +    TheTest.Printf(_L("Iteration:\r\n"));
   1.172 +    while(err == KErrNoMemory)
   1.173 +        {
   1.174 +        TheTest.Printf(_L(" %d"), ++failingAllocationNo);
   1.175 +        OomPreStep(failingAllocationNo);
   1.176 +        TRAP(err, CreateAndDestroyFeatMgrServerL());
   1.177 +        OomPostStep();
   1.178 +        }
   1.179 +    if(err != KErrNoMemory)
   1.180 +        {
   1.181 +        TEST2(err, KErrNone);   
   1.182 +        }
   1.183 +    TheTest.Printf(_L("\r\n===OOM test succeeded at heap failure rate of %d ===\r\n"), failingAllocationNo);
   1.184 +    }
   1.185 +
   1.186 +/**
   1.187 +@SYMTestCaseID          PDS-EFM-CT-4110
   1.188 +@SYMTestCaseDesc        
   1.189 +@SYMTestPriority        High
   1.190 +@SYMTestActions         
   1.191 +@SYMTestExpectedResults Test must not fail
   1.192 +@SYMDEF                 DEF144262
   1.193 +*/
   1.194 +void FeatMgrServerStartupFileIoTest()
   1.195 +    {
   1.196 +    RFs fs;
   1.197 +    TInt err = fs.Connect();
   1.198 +    TEST2(err, KErrNone);
   1.199 +    err = KErrNotFound;
   1.200 +    TInt cnt=1;
   1.201 +    for(;err<KErrNone;++cnt)
   1.202 +        {
   1.203 +        TheTest.Printf(_L("===Iteration %d. Simulated error:\r\n"), cnt);       
   1.204 +        for (TInt fsError=KErrNotFound;fsError>=KErrBadName;--fsError)
   1.205 +            {
   1.206 +//            if(fsError == KErrNotFound || fsError == KErrCorrupt || fsError == KErrPathNotFound || fsError == KErrEof)
   1.207 +//                {
   1.208 +//                continue;//The server code panics
   1.209 +//                }
   1.210 +            TheTest.Printf(_L("%d "), fsError);
   1.211 +            (void)fs.SetErrorCondition(fsError, cnt);
   1.212 +            TRAP(err, CreateAndDestroyFeatMgrServerL());
   1.213 +            (void)fs.SetErrorCondition(KErrNone);
   1.214 +            }
   1.215 +        TheTest.Printf(_L("\r\n"));
   1.216 +        }
   1.217 +    fs.Close();
   1.218 +    TheTest.Printf(_L("\r\n===File I/O error simulation test succeeded on iteration %d===\r\n"), cnt);
   1.219 +    }
   1.220 +
   1.221 +
   1.222 +void DoTestsL()
   1.223 +    {
   1.224 +    CActiveScheduler* scheduler = new CActiveScheduler;
   1.225 +    TEST(scheduler != NULL);
   1.226 +    CActiveScheduler::Install(scheduler);
   1.227 +    
   1.228 +    TheTest.Start(_L("@SYMTestCaseID:PDS-EFM-CT-4109 CFeatMgrServer::NewLC() OOM test"));
   1.229 +    FeatMgrServerStartupOomTest();
   1.230 +
   1.231 +    TheTest.Next(_L("@SYMTestCaseID:PDS-EFM-CT-4110 CFeatMgrServer::NewLC() file I/O error simulation test"));
   1.232 +    FeatMgrServerStartupFileIoTest();
   1.233 +    
   1.234 +    delete scheduler;
   1.235 +    }
   1.236 +
   1.237 +TInt E32Main()
   1.238 +    {
   1.239 +    TheTest.Title();
   1.240 +    
   1.241 +    CTrapCleanup* tc = CTrapCleanup::New();
   1.242 +    TheTest(tc != NULL);
   1.243 +    
   1.244 +    __UHEAP_MARK;
   1.245 +    
   1.246 +    CreateTestEnv();
   1.247 +    TRAPD(err, DoTestsL());
   1.248 +    DestroyTestEnv();
   1.249 +    TEST2(err, KErrNone);
   1.250 +
   1.251 +    __UHEAP_MARKEND;
   1.252 +    
   1.253 +    TheTest.End();
   1.254 +    TheTest.Close();
   1.255 +    
   1.256 +    delete tc;
   1.257 +
   1.258 +    User::Heap().Check();
   1.259 +    return KErrNone;
   1.260 +    }