sl@0
|
1 |
// Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
// All rights reserved.
|
sl@0
|
3 |
// This component and the accompanying materials are made available
|
sl@0
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
sl@0
|
5 |
// which accompanies this distribution, and is available
|
sl@0
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
//
|
sl@0
|
8 |
// Initial Contributors:
|
sl@0
|
9 |
// Nokia Corporation - initial contribution.
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// Contributors:
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// Description:
|
sl@0
|
14 |
// test for DEF043452 Memory leak in ecomserver
|
sl@0
|
15 |
// This file contains test for DEF043452 Memory leak in ecomserver
|
sl@0
|
16 |
//
|
sl@0
|
17 |
//
|
sl@0
|
18 |
|
sl@0
|
19 |
#include <e32test.h>
|
sl@0
|
20 |
#include <f32file.h>
|
sl@0
|
21 |
#include <bautils.h>
|
sl@0
|
22 |
|
sl@0
|
23 |
#include "Interface.h" // interface to Plugins
|
sl@0
|
24 |
#include "RegistryData.h"
|
sl@0
|
25 |
#include "DefaultResolver.h"
|
sl@0
|
26 |
#include "EComResolverParams.h"
|
sl@0
|
27 |
#include "DriveInfo.h"
|
sl@0
|
28 |
#include "RegistryResolveTransaction.h"
|
sl@0
|
29 |
|
sl@0
|
30 |
LOCAL_D RTest test(_L("t_defaultresolver.exe"));
|
sl@0
|
31 |
|
sl@0
|
32 |
/**
|
sl@0
|
33 |
@SYMTestCaseID SYSLIB-ECOM-CT-0700
|
sl@0
|
34 |
@SYMTestCaseDesc Tests for defect number DEF043452
|
sl@0
|
35 |
Tests for memory leak in ecom server
|
sl@0
|
36 |
@SYMTestPriority High
|
sl@0
|
37 |
@SYMTestActions Simulates a request to list implementation of unknown interface
|
sl@0
|
38 |
Checks for any memory leak in the CDefaultResolver class
|
sl@0
|
39 |
@SYMTestExpectedResults The test must not fail.
|
sl@0
|
40 |
@SYMREQ REQ0000
|
sl@0
|
41 |
*/
|
sl@0
|
42 |
LOCAL_C void DoTestsL()
|
sl@0
|
43 |
{
|
sl@0
|
44 |
__UHEAP_MARK;
|
sl@0
|
45 |
|
sl@0
|
46 |
CRegistryData* rd=NULL;
|
sl@0
|
47 |
/** CRegistryResolveTransaction */
|
sl@0
|
48 |
CRegistryResolveTransaction* registryResolveTransaction = NULL;
|
sl@0
|
49 |
CDefaultResolver* dr=NULL;
|
sl@0
|
50 |
|
sl@0
|
51 |
RFs TheFs;
|
sl@0
|
52 |
|
sl@0
|
53 |
RImplInfoArray* ifArray=new(ELeave) RImplInfoArray;
|
sl@0
|
54 |
|
sl@0
|
55 |
TEComResolverParams trp;
|
sl@0
|
56 |
|
sl@0
|
57 |
//Connecting to file server
|
sl@0
|
58 |
TInt error=TheFs.Connect();
|
sl@0
|
59 |
test(error==KErrNone);
|
sl@0
|
60 |
|
sl@0
|
61 |
rd=CRegistryData::NewL(TheFs);
|
sl@0
|
62 |
// Set up client request and extended interfaces
|
sl@0
|
63 |
TClientRequest clientReq;
|
sl@0
|
64 |
RArray<TUid> extendedInterfaces;
|
sl@0
|
65 |
CleanupClosePushL(extendedInterfaces);
|
sl@0
|
66 |
// construct the registry resolve transaction object here
|
sl@0
|
67 |
TBool capability= ETrue;
|
sl@0
|
68 |
registryResolveTransaction = CRegistryResolveTransaction::NewL(*rd,extendedInterfaces,clientReq,capability);
|
sl@0
|
69 |
CleanupStack::PushL(registryResolveTransaction);
|
sl@0
|
70 |
|
sl@0
|
71 |
dr=CDefaultResolver::NewL(*registryResolveTransaction);
|
sl@0
|
72 |
|
sl@0
|
73 |
//Passing an unknown interface uid
|
sl@0
|
74 |
TUid ifUid = {0x10009DC3};
|
sl@0
|
75 |
|
sl@0
|
76 |
const TInt KNoOfFailure=2;
|
sl@0
|
77 |
//Simulating a request to list implementation of unknown interface
|
sl@0
|
78 |
//with no memory leak in the CDefaultResolver class
|
sl@0
|
79 |
for (TInt i=0;i<KNoOfFailure;i++)
|
sl@0
|
80 |
{
|
sl@0
|
81 |
TRAPD(err,ifArray=dr->ListAllL(ifUid,trp));
|
sl@0
|
82 |
test(err==KEComErrNoInterfaceIdentified);
|
sl@0
|
83 |
test(ifArray->Count()==0);
|
sl@0
|
84 |
}
|
sl@0
|
85 |
|
sl@0
|
86 |
CleanupStack::PopAndDestroy(registryResolveTransaction);
|
sl@0
|
87 |
CleanupStack::PopAndDestroy(&extendedInterfaces);
|
sl@0
|
88 |
|
sl@0
|
89 |
delete ifArray;
|
sl@0
|
90 |
delete dr;
|
sl@0
|
91 |
delete rd;
|
sl@0
|
92 |
|
sl@0
|
93 |
// TheFs.Close() is moved here because CRegistryData will
|
sl@0
|
94 |
// use the file server session to close the RFileReadStream.
|
sl@0
|
95 |
TheFs.Close();
|
sl@0
|
96 |
|
sl@0
|
97 |
__UHEAP_MARKEND;
|
sl@0
|
98 |
|
sl@0
|
99 |
}
|
sl@0
|
100 |
|
sl@0
|
101 |
|
sl@0
|
102 |
|
sl@0
|
103 |
GLDEF_C TInt E32Main()
|
sl@0
|
104 |
{
|
sl@0
|
105 |
__UHEAP_MARK;
|
sl@0
|
106 |
test.Title();
|
sl@0
|
107 |
test.Start(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-0700 T_DEFAULTRESOLVER tests. "));
|
sl@0
|
108 |
|
sl@0
|
109 |
// get clean-up stack
|
sl@0
|
110 |
CTrapCleanup* cleanup = CTrapCleanup::New();
|
sl@0
|
111 |
|
sl@0
|
112 |
//install the scheduler
|
sl@0
|
113 |
CActiveScheduler* scheduler = new(ELeave)CActiveScheduler;
|
sl@0
|
114 |
CActiveScheduler::Install(scheduler);
|
sl@0
|
115 |
|
sl@0
|
116 |
TRAPD(err,DoTestsL());
|
sl@0
|
117 |
test(err==KErrNone);
|
sl@0
|
118 |
delete scheduler;
|
sl@0
|
119 |
delete cleanup;
|
sl@0
|
120 |
|
sl@0
|
121 |
test.End();
|
sl@0
|
122 |
test.Close();
|
sl@0
|
123 |
|
sl@0
|
124 |
__UHEAP_MARKEND;
|
sl@0
|
125 |
return(0);
|
sl@0
|
126 |
}
|