1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/ossrv/genericservices/systemagent/test/rtest/t_haloomtests/t_haloomtests.cpp Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,114 @@
1.4 +// Copyright (c) 2006-2009 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 +// For the out of memory test of HAL initialise/ Persist functions :
1.18 +//
1.19 +//
1.20 +
1.21 +/**
1.22 + @file
1.23 + @internalComponent
1.24 + @test
1.25 +*/
1.26 +
1.27 +#include <e32base.h>
1.28 +#include "halfiles.h"
1.29 +#include <e32test.h>
1.30 +
1.31 +LOCAL_D RTest TheTest (_L ("OOM Tests"));
1.32 +
1.33 +/**
1.34 +@SYMTestCaseID SYSLIB-HALSETTINGS-CT-1711
1.35 +@SYMTestCaseDesc OOM Test Initialise HAL attributes
1.36 +@SYMTestPriority Medium
1.37 +@SYMTestActions Tests for the out of memory conditions
1.38 +@SYMTestExpectedResults Tests must not fail
1.39 +@SYMDEF DEF083235: Prop: HAL Attributes (eg screen calibration) lost if the battery is pulled out
1.40 +*/
1.41 +
1.42 +LOCAL_C void OOMTestInitialiseHAL()
1.43 + {
1.44 + TheTest.Next(_L (" @SYMTestCaseID:SYSLIB-HALSETTINGS-CT-1711 OOM test for InitialiseHAL() "));
1.45 + PersistHAL(); // to make sure HAL.DAT is on the system drive
1.46 + TInt err;
1.47 + TInt tryCount = 0;
1.48 + do
1.49 + {
1.50 + __UHEAP_MARK;
1.51 +
1.52 + __UHEAP_SETFAIL(RHeap::EDeterministic, ++tryCount);
1.53 + err = InitialiseHAL();
1.54 + __UHEAP_SETFAIL(RHeap::ENone, 0);
1.55 +
1.56 + __UHEAP_MARKEND;
1.57 + } while(err == KErrNoMemory);
1.58 +
1.59 + TheTest(err==KErrNone);
1.60 + TheTest.Printf(_L("- succeeded at heap failure rate of %i\n"), tryCount);
1.61 + }
1.62 +/**
1.63 +@SYMTestCaseID SYSLIB-HALSETTINGS-CT-1710
1.64 +@SYMTestCaseDesc OOM Test for Persist HAL attributes
1.65 +@SYMTestPriority Medium
1.66 +@SYMTestActions Tests for the out of memory conditions
1.67 +@SYMTestExpectedResults Tests must not fail
1.68 +@SYMDEF DEF083235: Prop: HAL Attributes (eg screen calibration) lost if the battery is pulled out
1.69 +*/
1.70 +LOCAL_C void OOMTestPersistHAL()
1.71 + {
1.72 + TheTest.Next(_L (" @SYMTestCaseID:SYSLIB-HALSETTINGS-CT-1710 OOM test for PersistHAL() "));
1.73 +
1.74 + TInt err;
1.75 + TInt tryCount = 0;
1.76 + do
1.77 + {
1.78 + __UHEAP_MARK;
1.79 +
1.80 + __UHEAP_SETFAIL(RHeap::EDeterministic, ++tryCount);
1.81 + err = PersistHAL();
1.82 + __UHEAP_SETFAIL(RHeap::ENone, 0);
1.83 +
1.84 + __UHEAP_MARKEND;
1.85 + } while(err == KErrNoMemory);
1.86 +
1.87 + TheTest(err==KErrNone);
1.88 + TheTest.Printf(_L("- succeeded at heap failure rate of %i\n"), tryCount);
1.89 + }
1.90 +
1.91 +
1.92 +LOCAL_C void RunTestsL()
1.93 + {
1.94 + OOMTestInitialiseHAL();
1.95 + OOMTestPersistHAL();
1.96 + }
1.97 +
1.98 +GLDEF_C TInt E32Main()
1.99 + {
1.100 +
1.101 + __UHEAP_MARK;
1.102 + TheTest.Title ();
1.103 + TheTest.Start (_L ("OOM Tests"));
1.104 + CTrapCleanup* cleanup=CTrapCleanup::New();
1.105 +
1.106 +
1.107 + TRAPD(err, ::RunTestsL());
1.108 +
1.109 + delete cleanup;
1.110 +
1.111 + TheTest.End ();
1.112 + TheTest.Close ();
1.113 + __UHEAP_MARKEND;
1.114 +
1.115 + return err;
1.116 +
1.117 + }