sl@0: // Copyright (c) 1997-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: // test for DEF043452 Memory leak in ecomserver sl@0: // This file contains test for DEF043452 Memory leak in ecomserver sl@0: // sl@0: // sl@0: sl@0: #include sl@0: #include sl@0: #include sl@0: sl@0: #include "Interface.h" // interface to Plugins sl@0: #include "RegistryData.h" sl@0: #include "DefaultResolver.h" sl@0: #include "EComResolverParams.h" sl@0: #include "DriveInfo.h" sl@0: #include "RegistryResolveTransaction.h" sl@0: sl@0: LOCAL_D RTest test(_L("t_defaultresolver.exe")); sl@0: sl@0: /** sl@0: @SYMTestCaseID SYSLIB-ECOM-CT-0700 sl@0: @SYMTestCaseDesc Tests for defect number DEF043452 sl@0: Tests for memory leak in ecom server sl@0: @SYMTestPriority High sl@0: @SYMTestActions Simulates a request to list implementation of unknown interface sl@0: Checks for any memory leak in the CDefaultResolver class sl@0: @SYMTestExpectedResults The test must not fail. sl@0: @SYMREQ REQ0000 sl@0: */ sl@0: LOCAL_C void DoTestsL() sl@0: { sl@0: __UHEAP_MARK; sl@0: sl@0: CRegistryData* rd=NULL; sl@0: /** CRegistryResolveTransaction */ sl@0: CRegistryResolveTransaction* registryResolveTransaction = NULL; sl@0: CDefaultResolver* dr=NULL; sl@0: sl@0: RFs TheFs; sl@0: sl@0: RImplInfoArray* ifArray=new(ELeave) RImplInfoArray; sl@0: sl@0: TEComResolverParams trp; sl@0: sl@0: //Connecting to file server sl@0: TInt error=TheFs.Connect(); sl@0: test(error==KErrNone); sl@0: sl@0: rd=CRegistryData::NewL(TheFs); sl@0: // Set up client request and extended interfaces sl@0: TClientRequest clientReq; sl@0: RArray extendedInterfaces; sl@0: CleanupClosePushL(extendedInterfaces); sl@0: // construct the registry resolve transaction object here sl@0: TBool capability= ETrue; sl@0: registryResolveTransaction = CRegistryResolveTransaction::NewL(*rd,extendedInterfaces,clientReq,capability); sl@0: CleanupStack::PushL(registryResolveTransaction); sl@0: sl@0: dr=CDefaultResolver::NewL(*registryResolveTransaction); sl@0: sl@0: //Passing an unknown interface uid sl@0: TUid ifUid = {0x10009DC3}; sl@0: sl@0: const TInt KNoOfFailure=2; sl@0: //Simulating a request to list implementation of unknown interface sl@0: //with no memory leak in the CDefaultResolver class sl@0: for (TInt i=0;iListAllL(ifUid,trp)); sl@0: test(err==KEComErrNoInterfaceIdentified); sl@0: test(ifArray->Count()==0); sl@0: } sl@0: sl@0: CleanupStack::PopAndDestroy(registryResolveTransaction); sl@0: CleanupStack::PopAndDestroy(&extendedInterfaces); sl@0: sl@0: delete ifArray; sl@0: delete dr; sl@0: delete rd; sl@0: sl@0: // TheFs.Close() is moved here because CRegistryData will sl@0: // use the file server session to close the RFileReadStream. sl@0: TheFs.Close(); sl@0: sl@0: __UHEAP_MARKEND; sl@0: sl@0: } sl@0: sl@0: sl@0: sl@0: GLDEF_C TInt E32Main() sl@0: { sl@0: __UHEAP_MARK; sl@0: test.Title(); sl@0: test.Start(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-0700 T_DEFAULTRESOLVER tests. ")); sl@0: sl@0: // get clean-up stack sl@0: CTrapCleanup* cleanup = CTrapCleanup::New(); sl@0: sl@0: //install the scheduler sl@0: CActiveScheduler* scheduler = new(ELeave)CActiveScheduler; sl@0: CActiveScheduler::Install(scheduler); sl@0: sl@0: TRAPD(err,DoTestsL()); sl@0: test(err==KErrNone); sl@0: delete scheduler; sl@0: delete cleanup; sl@0: sl@0: test.End(); sl@0: test.Close(); sl@0: sl@0: __UHEAP_MARKEND; sl@0: return(0); sl@0: }