os/persistentdata/featuremgmt/featuremgr/test/rtest/src/t_fmgroom.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_fmgroom.cpp	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,611 @@
     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 <featmgr.h>
    1.22 +#include <featureuids.h>
    1.23 +#include <featurecontrol.h>
    1.24 +#include <featdiscovery.h>
    1.25 +#include <featurenotifier.h>
    1.26 +#include "../../../src/clientdll/featmgrresourcetester.h"
    1.27 +
    1.28 +using namespace NFeature;
    1.29 +
    1.30 +
    1.31 +const TInt KInvalidFeatureId    = 90901671;
    1.32 +const TUid KInvalidFeatureUid   = {KInvalidFeatureId};
    1.33 +
    1.34 +static TInt TheProcessHandleCount = 0;
    1.35 +static TInt TheThreadHandleCount = 0;
    1.36 +static TInt TheAllocatedCellsCount = 0;
    1.37 +
    1.38 +#ifdef _DEBUG
    1.39 +static const TInt KBurstRate = 20;
    1.40 +#endif
    1.41 +
    1.42 +enum TFeatMgrOomTestMode
    1.43 +    {
    1.44 +    EFeatMgrOomServerTestMode,
    1.45 +    EFeatMgrOomClientTestMode,
    1.46 +    };
    1.47 +
    1.48 +///////////////////////////////////////////////////////////////////////////////////////
    1.49 +
    1.50 +static RTest TheTest(_L("t_fmgroom"));
    1.51 +
    1.52 +
    1.53 +
    1.54 +///////////////////////////////////////////////////////////////////////////////////////
    1.55 +///////////////////////////////////////////////////////////////////////////////////////
    1.56 +//Test macros and functions
    1.57 +void Check1(TInt aValue, TInt aLine)
    1.58 +    {
    1.59 +    if(!aValue)
    1.60 +        {
    1.61 +        RDebug::Print(_L("*** Expression evaluated to false. Line %d\r\n"), aLine);
    1.62 +        TheTest(EFalse, aLine);
    1.63 +        }
    1.64 +    }
    1.65 +void Check2(TInt aValue, TInt aExpected, TInt aLine)
    1.66 +    {
    1.67 +    if(aValue != aExpected)
    1.68 +        {
    1.69 +        RDebug::Print(_L("*** Expected: %d, got: %d. Line %d\r\n"), aExpected, aValue, aLine);
    1.70 +        TheTest(EFalse, aLine);
    1.71 +        }
    1.72 +    }
    1.73 +#define TEST(arg) ::Check1((arg), __LINE__)
    1.74 +#define TEST2(aValue, aExpected) ::Check2(aValue, aExpected, __LINE__)
    1.75 +
    1.76 +///////////////////////////////////////////////////////////////////////////////////////
    1.77 +
    1.78 +static void MarkHandles()
    1.79 +    {
    1.80 +    RThread().HandleCount(TheProcessHandleCount, TheThreadHandleCount);
    1.81 +    }
    1.82 +
    1.83 +static void MarkAllocatedCells()
    1.84 +    {
    1.85 +    TheAllocatedCellsCount = User::CountAllocCells();
    1.86 +    }
    1.87 +
    1.88 +static void CheckAllocatedCells()
    1.89 +    {
    1.90 +    TInt allocatedCellsCount = User::CountAllocCells();
    1.91 +    TEST2(allocatedCellsCount, TheAllocatedCellsCount);
    1.92 +    }
    1.93 +
    1.94 +static void CheckHandles()
    1.95 +    {
    1.96 +    TInt endProcessHandleCount;
    1.97 +    TInt endThreadHandleCount;
    1.98 +    
    1.99 +    RThread().HandleCount(endProcessHandleCount, endThreadHandleCount);
   1.100 +
   1.101 +    TEST2(TheProcessHandleCount, endProcessHandleCount);
   1.102 +    TEST2(TheThreadHandleCount, endThreadHandleCount);
   1.103 +    }
   1.104 +
   1.105 +static void OomPreStep(TInt aFailingAllocationNo, TFeatMgrOomTestMode aMode = EFeatMgrOomClientTestMode)
   1.106 +    {
   1.107 +    if(aMode == EFeatMgrOomClientTestMode)
   1.108 +        {
   1.109 +        MarkHandles();
   1.110 +        MarkAllocatedCells();
   1.111 +        __UHEAP_MARK;
   1.112 +        __UHEAP_SETBURSTFAIL(RAllocator::EBurstFailNext, aFailingAllocationNo, KBurstRate);
   1.113 +        }
   1.114 +    else
   1.115 +        {
   1.116 +        TFeatMgrResourceTester::Mark();
   1.117 +        TFeatMgrResourceTester::SetHeapFailure(RHeap::EBurstFailNext, aFailingAllocationNo);
   1.118 +        }
   1.119 +    }
   1.120 +
   1.121 +static void OomPostStep(TFeatMgrOomTestMode aMode = EFeatMgrOomClientTestMode)
   1.122 +    {
   1.123 +    if(aMode == EFeatMgrOomClientTestMode)
   1.124 +        {
   1.125 +        __UHEAP_RESET;
   1.126 +        __UHEAP_MARKEND;
   1.127 +        CheckAllocatedCells();
   1.128 +        CheckHandles();
   1.129 +        }
   1.130 +    else
   1.131 +        {
   1.132 +        TFeatMgrResourceTester::SetHeapFailure(RHeap::ENone, 0);
   1.133 +        TFeatMgrResourceTester::Check();
   1.134 +        }
   1.135 +    }
   1.136 +
   1.137 +///////////////////////////////////////////////////////////////////////////////////////
   1.138 +
   1.139 +/**
   1.140 +@SYMTestCaseID          PDS-EFM-CT-4068
   1.141 +@SYMTestCaseDesc        Include test case 4069 too
   1.142 +@SYMTestPriority        High
   1.143 +@SYMTestActions         
   1.144 +@SYMTestExpectedResults Test must not fail
   1.145 +@SYMDEF                 DEF144262
   1.146 +*/
   1.147 +void ControlOpenOomTest(TBool aUseConnect)
   1.148 +    {
   1.149 +    TInt err = KErrNoMemory;
   1.150 +    TInt failingAllocationNo = 0;
   1.151 +    RFeatureControl ctrl;
   1.152 +    TheTest.Printf(_L("Iteration:\r\n"));
   1.153 +    while(err == KErrNoMemory)
   1.154 +        {
   1.155 +        TheTest.Printf(_L(" %d"), ++failingAllocationNo);
   1.156 +        OomPreStep(failingAllocationNo);
   1.157 +        err = aUseConnect ? ctrl.Connect() : ctrl.Open();
   1.158 +        ctrl.Close();
   1.159 +        OomPostStep();
   1.160 +        }
   1.161 +    if(err != KErrNoMemory)
   1.162 +        {
   1.163 +        TEST2(err, KErrNone);   
   1.164 +        }
   1.165 +    TheTest.Printf(_L("\r\n===OOM test succeeded at heap failure rate of %d ===\r\n"), failingAllocationNo);
   1.166 +    }
   1.167 +
   1.168 +/**
   1.169 +@SYMTestCaseID          PDS-EFM-CT-4070
   1.170 +@SYMTestCaseDesc        Include test case 4071-4077 too
   1.171 +@SYMTestPriority        High
   1.172 +@SYMTestActions         
   1.173 +@SYMTestExpectedResults Test must not fail
   1.174 +@SYMDEF                 DEF144262
   1.175 +*/
   1.176 +void ControlFeatureSupportedOomTest(TBool aUseUid, TBool aInvalidFeature, TFeatMgrOomTestMode aMode)
   1.177 +    {
   1.178 +    RFeatureControl ctrl;
   1.179 +    TInt err = ctrl.Open();
   1.180 +    TEST2(err, KErrNone);
   1.181 +    
   1.182 +    const TUid KFeatureUid(aInvalidFeature ? KInvalidFeatureUid : KConnectivity);
   1.183 +    TFeatureEntry fentry(KFeatureUid);
   1.184 +    
   1.185 +    err = KErrNoMemory;
   1.186 +    TInt failingAllocationNo = 0;
   1.187 +    TheTest.Printf(_L("Iteration:\r\n"));
   1.188 +    while(err == KErrNoMemory)
   1.189 +        {
   1.190 +        TheTest.Printf(_L(" %d"), ++failingAllocationNo);
   1.191 +        OomPreStep(failingAllocationNo, aMode);
   1.192 +        err = aUseUid ? ctrl.FeatureSupported(KFeatureUid) : ctrl.FeatureSupported(fentry);
   1.193 +        OomPostStep(aMode);
   1.194 +        }
   1.195 +    ctrl.Close();
   1.196 +    if(err != KErrNoMemory)
   1.197 +        {
   1.198 +        TEST2(err, aInvalidFeature ? KErrNotFound : KFeatureSupported);   
   1.199 +        }
   1.200 +    TheTest.Printf(_L("\r\n===OOM test succeeded at heap failure rate of %d ===\r\n"), failingAllocationNo);
   1.201 +    }
   1.202 +
   1.203 +/**
   1.204 +@SYMTestCaseID          PDS-EFM-CT-4078
   1.205 +@SYMTestCaseDesc        Include test case 4079 too
   1.206 +@SYMTestPriority        High
   1.207 +@SYMTestActions         
   1.208 +@SYMTestExpectedResults Test must not fail
   1.209 +@SYMDEF                 DEF144262
   1.210 +*/
   1.211 +void ControlListSupportedFeaturesOomTest(TFeatMgrOomTestMode aMode)
   1.212 +    {
   1.213 +    RFeatureControl ctrl;
   1.214 +    TInt err = ctrl.Open();
   1.215 +    TEST2(err, KErrNone);
   1.216 +    
   1.217 +    err = KErrNoMemory;
   1.218 +    TInt failingAllocationNo = 0;
   1.219 +    TheTest.Printf(_L("Iteration:\r\n"));
   1.220 +    while(err == KErrNoMemory)
   1.221 +        {
   1.222 +        TheTest.Printf(_L(" %d"), ++failingAllocationNo);
   1.223 +        OomPreStep(failingAllocationNo, aMode);
   1.224 +        const TInt KGranularity = 1;
   1.225 +        RFeatureUidArray farray(KGranularity);
   1.226 +        err = ctrl.ListSupportedFeatures(farray);
   1.227 +        if(err != KErrNoMemory)
   1.228 +            {
   1.229 +            TEST2(err, KErrNone);
   1.230 +            TInt count = farray.Count();
   1.231 +            TheTest.Printf(_L("===Features count: %d\r\n"), count);
   1.232 +            TEST(count > 0);
   1.233 +            }
   1.234 +        farray.Close();
   1.235 +        OomPostStep(aMode);
   1.236 +        }
   1.237 +    ctrl.Close();
   1.238 +    TheTest.Printf(_L("\r\n===OOM test succeeded at heap failure rate of %d ===\r\n"), failingAllocationNo);
   1.239 +    }
   1.240 +
   1.241 +/**
   1.242 +@SYMTestCaseID          PDS-EFM-CT-4080
   1.243 +@SYMTestCaseDesc        Include test case 4081 too
   1.244 +@SYMTestPriority        High
   1.245 +@SYMTestActions         
   1.246 +@SYMTestExpectedResults Test must not fail
   1.247 +@SYMDEF                 DEF144262
   1.248 +*/
   1.249 +void ControlFeaturesSupportedOomTest(TFeatMgrOomTestMode aMode)
   1.250 +    {
   1.251 +    RFeatureControl ctrl;
   1.252 +    TInt err = ctrl.Open();
   1.253 +    TEST2(err, KErrNone);
   1.254 +    RFeatureUidArray farray;
   1.255 +    err = ctrl.ListSupportedFeatures(farray);
   1.256 +    TEST2(err, KErrNone);
   1.257 +    
   1.258 +    err = KErrNoMemory;
   1.259 +    TInt failingAllocationNo = 0;
   1.260 +    TheTest.Printf(_L("Iteration:\r\n"));
   1.261 +    while(err == KErrNoMemory)
   1.262 +        {
   1.263 +        TheTest.Printf(_L(" %d"), ++failingAllocationNo);
   1.264 +        OomPreStep(failingAllocationNo, aMode);
   1.265 +        RFeatureArray farray2;
   1.266 +        err = KErrNone;
   1.267 +        for(TInt i=0;i<farray.Count() && err==KErrNone;++i)
   1.268 +            {
   1.269 +            err = farray2.Append(farray[i]); 
   1.270 +            }
   1.271 +        if(err == KErrNone)
   1.272 +            {
   1.273 +            err = ctrl.FeaturesSupported(farray2);
   1.274 +            }
   1.275 +        if(err != KErrNoMemory)
   1.276 +            {
   1.277 +            TEST2(err, KErrNone);
   1.278 +            TInt count = farray2.Count();
   1.279 +            TheTest.Printf(_L("===Features count: %d\r\n"), count);
   1.280 +            TEST(count > 0);
   1.281 +            }
   1.282 +        farray2.Close();
   1.283 +        OomPostStep(aMode);
   1.284 +        }
   1.285 +    farray.Close();
   1.286 +    ctrl.Close();
   1.287 +    TheTest.Printf(_L("\r\n===OOM test succeeded at heap failure rate of %d ===\r\n"), failingAllocationNo);
   1.288 +    }
   1.289 +
   1.290 +/**
   1.291 +@SYMTestCaseID          PDS-EFM-CT-4082
   1.292 +@SYMTestCaseDesc        Include test case 4083 too
   1.293 +@SYMTestPriority        High
   1.294 +@SYMTestActions         
   1.295 +@SYMTestExpectedResults Test must not fail
   1.296 +@SYMDEF                 DEF144262
   1.297 +*/
   1.298 +void ControlAddFeatureOomTest(TFeatMgrOomTestMode aMode)
   1.299 +    {
   1.300 +    RFeatureControl ctrl;
   1.301 +    TInt err = ctrl.Open();
   1.302 +    TEST2(err, KErrNone);
   1.303 +
   1.304 +    const TUid KNewFeatureUid = {0x7888ABCE}; 
   1.305 +    TBitFlags32 flags;
   1.306 +    flags.Set(EFeatureSupported);
   1.307 +    flags.Set(EFeatureModifiable);    
   1.308 +    flags.Set(EFeaturePersisted);
   1.309 +    TFeatureEntry fentry(KNewFeatureUid, flags, 0x0);
   1.310 +    
   1.311 +    err = KErrNoMemory;
   1.312 +    TInt failingAllocationNo = 0;
   1.313 +    TheTest.Printf(_L("Iteration:\r\n"));
   1.314 +    while(err == KErrNoMemory)
   1.315 +        {
   1.316 +        TheTest.Printf(_L(" %d"), ++failingAllocationNo);
   1.317 +        OomPreStep(failingAllocationNo, aMode);
   1.318 +        err = ctrl.AddFeature(fentry);
   1.319 +        OomPostStep(aMode);
   1.320 +        if(err == KErrNoMemory)
   1.321 +            {
   1.322 +            err = ctrl.EnableFeature(fentry.FeatureUid());
   1.323 +            TEST2(err, KErrNotFound);
   1.324 +            }
   1.325 +        }
   1.326 +    TEST2(err, KErrNone);
   1.327 +    err = ctrl.DeleteFeature(fentry.FeatureUid());
   1.328 +    TEST2(err, KErrNone);
   1.329 +    
   1.330 +    ctrl.Close();
   1.331 +    TheTest.Printf(_L("\r\n===OOM test succeeded at heap failure rate of %d ===\r\n"), failingAllocationNo);
   1.332 +    }
   1.333 +
   1.334 +/**
   1.335 +@SYMTestCaseID          PDS-EFM-CT-4084
   1.336 +@SYMTestCaseDesc        Include test case 4085 too
   1.337 +@SYMTestPriority        High
   1.338 +@SYMTestActions         
   1.339 +@SYMTestExpectedResults Test must not fail
   1.340 +@SYMDEF                 DEF144262
   1.341 +*/
   1.342 +void ControlDeleteFeatureOomTest(TFeatMgrOomTestMode aMode)
   1.343 +    {
   1.344 +    RFeatureControl ctrl;
   1.345 +    TInt err = ctrl.Open();
   1.346 +    TEST2(err, KErrNone);
   1.347 +
   1.348 +    const TUid KNewFeatureUid = {0x7888ABCE}; 
   1.349 +    TBitFlags32 flags;
   1.350 +    flags.Set(EFeatureSupported);
   1.351 +    flags.Set(EFeatureModifiable);
   1.352 +    TFeatureEntry fentry(KNewFeatureUid, flags, 0x0);
   1.353 +    err = ctrl.AddFeature(fentry);
   1.354 +    TEST2(err, KErrNone);
   1.355 +    
   1.356 +    err = KErrNoMemory;
   1.357 +    TInt failingAllocationNo = 0;
   1.358 +    TheTest.Printf(_L("Iteration:\r\n"));
   1.359 +    while(err == KErrNoMemory)
   1.360 +        {
   1.361 +        TheTest.Printf(_L(" %d"), ++failingAllocationNo);
   1.362 +        OomPreStep(failingAllocationNo, aMode);
   1.363 +        err = ctrl.DeleteFeature(fentry.FeatureUid());
   1.364 +        OomPostStep(aMode);
   1.365 +        if(err == KErrNoMemory)
   1.366 +            {
   1.367 +            err = ctrl.EnableFeature(fentry.FeatureUid());
   1.368 +            TEST2(err, KErrNone);
   1.369 +            }
   1.370 +        }
   1.371 +    TEST2(err, KErrNone);
   1.372 +    
   1.373 +    ctrl.Close();
   1.374 +    TheTest.Printf(_L("\r\n===OOM test succeeded at heap failure rate of %d ===\r\n"), failingAllocationNo);
   1.375 +    }
   1.376 +
   1.377 +/////////////////////////////////////////////////////////////////////////////////////////////////////////////////
   1.378 +/////////////////////////////////////////////////////////////////////////////////////////////////////////////////
   1.379 +
   1.380 +class TTestFeatureObserver : public MFeatureObserver
   1.381 +    {
   1.382 +    public: 
   1.383 +        virtual void HandleNotifyChange(TFeatureChangeType /*aType*/, TFeatureEntry /*aFeature*/)
   1.384 +            {
   1.385 +            }
   1.386 +        virtual void HandleNotifyError(TInt /*aError*/)
   1.387 +            {
   1.388 +            }
   1.389 +    };
   1.390 +
   1.391 +/**
   1.392 +@SYMTestCaseID          PDS-EFM-CT-4086
   1.393 +@SYMTestCaseDesc        Include test case 4087 too
   1.394 +@SYMTestPriority        High
   1.395 +@SYMTestActions         
   1.396 +@SYMTestExpectedResults Test must not fail
   1.397 +@SYMDEF                 DEF144262
   1.398 +*/
   1.399 +void NotifierNewLOomTest(TFeatMgrOomTestMode aMode)
   1.400 +    {
   1.401 +    CActiveScheduler* scheduler = new CActiveScheduler;
   1.402 +    TEST(scheduler != NULL);
   1.403 +    CActiveScheduler::Install(scheduler);
   1.404 +    
   1.405 +    RFeatureControl ctrl;
   1.406 +    TInt err = ctrl.Open();
   1.407 +    TEST2(err, KErrNone);
   1.408 +    
   1.409 +    TTestFeatureObserver observer;
   1.410 +    err = KErrNoMemory;
   1.411 +    TInt failingAllocationNo = 0;
   1.412 +    TheTest.Printf(_L("Iteration:\r\n"));
   1.413 +    while(err == KErrNoMemory)
   1.414 +        {
   1.415 +        TheTest.Printf(_L(" %d"), ++failingAllocationNo);
   1.416 +        OomPreStep(failingAllocationNo, aMode);
   1.417 +        CFeatureNotifier* notifier = NULL;
   1.418 +        TRAP(err, notifier = CFeatureNotifier::NewL(observer));
   1.419 +        delete notifier;
   1.420 +        OomPostStep(aMode);
   1.421 +        }
   1.422 +    TEST2(err, KErrNone);
   1.423 +    ctrl.Close();
   1.424 +    delete scheduler;
   1.425 +    TheTest.Printf(_L("\r\n===OOM test succeeded at heap failure rate of %d ===\r\n"), failingAllocationNo);
   1.426 +    }
   1.427 +
   1.428 +/**
   1.429 +@SYMTestCaseID          PDS-EFM-CT-4088
   1.430 +@SYMTestCaseDesc        Include test case 4089-4091 too
   1.431 +@SYMTestPriority        High
   1.432 +@SYMTestActions         
   1.433 +@SYMTestExpectedResults Test must not fail
   1.434 +@SYMDEF                 DEF144262
   1.435 +*/
   1.436 +void NotifierNotifyRequestOomTest(TBool aInvalidFeature, TFeatMgrOomTestMode aMode)
   1.437 +    {
   1.438 +    CActiveScheduler* scheduler = new CActiveScheduler;
   1.439 +    TEST(scheduler != NULL);
   1.440 +    CActiveScheduler::Install(scheduler);
   1.441 +    
   1.442 +    RFeatureControl ctrl;
   1.443 +    TInt err = ctrl.Open();
   1.444 +    TEST2(err, KErrNone);
   1.445 +    
   1.446 +    TTestFeatureObserver observer;
   1.447 +    CFeatureNotifier* notifier = NULL;
   1.448 +    TRAP(err, notifier = CFeatureNotifier::NewL(observer));
   1.449 +    TEST2(err, KErrNone);
   1.450 +
   1.451 +    const TUid KFeatureUid(aInvalidFeature ? KInvalidFeatureUid : KConnectivity);
   1.452 +    
   1.453 +    err = KErrNoMemory;
   1.454 +    TInt failingAllocationNo = 0;
   1.455 +    TheTest.Printf(_L("Iteration:\r\n"));
   1.456 +    while(err == KErrNoMemory)
   1.457 +        {
   1.458 +        TheTest.Printf(_L(" %d"), ++failingAllocationNo);
   1.459 +        OomPreStep(failingAllocationNo, aMode);
   1.460 +        err = notifier->NotifyRequest(KFeatureUid);
   1.461 +        (void)notifier->NotifyCancelAll();
   1.462 +        OomPostStep(aMode);
   1.463 +        }
   1.464 +    TEST2(err, KErrNone);
   1.465 +    delete notifier;
   1.466 +    ctrl.Close();
   1.467 +    delete scheduler;
   1.468 +    TheTest.Printf(_L("\r\n===OOM test succeeded at heap failure rate of %d ===\r\n"), failingAllocationNo);
   1.469 +    }
   1.470 +
   1.471 +/**
   1.472 +@SYMTestCaseID          PDS-EFM-CT-4092
   1.473 +@SYMTestCaseDesc        Include test case 4093 too
   1.474 +@SYMTestPriority        High
   1.475 +@SYMTestActions         
   1.476 +@SYMTestExpectedResults Test must not fail
   1.477 +@SYMDEF                 DEF144262
   1.478 +*/
   1.479 +void NotifierNotifyRequestsOomTest(TFeatMgrOomTestMode aMode)
   1.480 +    {
   1.481 +    CActiveScheduler* scheduler = new CActiveScheduler;
   1.482 +    TEST(scheduler != NULL);
   1.483 +    CActiveScheduler::Install(scheduler);
   1.484 +    
   1.485 +    RFeatureControl ctrl;
   1.486 +    TInt err = ctrl.Open();
   1.487 +    TEST2(err, KErrNone);
   1.488 +    
   1.489 +    TTestFeatureObserver observer;
   1.490 +    CFeatureNotifier* notifier = NULL;
   1.491 +    TRAP(err, notifier = CFeatureNotifier::NewL(observer));
   1.492 +    TEST2(err, KErrNone);
   1.493 +
   1.494 +    RFeatureUidArray features;
   1.495 +    err = features.Append(KConnectivity);
   1.496 +    TEST2(err, KErrNone);
   1.497 +    err = features.Append(KFax);
   1.498 +    TEST2(err, KErrNone);
   1.499 +    err = features.Append(KConnectivity);
   1.500 +    TEST2(err, KErrNone);
   1.501 +    err = features.Append(KLocationManagement);
   1.502 +    TEST2(err, KErrNone);
   1.503 +    
   1.504 +    err = KErrNoMemory;
   1.505 +    TInt failingAllocationNo = 0;
   1.506 +    TheTest.Printf(_L("Iteration:\r\n"));
   1.507 +    while(err == KErrNoMemory)
   1.508 +        {
   1.509 +        TheTest.Printf(_L(" %d"), ++failingAllocationNo);
   1.510 +        OomPreStep(failingAllocationNo, aMode);
   1.511 +        err = notifier->NotifyRequest(features);
   1.512 +        (void)notifier->NotifyCancelAll();
   1.513 +        OomPostStep(aMode);
   1.514 +        }
   1.515 +    TEST2(err, KErrNone);
   1.516 +    features.Close();
   1.517 +    delete notifier;
   1.518 +    ctrl.Close();
   1.519 +    delete scheduler;
   1.520 +    TheTest.Printf(_L("\r\n===OOM test succeeded at heap failure rate of %d ===\r\n"), failingAllocationNo);
   1.521 +    }
   1.522 +
   1.523 +
   1.524 +
   1.525 +void DoTestsL()
   1.526 +    {
   1.527 +    TheTest.Start(_L("@SYMTestCaseID:PDS-EFM-CT-4068 RFeatureControl::Connect() OOM test"));
   1.528 +    ControlOpenOomTest(ETrue);
   1.529 +    TheTest.Next(_L("@SYMTestCaseID:PDS-EFM-CT-4069 RFeatureControl::Open() OOM test"));
   1.530 +    ControlOpenOomTest(EFalse);
   1.531 +    
   1.532 +    TheTest.Next(_L("@SYMTestCaseID:PDS-EFM-CT-4070 RFeatureControl::FeatureSupported(UID) + valid feature, client side OOM test"));
   1.533 +    ControlFeatureSupportedOomTest(ETrue, EFalse, EFeatMgrOomClientTestMode);
   1.534 +    TheTest.Next(_L("@SYMTestCaseID:PDS-EFM-CT-4071 RFeatureControl::FeatureSupported(UID) + valid feature, server side OOM test"));
   1.535 +    ControlFeatureSupportedOomTest(ETrue, EFalse, EFeatMgrOomServerTestMode);
   1.536 +    
   1.537 +    TheTest.Next(_L("@SYMTestCaseID:PDS-EFM-CT-4072 RFeatureControl::FeatureSupported() + valid feature, client side OOM test"));
   1.538 +    ControlFeatureSupportedOomTest(EFalse, EFalse, EFeatMgrOomClientTestMode);
   1.539 +    TheTest.Next(_L("@SYMTestCaseID:PDS-EFM-CT-4073 RFeatureControl::FeatureSupported() + valid feature, server side OOM test"));
   1.540 +    ControlFeatureSupportedOomTest(EFalse, EFalse, EFeatMgrOomServerTestMode);
   1.541 +    
   1.542 +    TheTest.Next(_L("@SYMTestCaseID:PDS-EFM-CT-4074 RFeatureControl::FeatureSupported(UID) + invalid feature, client side OOM test"));
   1.543 +    ControlFeatureSupportedOomTest(ETrue, ETrue, EFeatMgrOomClientTestMode);
   1.544 +    TheTest.Next(_L("@SYMTestCaseID:PDS-EFM-CT-4075 RFeatureControl::FeatureSupported(UID) + invalid feature, server side OOM test"));
   1.545 +    ControlFeatureSupportedOomTest(ETrue, ETrue, EFeatMgrOomServerTestMode);
   1.546 +    
   1.547 +    TheTest.Next(_L("@SYMTestCaseID:PDS-EFM-CT-4076 RFeatureControl::FeatureSupported() + invalid feature, client side OOM OOM test"));
   1.548 +    ControlFeatureSupportedOomTest(EFalse, ETrue, EFeatMgrOomClientTestMode);
   1.549 +    TheTest.Next(_L("@SYMTestCaseID:PDS-EFM-CT-4077 RFeatureControl::FeatureSupported() + invalid feature, server side OOM OOM test"));
   1.550 +    ControlFeatureSupportedOomTest(EFalse, ETrue, EFeatMgrOomServerTestMode);
   1.551 +    
   1.552 +    TheTest.Next(_L("@SYMTestCaseID:PDS-EFM-CT-4078 RFeatureControl::ListSupportedFeatures(), client side OOM test"));
   1.553 +    ControlListSupportedFeaturesOomTest(EFeatMgrOomClientTestMode);
   1.554 +    TheTest.Next(_L("@SYMTestCaseID:PDS-EFM-CT-4079 RFeatureControl::ListSupportedFeatures(), server side OOM test"));
   1.555 +    ControlListSupportedFeaturesOomTest(EFeatMgrOomServerTestMode);
   1.556 +    
   1.557 +    TheTest.Next(_L("@SYMTestCaseID:PDS-EFM-CT-4080 RFeatureControl::FeaturesSupported(), client side OOM test"));
   1.558 +    ControlFeaturesSupportedOomTest(EFeatMgrOomClientTestMode);
   1.559 +    TheTest.Next(_L("@SYMTestCaseID:PDS-EFM-CT-4081 RFeatureControl::FeaturesSupported(),server side OOM test"));
   1.560 +    ControlFeaturesSupportedOomTest(EFeatMgrOomServerTestMode);
   1.561 +    
   1.562 +    TheTest.Next(_L("@SYMTestCaseID:PDS-EFM-CT-4082 RFeatureControl::AddFeature(), client side OOM test"));
   1.563 +    ControlAddFeatureOomTest(EFeatMgrOomClientTestMode);
   1.564 +    TheTest.Next(_L("@SYMTestCaseID:PDS-EFM-CT-4083 RFeatureControl::AddFeature(), server side OOM test"));
   1.565 +    ControlAddFeatureOomTest(EFeatMgrOomServerTestMode);
   1.566 +    
   1.567 +    TheTest.Next(_L("@SYMTestCaseID:PDS-EFM-CT-4084 RFeatureControl::DeleteFeature(), client side OOM test"));
   1.568 +    ControlDeleteFeatureOomTest(EFeatMgrOomClientTestMode);
   1.569 +    TheTest.Next(_L("@SYMTestCaseID:PDS-EFM-CT-4085 RFeatureControl::DeleteFeature(), server side OOM test"));
   1.570 +    ControlDeleteFeatureOomTest(EFeatMgrOomServerTestMode);
   1.571 +
   1.572 +    TheTest.Next(_L("@SYMTestCaseID:PDS-EFM-CT-4086 CFeatureNotifier::NewL(), client side OOM test"));
   1.573 +    NotifierNewLOomTest(EFeatMgrOomClientTestMode);
   1.574 +    TheTest.Next(_L("@SYMTestCaseID:PDS-EFM-CT-4087 CFeatureNotifier::NewL(), server side OOM test"));
   1.575 +    NotifierNewLOomTest(EFeatMgrOomServerTestMode);
   1.576 +    
   1.577 +    TheTest.Next(_L("@SYMTestCaseID:PDS-EFM-CT-4088 CFeatureNotifier::NotifyRequest(), valid feature, client side OOM test"));
   1.578 +    NotifierNotifyRequestOomTest(ETrue, EFeatMgrOomClientTestMode);
   1.579 +    TheTest.Next(_L("@SYMTestCaseID:PDS-EFM-CT-4089 CFeatureNotifier::NotifyRequest(), valid feature, server side OOM test"));
   1.580 +    NotifierNotifyRequestOomTest(ETrue, EFeatMgrOomServerTestMode);
   1.581 +    
   1.582 +    TheTest.Next(_L("@SYMTestCaseID:PDS-EFM-CT-4090 CFeatureNotifier::NotifyRequest(), invalid feature, client side OOM test"));
   1.583 +    NotifierNotifyRequestOomTest(EFalse, EFeatMgrOomClientTestMode);
   1.584 +    TheTest.Next(_L("@SYMTestCaseID:PDS-EFM-CT-4091 CFeatureNotifier::NotifyRequest(), invalid feature, server side OOM test"));
   1.585 +    NotifierNotifyRequestOomTest(EFalse, EFeatMgrOomServerTestMode);
   1.586 +
   1.587 +    TheTest.Next(_L("@SYMTestCaseID:PDS-EFM-CT-4092 CFeatureNotifier::NotifyRequest(<array>), valid feature, client side OOM test"));
   1.588 +    NotifierNotifyRequestsOomTest(EFeatMgrOomClientTestMode);
   1.589 +    TheTest.Next(_L("@SYMTestCaseID:PDS-EFM-CT-4093 CFeatureNotifier::NotifyRequest(<array>), valid feature, server side OOM test"));
   1.590 +    NotifierNotifyRequestsOomTest(EFeatMgrOomServerTestMode);
   1.591 +    }
   1.592 +
   1.593 +TInt E32Main()
   1.594 +    {
   1.595 +    TheTest.Title();
   1.596 +    
   1.597 +    CTrapCleanup* tc = CTrapCleanup::New();
   1.598 +    TheTest(tc != NULL);
   1.599 +    
   1.600 +    __UHEAP_MARK;
   1.601 +    
   1.602 +    TRAPD(err, DoTestsL());
   1.603 +    TEST2(err, KErrNone);
   1.604 +
   1.605 +    __UHEAP_MARKEND;
   1.606 +    
   1.607 +    TheTest.End();
   1.608 +    TheTest.Close();
   1.609 +    
   1.610 +    delete tc;
   1.611 +
   1.612 +    User::Heap().Check();
   1.613 +    return KErrNone;
   1.614 +    }