sl@0
|
1 |
// Copyright (c) 2005-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 |
// t_validateRegistrty.cpp
|
sl@0
|
15 |
// This file contains the code to test the feature of validate registry for ECom when only a
|
sl@0
|
16 |
// RSC file is removed. It is for DEF073338: ECom Incorrectly Validates Registry using DLL Existence
|
sl@0
|
17 |
//
|
sl@0
|
18 |
//
|
sl@0
|
19 |
|
sl@0
|
20 |
#include <e32test.h>
|
sl@0
|
21 |
#include <e32panic.h>
|
sl@0
|
22 |
#include <f32file.h>
|
sl@0
|
23 |
#include <bautils.h>
|
sl@0
|
24 |
#include "../EcomTestUtils/EcomTestUtils.h"
|
sl@0
|
25 |
|
sl@0
|
26 |
#include <ecom/ecom.h>
|
sl@0
|
27 |
#include "EComUidCodes.h"
|
sl@0
|
28 |
#include "Interface.h" // interface to Plugins
|
sl@0
|
29 |
#define UNUSED_VAR(a) a = a
|
sl@0
|
30 |
|
sl@0
|
31 |
// RAM Only RSC and DLL for testing purpose.
|
sl@0
|
32 |
_LIT(KEComPluginDLL, "Z:\\RAMOnly\\DefectPlugin.dll");
|
sl@0
|
33 |
_LIT(KEComPluginRSC, "Z:\\RAMOnly\\DefectPlugin.rsc");
|
sl@0
|
34 |
|
sl@0
|
35 |
_LIT(KEComPluginDLLOnC, "C:\\sys\\bin\\DefectPlugin.dll");
|
sl@0
|
36 |
_LIT(KEComPluginRSCOnC, "C:\\Resource\\Plugins\\DefectPlugin.rsc");
|
sl@0
|
37 |
// This Rsc file is just used to trigger a ECom rediscovery.
|
sl@0
|
38 |
_LIT(KEComInvalidRscOnZ, "z:\\RAMOnly\\InvalidSIDPlugin.rsc");
|
sl@0
|
39 |
_LIT(KEComInvalidRscOnC, "c:\\resource\\plugins\\InvalidSIDPlugin.rsc");
|
sl@0
|
40 |
|
sl@0
|
41 |
const TInt KOneSecond = 1000000;
|
sl@0
|
42 |
|
sl@0
|
43 |
LOCAL_D RTest test(_L("t_validateRegistry.exe"));
|
sl@0
|
44 |
|
sl@0
|
45 |
/**
|
sl@0
|
46 |
Kill Ecom Server for testing purposes
|
sl@0
|
47 |
*/
|
sl@0
|
48 |
static void KillEComServerL()
|
sl@0
|
49 |
{
|
sl@0
|
50 |
//Need to ensure that the EComServer process is killed before even starting this test by using
|
sl@0
|
51 |
//the EComTestUtils library
|
sl@0
|
52 |
_LIT(KEComServerProcessName,"ecomserver");
|
sl@0
|
53 |
TRAPD(error, EComTestUtils::KillProcessL(KEComServerProcessName));
|
sl@0
|
54 |
UNUSED_VAR(error);
|
sl@0
|
55 |
}
|
sl@0
|
56 |
|
sl@0
|
57 |
/**
|
sl@0
|
58 |
Copies the Plugins to specific folder for testing purpose
|
sl@0
|
59 |
*/
|
sl@0
|
60 |
LOCAL_C void CopyPlugin()
|
sl@0
|
61 |
{
|
sl@0
|
62 |
test.Printf(_L("\nCopying plugins into C drive... "));
|
sl@0
|
63 |
TInt err=KErrNone;
|
sl@0
|
64 |
TRAP(err, EComTestUtils::FileManCopyFileL(KEComPluginDLL, KEComPluginDLLOnC));
|
sl@0
|
65 |
test(err==KErrNone);
|
sl@0
|
66 |
TRAP(err, EComTestUtils::FileManCopyFileL(KEComPluginRSC, KEComPluginRSCOnC));
|
sl@0
|
67 |
test(err==KErrNone);
|
sl@0
|
68 |
// Give ECOM a chance to discover new plugins.
|
sl@0
|
69 |
// Otherwise ListImplementationsL could fail to find requested implementations.
|
sl@0
|
70 |
User::After(KOneSecond * 3);
|
sl@0
|
71 |
}
|
sl@0
|
72 |
|
sl@0
|
73 |
/**
|
sl@0
|
74 |
Deletes Plugin from the RAM for cleanup purpose
|
sl@0
|
75 |
*/
|
sl@0
|
76 |
LOCAL_C void DeletePlugin()
|
sl@0
|
77 |
{
|
sl@0
|
78 |
test.Printf(_L("\nRemoving plugins to clean environment... "));
|
sl@0
|
79 |
TInt err=KErrNone;
|
sl@0
|
80 |
TRAP(err, EComTestUtils::FileManDeleteFileL(KEComPluginDLLOnC));
|
sl@0
|
81 |
test(err==KErrNone || err==KErrNotFound);
|
sl@0
|
82 |
TRAP(err, EComTestUtils::FileManDeleteFileL(KEComPluginRSCOnC));
|
sl@0
|
83 |
test(err==KErrNone || err==KErrNotFound);
|
sl@0
|
84 |
}
|
sl@0
|
85 |
|
sl@0
|
86 |
/**
|
sl@0
|
87 |
@SYMTestCaseID SYSLIB-ECOM-CT-1489
|
sl@0
|
88 |
@SYMTestCaseDesc Tests to ensure that only the RSC file is deleted, then the corresponding
|
sl@0
|
89 |
DLL should be deleted from the registry.
|
sl@0
|
90 |
|
sl@0
|
91 |
@SYMTestPriority High
|
sl@0
|
92 |
@SYMTestActions First kill the ECom Server, then copy the plugin to C drive.
|
sl@0
|
93 |
Next call REComSession::ListImplementations() to start up ecom server
|
sl@0
|
94 |
and check the discovery result. delete the plugin RSC file, which
|
sl@0
|
95 |
triggers ecom rediscovery.
|
sl@0
|
96 |
Now call REComSession::ListImplementations() and check if the
|
sl@0
|
97 |
plugin is deleted.
|
sl@0
|
98 |
@SYMTestExpectedResults The test must not fail.
|
sl@0
|
99 |
*/
|
sl@0
|
100 |
|
sl@0
|
101 |
/**
|
sl@0
|
102 |
The following plugin will be used for test and copied to the C drive.
|
sl@0
|
103 |
|
sl@0
|
104 |
Interface UID DLL UID Imp. UID Version DllFile RSCFile
|
sl@0
|
105 |
------------------------------------------------------------------------------------------------------------------------------------------
|
sl@0
|
106 |
0x102797A1 0x102797A0 0x102797A2 1 C:\\sys\\bin\\DefectPlugin.dll C:\\resource\\plugins\\DefectPlugin.RSC
|
sl@0
|
107 |
|
sl@0
|
108 |
**/
|
sl@0
|
109 |
|
sl@0
|
110 |
LOCAL_C void ValidateRegistryAgainstRscL()
|
sl@0
|
111 |
{
|
sl@0
|
112 |
test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-1489 "));
|
sl@0
|
113 |
__UHEAP_MARK;
|
sl@0
|
114 |
// before strating the test, kill the EcomServer which is probably running from
|
sl@0
|
115 |
// the previous tests.
|
sl@0
|
116 |
KillEComServerL();
|
sl@0
|
117 |
DeletePlugin();
|
sl@0
|
118 |
// copy the plugin to C drive.
|
sl@0
|
119 |
CopyPlugin();
|
sl@0
|
120 |
|
sl@0
|
121 |
TUid interfaceUid={0x102797A1};
|
sl@0
|
122 |
RImplInfoPtrArray implArray;
|
sl@0
|
123 |
// normal discovery, ECom should discover the plugin
|
sl@0
|
124 |
REComSession::ListImplementationsL(interfaceUid, implArray);
|
sl@0
|
125 |
|
sl@0
|
126 |
test(implArray.Count()==1);
|
sl@0
|
127 |
//Check that the implementation uid returned matched the specs above
|
sl@0
|
128 |
TUid implUid = implArray[0]->ImplementationUid();
|
sl@0
|
129 |
TInt version = implArray[0]->Version();
|
sl@0
|
130 |
TInt drive = implArray[0]->Drive();
|
sl@0
|
131 |
// imp. uid
|
sl@0
|
132 |
test(implUid.iUid == 0x102797A2);
|
sl@0
|
133 |
// version
|
sl@0
|
134 |
test(version == 1);
|
sl@0
|
135 |
// C drive
|
sl@0
|
136 |
test(drive == EDriveC);
|
sl@0
|
137 |
|
sl@0
|
138 |
// ECom Server is running.
|
sl@0
|
139 |
// Delete the plugin RSC file but not the corresponding DLL file, ECom rediscovery is triggered.
|
sl@0
|
140 |
TRAPD(err, EComTestUtils::FileManDeleteFileL(KEComPluginRSCOnC));
|
sl@0
|
141 |
test(err==KErrNone);
|
sl@0
|
142 |
|
sl@0
|
143 |
// Give ECOM a chance to do the rediscovery.
|
sl@0
|
144 |
// Otherwise ListImplementationsL could fail.
|
sl@0
|
145 |
User::After(KOneSecond * 3);
|
sl@0
|
146 |
REComSession::ListImplementationsL(interfaceUid, implArray);
|
sl@0
|
147 |
// Since the RSC file is deleted, the corresponding DLL should be deleted
|
sl@0
|
148 |
// from the ECom registry.
|
sl@0
|
149 |
test(implArray.Count()==0);
|
sl@0
|
150 |
|
sl@0
|
151 |
//clean up
|
sl@0
|
152 |
implArray.ResetAndDestroy();
|
sl@0
|
153 |
REComSession::FinalClose();
|
sl@0
|
154 |
KillEComServerL();
|
sl@0
|
155 |
__UHEAP_MARKEND;
|
sl@0
|
156 |
}
|
sl@0
|
157 |
|
sl@0
|
158 |
/**
|
sl@0
|
159 |
@SYMTestCaseID SYSLIB-ECOM-CT-1490
|
sl@0
|
160 |
@SYMTestCaseDesc Tests to ensure that if the DLL file is deleted and trigger a ECom rediscovery, then the corresponding
|
sl@0
|
161 |
DLL should be deleted from the registry.
|
sl@0
|
162 |
|
sl@0
|
163 |
@SYMTestPriority High
|
sl@0
|
164 |
@SYMTestActions First kill the ECom Server, then copy the plugin to C drive.
|
sl@0
|
165 |
Next call REComSession::ListImplementations() to start up ecom server
|
sl@0
|
166 |
and check the discovery result. delete the plugin DLL file, and copy a RSC file to
|
sl@0
|
167 |
c:\resource\plugins\,which triggers ecom rediscovery.
|
sl@0
|
168 |
Now call REComSession::ListImplementations() and check if the
|
sl@0
|
169 |
plugin is deleted.
|
sl@0
|
170 |
@SYMTestExpectedResults The test must not fail.
|
sl@0
|
171 |
*/
|
sl@0
|
172 |
|
sl@0
|
173 |
/**
|
sl@0
|
174 |
The following plugin will be used for test and copied to the C drive.
|
sl@0
|
175 |
|
sl@0
|
176 |
Interface UID DLL UID Imp. UID Version DllFile RSCFile
|
sl@0
|
177 |
------------------------------------------------------------------------------------------------------------------------------------------
|
sl@0
|
178 |
0x102797A1 0x102797A0 0x102797A2 1 C:\\sys\\bin\\DefectPlugin.dll C:\\resource\\plugins\\DefectPlugin.RSC
|
sl@0
|
179 |
|
sl@0
|
180 |
**/
|
sl@0
|
181 |
LOCAL_C void ValidateRegistryAgainstDllL()
|
sl@0
|
182 |
{
|
sl@0
|
183 |
test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-1490 "));
|
sl@0
|
184 |
__UHEAP_MARK;
|
sl@0
|
185 |
// before strating the test, kill the EcomServer which is probably running from
|
sl@0
|
186 |
// the previous tests.
|
sl@0
|
187 |
KillEComServerL();
|
sl@0
|
188 |
// copy the plugin to C drive.
|
sl@0
|
189 |
CopyPlugin();
|
sl@0
|
190 |
|
sl@0
|
191 |
TUid interfaceUid={0x102797A1};
|
sl@0
|
192 |
RImplInfoPtrArray implArray;
|
sl@0
|
193 |
// normal discovery, ECom should discover the plugin
|
sl@0
|
194 |
REComSession::ListImplementationsL(interfaceUid, implArray);
|
sl@0
|
195 |
|
sl@0
|
196 |
test(implArray.Count()==1);
|
sl@0
|
197 |
//Check that the implementation uid returned matched the specs above
|
sl@0
|
198 |
TUid implUid = implArray[0]->ImplementationUid();
|
sl@0
|
199 |
TInt version = implArray[0]->Version();
|
sl@0
|
200 |
TInt drive = implArray[0]->Drive();
|
sl@0
|
201 |
// imp. uid
|
sl@0
|
202 |
test(implUid.iUid == 0x102797A2);
|
sl@0
|
203 |
// version
|
sl@0
|
204 |
test(version == 1);
|
sl@0
|
205 |
// C drive
|
sl@0
|
206 |
test(drive == EDriveC);
|
sl@0
|
207 |
|
sl@0
|
208 |
// ECom Server is running.
|
sl@0
|
209 |
// delete the plugin DLL file not the RSC file, ECom rediscovery is NOT triggered.
|
sl@0
|
210 |
TRAPD(err, EComTestUtils::FileManDeleteFileL(KEComPluginDLLOnC));
|
sl@0
|
211 |
test(err==KErrNone);
|
sl@0
|
212 |
|
sl@0
|
213 |
// copy a RSC file to C:\resource\plugin\ to cause a ECom rediscovery.
|
sl@0
|
214 |
TRAP(err, EComTestUtils::FileManCopyFileL(KEComInvalidRscOnZ, KEComInvalidRscOnC));
|
sl@0
|
215 |
test(err==KErrNone);
|
sl@0
|
216 |
// Give ECOM a chance to do the rediscovery.
|
sl@0
|
217 |
// Otherwise ListImplementationsL could fail.
|
sl@0
|
218 |
User::After(KOneSecond * 3);
|
sl@0
|
219 |
|
sl@0
|
220 |
REComSession::ListImplementationsL(interfaceUid, implArray);
|
sl@0
|
221 |
// Since the DLL file is deleted, the corresponding DLL should be deleted
|
sl@0
|
222 |
// from the ECom registry.
|
sl@0
|
223 |
test(implArray.Count()==0);
|
sl@0
|
224 |
|
sl@0
|
225 |
//clean up
|
sl@0
|
226 |
implArray.ResetAndDestroy();
|
sl@0
|
227 |
REComSession::FinalClose();
|
sl@0
|
228 |
KillEComServerL();
|
sl@0
|
229 |
__UHEAP_MARKEND;
|
sl@0
|
230 |
}
|
sl@0
|
231 |
|
sl@0
|
232 |
typedef void (*ClassFuncPtrL) (void);
|
sl@0
|
233 |
|
sl@0
|
234 |
/**
|
sl@0
|
235 |
Wrapper function to call all test functions
|
sl@0
|
236 |
|
sl@0
|
237 |
@param testFuncL pointer to test function
|
sl@0
|
238 |
@param aTestDesc test function name
|
sl@0
|
239 |
*/
|
sl@0
|
240 |
LOCAL_C void DoBasicTestL(ClassFuncPtrL testFuncL, const TDesC& aTestDesc)
|
sl@0
|
241 |
{
|
sl@0
|
242 |
test.Next(aTestDesc);
|
sl@0
|
243 |
|
sl@0
|
244 |
__UHEAP_MARK;
|
sl@0
|
245 |
// find out the number of open handles
|
sl@0
|
246 |
TInt startProcessHandleCount;
|
sl@0
|
247 |
TInt startThreadHandleCount;
|
sl@0
|
248 |
RThread().HandleCount(startProcessHandleCount, startThreadHandleCount);
|
sl@0
|
249 |
|
sl@0
|
250 |
//Call the test function
|
sl@0
|
251 |
(*testFuncL)();
|
sl@0
|
252 |
|
sl@0
|
253 |
// check that no handles have leaked
|
sl@0
|
254 |
TInt endProcessHandleCount;
|
sl@0
|
255 |
TInt endThreadHandleCount;
|
sl@0
|
256 |
RThread().HandleCount(endProcessHandleCount, endThreadHandleCount);
|
sl@0
|
257 |
|
sl@0
|
258 |
test(startThreadHandleCount == endThreadHandleCount);
|
sl@0
|
259 |
|
sl@0
|
260 |
__UHEAP_MARKEND;
|
sl@0
|
261 |
}
|
sl@0
|
262 |
|
sl@0
|
263 |
|
sl@0
|
264 |
LOCAL_C void DoTestsL()
|
sl@0
|
265 |
{
|
sl@0
|
266 |
//don't change the order of the tests!
|
sl@0
|
267 |
__UHEAP_MARK;
|
sl@0
|
268 |
// Basic tests
|
sl@0
|
269 |
DoBasicTestL(&ValidateRegistryAgainstRscL, _L("ValidateRegistryAgainstRscL"));
|
sl@0
|
270 |
DoBasicTestL(&ValidateRegistryAgainstDllL, _L("ValidateRegistryAgainstDllL"));
|
sl@0
|
271 |
__UHEAP_MARKEND;
|
sl@0
|
272 |
}
|
sl@0
|
273 |
|
sl@0
|
274 |
|
sl@0
|
275 |
GLDEF_C TInt E32Main()
|
sl@0
|
276 |
{
|
sl@0
|
277 |
__UHEAP_MARK;
|
sl@0
|
278 |
|
sl@0
|
279 |
test.Title();
|
sl@0
|
280 |
test.Start(_L("Validate Registry Tests."));
|
sl@0
|
281 |
|
sl@0
|
282 |
CTrapCleanup* cleanup = CTrapCleanup::New();
|
sl@0
|
283 |
CActiveScheduler* scheduler = new(ELeave)CActiveScheduler;
|
sl@0
|
284 |
CActiveScheduler::Install(scheduler);
|
sl@0
|
285 |
|
sl@0
|
286 |
TRAPD(err,DoTestsL());
|
sl@0
|
287 |
// Cleanup files
|
sl@0
|
288 |
if(err != KErrNone)
|
sl@0
|
289 |
{
|
sl@0
|
290 |
DeletePlugin();
|
sl@0
|
291 |
REComSession::FinalClose();
|
sl@0
|
292 |
}
|
sl@0
|
293 |
|
sl@0
|
294 |
test(err==KErrNone);
|
sl@0
|
295 |
DeletePlugin();
|
sl@0
|
296 |
TRAPD(error,EComTestUtils::FileManDeleteFileL(KEComInvalidRscOnC));
|
sl@0
|
297 |
UNUSED_VAR(error);
|
sl@0
|
298 |
delete scheduler;
|
sl@0
|
299 |
delete cleanup;
|
sl@0
|
300 |
|
sl@0
|
301 |
test.End();
|
sl@0
|
302 |
test.Close();
|
sl@0
|
303 |
|
sl@0
|
304 |
__UHEAP_MARKEND;
|
sl@0
|
305 |
return(0);
|
sl@0
|
306 |
}
|