os/ossrv/lowlevellibsandfws/pluginfw/Framework/DefaultResolverTest/t_defaultresolver.cpp
Update contrib.
1 // Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // test for DEF043452 Memory leak in ecomserver
15 // This file contains test for DEF043452 Memory leak in ecomserver
23 #include "Interface.h" // interface to Plugins
24 #include "RegistryData.h"
25 #include "DefaultResolver.h"
26 #include "EComResolverParams.h"
27 #include "DriveInfo.h"
28 #include "RegistryResolveTransaction.h"
30 LOCAL_D RTest test(_L("t_defaultresolver.exe"));
33 @SYMTestCaseID SYSLIB-ECOM-CT-0700
34 @SYMTestCaseDesc Tests for defect number DEF043452
35 Tests for memory leak in ecom server
37 @SYMTestActions Simulates a request to list implementation of unknown interface
38 Checks for any memory leak in the CDefaultResolver class
39 @SYMTestExpectedResults The test must not fail.
42 LOCAL_C void DoTestsL()
46 CRegistryData* rd=NULL;
47 /** CRegistryResolveTransaction */
48 CRegistryResolveTransaction* registryResolveTransaction = NULL;
49 CDefaultResolver* dr=NULL;
53 RImplInfoArray* ifArray=new(ELeave) RImplInfoArray;
55 TEComResolverParams trp;
57 //Connecting to file server
58 TInt error=TheFs.Connect();
59 test(error==KErrNone);
61 rd=CRegistryData::NewL(TheFs);
62 // Set up client request and extended interfaces
63 TClientRequest clientReq;
64 RArray<TUid> extendedInterfaces;
65 CleanupClosePushL(extendedInterfaces);
66 // construct the registry resolve transaction object here
67 TBool capability= ETrue;
68 registryResolveTransaction = CRegistryResolveTransaction::NewL(*rd,extendedInterfaces,clientReq,capability);
69 CleanupStack::PushL(registryResolveTransaction);
71 dr=CDefaultResolver::NewL(*registryResolveTransaction);
73 //Passing an unknown interface uid
74 TUid ifUid = {0x10009DC3};
76 const TInt KNoOfFailure=2;
77 //Simulating a request to list implementation of unknown interface
78 //with no memory leak in the CDefaultResolver class
79 for (TInt i=0;i<KNoOfFailure;i++)
81 TRAPD(err,ifArray=dr->ListAllL(ifUid,trp));
82 test(err==KEComErrNoInterfaceIdentified);
83 test(ifArray->Count()==0);
86 CleanupStack::PopAndDestroy(registryResolveTransaction);
87 CleanupStack::PopAndDestroy(&extendedInterfaces);
93 // TheFs.Close() is moved here because CRegistryData will
94 // use the file server session to close the RFileReadStream.
103 GLDEF_C TInt E32Main()
107 test.Start(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-0700 T_DEFAULTRESOLVER tests. "));
109 // get clean-up stack
110 CTrapCleanup* cleanup = CTrapCleanup::New();
112 //install the scheduler
113 CActiveScheduler* scheduler = new(ELeave)CActiveScheduler;
114 CActiveScheduler::Install(scheduler);
116 TRAPD(err,DoTestsL());