First public contribution.
2 // Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
3 // All rights reserved.
4 // This component and the accompanying materials are made available
5 // under the terms of "Eclipse Public License v1.0"
6 // which accompanies this distribution, and is available
7 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
9 // Initial Contributors:
10 // Nokia Corporation - initial contribution.
22 #include "EComEntry.h"
25 RTest TheTest(_L("t_ecomentry.exe"));
26 _LIT(KTestFile,"Z:\\Test\\");
27 _LIT(KFile,"Z:\\Test\\Data\\EComTest.aif");
28 _LIT(KTestFileChange,"C:\\EComEntryChangedFile");
30 // functions for checking results
31 static void Check(TInt aValue, TInt aLine)
35 TheTest(EFalse, aLine);
39 static void Check(TInt aValue, TInt aExpected, TInt aLine)
41 if(aValue != aExpected)
43 RDebug::Print(_L("*** Expected error: %d, got: %d\r\n"), aExpected, aValue);
44 TheTest(EFalse, aLine);
49 #define TEST(arg) ::Check((arg), __LINE__)
50 #define TEST2(aValue, aExpected) ::Check(aValue, aExpected, __LINE__)
52 class CEComEntryTest // codescanner::missingcclass
55 static void TestEComEntryL();
56 static void TestEComEntryOOML();
59 void CEComEntryTest::TestEComEntryL()
62 TheTest.Next(_L("Create EComEntry Object....."));
69 CleanupClosePushL(fs);
72 TEntry info,infoSecond;
76 //get entry details for test file
77 err=fs.Entry(KFile,info);
80 //get entry details for existing file
81 err=fs.Entry(KTestFile,infoSecond);
84 CleanupStack::Pop(&fs);
86 //create ecomentry object
88 CEComEntry* entry= CEComEntry::NewL(info.iName,info.iType[1],info.iType[2]);
89 CleanupStack::PushL(entry);
91 // not pushed onto cleanup stack as SetNameL will take ownership
92 HBufC* buf= HBufC::NewL(25);
97 entry->SetModified(time);
99 TEST(entry->GetName()==buf->Des());
100 TEST(entry->GetModified()==time);
102 CleanupStack::PopAndDestroy(entry);
107 // out of memory test
108 void CEComEntryTest::TestEComEntryOOML()
110 TheTest.Next(_L("EComEntry Out of Memory Test....."));
111 TInt processHandlesS = 0;
112 TInt threadHandlesS = 0;
113 TInt processHandlesE = 0;
114 TInt threadHandlesE = 0;
115 RThread().HandleCount(processHandlesS, threadHandlesS);
116 for(TInt count=1;;++count)
118 // Setting Heap failure for OOM test
119 __UHEAP_SETFAIL(RHeap::EDeterministic, count);
122 TRAPD(err,TestEComEntryL());
123 if(err == KErrNoMemory)
127 else if(err == KErrNone)
130 RDebug::Print(_L("The test succeeded at heap failure rate=%d.\n"), count);
136 TEST2(err, KErrNone);
141 RThread().HandleCount(processHandlesE, threadHandlesE);
142 TEST(processHandlesS == processHandlesE);
143 TEST(threadHandlesS == threadHandlesE);
148 GLDEF_C TInt E32Main()
152 TheTest.Start(_L(" @SYMTestCaseID:SYSLIB-ECOM-LEGACY-ECOMENTRY-0001 Starting tests... "));
154 CTrapCleanup* cleanup = CTrapCleanup::New();
156 TRAPD(err2, CEComEntryTest::TestEComEntryOOML());
157 TheTest(err2==KErrNone);