os/ossrv/lowlevellibsandfws/pluginfw/Framework/DefaultResolverTest/t_defaultresolver.cpp
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/ossrv/lowlevellibsandfws/pluginfw/Framework/DefaultResolverTest/t_defaultresolver.cpp	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,126 @@
     1.4 +// Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
     1.5 +// All rights reserved.
     1.6 +// This component and the accompanying materials are made available
     1.7 +// under the terms of "Eclipse Public License v1.0"
     1.8 +// which accompanies this distribution, and is available
     1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.10 +//
    1.11 +// Initial Contributors:
    1.12 +// Nokia Corporation - initial contribution.
    1.13 +//
    1.14 +// Contributors:
    1.15 +//
    1.16 +// Description:
    1.17 +// test for DEF043452 Memory leak in ecomserver
    1.18 +// This file contains test for DEF043452 Memory leak in ecomserver
    1.19 +// 
    1.20 +//
    1.21 +
    1.22 +#include <e32test.h>
    1.23 +#include <f32file.h>
    1.24 +#include <bautils.h>
    1.25 +
    1.26 +#include "Interface.h" // interface to Plugins
    1.27 +#include "RegistryData.h"
    1.28 +#include "DefaultResolver.h"
    1.29 +#include "EComResolverParams.h"
    1.30 +#include "DriveInfo.h"
    1.31 +#include "RegistryResolveTransaction.h"
    1.32 +
    1.33 +LOCAL_D RTest test(_L("t_defaultresolver.exe"));
    1.34 +
    1.35 +/**
    1.36 +@SYMTestCaseID          SYSLIB-ECOM-CT-0700
    1.37 +@SYMTestCaseDesc	    Tests for defect number DEF043452
    1.38 +						Tests for memory leak in ecom server
    1.39 +@SYMTestPriority 	    High
    1.40 +@SYMTestActions  	    Simulates a request to list implementation of unknown interface
    1.41 +						Checks for any memory leak in the CDefaultResolver class
    1.42 +@SYMTestExpectedResults The test must not fail.
    1.43 +@SYMREQ                 REQ0000
    1.44 +*/
    1.45 +LOCAL_C void DoTestsL()
    1.46 +	{
    1.47 +	__UHEAP_MARK;
    1.48 +
    1.49 +	CRegistryData* rd=NULL;
    1.50 +	/** CRegistryResolveTransaction */
    1.51 + 	CRegistryResolveTransaction* registryResolveTransaction = NULL;
    1.52 +	CDefaultResolver* dr=NULL;
    1.53 +
    1.54 +	RFs TheFs;
    1.55 +
    1.56 +	RImplInfoArray* ifArray=new(ELeave) RImplInfoArray;
    1.57 +
    1.58 +	TEComResolverParams trp;
    1.59 +
    1.60 +	//Connecting to file server
    1.61 +	TInt error=TheFs.Connect();
    1.62 +	test(error==KErrNone);
    1.63 +
    1.64 +	rd=CRegistryData::NewL(TheFs);
    1.65 + 	// Set up client request and extended interfaces
    1.66 +	TClientRequest clientReq;
    1.67 +	RArray<TUid> extendedInterfaces;
    1.68 +	CleanupClosePushL(extendedInterfaces);
    1.69 +	// construct the registry resolve transaction object here
    1.70 +	TBool capability= ETrue;
    1.71 + 	registryResolveTransaction = CRegistryResolveTransaction::NewL(*rd,extendedInterfaces,clientReq,capability);
    1.72 + 	CleanupStack::PushL(registryResolveTransaction);
    1.73 +
    1.74 +	dr=CDefaultResolver::NewL(*registryResolveTransaction);
    1.75 +
    1.76 +	//Passing an unknown interface uid
    1.77 +	TUid ifUid = {0x10009DC3};
    1.78 +
    1.79 +	const TInt KNoOfFailure=2;
    1.80 +	//Simulating a request to list implementation of unknown interface
    1.81 +	//with no memory leak in the CDefaultResolver class
    1.82 +	for (TInt i=0;i<KNoOfFailure;i++)
    1.83 +		{
    1.84 +		TRAPD(err,ifArray=dr->ListAllL(ifUid,trp));
    1.85 +		test(err==KEComErrNoInterfaceIdentified);
    1.86 +		test(ifArray->Count()==0);
    1.87 +		}
    1.88 +
    1.89 +	CleanupStack::PopAndDestroy(registryResolveTransaction);
    1.90 +	CleanupStack::PopAndDestroy(&extendedInterfaces);
    1.91 +
    1.92 +	delete ifArray;
    1.93 +	delete dr;
    1.94 +	delete rd;
    1.95 +
    1.96 +	// TheFs.Close() is moved here because CRegistryData will
    1.97 +	// use the file server session to close the RFileReadStream.
    1.98 +	TheFs.Close();
    1.99 +
   1.100 +	__UHEAP_MARKEND;
   1.101 +
   1.102 +	}
   1.103 +
   1.104 +
   1.105 +
   1.106 +GLDEF_C TInt E32Main()
   1.107 +	{
   1.108 +	__UHEAP_MARK;
   1.109 +	test.Title();
   1.110 +	test.Start(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-0700 T_DEFAULTRESOLVER tests. "));
   1.111 +
   1.112 +	// get clean-up stack
   1.113 +	CTrapCleanup* cleanup = CTrapCleanup::New();
   1.114 +
   1.115 +	//install the scheduler
   1.116 +	CActiveScheduler* scheduler = new(ELeave)CActiveScheduler;
   1.117 +	CActiveScheduler::Install(scheduler);
   1.118 +
   1.119 +	TRAPD(err,DoTestsL());
   1.120 +	test(err==KErrNone);
   1.121 +	delete scheduler;
   1.122 +	delete cleanup;
   1.123 +
   1.124 +	test.End();
   1.125 +	test.Close();
   1.126 +
   1.127 +	__UHEAP_MARKEND;
   1.128 +	return(0);
   1.129 +	}