os/ossrv/lowlevellibsandfws/pluginfw/Framework/ValidateRegistryTest/t_validateRegistry.cpp
Update contrib.
1 // Copyright (c) 2005-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 // t_validateRegistrty.cpp
15 // This file contains the code to test the feature of validate registry for ECom when only a
16 // RSC file is removed. It is for DEF073338: ECom Incorrectly Validates Registry using DLL Existence
24 #include "../EcomTestUtils/EcomTestUtils.h"
26 #include <ecom/ecom.h>
27 #include "EComUidCodes.h"
28 #include "Interface.h" // interface to Plugins
29 #define UNUSED_VAR(a) a = a
31 // RAM Only RSC and DLL for testing purpose.
32 _LIT(KEComPluginDLL, "Z:\\RAMOnly\\DefectPlugin.dll");
33 _LIT(KEComPluginRSC, "Z:\\RAMOnly\\DefectPlugin.rsc");
35 _LIT(KEComPluginDLLOnC, "C:\\sys\\bin\\DefectPlugin.dll");
36 _LIT(KEComPluginRSCOnC, "C:\\Resource\\Plugins\\DefectPlugin.rsc");
37 // This Rsc file is just used to trigger a ECom rediscovery.
38 _LIT(KEComInvalidRscOnZ, "z:\\RAMOnly\\InvalidSIDPlugin.rsc");
39 _LIT(KEComInvalidRscOnC, "c:\\resource\\plugins\\InvalidSIDPlugin.rsc");
41 const TInt KOneSecond = 1000000;
43 LOCAL_D RTest test(_L("t_validateRegistry.exe"));
46 Kill Ecom Server for testing purposes
48 static void KillEComServerL()
50 //Need to ensure that the EComServer process is killed before even starting this test by using
51 //the EComTestUtils library
52 _LIT(KEComServerProcessName,"ecomserver");
53 TRAPD(error, EComTestUtils::KillProcessL(KEComServerProcessName));
58 Copies the Plugins to specific folder for testing purpose
60 LOCAL_C void CopyPlugin()
62 test.Printf(_L("\nCopying plugins into C drive... "));
64 TRAP(err, EComTestUtils::FileManCopyFileL(KEComPluginDLL, KEComPluginDLLOnC));
66 TRAP(err, EComTestUtils::FileManCopyFileL(KEComPluginRSC, KEComPluginRSCOnC));
68 // Give ECOM a chance to discover new plugins.
69 // Otherwise ListImplementationsL could fail to find requested implementations.
70 User::After(KOneSecond * 3);
74 Deletes Plugin from the RAM for cleanup purpose
76 LOCAL_C void DeletePlugin()
78 test.Printf(_L("\nRemoving plugins to clean environment... "));
80 TRAP(err, EComTestUtils::FileManDeleteFileL(KEComPluginDLLOnC));
81 test(err==KErrNone || err==KErrNotFound);
82 TRAP(err, EComTestUtils::FileManDeleteFileL(KEComPluginRSCOnC));
83 test(err==KErrNone || err==KErrNotFound);
87 @SYMTestCaseID SYSLIB-ECOM-CT-1489
88 @SYMTestCaseDesc Tests to ensure that only the RSC file is deleted, then the corresponding
89 DLL should be deleted from the registry.
92 @SYMTestActions First kill the ECom Server, then copy the plugin to C drive.
93 Next call REComSession::ListImplementations() to start up ecom server
94 and check the discovery result. delete the plugin RSC file, which
95 triggers ecom rediscovery.
96 Now call REComSession::ListImplementations() and check if the
98 @SYMTestExpectedResults The test must not fail.
102 The following plugin will be used for test and copied to the C drive.
104 Interface UID DLL UID Imp. UID Version DllFile RSCFile
105 ------------------------------------------------------------------------------------------------------------------------------------------
106 0x102797A1 0x102797A0 0x102797A2 1 C:\\sys\\bin\\DefectPlugin.dll C:\\resource\\plugins\\DefectPlugin.RSC
110 LOCAL_C void ValidateRegistryAgainstRscL()
112 test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-1489 "));
114 // before strating the test, kill the EcomServer which is probably running from
115 // the previous tests.
118 // copy the plugin to C drive.
121 TUid interfaceUid={0x102797A1};
122 RImplInfoPtrArray implArray;
123 // normal discovery, ECom should discover the plugin
124 REComSession::ListImplementationsL(interfaceUid, implArray);
126 test(implArray.Count()==1);
127 //Check that the implementation uid returned matched the specs above
128 TUid implUid = implArray[0]->ImplementationUid();
129 TInt version = implArray[0]->Version();
130 TInt drive = implArray[0]->Drive();
132 test(implUid.iUid == 0x102797A2);
136 test(drive == EDriveC);
138 // ECom Server is running.
139 // Delete the plugin RSC file but not the corresponding DLL file, ECom rediscovery is triggered.
140 TRAPD(err, EComTestUtils::FileManDeleteFileL(KEComPluginRSCOnC));
143 // Give ECOM a chance to do the rediscovery.
144 // Otherwise ListImplementationsL could fail.
145 User::After(KOneSecond * 3);
146 REComSession::ListImplementationsL(interfaceUid, implArray);
147 // Since the RSC file is deleted, the corresponding DLL should be deleted
148 // from the ECom registry.
149 test(implArray.Count()==0);
152 implArray.ResetAndDestroy();
153 REComSession::FinalClose();
159 @SYMTestCaseID SYSLIB-ECOM-CT-1490
160 @SYMTestCaseDesc Tests to ensure that if the DLL file is deleted and trigger a ECom rediscovery, then the corresponding
161 DLL should be deleted from the registry.
163 @SYMTestPriority High
164 @SYMTestActions First kill the ECom Server, then copy the plugin to C drive.
165 Next call REComSession::ListImplementations() to start up ecom server
166 and check the discovery result. delete the plugin DLL file, and copy a RSC file to
167 c:\resource\plugins\,which triggers ecom rediscovery.
168 Now call REComSession::ListImplementations() and check if the
170 @SYMTestExpectedResults The test must not fail.
174 The following plugin will be used for test and copied to the C drive.
176 Interface UID DLL UID Imp. UID Version DllFile RSCFile
177 ------------------------------------------------------------------------------------------------------------------------------------------
178 0x102797A1 0x102797A0 0x102797A2 1 C:\\sys\\bin\\DefectPlugin.dll C:\\resource\\plugins\\DefectPlugin.RSC
181 LOCAL_C void ValidateRegistryAgainstDllL()
183 test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-1490 "));
185 // before strating the test, kill the EcomServer which is probably running from
186 // the previous tests.
188 // copy the plugin to C drive.
191 TUid interfaceUid={0x102797A1};
192 RImplInfoPtrArray implArray;
193 // normal discovery, ECom should discover the plugin
194 REComSession::ListImplementationsL(interfaceUid, implArray);
196 test(implArray.Count()==1);
197 //Check that the implementation uid returned matched the specs above
198 TUid implUid = implArray[0]->ImplementationUid();
199 TInt version = implArray[0]->Version();
200 TInt drive = implArray[0]->Drive();
202 test(implUid.iUid == 0x102797A2);
206 test(drive == EDriveC);
208 // ECom Server is running.
209 // delete the plugin DLL file not the RSC file, ECom rediscovery is NOT triggered.
210 TRAPD(err, EComTestUtils::FileManDeleteFileL(KEComPluginDLLOnC));
213 // copy a RSC file to C:\resource\plugin\ to cause a ECom rediscovery.
214 TRAP(err, EComTestUtils::FileManCopyFileL(KEComInvalidRscOnZ, KEComInvalidRscOnC));
216 // Give ECOM a chance to do the rediscovery.
217 // Otherwise ListImplementationsL could fail.
218 User::After(KOneSecond * 3);
220 REComSession::ListImplementationsL(interfaceUid, implArray);
221 // Since the DLL file is deleted, the corresponding DLL should be deleted
222 // from the ECom registry.
223 test(implArray.Count()==0);
226 implArray.ResetAndDestroy();
227 REComSession::FinalClose();
232 typedef void (*ClassFuncPtrL) (void);
235 Wrapper function to call all test functions
237 @param testFuncL pointer to test function
238 @param aTestDesc test function name
240 LOCAL_C void DoBasicTestL(ClassFuncPtrL testFuncL, const TDesC& aTestDesc)
242 test.Next(aTestDesc);
245 // find out the number of open handles
246 TInt startProcessHandleCount;
247 TInt startThreadHandleCount;
248 RThread().HandleCount(startProcessHandleCount, startThreadHandleCount);
250 //Call the test function
253 // check that no handles have leaked
254 TInt endProcessHandleCount;
255 TInt endThreadHandleCount;
256 RThread().HandleCount(endProcessHandleCount, endThreadHandleCount);
258 test(startThreadHandleCount == endThreadHandleCount);
264 LOCAL_C void DoTestsL()
266 //don't change the order of the tests!
269 DoBasicTestL(&ValidateRegistryAgainstRscL, _L("ValidateRegistryAgainstRscL"));
270 DoBasicTestL(&ValidateRegistryAgainstDllL, _L("ValidateRegistryAgainstDllL"));
275 GLDEF_C TInt E32Main()
280 test.Start(_L("Validate Registry Tests."));
282 CTrapCleanup* cleanup = CTrapCleanup::New();
283 CActiveScheduler* scheduler = new(ELeave)CActiveScheduler;
284 CActiveScheduler::Install(scheduler);
286 TRAPD(err,DoTestsL());
291 REComSession::FinalClose();
296 TRAPD(error,EComTestUtils::FileManDeleteFileL(KEComInvalidRscOnC));