sl@0: sl@0: // Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // sl@0: sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: sl@0: #include "EComEntry.h" sl@0: sl@0: sl@0: RTest TheTest(_L("t_ecomentry.exe")); sl@0: _LIT(KTestFile,"Z:\\Test\\"); sl@0: _LIT(KFile,"Z:\\Test\\Data\\EComTest.aif"); sl@0: _LIT(KTestFileChange,"C:\\EComEntryChangedFile"); sl@0: sl@0: // functions for checking results sl@0: static void Check(TInt aValue, TInt aLine) sl@0: { sl@0: if(!aValue) sl@0: { sl@0: TheTest(EFalse, aLine); sl@0: } sl@0: } sl@0: sl@0: static void Check(TInt aValue, TInt aExpected, TInt aLine) sl@0: { sl@0: if(aValue != aExpected) sl@0: { sl@0: RDebug::Print(_L("*** Expected error: %d, got: %d\r\n"), aExpected, aValue); sl@0: TheTest(EFalse, aLine); sl@0: } sl@0: } sl@0: sl@0: sl@0: #define TEST(arg) ::Check((arg), __LINE__) sl@0: #define TEST2(aValue, aExpected) ::Check(aValue, aExpected, __LINE__) sl@0: sl@0: class CEComEntryTest // codescanner::missingcclass sl@0: { sl@0: public: sl@0: static void TestEComEntryL(); sl@0: static void TestEComEntryOOML(); sl@0: }; sl@0: sl@0: void CEComEntryTest::TestEComEntryL() sl@0: sl@0: { sl@0: TheTest.Next(_L("Create EComEntry Object.....")); sl@0: __UHEAP_MARK; sl@0: sl@0: sl@0: TInt err=KErrNone; sl@0: RFs fs; sl@0: err = fs.Connect(); sl@0: CleanupClosePushL(fs); sl@0: sl@0: TEST(err==KErrNone); sl@0: TEntry info,infoSecond; sl@0: TTime time; sl@0: time.UniversalTime(); sl@0: sl@0: //get entry details for test file sl@0: err=fs.Entry(KFile,info); sl@0: TEST(err==KErrNone); sl@0: sl@0: //get entry details for existing file sl@0: err=fs.Entry(KTestFile,infoSecond); sl@0: TEST2(err,KErrNone); sl@0: fs.Close(); sl@0: CleanupStack::Pop(&fs); sl@0: sl@0: //create ecomentry object sl@0: sl@0: CEComEntry* entry= CEComEntry::NewL(info.iName,info.iType[1],info.iType[2]); sl@0: CleanupStack::PushL(entry); sl@0: sl@0: // not pushed onto cleanup stack as SetNameL will take ownership sl@0: HBufC* buf= HBufC::NewL(25); sl@0: *buf=KTestFileChange; sl@0: sl@0: delete entry->iName; sl@0: entry->iName=buf; sl@0: entry->SetModified(time); sl@0: sl@0: TEST(entry->GetName()==buf->Des()); sl@0: TEST(entry->GetModified()==time); sl@0: sl@0: CleanupStack::PopAndDestroy(entry); sl@0: __UHEAP_MARKEND; sl@0: } sl@0: sl@0: sl@0: // out of memory test sl@0: void CEComEntryTest::TestEComEntryOOML() sl@0: { sl@0: TheTest.Next(_L("EComEntry Out of Memory Test.....")); sl@0: TInt processHandlesS = 0; sl@0: TInt threadHandlesS = 0; sl@0: TInt processHandlesE = 0; sl@0: TInt threadHandlesE = 0; sl@0: RThread().HandleCount(processHandlesS, threadHandlesS); sl@0: for(TInt count=1;;++count) sl@0: { sl@0: // Setting Heap failure for OOM test sl@0: __UHEAP_SETFAIL(RHeap::EDeterministic, count); sl@0: __UHEAP_MARK; sl@0: sl@0: TRAPD(err,TestEComEntryL()); sl@0: if(err == KErrNoMemory) sl@0: { sl@0: __UHEAP_MARKEND; sl@0: } sl@0: else if(err == KErrNone) sl@0: { sl@0: __UHEAP_MARKEND; sl@0: RDebug::Print(_L("The test succeeded at heap failure rate=%d.\n"), count); sl@0: break; sl@0: } sl@0: else sl@0: { sl@0: __UHEAP_MARKEND; sl@0: TEST2(err, KErrNone); sl@0: } sl@0: __UHEAP_RESET; sl@0: } sl@0: __UHEAP_RESET; sl@0: RThread().HandleCount(processHandlesE, threadHandlesE); sl@0: TEST(processHandlesS == processHandlesE); sl@0: TEST(threadHandlesS == threadHandlesE); sl@0: sl@0: } sl@0: sl@0: sl@0: GLDEF_C TInt E32Main() sl@0: { sl@0: __UHEAP_MARK; sl@0: TheTest.Title(); sl@0: TheTest.Start(_L(" @SYMTestCaseID:SYSLIB-ECOM-LEGACY-ECOMENTRY-0001 Starting tests... ")); sl@0: sl@0: CTrapCleanup* cleanup = CTrapCleanup::New(); sl@0: sl@0: TRAPD(err2, CEComEntryTest::TestEComEntryOOML()); sl@0: TheTest(err2==KErrNone); sl@0: sl@0: delete cleanup; sl@0: sl@0: sl@0: TheTest.End(); sl@0: TheTest.Close(); sl@0: __UHEAP_MARKEND; sl@0: return(0); sl@0: }