1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/ossrv/lowlevellibsandfws/pluginfw/Framework/SimpleTests/t_ecomentry.cpp Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,166 @@
1.4 +
1.5 +// Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
1.6 +// All rights reserved.
1.7 +// This component and the accompanying materials are made available
1.8 +// under the terms of "Eclipse Public License v1.0"
1.9 +// which accompanies this distribution, and is available
1.10 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.11 +//
1.12 +// Initial Contributors:
1.13 +// Nokia Corporation - initial contribution.
1.14 +//
1.15 +// Contributors:
1.16 +//
1.17 +// Description:
1.18 +//
1.19 +
1.20 +#include <e32test.h>
1.21 +#include <f32file.h>
1.22 +#include <s32file.h>
1.23 +#include <bautils.h>
1.24 +
1.25 +#include "EComEntry.h"
1.26 +
1.27 +
1.28 +RTest TheTest(_L("t_ecomentry.exe"));
1.29 +_LIT(KTestFile,"Z:\\Test\\");
1.30 +_LIT(KFile,"Z:\\Test\\Data\\EComTest.aif");
1.31 +_LIT(KTestFileChange,"C:\\EComEntryChangedFile");
1.32 +
1.33 +// functions for checking results
1.34 +static void Check(TInt aValue, TInt aLine)
1.35 + {
1.36 + if(!aValue)
1.37 + {
1.38 + TheTest(EFalse, aLine);
1.39 + }
1.40 + }
1.41 +
1.42 +static void Check(TInt aValue, TInt aExpected, TInt aLine)
1.43 + {
1.44 + if(aValue != aExpected)
1.45 + {
1.46 + RDebug::Print(_L("*** Expected error: %d, got: %d\r\n"), aExpected, aValue);
1.47 + TheTest(EFalse, aLine);
1.48 + }
1.49 + }
1.50 +
1.51 +
1.52 +#define TEST(arg) ::Check((arg), __LINE__)
1.53 +#define TEST2(aValue, aExpected) ::Check(aValue, aExpected, __LINE__)
1.54 +
1.55 +class CEComEntryTest // codescanner::missingcclass
1.56 + {
1.57 +public:
1.58 + static void TestEComEntryL();
1.59 + static void TestEComEntryOOML();
1.60 + };
1.61 +
1.62 +void CEComEntryTest::TestEComEntryL()
1.63 +
1.64 + {
1.65 + TheTest.Next(_L("Create EComEntry Object....."));
1.66 + __UHEAP_MARK;
1.67 +
1.68 +
1.69 + TInt err=KErrNone;
1.70 + RFs fs;
1.71 + err = fs.Connect();
1.72 + CleanupClosePushL(fs);
1.73 +
1.74 + TEST(err==KErrNone);
1.75 + TEntry info,infoSecond;
1.76 + TTime time;
1.77 + time.UniversalTime();
1.78 +
1.79 + //get entry details for test file
1.80 + err=fs.Entry(KFile,info);
1.81 + TEST(err==KErrNone);
1.82 +
1.83 + //get entry details for existing file
1.84 + err=fs.Entry(KTestFile,infoSecond);
1.85 + TEST2(err,KErrNone);
1.86 + fs.Close();
1.87 + CleanupStack::Pop(&fs);
1.88 +
1.89 + //create ecomentry object
1.90 +
1.91 + CEComEntry* entry= CEComEntry::NewL(info.iName,info.iType[1],info.iType[2]);
1.92 + CleanupStack::PushL(entry);
1.93 +
1.94 + // not pushed onto cleanup stack as SetNameL will take ownership
1.95 + HBufC* buf= HBufC::NewL(25);
1.96 + *buf=KTestFileChange;
1.97 +
1.98 + delete entry->iName;
1.99 + entry->iName=buf;
1.100 + entry->SetModified(time);
1.101 +
1.102 + TEST(entry->GetName()==buf->Des());
1.103 + TEST(entry->GetModified()==time);
1.104 +
1.105 + CleanupStack::PopAndDestroy(entry);
1.106 + __UHEAP_MARKEND;
1.107 + }
1.108 +
1.109 +
1.110 +// out of memory test
1.111 +void CEComEntryTest::TestEComEntryOOML()
1.112 + {
1.113 + TheTest.Next(_L("EComEntry Out of Memory Test....."));
1.114 + TInt processHandlesS = 0;
1.115 + TInt threadHandlesS = 0;
1.116 + TInt processHandlesE = 0;
1.117 + TInt threadHandlesE = 0;
1.118 + RThread().HandleCount(processHandlesS, threadHandlesS);
1.119 + for(TInt count=1;;++count)
1.120 + {
1.121 + // Setting Heap failure for OOM test
1.122 + __UHEAP_SETFAIL(RHeap::EDeterministic, count);
1.123 + __UHEAP_MARK;
1.124 +
1.125 + TRAPD(err,TestEComEntryL());
1.126 + if(err == KErrNoMemory)
1.127 + {
1.128 + __UHEAP_MARKEND;
1.129 + }
1.130 + else if(err == KErrNone)
1.131 + {
1.132 + __UHEAP_MARKEND;
1.133 + RDebug::Print(_L("The test succeeded at heap failure rate=%d.\n"), count);
1.134 + break;
1.135 + }
1.136 + else
1.137 + {
1.138 + __UHEAP_MARKEND;
1.139 + TEST2(err, KErrNone);
1.140 + }
1.141 + __UHEAP_RESET;
1.142 + }
1.143 + __UHEAP_RESET;
1.144 + RThread().HandleCount(processHandlesE, threadHandlesE);
1.145 + TEST(processHandlesS == processHandlesE);
1.146 + TEST(threadHandlesS == threadHandlesE);
1.147 +
1.148 + }
1.149 +
1.150 +
1.151 +GLDEF_C TInt E32Main()
1.152 + {
1.153 + __UHEAP_MARK;
1.154 + TheTest.Title();
1.155 + TheTest.Start(_L(" @SYMTestCaseID:SYSLIB-ECOM-LEGACY-ECOMENTRY-0001 Starting tests... "));
1.156 +
1.157 + CTrapCleanup* cleanup = CTrapCleanup::New();
1.158 +
1.159 + TRAPD(err2, CEComEntryTest::TestEComEntryOOML());
1.160 + TheTest(err2==KErrNone);
1.161 +
1.162 + delete cleanup;
1.163 +
1.164 +
1.165 + TheTest.End();
1.166 + TheTest.Close();
1.167 + __UHEAP_MARKEND;
1.168 + return(0);
1.169 + }