os/ossrv/lowlevellibsandfws/apputils/tsrc/T_RscMem.cpp
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/ossrv/lowlevellibsandfws/apputils/tsrc/T_RscMem.cpp	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,88 @@
     1.4 +// Copyright (c) 2003-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 +// Tests CResourceFile class - memory allocation tests
    1.18 +// 
    1.19 +//
    1.20 +
    1.21 +#include <e32test.h>
    1.22 +#include <barsc2.h>
    1.23 +
    1.24 +LOCAL_D RTest test(_L("T_RSCMEM"));
    1.25 +LOCAL_D RFs TheFs;
    1.26 +
    1.27 +/**
    1.28 +@SYMTestCaseID          SYSLIB-BAFL-CT-0484
    1.29 +@SYMTestCaseDesc        CResourceFile class test
    1.30 +                        Memory allocation tests
    1.31 +@SYMTestPriority        High
    1.32 +@SYMTestActions         Tests for the out of memory conditions
    1.33 +@SYMTestExpectedResults Tests must not fail
    1.34 +@SYMREQ                 REQ0000
    1.35 +*/
    1.36 +LOCAL_C void TestOpenL(const TDesC &aFileName, TUint aFileOffset, TUint aFileSize)
    1.37 +	{
    1.38 +	test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0484 "));
    1.39 +	__UHEAP_RESET;
    1.40 +
    1.41 +	for(TInt count = 1; ;count++)
    1.42 +		{
    1.43 +		__UHEAP_SETFAIL(RHeap::EDeterministic, count);
    1.44 +		__UHEAP_MARK;
    1.45 +
    1.46 +		CResourceFile* rsc_file = NULL;
    1.47 +		TRAPD(err, rsc_file = CResourceFile::NewL(TheFs, aFileName, aFileOffset, aFileSize));
    1.48 +		delete rsc_file;
    1.49 +
    1.50 +		if(err == KErrNoMemory)
    1.51 +			{
    1.52 +			__UHEAP_MARKEND;
    1.53 +			}
    1.54 +		else if(err == KErrNone)
    1.55 +			{
    1.56 +			__UHEAP_MARKEND;
    1.57 +			break;
    1.58 +			}
    1.59 +		else
    1.60 +			User::Panic(_L("CResourceFile::NewL(), error "), err);
    1.61 +		}
    1.62 +
    1.63 +	__UHEAP_RESET;
    1.64 +	}
    1.65 +
    1.66 +LOCAL_C void DoTestsL()
    1.67 +    {
    1.68 +	CleanupClosePushL(TheFs);
    1.69 +	User::LeaveIfError(TheFs.Connect());
    1.70 +
    1.71 +	::TestOpenL(_L("z:\\system\\data\\Trsc.rsc"), 0, 0);
    1.72 +
    1.73 +	CleanupStack::PopAndDestroy(1, &TheFs);
    1.74 +    }
    1.75 +
    1.76 +GLDEF_C TInt E32Main()
    1.77 +	{
    1.78 +    __UHEAP_MARK;
    1.79 +    CTrapCleanup* cleanup = CTrapCleanup::New();
    1.80 +	test.Title();
    1.81 +	test.Start(_L("Testing CResourceFile::NewL()"));
    1.82 +    TRAPD(err, DoTestsL());
    1.83 +    test.Printf(_L("Error code is %d\n"), err);
    1.84 +    test(err == KErrNone);
    1.85 +    test.Next(_L("/n"));
    1.86 +	test.End();
    1.87 +    test.Close();
    1.88 +    delete cleanup;
    1.89 +    __UHEAP_MARKEND;
    1.90 +	return 0;
    1.91 +    }