sl@0
|
1 |
// Copyright (c) 2003-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
// All rights reserved.
|
sl@0
|
3 |
// This component and the accompanying materials are made available
|
sl@0
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
sl@0
|
5 |
// which accompanies this distribution, and is available
|
sl@0
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
//
|
sl@0
|
8 |
// Initial Contributors:
|
sl@0
|
9 |
// Nokia Corporation - initial contribution.
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// Contributors:
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// Description:
|
sl@0
|
14 |
// Tests CResourceFile class - memory allocation tests
|
sl@0
|
15 |
//
|
sl@0
|
16 |
//
|
sl@0
|
17 |
|
sl@0
|
18 |
#include <e32test.h>
|
sl@0
|
19 |
#include <barsc2.h>
|
sl@0
|
20 |
|
sl@0
|
21 |
LOCAL_D RTest test(_L("T_RSCMEM"));
|
sl@0
|
22 |
LOCAL_D RFs TheFs;
|
sl@0
|
23 |
|
sl@0
|
24 |
/**
|
sl@0
|
25 |
@SYMTestCaseID SYSLIB-BAFL-CT-0484
|
sl@0
|
26 |
@SYMTestCaseDesc CResourceFile class test
|
sl@0
|
27 |
Memory allocation tests
|
sl@0
|
28 |
@SYMTestPriority High
|
sl@0
|
29 |
@SYMTestActions Tests for the out of memory conditions
|
sl@0
|
30 |
@SYMTestExpectedResults Tests must not fail
|
sl@0
|
31 |
@SYMREQ REQ0000
|
sl@0
|
32 |
*/
|
sl@0
|
33 |
LOCAL_C void TestOpenL(const TDesC &aFileName, TUint aFileOffset, TUint aFileSize)
|
sl@0
|
34 |
{
|
sl@0
|
35 |
test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0484 "));
|
sl@0
|
36 |
__UHEAP_RESET;
|
sl@0
|
37 |
|
sl@0
|
38 |
for(TInt count = 1; ;count++)
|
sl@0
|
39 |
{
|
sl@0
|
40 |
__UHEAP_SETFAIL(RHeap::EDeterministic, count);
|
sl@0
|
41 |
__UHEAP_MARK;
|
sl@0
|
42 |
|
sl@0
|
43 |
CResourceFile* rsc_file = NULL;
|
sl@0
|
44 |
TRAPD(err, rsc_file = CResourceFile::NewL(TheFs, aFileName, aFileOffset, aFileSize));
|
sl@0
|
45 |
delete rsc_file;
|
sl@0
|
46 |
|
sl@0
|
47 |
if(err == KErrNoMemory)
|
sl@0
|
48 |
{
|
sl@0
|
49 |
__UHEAP_MARKEND;
|
sl@0
|
50 |
}
|
sl@0
|
51 |
else if(err == KErrNone)
|
sl@0
|
52 |
{
|
sl@0
|
53 |
__UHEAP_MARKEND;
|
sl@0
|
54 |
break;
|
sl@0
|
55 |
}
|
sl@0
|
56 |
else
|
sl@0
|
57 |
User::Panic(_L("CResourceFile::NewL(), error "), err);
|
sl@0
|
58 |
}
|
sl@0
|
59 |
|
sl@0
|
60 |
__UHEAP_RESET;
|
sl@0
|
61 |
}
|
sl@0
|
62 |
|
sl@0
|
63 |
LOCAL_C void DoTestsL()
|
sl@0
|
64 |
{
|
sl@0
|
65 |
CleanupClosePushL(TheFs);
|
sl@0
|
66 |
User::LeaveIfError(TheFs.Connect());
|
sl@0
|
67 |
|
sl@0
|
68 |
::TestOpenL(_L("z:\\system\\data\\Trsc.rsc"), 0, 0);
|
sl@0
|
69 |
|
sl@0
|
70 |
CleanupStack::PopAndDestroy(1, &TheFs);
|
sl@0
|
71 |
}
|
sl@0
|
72 |
|
sl@0
|
73 |
GLDEF_C TInt E32Main()
|
sl@0
|
74 |
{
|
sl@0
|
75 |
__UHEAP_MARK;
|
sl@0
|
76 |
CTrapCleanup* cleanup = CTrapCleanup::New();
|
sl@0
|
77 |
test.Title();
|
sl@0
|
78 |
test.Start(_L("Testing CResourceFile::NewL()"));
|
sl@0
|
79 |
TRAPD(err, DoTestsL());
|
sl@0
|
80 |
test.Printf(_L("Error code is %d\n"), err);
|
sl@0
|
81 |
test(err == KErrNone);
|
sl@0
|
82 |
test.Next(_L("/n"));
|
sl@0
|
83 |
test.End();
|
sl@0
|
84 |
test.Close();
|
sl@0
|
85 |
delete cleanup;
|
sl@0
|
86 |
__UHEAP_MARKEND;
|
sl@0
|
87 |
return 0;
|
sl@0
|
88 |
}
|