os/ossrv/genericservices/systemagent/test/rtest/t_haloomtests/t_haloomtests.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 // Copyright (c) 2006-2009 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 // For the out of memory test of  HAL initialise/ Persist functions :
    15 // 
    16 //
    17 
    18 /**
    19  @file
    20  @internalComponent
    21  @test
    22 */
    23 
    24 #include <e32base.h>
    25 #include "halfiles.h"
    26 #include <e32test.h>
    27 
    28 LOCAL_D RTest 			TheTest (_L ("OOM Tests"));
    29 
    30 /**
    31 @SYMTestCaseID          SYSLIB-HALSETTINGS-CT-1711
    32 @SYMTestCaseDesc        OOM Test Initialise HAL attributes
    33 @SYMTestPriority        Medium
    34 @SYMTestActions         Tests for the out of memory conditions
    35 @SYMTestExpectedResults Tests must not fail
    36 @SYMDEF                 DEF083235: Prop: HAL Attributes (eg screen calibration) lost if the battery is pulled out
    37 */
    38 
    39 LOCAL_C void OOMTestInitialiseHAL()
    40 		{
    41 		TheTest.Next(_L (" @SYMTestCaseID:SYSLIB-HALSETTINGS-CT-1711 OOM test for InitialiseHAL() "));
    42 		PersistHAL(); // to make sure HAL.DAT is on the system drive
    43 		TInt err;
    44 		TInt tryCount = 0;
    45 		do
    46 			{
    47 			__UHEAP_MARK;
    48 
    49 			__UHEAP_SETFAIL(RHeap::EDeterministic, ++tryCount);
    50 			err = InitialiseHAL();
    51 			__UHEAP_SETFAIL(RHeap::ENone, 0);
    52 
    53 			__UHEAP_MARKEND;
    54 			} while(err == KErrNoMemory);
    55 
    56 	 		TheTest(err==KErrNone);
    57 			TheTest.Printf(_L("- succeeded at heap failure rate of %i\n"), tryCount);
    58 		}
    59 /**
    60 @SYMTestCaseID          SYSLIB-HALSETTINGS-CT-1710
    61 @SYMTestCaseDesc        OOM Test for Persist HAL attributes
    62 @SYMTestPriority        Medium
    63 @SYMTestActions         Tests for the out of memory conditions
    64 @SYMTestExpectedResults Tests must not fail
    65 @SYMDEF                 DEF083235: Prop: HAL Attributes (eg screen calibration) lost if the battery is pulled out
    66 */
    67 LOCAL_C void OOMTestPersistHAL()
    68 		{
    69 		TheTest.Next(_L (" @SYMTestCaseID:SYSLIB-HALSETTINGS-CT-1710 OOM test for PersistHAL() "));
    70 
    71 		TInt err;
    72 		TInt tryCount = 0;
    73 		do
    74 			{
    75 			__UHEAP_MARK;
    76 
    77 			__UHEAP_SETFAIL(RHeap::EDeterministic, ++tryCount);
    78 			err = PersistHAL();
    79 			__UHEAP_SETFAIL(RHeap::ENone, 0);
    80 
    81 			__UHEAP_MARKEND;
    82 			} while(err == KErrNoMemory);
    83 
    84 	 		TheTest(err==KErrNone);
    85 			TheTest.Printf(_L("- succeeded at heap failure rate of %i\n"), tryCount);
    86 		}
    87 
    88 
    89 LOCAL_C void RunTestsL()
    90 		{
    91 		OOMTestInitialiseHAL();
    92 		OOMTestPersistHAL();
    93 		}
    94 
    95 GLDEF_C TInt E32Main()
    96 	{
    97 
    98 	__UHEAP_MARK;
    99 	TheTest.Title ();
   100 	TheTest.Start (_L ("OOM Tests"));
   101 	CTrapCleanup* cleanup=CTrapCleanup::New();
   102 
   103 
   104 	TRAPD(err, ::RunTestsL());
   105 
   106 	delete cleanup;
   107 
   108 	TheTest.End ();
   109 	TheTest.Close ();
   110 	__UHEAP_MARKEND;
   111 
   112 	return  err;
   113 
   114 	}