sl@0
|
1 |
// Copyright (c) 2004-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 |
// This file contains test classes and their implementations
|
sl@0
|
15 |
// to test production class CRegistryData. Where necessary stubs
|
sl@0
|
16 |
// are implemented to help in writing test harness using RTest.
|
sl@0
|
17 |
// Test can fail if the Registry Index files are corrupted or missing.
|
sl@0
|
18 |
// To solve that problem we need to run some component test harness, which
|
sl@0
|
19 |
// runs by linking against ECom.lib. like t_listimplementation or t_suicide.
|
sl@0
|
20 |
//
|
sl@0
|
21 |
//
|
sl@0
|
22 |
|
sl@0
|
23 |
#include <ecom/ecom.h>
|
sl@0
|
24 |
#include "EComUidCodes.h"
|
sl@0
|
25 |
#include "RegistrarObserver.h"
|
sl@0
|
26 |
#include "RegistryData.h"
|
sl@0
|
27 |
#include "Registrar.h"
|
sl@0
|
28 |
#include "EComResolverParams.h"
|
sl@0
|
29 |
#include "Discoverer.h"
|
sl@0
|
30 |
#include "DiscovererObserver.h"
|
sl@0
|
31 |
#include "DriveInfo.h"
|
sl@0
|
32 |
#include "DowngradePath.h"
|
sl@0
|
33 |
#include "../EcomTestUtils/EcomTestUtils.h"
|
sl@0
|
34 |
#include "RegistryResolveTransaction.h"
|
sl@0
|
35 |
#include "ParseImplementationData.h"
|
sl@0
|
36 |
|
sl@0
|
37 |
#include <ecom/ecompanics.h>
|
sl@0
|
38 |
#include <s32file.h>
|
sl@0
|
39 |
#include <e32test.h>
|
sl@0
|
40 |
#include <f32file.h>
|
sl@0
|
41 |
#include <bautils.h>
|
sl@0
|
42 |
#include <babackup.h>
|
sl@0
|
43 |
#include <hal.h>
|
sl@0
|
44 |
|
sl@0
|
45 |
#define UNUSED_VAR(a) a = a
|
sl@0
|
46 |
|
sl@0
|
47 |
// Used within tests
|
sl@0
|
48 |
const TUid KCExampleInterfaceUid = {0x10009DC0};
|
sl@0
|
49 |
const TUid KCExampleInterfaceImp = {0x10009DC3};
|
sl@0
|
50 |
const TUid KCDummyUid = {0x00000000};
|
sl@0
|
51 |
const TUid KCInvalidUid = {0x10009999};
|
sl@0
|
52 |
|
sl@0
|
53 |
const TInt KOneSecond = 1000000;
|
sl@0
|
54 |
|
sl@0
|
55 |
// Used for suppressing warning in OOM tests
|
sl@0
|
56 |
#define __UNUSED_VAR(var) var = var
|
sl@0
|
57 |
|
sl@0
|
58 |
// Used for OOM test
|
sl@0
|
59 |
#define TEST_OOM_ERR if(err == KErrNoMemory) User::Leave(err)
|
sl@0
|
60 |
|
sl@0
|
61 |
// The implemented structure for the registry data
|
sl@0
|
62 |
typedef CRegistryData::CImplementationData* CImplementationDataPtr;
|
sl@0
|
63 |
typedef RArray<CImplementationDataPtr> RImplDataArray;
|
sl@0
|
64 |
|
sl@0
|
65 |
// Test plugins and corresponding .rsc files that be copied to RAM for testing purpose
|
sl@0
|
66 |
_LIT(KEComExDllOnZ, "Z:\\RAMOnly\\EComExample5.dll");
|
sl@0
|
67 |
|
sl@0
|
68 |
_LIT(KEComExDllOnC, "C:\\sys\\bin\\EComExample5.dll");
|
sl@0
|
69 |
_LIT(KEComRscFileOnC, "C:\\resource\\plugins\\EComExample5.rsc");
|
sl@0
|
70 |
_LIT(KEComRscFileOnZ, "Z:\\RAMOnly\\EComExample5.rsc");
|
sl@0
|
71 |
_LIT(KEComExampleDllOnC, "C:\\sys\\bin\\EComExample.dll");
|
sl@0
|
72 |
_LIT(KEComExampleDllOnZSysBin, "Z:\\sys\\bin\\EComExample.dll");
|
sl@0
|
73 |
_LIT(KEComExample2DllOnC, "C:\\sys\\bin\\EComExample2.dll");
|
sl@0
|
74 |
_LIT(KEComExample3DllOnC, "C:\\sys\\bin\\EComExample3.dll");
|
sl@0
|
75 |
|
sl@0
|
76 |
_LIT(KEComExampleRscOnC, "C:\\resource\\plugins\\EComExample.rsc");
|
sl@0
|
77 |
_LIT(KEComExample2RscOnC, "C:\\resource\\plugins\\EComExample2.rsc");
|
sl@0
|
78 |
_LIT(KEComExample3RscOnC, "C:\\resource\\plugins\\EComExample3.rsc");
|
sl@0
|
79 |
|
sl@0
|
80 |
_LIT(KEComExampleRscOnZ, "Z:\\RAMOnly\\EComExample.rsc");
|
sl@0
|
81 |
_LIT(KEComExample2RscOnZ, "Z:\\RAMOnly\\EComExample2.rsc");
|
sl@0
|
82 |
_LIT(KEComExample3RscOnZ, "Z:\\RAMOnly\\EComExample3.rsc");
|
sl@0
|
83 |
|
sl@0
|
84 |
_LIT(KEComExampleDllOnZ, "Z:\\RAMOnly\\EComExample.dll");
|
sl@0
|
85 |
_LIT(KEComExample2DllOnZ, "Z:\\RAMOnly\\EComExample2.dll");
|
sl@0
|
86 |
_LIT(KEComExample3DllOnZ, "Z:\\RAMOnly\\EComExample3.dll");
|
sl@0
|
87 |
|
sl@0
|
88 |
// These RSC files/DLLs are used to test an RSC file with a SID that does not
|
sl@0
|
89 |
// match it's corresponding DLL. The implementations should not be listed/created.
|
sl@0
|
90 |
_LIT(KEComInvalidDllOnZ, "z:\\RAMOnly\\InvalidSIDPlugin.dll");
|
sl@0
|
91 |
_LIT(KEComInvalidRscOnZ, "z:\\RAMOnly\\InvalidSIDPlugin.rsc");
|
sl@0
|
92 |
_LIT(KEComInvalidDllOnC, "c:\\sys\\bin\\InvalidSIDPlugin.dll");
|
sl@0
|
93 |
_LIT(KEComInvalidRscOnC, "c:\\resource\\plugins\\InvalidSIDPlugin.rsc");
|
sl@0
|
94 |
|
sl@0
|
95 |
// This DLL does not exist, and should fail a security check
|
sl@0
|
96 |
_LIT(KEComMissingDll, "c:\\sys\\bin\\NonExistentDllName.dll");
|
sl@0
|
97 |
|
sl@0
|
98 |
// These RSC files/DLLs are used to test an RSC file that points to a missing DLL
|
sl@0
|
99 |
_LIT(KMissingDllRomRscFile, "z:\\RAMOnly\\EComRomRslvrExampleOnC.rsc");
|
sl@0
|
100 |
_LIT(KMissingDllRamRscFile, "c:\\resource\\plugins\\EComRomRslvrExampleOnC.rsc");
|
sl@0
|
101 |
// When the above RSC file's security check fails, the following implementations should be rolled back to
|
sl@0
|
102 |
// (even though the filenames are EComRomRslvrExampleOnZ they will be copied to and exist on C Drive)
|
sl@0
|
103 |
_LIT(KRollbackForMissingDllRomDllFile, "z:\\RAMOnly\\EComRomRslvrExampleOnZ.dll");
|
sl@0
|
104 |
_LIT(KRollbackForMissingDllRamDllFile, "c:\\sys\\bin\\EComRomRslvrExampleOnZ.dll");
|
sl@0
|
105 |
_LIT(KRollbackForMissingDllRomRscFile, "z:\\RAMOnly\\EComRomRslvrExampleOnZ.rsc");
|
sl@0
|
106 |
_LIT(KRollbackForMissingDllRamRscFile, "c:\\resource\\plugins\\EComRomRslvrExampleOnZ.rsc");
|
sl@0
|
107 |
|
sl@0
|
108 |
//PLUGIN1 DLL with interfaceID: 0x10009E36
|
sl@0
|
109 |
_LIT(KEComExample14DllOnC, "C:\\sys\\bin\\EComExample14.dll");
|
sl@0
|
110 |
_LIT(KEComExample14DllOnZ, "Z:\\RAMOnly\\EComExample14.dll");
|
sl@0
|
111 |
_LIT(KEComExample14RscOnC, "C:\\resource\\plugins\\EComExample14.rsc");
|
sl@0
|
112 |
_LIT(KEComExample14RscOnZ, "Z:\\RAMOnly\\EComExample14.rsc");
|
sl@0
|
113 |
//PLUGIN3 DLL with interfaceID: 0x10009E36, implementation version 2
|
sl@0
|
114 |
_LIT(KEComExample15DllOnC, "C:\\sys\\bin\\EComExample15.dll");
|
sl@0
|
115 |
_LIT(KEComExample15DllOnZ, "Z:\\RAMOnly\\EComExample15.dll");
|
sl@0
|
116 |
_LIT(KEComExample15RscOnC, "C:\\resource\\plugins\\EComExample15.rsc");
|
sl@0
|
117 |
_LIT(KEComExample15RscOnZ, "Z:\\RAMOnly\\EComExample15.rsc");
|
sl@0
|
118 |
//PLUGIN3 DLL with interfaceID: 0x10009E36
|
sl@0
|
119 |
_LIT(KEComExample12DllOnC, "C:\\sys\\bin\\EComExample12.dll");
|
sl@0
|
120 |
_LIT(KEComExample12DllOnZ, "Z:\\RAMOnly\\EComExample12.dll");
|
sl@0
|
121 |
_LIT(KEComExample12RscOnC, "C:\\resource\\plugins\\EComExample12.rsc");
|
sl@0
|
122 |
_LIT(KEComExample12RscOnZ, "Z:\\RAMOnly\\EComExample12.rsc");
|
sl@0
|
123 |
|
sl@0
|
124 |
_LIT(KEComExample10DllOnC, "C:\\sys\\bin\\EComExample10.dll");
|
sl@0
|
125 |
//PLUGIN3 Upgraded
|
sl@0
|
126 |
_LIT(KEcomExample12UpgradedOnC, "C:\\resource\\plugins\\EComExample12Upgraded.rsc");
|
sl@0
|
127 |
_LIT(KEcomExample12UpgradedOnZ, "Z:\\RAMOnly\\EComExample12Upgraded.rsc");
|
sl@0
|
128 |
_LIT(KEcomExample12UpgradedResourceNameOnly, "EComExample12Upgraded.rsc");
|
sl@0
|
129 |
//PLUGIN1 Upgraded to PLUGIN3
|
sl@0
|
130 |
_LIT(KEcomExample14UpgradedOnC, "C:\\resource\\plugins\\EComExample14Upgraded.rsc");
|
sl@0
|
131 |
_LIT(KEcomExample14UpgradedOnZ, "Z:\\RAMOnly\\EComExample14Upgraded.rsc");
|
sl@0
|
132 |
_LIT(KEcomExample14UpgradedResourceNameOnly, "EComExample14Upgraded.rsc");
|
sl@0
|
133 |
//PLUGIN3 Downgraded to PLUGIN1
|
sl@0
|
134 |
_LIT(KEcomExample12DowngradedOnC, "C:\\resource\\plugins\\EComExample12Downgraded.rsc");
|
sl@0
|
135 |
_LIT(KEcomExample12DowngradedOnZ, "Z:\\RAMOnly\\EComExample12Downgraded.rsc");
|
sl@0
|
136 |
_LIT(KEcomExample12DowngradedResourceNameOnly, "EComExample12Downgraded.rsc");
|
sl@0
|
137 |
|
sl@0
|
138 |
_LIT(KDriveC, "C");
|
sl@0
|
139 |
|
sl@0
|
140 |
#ifndef SYMBIAN_DISTINCT_LOCALE_MODEL
|
sl@0
|
141 |
_LIT(KEnglishLocale, "elocl.01");
|
sl@0
|
142 |
_LIT(KEComSpanishLocale, "elocl.04");
|
sl@0
|
143 |
#else
|
sl@0
|
144 |
// refer base/os/kernelhwsrv/kernel/eka/euser/locmapping.cpp
|
sl@0
|
145 |
// Language
|
sl@0
|
146 |
_LIT(KEComEnglishLang,"elocl_lan.001");
|
sl@0
|
147 |
//_LIT(KEComFrenchLang,"elocl_lan.002");
|
sl@0
|
148 |
//_LIT(KEComGermanLang,"elocl_lan.003");
|
sl@0
|
149 |
_LIT(KEComSpanishLang,"elocl_lan.004");
|
sl@0
|
150 |
// Region
|
sl@0
|
151 |
_LIT(KEComEnglishReg,"elocl_reg.826");
|
sl@0
|
152 |
//_LIT(KEComFrenchReg,"elocl_reg.250");
|
sl@0
|
153 |
//_LIT(KEComGermanReg,"elocl_reg.276");
|
sl@0
|
154 |
_LIT(KEComSpanishReg,"elocl_reg.724");
|
sl@0
|
155 |
// Collation
|
sl@0
|
156 |
_LIT(KEComEnglishColl,"elocl_col.001");
|
sl@0
|
157 |
//_LIT(KEComFrenchColl,"elocl_col.002");
|
sl@0
|
158 |
//_LIT(KEComGermanColl,"elocl_col.003");
|
sl@0
|
159 |
_LIT(KEComSpanishColl,"elocl_col.001");
|
sl@0
|
160 |
#endif
|
sl@0
|
161 |
|
sl@0
|
162 |
LOCAL_D CTrapCleanup* TheTrapCleanup=NULL;
|
sl@0
|
163 |
|
sl@0
|
164 |
LOCAL_D CActiveScheduler* TheActiveScheduler=NULL;
|
sl@0
|
165 |
|
sl@0
|
166 |
LOCAL_D RFs TheFs;
|
sl@0
|
167 |
|
sl@0
|
168 |
LOCAL_D RTest TheTest(_L("t_registrydata.exe"));
|
sl@0
|
169 |
|
sl@0
|
170 |
//TPtrC defined which will point to KEComSpiFilePathAndName or KEComSpiFilePathAndNameForNand
|
sl@0
|
171 |
//according to the rom build type
|
sl@0
|
172 |
LOCAL_D TPtrC TheEComSpiFilePathAndNamePtrC;
|
sl@0
|
173 |
|
sl@0
|
174 |
TCapabilitySet dummycaps;
|
sl@0
|
175 |
|
sl@0
|
176 |
LOCAL_C void CopyPluginsL();
|
sl@0
|
177 |
|
sl@0
|
178 |
inline LOCAL_C void DeleteTestPlugin()
|
sl@0
|
179 |
{
|
sl@0
|
180 |
TRAPD(ignoreErr, EComTestUtils::FileManDeleteFileL(KEComExDllOnC));
|
sl@0
|
181 |
TRAP(ignoreErr, EComTestUtils::FileManDeleteFileL(KEComRscFileOnC));
|
sl@0
|
182 |
TRAP(ignoreErr, EComTestUtils::FileManDeleteFileL(KEComExampleDllOnC));
|
sl@0
|
183 |
TRAP(ignoreErr, EComTestUtils::FileManDeleteFileL(KEComExample2DllOnC));
|
sl@0
|
184 |
TRAP(ignoreErr, EComTestUtils::FileManDeleteFileL(KEComExample3DllOnC));
|
sl@0
|
185 |
TRAP(ignoreErr, EComTestUtils::FileManDeleteFileL(KEComExampleRscOnC));
|
sl@0
|
186 |
TRAP(ignoreErr, EComTestUtils::FileManDeleteFileL(KEComExample2RscOnC));
|
sl@0
|
187 |
TRAP(ignoreErr, EComTestUtils::FileManDeleteFileL(KEComExample3RscOnC));
|
sl@0
|
188 |
TRAP(ignoreErr, EComTestUtils::FileManDeleteFileL(KEComInvalidDllOnC));
|
sl@0
|
189 |
TRAP(ignoreErr, EComTestUtils::FileManDeleteFileL(KEComInvalidRscOnC));
|
sl@0
|
190 |
TRAP(ignoreErr, EComTestUtils::FileManDeleteFileL(KMissingDllRamRscFile));
|
sl@0
|
191 |
TRAP(ignoreErr, EComTestUtils::FileManDeleteFileL(KRollbackForMissingDllRamDllFile));
|
sl@0
|
192 |
TRAP(ignoreErr, EComTestUtils::FileManDeleteFileL(KRollbackForMissingDllRamRscFile));
|
sl@0
|
193 |
TRAP(ignoreErr, EComTestUtils::FileManDeleteFileL(KEComExample12DllOnC));
|
sl@0
|
194 |
TRAP(ignoreErr, EComTestUtils::FileManDeleteFileL(KEComExample12RscOnC));
|
sl@0
|
195 |
TRAP(ignoreErr, EComTestUtils::FileManDeleteFileL(KEComExample14DllOnC));
|
sl@0
|
196 |
TRAP(ignoreErr, EComTestUtils::FileManDeleteFileL(KEComExample14RscOnC));
|
sl@0
|
197 |
TRAP(ignoreErr, EComTestUtils::FileManDeleteFileL(KEComExample15DllOnC));
|
sl@0
|
198 |
TRAP(ignoreErr, EComTestUtils::FileManDeleteFileL(KEComExample15RscOnC));
|
sl@0
|
199 |
}
|
sl@0
|
200 |
|
sl@0
|
201 |
//
|
sl@0
|
202 |
//
|
sl@0
|
203 |
//Test macroses and functions
|
sl@0
|
204 |
LOCAL_C void Check(TInt aValue, TInt aLine)
|
sl@0
|
205 |
{
|
sl@0
|
206 |
if(!aValue)
|
sl@0
|
207 |
{
|
sl@0
|
208 |
::DeleteTestPlugin();
|
sl@0
|
209 |
TheTest(EFalse, aLine);
|
sl@0
|
210 |
}
|
sl@0
|
211 |
}
|
sl@0
|
212 |
LOCAL_C void Check(TInt aValue, TInt aExpected, TInt aLine)
|
sl@0
|
213 |
{
|
sl@0
|
214 |
if(aValue != aExpected)
|
sl@0
|
215 |
{
|
sl@0
|
216 |
RDebug::Print(_L("*** Expected error: %d, got: %d\r\n"), aExpected, aValue);
|
sl@0
|
217 |
::DeleteTestPlugin();
|
sl@0
|
218 |
TheTest(EFalse, aLine);
|
sl@0
|
219 |
}
|
sl@0
|
220 |
}
|
sl@0
|
221 |
/**
|
sl@0
|
222 |
Sets up the system-wide locale and language downgrade path.
|
sl@0
|
223 |
*/
|
sl@0
|
224 |
LOCAL_C void SetLanguageL(const TLanguage aLang[3])
|
sl@0
|
225 |
{
|
sl@0
|
226 |
TLocale locale;
|
sl@0
|
227 |
locale.SetLanguageDowngrade(0, aLang[0]);
|
sl@0
|
228 |
locale.SetLanguageDowngrade(1, aLang[1]);
|
sl@0
|
229 |
locale.SetLanguageDowngrade(2, aLang[2]);
|
sl@0
|
230 |
User::LeaveIfError(locale.Set());
|
sl@0
|
231 |
}
|
sl@0
|
232 |
|
sl@0
|
233 |
#define TEST(arg) ::Check((arg), __LINE__)
|
sl@0
|
234 |
#define TEST2(aValue, aExpected) ::Check(aValue, aExpected, __LINE__)
|
sl@0
|
235 |
//
|
sl@0
|
236 |
//
|
sl@0
|
237 |
|
sl@0
|
238 |
/**
|
sl@0
|
239 |
This class allows us to provide stub behavior to instantiate CRegistrar
|
sl@0
|
240 |
*/
|
sl@0
|
241 |
class TRegistrarObserverStub : public MRegistrarObserver
|
sl@0
|
242 |
{
|
sl@0
|
243 |
public:
|
sl@0
|
244 |
/**
|
sl@0
|
245 |
The overloaded method from the MRegistrarObserver class Used for firing
|
sl@0
|
246 |
notifications to the client sessions that the underlying registry data has changed.
|
sl@0
|
247 |
@post The CEComServer has notified all its client sessions
|
sl@0
|
248 |
registered for notifications that the data changed
|
sl@0
|
249 |
*/
|
sl@0
|
250 |
void Notification(TInt aNotificationCode)
|
sl@0
|
251 |
{
|
sl@0
|
252 |
RDebug::Print(_L("TRegistrarObserverStub called with notification code %d.\n"), aNotificationCode);
|
sl@0
|
253 |
};
|
sl@0
|
254 |
};
|
sl@0
|
255 |
|
sl@0
|
256 |
/**
|
sl@0
|
257 |
This friend class allows us to access private and protected members of production
|
sl@0
|
258 |
code class CDiscoverer.
|
sl@0
|
259 |
*/
|
sl@0
|
260 |
class TDiscoverer_StateAccessor
|
sl@0
|
261 |
{
|
sl@0
|
262 |
public:
|
sl@0
|
263 |
TDiscoverer_StateAccessor() {};
|
sl@0
|
264 |
void ScanDirectoryL(CDiscoverer& aDiscoverer)
|
sl@0
|
265 |
{
|
sl@0
|
266 |
aDiscoverer.ProcessSSAEventL(EStartupStateNonCritical);
|
sl@0
|
267 |
}
|
sl@0
|
268 |
void ScanDriveL(CDiscoverer& aDiscoverer, TDriveUnit& aDrive)
|
sl@0
|
269 |
{
|
sl@0
|
270 |
TBool isRO = aDiscoverer.iCachedDriveInfo->DriveIsReadOnlyInternalL(aDrive);
|
sl@0
|
271 |
aDiscoverer.iDirScanner->ScanDriveL(aDrive, isRO);
|
sl@0
|
272 |
}
|
sl@0
|
273 |
};
|
sl@0
|
274 |
|
sl@0
|
275 |
/**
|
sl@0
|
276 |
This friend class allows us to access private and protected members of production
|
sl@0
|
277 |
code class CRegistrar.
|
sl@0
|
278 |
*/
|
sl@0
|
279 |
class TRegistrar_StateAccessor
|
sl@0
|
280 |
{
|
sl@0
|
281 |
public:
|
sl@0
|
282 |
TRegistrar_StateAccessor() {};
|
sl@0
|
283 |
void ScanDirectoryL(CRegistrar& aRegistrar)
|
sl@0
|
284 |
{
|
sl@0
|
285 |
TDiscoverer_StateAccessor discovererStateAccessor;
|
sl@0
|
286 |
discovererStateAccessor.ScanDirectoryL(*(aRegistrar.iDiscoverer));
|
sl@0
|
287 |
}
|
sl@0
|
288 |
void ScanDriveL(CRegistrar& aRegistrar, TDriveUnit& aDrive)
|
sl@0
|
289 |
{
|
sl@0
|
290 |
TDiscoverer_StateAccessor discovererStateAccessor;
|
sl@0
|
291 |
discovererStateAccessor.ScanDriveL(*(aRegistrar.iDiscoverer), aDrive);
|
sl@0
|
292 |
}
|
sl@0
|
293 |
void ParseL(CRegistrar& aRegistrar, CPluginBase*& aEntry,CRegistryData::CDllData& aDll);
|
sl@0
|
294 |
};
|
sl@0
|
295 |
|
sl@0
|
296 |
void TRegistrar_StateAccessor::ParseL(CRegistrar& aRegistrar, CPluginBase*& aEntry,CRegistryData::CDllData& aDll)
|
sl@0
|
297 |
{
|
sl@0
|
298 |
aRegistrar.ParseL(aEntry,aDll);
|
sl@0
|
299 |
}
|
sl@0
|
300 |
|
sl@0
|
301 |
|
sl@0
|
302 |
/**
|
sl@0
|
303 |
This friend class allows us to access private and protected members of production
|
sl@0
|
304 |
code class CRegistryData.
|
sl@0
|
305 |
*/
|
sl@0
|
306 |
class TRegistryData_StateAccessor
|
sl@0
|
307 |
{
|
sl@0
|
308 |
public:
|
sl@0
|
309 |
TBool IsIndexValid(CRegistryData& aRegData);
|
sl@0
|
310 |
|
sl@0
|
311 |
TInt IndexedFind(CRegistryData& aRegData, const TUid& aImplementationUid);
|
sl@0
|
312 |
|
sl@0
|
313 |
TBool IsRegisteredDriveL(CRegistryData& aRegData, TDriveUnit aDriveUnit);
|
sl@0
|
314 |
|
sl@0
|
315 |
TInt RegistrationsCount(CRegistryData& aRegData);
|
sl@0
|
316 |
|
sl@0
|
317 |
TInt ImplementationsCount(CRegistryData& aRegData);
|
sl@0
|
318 |
|
sl@0
|
319 |
void SetRegistryChanged(CRegistryData& aRegData, TBool aChanged, TDriveUnit aDrive);
|
sl@0
|
320 |
|
sl@0
|
321 |
void ClearImplementationIndexList(CRegistryData& aRegData);
|
sl@0
|
322 |
|
sl@0
|
323 |
void ClearRegistrations(CRegistryData& aRegData);
|
sl@0
|
324 |
|
sl@0
|
325 |
void ResetAndDestroy(CRegistryData& aRegData);
|
sl@0
|
326 |
|
sl@0
|
327 |
void ConstructL(CRegistryData& aRegData);
|
sl@0
|
328 |
|
sl@0
|
329 |
TBool FindAnImplementation(CRegistryData& aRegData, TUid& aInterfaceUid, TDriveUnit& aDrive);
|
sl@0
|
330 |
|
sl@0
|
331 |
void GetImplementationInfoL(CRegistryData& aRegData, TUid& aInterfaceUid, RImplDataArray& aImplementationInfo);
|
sl@0
|
332 |
|
sl@0
|
333 |
void AppendDriveDataL(CRegistryData& aRegData, CRegistryData::CDriveData* aDriveData);
|
sl@0
|
334 |
|
sl@0
|
335 |
TInt FindImplementation(CRegistryData& aRegData, const TUid aImplUid, const TUid aInterfaceUid,
|
sl@0
|
336 |
CRegistryData::CImplementationData*& aImplData) const;
|
sl@0
|
337 |
static void ResetStaticDriveData();
|
sl@0
|
338 |
TInt GetDllListL(CRegistryData& aRegistryData, TDriveUnit aDriveUnit, TDll*& aDllList);
|
sl@0
|
339 |
TBool IsLanguageInitChanged(CRegistryData& aRegistryData);
|
sl@0
|
340 |
TInt DrivesRemoved(CRegistryData& aRegistryData);
|
sl@0
|
341 |
};
|
sl@0
|
342 |
|
sl@0
|
343 |
/**
|
sl@0
|
344 |
Constructs the registry
|
sl@0
|
345 |
|
sl@0
|
346 |
*/
|
sl@0
|
347 |
void TRegistryData_StateAccessor::ConstructL(CRegistryData& aRegData)
|
sl@0
|
348 |
{
|
sl@0
|
349 |
aRegData.ConstructL();
|
sl@0
|
350 |
}
|
sl@0
|
351 |
|
sl@0
|
352 |
/**
|
sl@0
|
353 |
Resets the registry
|
sl@0
|
354 |
|
sl@0
|
355 |
*/
|
sl@0
|
356 |
void TRegistryData_StateAccessor::ResetAndDestroy(CRegistryData& aRegData)
|
sl@0
|
357 |
{
|
sl@0
|
358 |
aRegData.iRegistrations->ResetAndDestroy();
|
sl@0
|
359 |
delete aRegData.iRegistrations;
|
sl@0
|
360 |
}
|
sl@0
|
361 |
|
sl@0
|
362 |
/**
|
sl@0
|
363 |
Clears the Implementations
|
sl@0
|
364 |
@param aRegData RegistryData object under test
|
sl@0
|
365 |
*/
|
sl@0
|
366 |
void TRegistryData_StateAccessor::ClearImplementationIndexList(CRegistryData& aRegData)
|
sl@0
|
367 |
{
|
sl@0
|
368 |
for(TInt index = 0; index < aRegData.iInterfaceImplIndex.Count(); ++index)
|
sl@0
|
369 |
{
|
sl@0
|
370 |
aRegData.iInterfaceImplIndex[index].Reset();
|
sl@0
|
371 |
}
|
sl@0
|
372 |
aRegData.iInterfaceImplIndex.Reset();
|
sl@0
|
373 |
aRegData.iImplIndex.Reset();
|
sl@0
|
374 |
}
|
sl@0
|
375 |
|
sl@0
|
376 |
|
sl@0
|
377 |
/**
|
sl@0
|
378 |
Clears the Registrations
|
sl@0
|
379 |
@param aRegData RegistryData object under test
|
sl@0
|
380 |
*/
|
sl@0
|
381 |
void TRegistryData_StateAccessor::ClearRegistrations(CRegistryData& aRegData)
|
sl@0
|
382 |
{
|
sl@0
|
383 |
if(aRegData.iRegistrations)
|
sl@0
|
384 |
{
|
sl@0
|
385 |
aRegData.iRegistrations->ResetAndDestroy();
|
sl@0
|
386 |
}
|
sl@0
|
387 |
}
|
sl@0
|
388 |
|
sl@0
|
389 |
/**
|
sl@0
|
390 |
Indicates whether the registry index is currently valid. The
|
sl@0
|
391 |
index will not be valid if discoveries are currently taking place.
|
sl@0
|
392 |
@param aRegData RegistryData object under test
|
sl@0
|
393 |
@return ETrue if index is valid EFalse otherwise
|
sl@0
|
394 |
*/
|
sl@0
|
395 |
TBool TRegistryData_StateAccessor::IsIndexValid(CRegistryData& aRegData)
|
sl@0
|
396 |
{
|
sl@0
|
397 |
return aRegData.IndexValid();
|
sl@0
|
398 |
}
|
sl@0
|
399 |
|
sl@0
|
400 |
/**
|
sl@0
|
401 |
Tries to find the index entry of the passed implementation uid
|
sl@0
|
402 |
@param aRegData RegistryData object under test
|
sl@0
|
403 |
@param aImplementationUid the implementation Uid of the implementation to locate
|
sl@0
|
404 |
@return Index of the implementation, KErrNotFound otherwise
|
sl@0
|
405 |
*/
|
sl@0
|
406 |
TInt TRegistryData_StateAccessor::IndexedFind(CRegistryData& aRegData,
|
sl@0
|
407 |
const TUid& aImplementationUid)
|
sl@0
|
408 |
{
|
sl@0
|
409 |
return aRegData.IndexedFind(aImplementationUid);
|
sl@0
|
410 |
}
|
sl@0
|
411 |
|
sl@0
|
412 |
/**
|
sl@0
|
413 |
Checks if the drive is already registered
|
sl@0
|
414 |
@param aRegData RegistryData object under test
|
sl@0
|
415 |
@param aDriveUnit the drive on which plugins are registered
|
sl@0
|
416 |
@return ETrue if drive is registered, EFalse otherwise
|
sl@0
|
417 |
*/
|
sl@0
|
418 |
TBool TRegistryData_StateAccessor::IsRegisteredDriveL(CRegistryData& aRegData,
|
sl@0
|
419 |
TDriveUnit aDriveUnit)
|
sl@0
|
420 |
{
|
sl@0
|
421 |
TInt driveIndex = KErrNotFound;
|
sl@0
|
422 |
CRegistryData::CDriveData* aDriveData=NULL;
|
sl@0
|
423 |
driveIndex = aRegData.FindDriveL(aDriveUnit, aDriveData);
|
sl@0
|
424 |
// Return True if the driveindex has some valid value i.e. not KErrNotFound
|
sl@0
|
425 |
return (driveIndex != KErrNotFound);
|
sl@0
|
426 |
}
|
sl@0
|
427 |
|
sl@0
|
428 |
/**
|
sl@0
|
429 |
Obtains count of plugin registrations
|
sl@0
|
430 |
@param aRegData RegistryData object under test
|
sl@0
|
431 |
@return Number of registrations
|
sl@0
|
432 |
*/
|
sl@0
|
433 |
TInt TRegistryData_StateAccessor::RegistrationsCount(CRegistryData& aRegData)
|
sl@0
|
434 |
{
|
sl@0
|
435 |
return aRegData.iRegistrations->Count();
|
sl@0
|
436 |
}
|
sl@0
|
437 |
|
sl@0
|
438 |
/**
|
sl@0
|
439 |
Obtains count of plugin registrations
|
sl@0
|
440 |
@param aRegData RegistryData object under test
|
sl@0
|
441 |
@return Number of registrations
|
sl@0
|
442 |
*/
|
sl@0
|
443 |
TInt TRegistryData_StateAccessor::ImplementationsCount(CRegistryData& aRegData)
|
sl@0
|
444 |
{
|
sl@0
|
445 |
return aRegData.iInterfaceImplIndex.Count();
|
sl@0
|
446 |
}
|
sl@0
|
447 |
|
sl@0
|
448 |
/**
|
sl@0
|
449 |
Sets Registry Changed flag to the given value
|
sl@0
|
450 |
@param aRegData RegistryData object under test
|
sl@0
|
451 |
@param aChanged True if the registry is changed
|
sl@0
|
452 |
@param aDrive the drive under test
|
sl@0
|
453 |
*/
|
sl@0
|
454 |
void TRegistryData_StateAccessor::SetRegistryChanged(CRegistryData& aRegData, TBool aChanged, TDriveUnit aDrive)
|
sl@0
|
455 |
{
|
sl@0
|
456 |
for(TInt i = 0; i <aRegData.iRegistrations->Count(); i++)
|
sl@0
|
457 |
{
|
sl@0
|
458 |
if ((*aRegData.iRegistrations)[i]->iDrive == aDrive)
|
sl@0
|
459 |
{
|
sl@0
|
460 |
(*aRegData.iRegistrations)[i]->iRegistryChanged = aChanged;
|
sl@0
|
461 |
}
|
sl@0
|
462 |
}
|
sl@0
|
463 |
}
|
sl@0
|
464 |
|
sl@0
|
465 |
/**
|
sl@0
|
466 |
See if an implementation is discovered on the questioned drive
|
sl@0
|
467 |
@param aRegData RegistryData object under test
|
sl@0
|
468 |
@param aInterfaceUid Interface UID for the implementation
|
sl@0
|
469 |
@param aDrive Drive to search the implementation on
|
sl@0
|
470 |
@return ETrue if an implementation exists
|
sl@0
|
471 |
*/
|
sl@0
|
472 |
TBool TRegistryData_StateAccessor::FindAnImplementation(CRegistryData& aRegData, TUid& aInterfaceUid, TDriveUnit& aDrive)
|
sl@0
|
473 |
{
|
sl@0
|
474 |
const TInt driveCount = aRegData.iRegistrations->Count();
|
sl@0
|
475 |
for(TInt driveIndex = 0; driveIndex < driveCount; ++driveIndex)
|
sl@0
|
476 |
{
|
sl@0
|
477 |
CRegistryData::CDriveData* driveData = (*aRegData.iRegistrations)[driveIndex];
|
sl@0
|
478 |
if(driveData->iDrive == aDrive)
|
sl@0
|
479 |
{
|
sl@0
|
480 |
TDll* dllList = (*aRegData.iRegistrations)[driveIndex]->iDllList;
|
sl@0
|
481 |
const TInt dllCount = dllList->Count();
|
sl@0
|
482 |
for(TInt dllIndex = 0; dllIndex < dllCount;++dllIndex)
|
sl@0
|
483 |
{
|
sl@0
|
484 |
// For each dll structure
|
sl@0
|
485 |
RInterfaceList* interfaceList = (*dllList)[dllIndex]->iIfList;
|
sl@0
|
486 |
const TInt ifCount = interfaceList->Count();
|
sl@0
|
487 |
for(TInt ifIndex = 0; ifIndex < ifCount; ++ifIndex)
|
sl@0
|
488 |
{
|
sl@0
|
489 |
CRegistryData::TInterfaceIndex index;
|
sl@0
|
490 |
|
sl@0
|
491 |
// For each interface structure
|
sl@0
|
492 |
TUid interfaceUid = (*interfaceList)[ifIndex]->iInterfaceUid;
|
sl@0
|
493 |
if(interfaceUid == aInterfaceUid)
|
sl@0
|
494 |
{
|
sl@0
|
495 |
return ETrue;
|
sl@0
|
496 |
}
|
sl@0
|
497 |
}
|
sl@0
|
498 |
}
|
sl@0
|
499 |
}
|
sl@0
|
500 |
}
|
sl@0
|
501 |
|
sl@0
|
502 |
return EFalse;
|
sl@0
|
503 |
}
|
sl@0
|
504 |
|
sl@0
|
505 |
/**
|
sl@0
|
506 |
Get implementation info from the index
|
sl@0
|
507 |
@param aRegData RegistryData object under test
|
sl@0
|
508 |
@param aInterfaceUid Interface UID for the implementation
|
sl@0
|
509 |
@param aImplementationData Reference of array of Implementation Data
|
sl@0
|
510 |
*/
|
sl@0
|
511 |
void TRegistryData_StateAccessor::GetImplementationInfoL(CRegistryData& aRegData, TUid& aInterfaceUid, RImplDataArray& aImplementationData)
|
sl@0
|
512 |
{
|
sl@0
|
513 |
aRegData.ListImplementationsL(aInterfaceUid, aImplementationData);
|
sl@0
|
514 |
}
|
sl@0
|
515 |
|
sl@0
|
516 |
/**
|
sl@0
|
517 |
Append DriveSata to iRegistrations
|
sl@0
|
518 |
@param aRegData RegistryData object under test
|
sl@0
|
519 |
@param aInterfaceUid Interface UID for the implementation
|
sl@0
|
520 |
@return Array of Implementations
|
sl@0
|
521 |
*/
|
sl@0
|
522 |
void TRegistryData_StateAccessor::AppendDriveDataL(CRegistryData& aRegData, CRegistryData::CDriveData* aDriveData)
|
sl@0
|
523 |
{
|
sl@0
|
524 |
aRegData.iRegistrations->AppendL(aDriveData);
|
sl@0
|
525 |
}
|
sl@0
|
526 |
|
sl@0
|
527 |
/**
|
sl@0
|
528 |
@param aRegistryData The CRegistryData class object
|
sl@0
|
529 |
@param aImplUid The implementation to find.
|
sl@0
|
530 |
@param aInterfaceUid If greater than 0 the interface associated with the
|
sl@0
|
531 |
implementation to find.
|
sl@0
|
532 |
@param aImplData The found implementation data.
|
sl@0
|
533 |
@return KErrNone if found otherwise KErrNotFound
|
sl@0
|
534 |
*/
|
sl@0
|
535 |
TInt TRegistryData_StateAccessor::FindImplementation(CRegistryData& aRegistryData,
|
sl@0
|
536 |
const TUid aImplUid,
|
sl@0
|
537 |
const TUid aInterfaceUid,
|
sl@0
|
538 |
CRegistryData::CImplementationData*& aImplData) const
|
sl@0
|
539 |
{
|
sl@0
|
540 |
return aRegistryData.FindImplementation(aImplUid, aInterfaceUid, aImplData);
|
sl@0
|
541 |
}
|
sl@0
|
542 |
|
sl@0
|
543 |
/**
|
sl@0
|
544 |
@param aRegistryData The CRegistryData class object
|
sl@0
|
545 |
@param aDriveUnit A drive unit
|
sl@0
|
546 |
@param aDllList The dll list returned on a specified drive.
|
sl@0
|
547 |
@return Index of the specified drive in registryData if found otherwise KErrNotFound
|
sl@0
|
548 |
*/
|
sl@0
|
549 |
TInt TRegistryData_StateAccessor::GetDllListL(CRegistryData& aRegistryData, TDriveUnit aDriveUnit, TDll*& aDllList)
|
sl@0
|
550 |
{
|
sl@0
|
551 |
CRegistryData::CDriveData* drive =NULL;
|
sl@0
|
552 |
|
sl@0
|
553 |
// Get the drive data in the registry.
|
sl@0
|
554 |
TInt registryDriveIndex = aRegistryData.FindDriveL(aDriveUnit, drive);
|
sl@0
|
555 |
if(registryDriveIndex != KErrNotFound)
|
sl@0
|
556 |
{
|
sl@0
|
557 |
aDllList = (*aRegistryData.iRegistrations)[registryDriveIndex]->iDllList;
|
sl@0
|
558 |
}
|
sl@0
|
559 |
return registryDriveIndex;
|
sl@0
|
560 |
}
|
sl@0
|
561 |
|
sl@0
|
562 |
/**
|
sl@0
|
563 |
Indicates whether the language downgrade path has been changed during start-up time.
|
sl@0
|
564 |
@param aRegData RegistryData object under test
|
sl@0
|
565 |
@return ETrue if index is valid EFalse otherwise
|
sl@0
|
566 |
*/
|
sl@0
|
567 |
TBool TRegistryData_StateAccessor::IsLanguageInitChanged(CRegistryData& aRegistryData)
|
sl@0
|
568 |
{
|
sl@0
|
569 |
return aRegistryData.iLanguageChanged;
|
sl@0
|
570 |
}
|
sl@0
|
571 |
|
sl@0
|
572 |
TInt TRegistryData_StateAccessor::DrivesRemoved(CRegistryData& aRegistryData)
|
sl@0
|
573 |
{
|
sl@0
|
574 |
return aRegistryData.iRemovedDrives;
|
sl@0
|
575 |
}
|
sl@0
|
576 |
|
sl@0
|
577 |
/** class to hold all the data required to create an instance of
|
sl@0
|
578 |
CRegistryData::CImplementationData.
|
sl@0
|
579 |
NB: the pointers in this struct are all owned by some other objects.
|
sl@0
|
580 |
*/
|
sl@0
|
581 |
_LIT8(KDefaultImplDataType, "Data Type");
|
sl@0
|
582 |
_LIT8(KDefaultImplOpaqueData, "");
|
sl@0
|
583 |
|
sl@0
|
584 |
struct TImplCreationStruct
|
sl@0
|
585 |
{
|
sl@0
|
586 |
TImplCreationStruct(TDriveNumber aDriveNumber,
|
sl@0
|
587 |
TUid aInterfaceUid,
|
sl@0
|
588 |
TUid aImplUid,
|
sl@0
|
589 |
const TDesC& aDllPathName,
|
sl@0
|
590 |
const TDesC& aImplDisplayName,
|
sl@0
|
591 |
const TDesC8& aImplDataType = KDefaultImplDataType,
|
sl@0
|
592 |
const TDesC8& aImplOpaqueData = KDefaultImplOpaqueData,
|
sl@0
|
593 |
TInt aImplVersion = 1,
|
sl@0
|
594 |
TBool aRomBased = EFalse,
|
sl@0
|
595 |
TBool aRomOnly = EFalse);
|
sl@0
|
596 |
|
sl@0
|
597 |
TDriveUnit iDriveUnit;
|
sl@0
|
598 |
TUid iInterfaceUid;
|
sl@0
|
599 |
TUid iImplUid;
|
sl@0
|
600 |
const TDesC& iDllPathName;
|
sl@0
|
601 |
const TDesC& iImplDisplayName;
|
sl@0
|
602 |
const TDesC8& iImplDataType;
|
sl@0
|
603 |
const TDesC8& iImplOpaqueData;
|
sl@0
|
604 |
TInt iDriveIndex;
|
sl@0
|
605 |
CRegistryData::CDriveData* iDriveData;
|
sl@0
|
606 |
CRegistryData::CDllData* iDllData;
|
sl@0
|
607 |
CRegistryData::CInterfaceData* iInterfaceData;
|
sl@0
|
608 |
CRegistryData::CImplementationData* iImplData;
|
sl@0
|
609 |
TInt iImplVersion;
|
sl@0
|
610 |
TBool iRomBased;
|
sl@0
|
611 |
TBool iRomOnly;
|
sl@0
|
612 |
};
|
sl@0
|
613 |
|
sl@0
|
614 |
// TImplCreationStruct Constructor
|
sl@0
|
615 |
TImplCreationStruct::TImplCreationStruct(TDriveNumber aDriveNumber,
|
sl@0
|
616 |
TUid aInterfaceUid,
|
sl@0
|
617 |
TUid aImplUid,
|
sl@0
|
618 |
const TDesC& aDllPathName,
|
sl@0
|
619 |
const TDesC& aImplDisplayName,
|
sl@0
|
620 |
const TDesC8& aImplDataType,
|
sl@0
|
621 |
const TDesC8& aImplOpaqueData,
|
sl@0
|
622 |
TInt aImplVersion,
|
sl@0
|
623 |
TBool aRomBased,
|
sl@0
|
624 |
TBool aRomOnly)
|
sl@0
|
625 |
: iDriveUnit(aDriveNumber), iInterfaceUid(aInterfaceUid),
|
sl@0
|
626 |
iImplUid(aImplUid), iDllPathName(aDllPathName),
|
sl@0
|
627 |
iImplDisplayName(aImplDisplayName), iImplDataType(aImplDataType),
|
sl@0
|
628 |
iImplOpaqueData(aImplOpaqueData), iDriveIndex(KErrNotFound),
|
sl@0
|
629 |
iDriveData(NULL), iDllData(NULL), iInterfaceData(NULL),
|
sl@0
|
630 |
iImplData(NULL), iImplVersion(aImplVersion), iRomBased(aRomBased),
|
sl@0
|
631 |
iRomOnly(aRomOnly)
|
sl@0
|
632 |
{
|
sl@0
|
633 |
}
|
sl@0
|
634 |
|
sl@0
|
635 |
/**
|
sl@0
|
636 |
Test class encloses necessary members that aid to test CRegistryData
|
sl@0
|
637 |
*/
|
sl@0
|
638 |
class CRegistryDataTest: public CBase
|
sl@0
|
639 |
{
|
sl@0
|
640 |
public:
|
sl@0
|
641 |
static CRegistryDataTest* NewL(TBool aIsFullDiscovery);
|
sl@0
|
642 |
|
sl@0
|
643 |
virtual ~CRegistryDataTest();
|
sl@0
|
644 |
|
sl@0
|
645 |
void AddDllDataPlugIn3TestL();
|
sl@0
|
646 |
void AddDllDataTestL();
|
sl@0
|
647 |
|
sl@0
|
648 |
void IsRegisteredWithDateUpdateDllDataTestL();
|
sl@0
|
649 |
void CopyOrgPlugInL();
|
sl@0
|
650 |
void UpdateDllDataTest1L();
|
sl@0
|
651 |
void UpdateDllDataTest2L();
|
sl@0
|
652 |
void UpdateDllDataTest3L();
|
sl@0
|
653 |
|
sl@0
|
654 |
void SetEnabledStateTestL();
|
sl@0
|
655 |
|
sl@0
|
656 |
void FindImplementationTestL();
|
sl@0
|
657 |
//Test for ListImplementationsL() in CRegistryData
|
sl@0
|
658 |
void ListImplementationsL();
|
sl@0
|
659 |
//Test for ListImplementationsL() in CRegistryResolverTransaction
|
sl@0
|
660 |
void ListImplementationsTestT1L();
|
sl@0
|
661 |
void ListImplementationsTestT2L();
|
sl@0
|
662 |
void ListImplementationsTestT3L();
|
sl@0
|
663 |
void ListImplementationsTestT4L();
|
sl@0
|
664 |
void ListImplementationsTestT5L();
|
sl@0
|
665 |
|
sl@0
|
666 |
//Test for ListExtendedInterfacesL() in CRegistryData
|
sl@0
|
667 |
void ListExtendedInterfacesTestL();
|
sl@0
|
668 |
|
sl@0
|
669 |
void DoUndoTemporaryUninstallTestL();
|
sl@0
|
670 |
|
sl@0
|
671 |
void DiscoveriesBeginCompleteTestL();
|
sl@0
|
672 |
|
sl@0
|
673 |
void IndexedFindTestL();
|
sl@0
|
674 |
|
sl@0
|
675 |
void GetImplementationDllInfoForServerTest();
|
sl@0
|
676 |
|
sl@0
|
677 |
void GetImplementationDllInfoForClientTestL();
|
sl@0
|
678 |
|
sl@0
|
679 |
void GetImplementationDllInfoForServerPlugIn3Test();
|
sl@0
|
680 |
|
sl@0
|
681 |
void GetImplementationDllInfoForClientPlugIn3TestL();
|
sl@0
|
682 |
|
sl@0
|
683 |
void VerifySelectNewPluginTypeL();
|
sl@0
|
684 |
|
sl@0
|
685 |
void AllAtOnceDiscoveryStateTransitionTestL();
|
sl@0
|
686 |
|
sl@0
|
687 |
void StagedDiscoveryStateTransitionTestL();
|
sl@0
|
688 |
|
sl@0
|
689 |
void ImplementationDataTestL();
|
sl@0
|
690 |
|
sl@0
|
691 |
void InsertIntoIndexRemoveFromIndexTestL();
|
sl@0
|
692 |
|
sl@0
|
693 |
void RollbackTestL();
|
sl@0
|
694 |
|
sl@0
|
695 |
void ProcessSecurityCheckTestL();
|
sl@0
|
696 |
|
sl@0
|
697 |
void FailedSecurityCheckTestListImplementationsL();
|
sl@0
|
698 |
|
sl@0
|
699 |
void FailedSecurityCheckTestGetImplementationInfoL();
|
sl@0
|
700 |
|
sl@0
|
701 |
void IsAnyDllDiscoveredTestL();
|
sl@0
|
702 |
void IsAnyDllDiscoveredTestNoSpiL();
|
sl@0
|
703 |
void IsAnyDllDiscoveredTestWithSpiL();
|
sl@0
|
704 |
|
sl@0
|
705 |
void CheckDuplicatPluginsOnCL();
|
sl@0
|
706 |
|
sl@0
|
707 |
void CheckNoPluginsOnCL();
|
sl@0
|
708 |
|
sl@0
|
709 |
void DuplicateImplUidTestL();
|
sl@0
|
710 |
void TestDuplicatedImplPrecedenceL(const TImplCreationStruct& highprecedence,
|
sl@0
|
711 |
const TImplCreationStruct& lowprecedence);
|
sl@0
|
712 |
|
sl@0
|
713 |
static TBool SpiFileExists();
|
sl@0
|
714 |
|
sl@0
|
715 |
void LanguageChangedTestL();
|
sl@0
|
716 |
|
sl@0
|
717 |
void DrivesRemovedTestL();
|
sl@0
|
718 |
private:
|
sl@0
|
719 |
CRegistryDataTest();
|
sl@0
|
720 |
|
sl@0
|
721 |
void ConstructL(TBool aIsFullDiscovery);
|
sl@0
|
722 |
|
sl@0
|
723 |
void CreateImplL(TImplCreationStruct& aCreationData);
|
sl@0
|
724 |
public:
|
sl@0
|
725 |
/** The instance of the class under test */
|
sl@0
|
726 |
CRegistryData* iRegistryData;
|
sl@0
|
727 |
|
sl@0
|
728 |
/** Registrar observer test class */
|
sl@0
|
729 |
TRegistrarObserverStub* iRegistrarObserver;
|
sl@0
|
730 |
|
sl@0
|
731 |
/** CRegistrar required for populating the CRegistryData */
|
sl@0
|
732 |
CRegistrar* iRegistrar;
|
sl@0
|
733 |
/** CRegistrar state accessor */
|
sl@0
|
734 |
TRegistrar_StateAccessor* iRegistrarAccessor;
|
sl@0
|
735 |
|
sl@0
|
736 |
/** A list of returned UIDs from the list methods */
|
sl@0
|
737 |
RImplInfoArray* iUidList;
|
sl@0
|
738 |
|
sl@0
|
739 |
/** A list of implementation data from the list methods */
|
sl@0
|
740 |
RImplDataArray iImplDataList;
|
sl@0
|
741 |
|
sl@0
|
742 |
/** Friend class pointer used for accessing private members */
|
sl@0
|
743 |
TRegistryData_StateAccessor* iStateAccessor;
|
sl@0
|
744 |
|
sl@0
|
745 |
/** The current drive unit identifier */
|
sl@0
|
746 |
TDriveUnit iDriveUnit;
|
sl@0
|
747 |
|
sl@0
|
748 |
/** UID for an implementation of an interface */
|
sl@0
|
749 |
TUid iImplementationUid;
|
sl@0
|
750 |
|
sl@0
|
751 |
/** UID to identify a particular interface */
|
sl@0
|
752 |
TUid iInterfaceUid;
|
sl@0
|
753 |
|
sl@0
|
754 |
/** The directory entry data for a dll */
|
sl@0
|
755 |
TEntry iDllEntry;
|
sl@0
|
756 |
|
sl@0
|
757 |
/** Flag to indicate if the registry entry requires an update */
|
sl@0
|
758 |
TBool iUpdate;
|
sl@0
|
759 |
|
sl@0
|
760 |
/** The drive index returned by IsRegistered... so we know which drive to update on */
|
sl@0
|
761 |
TInt iFoundDriveIndex;
|
sl@0
|
762 |
|
sl@0
|
763 |
};
|
sl@0
|
764 |
|
sl@0
|
765 |
/**
|
sl@0
|
766 |
Creates a new CRegistryDataTest object
|
sl@0
|
767 |
@param aIsFullDriveCDiscovery whether the constructor make full discovery on Drive C
|
sl@0
|
768 |
@return A pointer to the newly created class.
|
sl@0
|
769 |
*/
|
sl@0
|
770 |
CRegistryDataTest* CRegistryDataTest::NewL(TBool aIsFullDriveCDiscovery)
|
sl@0
|
771 |
{
|
sl@0
|
772 |
CRegistryDataTest* self = new (ELeave) CRegistryDataTest();
|
sl@0
|
773 |
CleanupStack::PushL(self);
|
sl@0
|
774 |
self->ConstructL(aIsFullDriveCDiscovery);
|
sl@0
|
775 |
CleanupStack::Pop();
|
sl@0
|
776 |
return self;
|
sl@0
|
777 |
}
|
sl@0
|
778 |
|
sl@0
|
779 |
/**
|
sl@0
|
780 |
Standardized default constructor
|
sl@0
|
781 |
@post CRegistryDataTest is fully constructed.
|
sl@0
|
782 |
*/
|
sl@0
|
783 |
CRegistryDataTest::CRegistryDataTest()
|
sl@0
|
784 |
: CBase()
|
sl@0
|
785 |
{
|
sl@0
|
786 |
iDriveUnit = EDriveC;
|
sl@0
|
787 |
|
sl@0
|
788 |
TUid thirdUid = {0x101F847B};
|
sl@0
|
789 |
|
sl@0
|
790 |
iDllEntry.iType = TUidType(KNullUid, KNullUid, thirdUid);
|
sl@0
|
791 |
iDllEntry.iName = KEComExDllOnC;
|
sl@0
|
792 |
|
sl@0
|
793 |
iInterfaceUid.iUid = KCExampleInterfaceUid.iUid;
|
sl@0
|
794 |
iImplementationUid.iUid = KCExampleInterfaceImp.iUid;
|
sl@0
|
795 |
}
|
sl@0
|
796 |
|
sl@0
|
797 |
/**
|
sl@0
|
798 |
Standardized 2nd(Initialization) phase of two phase construction.
|
sl@0
|
799 |
Completes the safe construction of the CRegistryDataTest object
|
sl@0
|
800 |
@param aIsFullDriveCDiscovery whether the constructor make full discovery on Drive C
|
sl@0
|
801 |
@post CRegistryDataTest is fully constructed.
|
sl@0
|
802 |
@leave KErrNoMemory.
|
sl@0
|
803 |
*/
|
sl@0
|
804 |
void CRegistryDataTest::ConstructL(TBool aIsFullDriveCDiscovery)
|
sl@0
|
805 |
{
|
sl@0
|
806 |
iUidList = new(ELeave) RImplInfoArray;
|
sl@0
|
807 |
iStateAccessor= new(ELeave) TRegistryData_StateAccessor;
|
sl@0
|
808 |
iRegistryData = CRegistryData::NewL(TheFs);
|
sl@0
|
809 |
iRegistrarObserver=new (ELeave) TRegistrarObserverStub;
|
sl@0
|
810 |
iRegistrarAccessor=new (ELeave) TRegistrar_StateAccessor;
|
sl@0
|
811 |
iRegistrar=CRegistrar::NewL(*iRegistryData, *iRegistrarObserver, TheFs);
|
sl@0
|
812 |
if (aIsFullDriveCDiscovery)
|
sl@0
|
813 |
{
|
sl@0
|
814 |
TDriveUnit driveUnitC = EDriveC;
|
sl@0
|
815 |
iRegistrarAccessor->ScanDriveL(*iRegistrar,driveUnitC);
|
sl@0
|
816 |
}
|
sl@0
|
817 |
}
|
sl@0
|
818 |
|
sl@0
|
819 |
/**
|
sl@0
|
820 |
Standard destructor
|
sl@0
|
821 |
*/
|
sl@0
|
822 |
CRegistryDataTest::~CRegistryDataTest()
|
sl@0
|
823 |
{
|
sl@0
|
824 |
delete iUidList;
|
sl@0
|
825 |
delete iStateAccessor;
|
sl@0
|
826 |
delete iRegistrarAccessor;
|
sl@0
|
827 |
delete iRegistrar;
|
sl@0
|
828 |
delete iRegistrarObserver;
|
sl@0
|
829 |
delete iRegistryData;
|
sl@0
|
830 |
}
|
sl@0
|
831 |
|
sl@0
|
832 |
/**
|
sl@0
|
833 |
@return ETrue if the ECom.spi file exists on Z drive, EFalse if it does not
|
sl@0
|
834 |
*/
|
sl@0
|
835 |
TBool CRegistryDataTest::SpiFileExists()
|
sl@0
|
836 |
{
|
sl@0
|
837 |
TEntry entry;
|
sl@0
|
838 |
if (TheFs.Entry(TheEComSpiFilePathAndNamePtrC, entry) == KErrNone)
|
sl@0
|
839 |
{
|
sl@0
|
840 |
return ETrue;
|
sl@0
|
841 |
}
|
sl@0
|
842 |
return EFalse;
|
sl@0
|
843 |
}
|
sl@0
|
844 |
|
sl@0
|
845 |
/**
|
sl@0
|
846 |
@SYMTestCaseID SYSLIB-ECOM-UT-3712
|
sl@0
|
847 |
@SYMTestCaseDesc Tests for AddExtendedInterfaceL when adding duplicate extended interface Uid.
|
sl@0
|
848 |
@SYMTestPriority High
|
sl@0
|
849 |
@SYMTestActions Call CImplementationInformation::AddExtendedInterfaceL() with duplicate extended
|
sl@0
|
850 |
interface Uid.
|
sl@0
|
851 |
AddExtendedInterfacePanicL() and ThreadPanicTest() are used for this test case.
|
sl@0
|
852 |
@SYMTestExpectedResults Ensure that the AddExtendedInterfaceL panics in debug mode, but duplicate extended
|
sl@0
|
853 |
interface is ignored in release mode.
|
sl@0
|
854 |
@SYMDEF DEF111196
|
sl@0
|
855 |
*/
|
sl@0
|
856 |
LOCAL_C void AddExtendedInterfaceTestL()
|
sl@0
|
857 |
{
|
sl@0
|
858 |
|
sl@0
|
859 |
// Test Starts...
|
sl@0
|
860 |
TUid testImplUid;
|
sl@0
|
861 |
testImplUid.iUid = KCExampleInterfaceUid.iUid;
|
sl@0
|
862 |
TInt testImplVersion = 2;
|
sl@0
|
863 |
_LIT(KTestImplName, "Implementation");
|
sl@0
|
864 |
_LIT8(KTestImplDataType, "Data Type");
|
sl@0
|
865 |
_LIT8(KTestImplOpaqueData, "Opaque Data");
|
sl@0
|
866 |
TUid testExtendedInterfaceUid1;
|
sl@0
|
867 |
TUid testExtendedInterfaceUid2;
|
sl@0
|
868 |
testExtendedInterfaceUid1.iUid = 0x10009E44;
|
sl@0
|
869 |
testExtendedInterfaceUid2.iUid = 0x10009E45;
|
sl@0
|
870 |
|
sl@0
|
871 |
TDriveUnit testImplDrive = EDriveC;
|
sl@0
|
872 |
TBool testImplRomOnly = ETrue;
|
sl@0
|
873 |
TBool testImplRomBased = EFalse;
|
sl@0
|
874 |
|
sl@0
|
875 |
CRegistryData* registryData = CRegistryData::NewL(TheFs);
|
sl@0
|
876 |
CleanupStack::PushL(registryData);
|
sl@0
|
877 |
CRegistryData::CDriveData* driveData = CRegistryData::CDriveData::NewLC(testImplDrive, registryData);
|
sl@0
|
878 |
CRegistryData::CDllData* dllData = CRegistryData::CDllData::NewLC(driveData);
|
sl@0
|
879 |
CRegistryData::CInterfaceData* interfaceData = CRegistryData::CInterfaceData::NewLC(dllData);
|
sl@0
|
880 |
|
sl@0
|
881 |
// NewL test
|
sl@0
|
882 |
HBufC* name = KTestImplName().AllocLC();
|
sl@0
|
883 |
HBufC8* dataType = KTestImplDataType().AllocLC();
|
sl@0
|
884 |
HBufC8* opaqueData = KTestImplOpaqueData().AllocLC();
|
sl@0
|
885 |
|
sl@0
|
886 |
RArray<TUid>* extendedInterfaces = new(ELeave) RArray<TUid>;
|
sl@0
|
887 |
|
sl@0
|
888 |
CleanupStack::PushL(TCleanupItem(CloseAndDeleteArray, extendedInterfaces));
|
sl@0
|
889 |
|
sl@0
|
890 |
CRegistryData::CImplementationData* implementationData;
|
sl@0
|
891 |
implementationData = CRegistryData::CImplementationData::NewL(interfaceData,
|
sl@0
|
892 |
testImplUid,
|
sl@0
|
893 |
testImplVersion,
|
sl@0
|
894 |
name,
|
sl@0
|
895 |
dataType,
|
sl@0
|
896 |
opaqueData,
|
sl@0
|
897 |
testImplDrive,
|
sl@0
|
898 |
testImplRomOnly,
|
sl@0
|
899 |
testImplRomBased,
|
sl@0
|
900 |
extendedInterfaces);
|
sl@0
|
901 |
|
sl@0
|
902 |
CleanupStack::Pop(extendedInterfaces);
|
sl@0
|
903 |
CleanupStack::Pop(opaqueData);
|
sl@0
|
904 |
CleanupStack::Pop(dataType);
|
sl@0
|
905 |
CleanupStack::Pop(name);
|
sl@0
|
906 |
|
sl@0
|
907 |
CleanupStack::PushL(implementationData);
|
sl@0
|
908 |
TEST(interfaceData == implementationData->iParent);
|
sl@0
|
909 |
|
sl@0
|
910 |
//Add extended interface
|
sl@0
|
911 |
implementationData->iImplInfo->AddExtendedInterfaceL(testExtendedInterfaceUid1);
|
sl@0
|
912 |
implementationData->iImplInfo->AddExtendedInterfaceL(testExtendedInterfaceUid2);
|
sl@0
|
913 |
const RArray<TUid>* extendedInterfacesList = implementationData->iImplInfo->GetExtendedInterfaceList();
|
sl@0
|
914 |
TEST(extendedInterfacesList->Count() == 2);
|
sl@0
|
915 |
RDebug::Printf("Number of extended interfaces = %d",extendedInterfacesList->Count());
|
sl@0
|
916 |
// Add duplicate extended interface, will panic in debug mode, but duplicate extended interface
|
sl@0
|
917 |
// is ignored in release mode
|
sl@0
|
918 |
implementationData->iImplInfo->AddExtendedInterfaceL(testExtendedInterfaceUid2);
|
sl@0
|
919 |
|
sl@0
|
920 |
#ifdef NDEBUG
|
sl@0
|
921 |
const RArray<TUid>* extendedInterfacesList1 = implementationData->iImplInfo->GetExtendedInterfaceList();
|
sl@0
|
922 |
TEST(extendedInterfacesList1->Count() == 2);
|
sl@0
|
923 |
RDebug::Printf("Number of extended interfaces after adding duplicate extended interface = %d",extendedInterfacesList->Count());
|
sl@0
|
924 |
#endif
|
sl@0
|
925 |
// Tidy up
|
sl@0
|
926 |
CleanupStack::PopAndDestroy(5, registryData);
|
sl@0
|
927 |
|
sl@0
|
928 |
// Test Ends...
|
sl@0
|
929 |
}
|
sl@0
|
930 |
|
sl@0
|
931 |
LOCAL_C TInt AddExtendedInterfacePanicL(TAny*)
|
sl@0
|
932 |
{
|
sl@0
|
933 |
__UHEAP_MARK;
|
sl@0
|
934 |
CTrapCleanup* threadcleanup = CTrapCleanup::New();
|
sl@0
|
935 |
TRAPD(err,AddExtendedInterfaceTestL());
|
sl@0
|
936 |
TEST(err==KErrNone);
|
sl@0
|
937 |
delete threadcleanup;
|
sl@0
|
938 |
__UHEAP_MARKEND;
|
sl@0
|
939 |
return KErrNone;
|
sl@0
|
940 |
}
|
sl@0
|
941 |
|
sl@0
|
942 |
/**
|
sl@0
|
943 |
The test code is used for capturing the PANIC that occurs as a result of calling AddExtendedInterfaceL
|
sl@0
|
944 |
with duplicate extended interface Uid .
|
sl@0
|
945 |
*/
|
sl@0
|
946 |
LOCAL_C void ThreadPanicTest(const TDesC& aName,TThreadFunction aFunction)
|
sl@0
|
947 |
{
|
sl@0
|
948 |
TRequestStatus threadStatus;
|
sl@0
|
949 |
RThread thread;
|
sl@0
|
950 |
TBool jit;
|
sl@0
|
951 |
jit=User::JustInTime();
|
sl@0
|
952 |
User::SetJustInTime(EFalse);
|
sl@0
|
953 |
|
sl@0
|
954 |
// Default stack size was doubled for X86, so reduce this multiplier to prevent panic
|
sl@0
|
955 |
#ifdef __X86GCC__
|
sl@0
|
956 |
TInt err=thread.Create(aName,aFunction,KDefaultStackSize*4,KMinHeapSize,0x100000,0);
|
sl@0
|
957 |
#else
|
sl@0
|
958 |
TInt err=thread.Create(aName,aFunction,KDefaultStackSize*8,KMinHeapSize,0x100000,0);
|
sl@0
|
959 |
#endif
|
sl@0
|
960 |
TEST(err==KErrNone);
|
sl@0
|
961 |
thread.Logon(threadStatus) ;
|
sl@0
|
962 |
thread.Resume();
|
sl@0
|
963 |
|
sl@0
|
964 |
User::WaitForRequest(threadStatus);
|
sl@0
|
965 |
|
sl@0
|
966 |
//Now check why the thread Exit
|
sl@0
|
967 |
// There is Assert_Debug check for the duplicate extended interface Uid for AddExtendedInterfaceL(),
|
sl@0
|
968 |
// Therefore, the panic reason would be KErrAlreadyExists for debug mode.
|
sl@0
|
969 |
// in release mode, the duplicate extended interface is ignored.
|
sl@0
|
970 |
#ifdef _DEBUG
|
sl@0
|
971 |
RDebug::Printf("Thread status: %d", thread.ExitType());
|
sl@0
|
972 |
TEST(thread.ExitType()==EExitPanic);
|
sl@0
|
973 |
TEST(thread.ExitReason()==EEComPanic_CImlpementationInfromation_DuplicateExIf);
|
sl@0
|
974 |
#else
|
sl@0
|
975 |
RDebug::Printf("Thread status: %d", thread.ExitType());
|
sl@0
|
976 |
TEST(thread.ExitType()==EExitKill);
|
sl@0
|
977 |
#endif
|
sl@0
|
978 |
CLOSE_AND_WAIT(thread);
|
sl@0
|
979 |
User::SetJustInTime(jit);
|
sl@0
|
980 |
}
|
sl@0
|
981 |
|
sl@0
|
982 |
|
sl@0
|
983 |
/**
|
sl@0
|
984 |
Plugins to be used in this test
|
sl@0
|
985 |
Interface UID DLL UID Implementation UID Version DLL Type Extended Interfaces
|
sl@0
|
986 |
--------------------------------------------------------------------------------
|
sl@0
|
987 |
0x10009E36 0x10009E3E 0x10009E39 1 PLUGIN3 {0x10009E44, 0x10009E45, 0x10009E46}
|
sl@0
|
988 |
0x10009E3E 0x10009E3C 1 PLUGIN3 {}
|
sl@0
|
989 |
0x10009E3E 0x10009E3D 1 PLUGIN3 {0x10009E44}
|
sl@0
|
990 |
0x10009DC0 0x101F847B 0x101F847C 1 PLUGIN1 NULL
|
sl@0
|
991 |
|
sl@0
|
992 |
@SYMTestCaseID SYSLIB-ECOM-UT-3575
|
sl@0
|
993 |
@SYMTestCaseDesc Tests for CImplementationInformation::GetExtendedInterfaceList() and
|
sl@0
|
994 |
CImplementationInformation::GetExtendedInterfaceListL() functions. Makes sure that
|
sl@0
|
995 |
results from both of the functions are identical.
|
sl@0
|
996 |
@SYMTestPriority High
|
sl@0
|
997 |
@SYMTestActions List the extended interfaces for a valid implementation UID
|
sl@0
|
998 |
List the extended interfaces for a non-existing implementation UID
|
sl@0
|
999 |
List the extended interfaces for a valid PLUGIN1 implementation UID
|
sl@0
|
1000 |
@SYMTestExpectedResults Expected extended interfaces are returned.
|
sl@0
|
1001 |
@SYMEC EC43
|
sl@0
|
1002 |
@SYMDEF DEF111196
|
sl@0
|
1003 |
*/
|
sl@0
|
1004 |
void CRegistryDataTest::ListExtendedInterfacesTestL()
|
sl@0
|
1005 |
{
|
sl@0
|
1006 |
TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-UT-3575 "));
|
sl@0
|
1007 |
TUid ImpUid = {0x10009E39};
|
sl@0
|
1008 |
TUid ImpUid1 = {0x10009E3C};
|
sl@0
|
1009 |
TUid ImpUidPLUGIN1 = {0x101F847C};
|
sl@0
|
1010 |
TUid extendedInterfacesUid[] = {0x10009E44,0x10009E45,0x10009E46};
|
sl@0
|
1011 |
TEntry dllinfo;
|
sl@0
|
1012 |
TInt err;
|
sl@0
|
1013 |
TClientRequest clntRq;
|
sl@0
|
1014 |
|
sl@0
|
1015 |
//Gets the Implementation Information for a valid implementation UID with extended interfaces
|
sl@0
|
1016 |
CImplementationInformation* implementationInfo=NULL;
|
sl@0
|
1017 |
TRAP(err,iRegistryData->GetImplementationDllInfoForClientL(clntRq, ImpUid, KCDummyUid, dllinfo, implementationInfo, ETrue));
|
sl@0
|
1018 |
TEST_OOM_ERR;
|
sl@0
|
1019 |
TEST2(err, KErrNone);
|
sl@0
|
1020 |
TEST(implementationInfo->ImplementationUid() == ImpUid);
|
sl@0
|
1021 |
|
sl@0
|
1022 |
//Gets the list of extended Interfaces
|
sl@0
|
1023 |
RArray<TUid>* extendedInterfaces = implementationInfo->GetExtendedInterfaceList();
|
sl@0
|
1024 |
|
sl@0
|
1025 |
//Checks the extended interfaces list
|
sl@0
|
1026 |
TEST(extendedInterfaces != NULL);
|
sl@0
|
1027 |
for (TInt i = 0; i < extendedInterfaces->Count(); i++)
|
sl@0
|
1028 |
{
|
sl@0
|
1029 |
TEST((*extendedInterfaces)[i] == extendedInterfacesUid[i]);
|
sl@0
|
1030 |
}
|
sl@0
|
1031 |
|
sl@0
|
1032 |
// Uses the GetExtendedInterfaceListL API to get the extended interface.
|
sl@0
|
1033 |
RArray<TUid> extendedInterfacesAPI;
|
sl@0
|
1034 |
CleanupClosePushL(extendedInterfacesAPI);
|
sl@0
|
1035 |
implementationInfo->GetExtendedInterfaceListL(extendedInterfacesAPI);
|
sl@0
|
1036 |
// Makes sure that the list return is the same as the one return from GetExtendedInterfaceList.
|
sl@0
|
1037 |
TEST(extendedInterfacesAPI.Count() == extendedInterfaces->Count());
|
sl@0
|
1038 |
for (TInt i = 0; i < extendedInterfaces->Count(); i++)
|
sl@0
|
1039 |
{
|
sl@0
|
1040 |
TEST((*extendedInterfaces)[i] == extendedInterfacesAPI[i]);
|
sl@0
|
1041 |
}
|
sl@0
|
1042 |
CleanupStack::PopAndDestroy(&extendedInterfacesAPI);
|
sl@0
|
1043 |
|
sl@0
|
1044 |
//Gets the Implementation Information for a valid implementation UID without extended interfaces
|
sl@0
|
1045 |
TRAP(err,iRegistryData->GetImplementationDllInfoForClientL(clntRq, ImpUid1, KCDummyUid, dllinfo, implementationInfo, ETrue));
|
sl@0
|
1046 |
TEST_OOM_ERR;
|
sl@0
|
1047 |
TEST2(err, KErrNone);
|
sl@0
|
1048 |
TEST(implementationInfo->ImplementationUid() == ImpUid1);
|
sl@0
|
1049 |
|
sl@0
|
1050 |
//Gets the list of extended Interfaces
|
sl@0
|
1051 |
extendedInterfaces = implementationInfo->GetExtendedInterfaceList();
|
sl@0
|
1052 |
TEST(extendedInterfaces->Count() == 0);
|
sl@0
|
1053 |
|
sl@0
|
1054 |
// Uses the GetExtendedInterfaceListL API to get the extended interface.
|
sl@0
|
1055 |
RArray<TUid> extendedInterfacesAPI1;
|
sl@0
|
1056 |
CleanupClosePushL(extendedInterfacesAPI1);
|
sl@0
|
1057 |
implementationInfo->GetExtendedInterfaceListL(extendedInterfacesAPI1);
|
sl@0
|
1058 |
// Makes sure that the list return is the same as the one return from GetExtendedInterfaceList.
|
sl@0
|
1059 |
TEST(extendedInterfacesAPI1.Count() == extendedInterfaces->Count());
|
sl@0
|
1060 |
for (TInt i = 0; i < extendedInterfaces->Count(); i++)
|
sl@0
|
1061 |
{
|
sl@0
|
1062 |
TEST((*extendedInterfaces)[i] == extendedInterfacesAPI1[i]);
|
sl@0
|
1063 |
}
|
sl@0
|
1064 |
CleanupStack::PopAndDestroy(&extendedInterfacesAPI1);
|
sl@0
|
1065 |
|
sl@0
|
1066 |
//Gets the Implementation Information for a non-existing implementation UID
|
sl@0
|
1067 |
TRAP(err,iRegistryData->GetImplementationDllInfoForClientL(clntRq, KCInvalidUid, KCDummyUid, dllinfo, implementationInfo, ETrue));
|
sl@0
|
1068 |
TEST_OOM_ERR;
|
sl@0
|
1069 |
TEST2(err,KErrNone);
|
sl@0
|
1070 |
TEST(implementationInfo == NULL);
|
sl@0
|
1071 |
|
sl@0
|
1072 |
//Gets the Implementation Information for a valid PLUGIN1 implementation UID without extended interfaces
|
sl@0
|
1073 |
TRAP(err,iRegistryData->GetImplementationDllInfoForClientL(clntRq, ImpUidPLUGIN1, KCDummyUid, dllinfo, implementationInfo, ETrue));
|
sl@0
|
1074 |
TEST_OOM_ERR;
|
sl@0
|
1075 |
TEST2(err, KErrNone);
|
sl@0
|
1076 |
TEST(implementationInfo->ImplementationUid() == ImpUidPLUGIN1);
|
sl@0
|
1077 |
|
sl@0
|
1078 |
//Gets the list of extended Interfaces
|
sl@0
|
1079 |
extendedInterfaces = implementationInfo->GetExtendedInterfaceList();
|
sl@0
|
1080 |
TEST(extendedInterfaces == NULL);
|
sl@0
|
1081 |
|
sl@0
|
1082 |
// Uses the GetExtendedInterfaceListL API to get the extended interface.
|
sl@0
|
1083 |
RArray<TUid> extendedInterfacesAPI2;
|
sl@0
|
1084 |
CleanupClosePushL(extendedInterfacesAPI2);
|
sl@0
|
1085 |
implementationInfo->GetExtendedInterfaceListL(extendedInterfacesAPI2);
|
sl@0
|
1086 |
// Makes sure that the list return is the same as the one return from GetExtendedInterfaceList.
|
sl@0
|
1087 |
TEST(extendedInterfacesAPI2.Count() == 0);
|
sl@0
|
1088 |
CleanupStack::PopAndDestroy(&extendedInterfacesAPI2);
|
sl@0
|
1089 |
}
|
sl@0
|
1090 |
|
sl@0
|
1091 |
|
sl@0
|
1092 |
/**
|
sl@0
|
1093 |
The interface Uid 0x10009E36 has 5 implementations on different DLLs(EComExample12.dll,EComExample14.dll and EComExample15.dll).
|
sl@0
|
1094 |
0x10009E3D is said to be ROM-Only, it will not be created. 0x10009E39 has higher version in EComExample15.
|
sl@0
|
1095 |
Interface UID DLL UID Implementation UID Version DLL Type Extended Interfaces
|
sl@0
|
1096 |
--------------------------------------------------------------------------------
|
sl@0
|
1097 |
0x10009E36 0x10009E40 0x10009E48 1 PLUGIN1 None
|
sl@0
|
1098 |
0x10009E3E 0x10009E39 1 PLUGIN3 {0x10009E44, 0x10009E45, 0x10009E46}
|
sl@0
|
1099 |
0x10009E3E 0x10009E3C 1 PLUGIN3 {}
|
sl@0
|
1100 |
0x10009E3E 0x10009E3D 1 PLUGIN3 {0x10009E44}
|
sl@0
|
1101 |
0x10009E42 0x10009E39 2 PLUGIN3 {0x10009E44, 0x10009E45, 0x10009E46}
|
sl@0
|
1102 |
|
sl@0
|
1103 |
@SYMTestCaseID SYSLIB-ECOM-UT-3580
|
sl@0
|
1104 |
@SYMTestCaseDesc Tests for CRegistryResolveTransaction::ListImplementationsL() function with matches
|
sl@0
|
1105 |
that fall into a PLUGIN1 Dll and PLUGIN3. The extended interface list will not be populated
|
sl@0
|
1106 |
@SYMTestPriority High
|
sl@0
|
1107 |
@SYMTestActions List the implementations for an interface UID and a set of extended interfaces.
|
sl@0
|
1108 |
Check the VID of every implementation matches the VID of the DLL which the implementation
|
sl@0
|
1109 |
belongs to.
|
sl@0
|
1110 |
@SYMTestExpectedResults Expected matches are returned from both PLUGIN1 and PLUGIN3.
|
sl@0
|
1111 |
@SYMEC EC43
|
sl@0
|
1112 |
*/
|
sl@0
|
1113 |
void CRegistryDataTest::ListImplementationsTestT5L()
|
sl@0
|
1114 |
{
|
sl@0
|
1115 |
TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-UT-3580 "));
|
sl@0
|
1116 |
const TUid KInterfaceUid = {0x10009E36};
|
sl@0
|
1117 |
|
sl@0
|
1118 |
TEST(iRegistryData->IndexValid());
|
sl@0
|
1119 |
// Set up client request and extended interfaces
|
sl@0
|
1120 |
TClientRequest clientReq;
|
sl@0
|
1121 |
RArray<TUid> extendedInterfaces;
|
sl@0
|
1122 |
CleanupClosePushL(extendedInterfaces);
|
sl@0
|
1123 |
TBool capability= ETrue;
|
sl@0
|
1124 |
CRegistryResolveTransaction* registryResolveTransaction = CRegistryResolveTransaction::NewL(*iRegistryData,extendedInterfaces,clientReq,capability);
|
sl@0
|
1125 |
CleanupStack::PushL(registryResolveTransaction);
|
sl@0
|
1126 |
RImplInfoArray* iUidListPtr = NULL;
|
sl@0
|
1127 |
TRAPD(err, iUidListPtr = &(registryResolveTransaction->ListImplementationsL(KInterfaceUid)));
|
sl@0
|
1128 |
|
sl@0
|
1129 |
TEST_OOM_ERR;
|
sl@0
|
1130 |
TEST2(err, KErrNone);
|
sl@0
|
1131 |
|
sl@0
|
1132 |
// Prints UIDs of implementations
|
sl@0
|
1133 |
_LIT(KUIDFormat,"Uid = 0x%08x\n");
|
sl@0
|
1134 |
_LIT(KLists,"There are %d Implementations \n");
|
sl@0
|
1135 |
|
sl@0
|
1136 |
TheTest.Printf(KLists, iUidListPtr->Count());
|
sl@0
|
1137 |
// Tests for expected number of implementations.
|
sl@0
|
1138 |
TEST(iUidListPtr->Count() == 3);
|
sl@0
|
1139 |
|
sl@0
|
1140 |
for(TInt index = 0; index < iUidListPtr->Count(); ++index)
|
sl@0
|
1141 |
{
|
sl@0
|
1142 |
// check VID of every implementation
|
sl@0
|
1143 |
TEST(((*(iUidListPtr))[index]->VendorId()).iId == 0x70000001);
|
sl@0
|
1144 |
TUid uid = (*(iUidListPtr))[index]->ImplementationUid();
|
sl@0
|
1145 |
TheTest.Printf(KUIDFormat, uid);
|
sl@0
|
1146 |
}
|
sl@0
|
1147 |
CleanupStack::PopAndDestroy(registryResolveTransaction);
|
sl@0
|
1148 |
CleanupStack::PopAndDestroy(&extendedInterfaces);
|
sl@0
|
1149 |
}
|
sl@0
|
1150 |
/**
|
sl@0
|
1151 |
The interface Uid 0x10009E36 has 5 implementations on different DLLs(EComExample12.dll,EComExample14.dll and EComExample15.dll).
|
sl@0
|
1152 |
0x10009E3D is said to be ROM-Only, it will not be created. 0x10009E39 has higher version in EComExample15.
|
sl@0
|
1153 |
Interface UID DLL UID Implementation UID Version DLL Type Extended Interfaces
|
sl@0
|
1154 |
-------------------------------------------------------------------------------------------------------
|
sl@0
|
1155 |
0x10009E36 0x10009E40 0x10009E48 1 PLUGIN1 None
|
sl@0
|
1156 |
0x10009E3E 0x10009E39 1 PLUGIN3 {0x10009E44, 0x10009E45, 0x10009E46}
|
sl@0
|
1157 |
0x10009E3E 0x10009E3C 1 PLUGIN3 {}
|
sl@0
|
1158 |
0x10009E3E 0x10009E3D 1 PLUGIN3 {0x10009E44}
|
sl@0
|
1159 |
0x10009E42 0x10009E39 2 PLUGIN3 {0x10009E44, 0x10009E45, 0x10009E46}
|
sl@0
|
1160 |
|
sl@0
|
1161 |
@SYMTestCaseID SYSLIB-ECOM-UT-3579
|
sl@0
|
1162 |
@SYMTestCaseDesc Tests for CRegistryResolveTransaction::ListImplementationsL() function with matches
|
sl@0
|
1163 |
that fall into a PLUGIN1 Dll and PLUGIN3. The extended interface list will be populated
|
sl@0
|
1164 |
@SYMTestPriority High
|
sl@0
|
1165 |
@SYMTestActions List the implementations for an interface UID and a set of extended interfaces.
|
sl@0
|
1166 |
Check the VID of every implementation match the VID of the DLL which the implementation
|
sl@0
|
1167 |
belongs to.
|
sl@0
|
1168 |
@SYMTestExpectedResults No PLUGIN1 implementations should be returned.
|
sl@0
|
1169 |
@SYMEC EC43
|
sl@0
|
1170 |
*/
|
sl@0
|
1171 |
void CRegistryDataTest::ListImplementationsTestT4L()
|
sl@0
|
1172 |
{
|
sl@0
|
1173 |
TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-UT-3579 "));
|
sl@0
|
1174 |
const TUid KInterfaceUid = {0x10009E36};
|
sl@0
|
1175 |
const TUid KExtendedInterfaceUid = {0x10009E44};
|
sl@0
|
1176 |
|
sl@0
|
1177 |
TEST(iRegistryData->IndexValid());
|
sl@0
|
1178 |
//Set up client request and extended interfaces
|
sl@0
|
1179 |
TClientRequest clientReq;
|
sl@0
|
1180 |
RArray<TUid> extendedInterfaces;
|
sl@0
|
1181 |
CleanupClosePushL(extendedInterfaces);
|
sl@0
|
1182 |
extendedInterfaces.AppendL(KExtendedInterfaceUid);
|
sl@0
|
1183 |
TBool capability= ETrue;
|
sl@0
|
1184 |
CRegistryResolveTransaction* registryResolveTransaction = CRegistryResolveTransaction::NewL(*iRegistryData,extendedInterfaces,clientReq,capability);
|
sl@0
|
1185 |
CleanupStack::PushL(registryResolveTransaction);
|
sl@0
|
1186 |
RImplInfoArray* iUidListPtr = NULL;
|
sl@0
|
1187 |
TRAPD(err, iUidListPtr = &(registryResolveTransaction->ListImplementationsL(KInterfaceUid)));
|
sl@0
|
1188 |
|
sl@0
|
1189 |
TEST_OOM_ERR;
|
sl@0
|
1190 |
TEST2(err, KErrNone);
|
sl@0
|
1191 |
|
sl@0
|
1192 |
// Prints UIDs of implementations
|
sl@0
|
1193 |
_LIT(KUIDFormat,"Uid = 0x%08x\n");
|
sl@0
|
1194 |
_LIT(KLists,"There are %d Implementations \n");
|
sl@0
|
1195 |
|
sl@0
|
1196 |
TheTest.Printf(KLists, iUidListPtr->Count());
|
sl@0
|
1197 |
// Tests for expected number of implementations.
|
sl@0
|
1198 |
TEST(iUidListPtr->Count() == 1);
|
sl@0
|
1199 |
|
sl@0
|
1200 |
for(TInt index = 0; index < iUidListPtr->Count(); ++index)
|
sl@0
|
1201 |
{
|
sl@0
|
1202 |
// check VID of every implementation
|
sl@0
|
1203 |
TEST(((*(iUidListPtr))[index]->VendorId()).iId == 0x70000001);
|
sl@0
|
1204 |
TUid uid = (*(iUidListPtr))[index]->ImplementationUid();
|
sl@0
|
1205 |
TheTest.Printf(KUIDFormat, uid);
|
sl@0
|
1206 |
}
|
sl@0
|
1207 |
CleanupStack::PopAndDestroy(registryResolveTransaction);
|
sl@0
|
1208 |
CleanupStack::PopAndDestroy(&extendedInterfaces);
|
sl@0
|
1209 |
}
|
sl@0
|
1210 |
|
sl@0
|
1211 |
/**
|
sl@0
|
1212 |
@SYMTestCaseID SYSLIB-ECOM-UT-3578
|
sl@0
|
1213 |
@SYMTestCaseDesc Tests for CRegistryResolveTransaction::ListImplementationsL() function with invalid interface id.
|
sl@0
|
1214 |
@SYMTestPriority High
|
sl@0
|
1215 |
@SYMTestActions List the implementations for an invalid interface UID and valid extended interfaces.
|
sl@0
|
1216 |
@SYMTestExpectedResults No implementation is returned.
|
sl@0
|
1217 |
@SYMEC EC43
|
sl@0
|
1218 |
*/
|
sl@0
|
1219 |
void CRegistryDataTest::ListImplementationsTestT3L()
|
sl@0
|
1220 |
{
|
sl@0
|
1221 |
TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-UT-3578 "));
|
sl@0
|
1222 |
const TUid KExtendedInterfaceUid = {0x10009E44};
|
sl@0
|
1223 |
|
sl@0
|
1224 |
TEST(iRegistryData->IndexValid());
|
sl@0
|
1225 |
//Set up client request and extended interfaces
|
sl@0
|
1226 |
TClientRequest clientReq;
|
sl@0
|
1227 |
RArray<TUid> extendedInterfaces;
|
sl@0
|
1228 |
CleanupClosePushL(extendedInterfaces);
|
sl@0
|
1229 |
extendedInterfaces.AppendL(KExtendedInterfaceUid);
|
sl@0
|
1230 |
TBool capability= ETrue;
|
sl@0
|
1231 |
CRegistryResolveTransaction* registryResolveTransaction = CRegistryResolveTransaction::NewL(*iRegistryData,extendedInterfaces,clientReq,capability);
|
sl@0
|
1232 |
CleanupStack::PushL(registryResolveTransaction);
|
sl@0
|
1233 |
TRAPD(err, RImplInfoArray* iUidListPtr = &(registryResolveTransaction->ListImplementationsL(KCInvalidUid)));
|
sl@0
|
1234 |
|
sl@0
|
1235 |
TEST_OOM_ERR;
|
sl@0
|
1236 |
TEST2(err, KEComErrNoInterfaceIdentified);
|
sl@0
|
1237 |
TheTest.Printf(_L("No Implementation is found.\n"));
|
sl@0
|
1238 |
CleanupStack::PopAndDestroy(registryResolveTransaction);
|
sl@0
|
1239 |
CleanupStack::PopAndDestroy(&extendedInterfaces);
|
sl@0
|
1240 |
}
|
sl@0
|
1241 |
|
sl@0
|
1242 |
/**
|
sl@0
|
1243 |
The interface Uid 0x10009E36 has 5 implementations (EComExample12.dll,EComExample14.dll and EComExample15.dll), but only 1 will
|
sl@0
|
1244 |
be picked up as 2 of them do not match the extended interfaces criteria (0x10009E3C and 0x10009E48),
|
sl@0
|
1245 |
1 of them is said to be ROM only but it is on RAM(0x10009E3D), and 1 of them has older version(0x10009E39).
|
sl@0
|
1246 |
|
sl@0
|
1247 |
Interface UID DLL UID Implementation UID Version Type Extended Interfaces
|
sl@0
|
1248 |
--------------------------------------------------------------------------------------
|
sl@0
|
1249 |
0x10009E36 0x10009E3E 0x10009E39 1 PlugIn3 {0x10009E44, 0x10009E45, 0x10009E46}
|
sl@0
|
1250 |
0x10009E3E 0x10009E3C 1 PlugIn3 {}
|
sl@0
|
1251 |
0x10009E3E 0x10009E3D 1 PlugIn3 {0x10009E44}
|
sl@0
|
1252 |
0x10009E40 0x10009E48 1 PLUGIN1 None
|
sl@0
|
1253 |
0x10009E42 0x10009E39 2 PlugIn3 {0x10009E44, 0x10009E45, 0x10009E46}
|
sl@0
|
1254 |
|
sl@0
|
1255 |
@SYMTestCaseID SYSLIB-ECOM-UT-3577
|
sl@0
|
1256 |
@SYMTestCaseDesc Tests for CRegistryResolveTransaction::ListImplementationsL() function with matches
|
sl@0
|
1257 |
that fall into a PLUGIN3 Dll.
|
sl@0
|
1258 |
@SYMTestPriority High
|
sl@0
|
1259 |
@SYMTestActions List the implementations for an existing interface UID and a set of extended interfaces.
|
sl@0
|
1260 |
Test for expected number of implementations. Check the VID of every implementation match
|
sl@0
|
1261 |
the VID of the DLL which the implementation belongs to.
|
sl@0
|
1262 |
@SYMTestExpectedResults Expected number of implementations are returned.
|
sl@0
|
1263 |
@SYMEC EC43
|
sl@0
|
1264 |
*/
|
sl@0
|
1265 |
void CRegistryDataTest::ListImplementationsTestT2L()
|
sl@0
|
1266 |
{
|
sl@0
|
1267 |
TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-UT-3577 "));
|
sl@0
|
1268 |
const TUid KInterfaceUid = {0x10009E36};
|
sl@0
|
1269 |
const TUid KExtendedInterfaceUid = {0x10009E44};
|
sl@0
|
1270 |
|
sl@0
|
1271 |
TEST(iRegistryData->IndexValid());
|
sl@0
|
1272 |
// Set up client request and extended interfaces
|
sl@0
|
1273 |
TClientRequest clientReq;
|
sl@0
|
1274 |
RArray<TUid> extendedInterfaces;
|
sl@0
|
1275 |
CleanupClosePushL(extendedInterfaces);
|
sl@0
|
1276 |
extendedInterfaces.AppendL(KExtendedInterfaceUid);
|
sl@0
|
1277 |
TBool capability= ETrue;
|
sl@0
|
1278 |
CRegistryResolveTransaction* registryResolveTransaction = CRegistryResolveTransaction::NewL(*iRegistryData,extendedInterfaces,clientReq,capability);
|
sl@0
|
1279 |
CleanupStack::PushL(registryResolveTransaction);
|
sl@0
|
1280 |
RImplInfoArray* iUidListPtr = NULL;
|
sl@0
|
1281 |
TRAPD(err, iUidListPtr = &(registryResolveTransaction->ListImplementationsL(KInterfaceUid)));
|
sl@0
|
1282 |
|
sl@0
|
1283 |
TEST_OOM_ERR;
|
sl@0
|
1284 |
TEST2(err, KErrNone);
|
sl@0
|
1285 |
|
sl@0
|
1286 |
// Prints UIDs of implementations
|
sl@0
|
1287 |
_LIT(KUIDFormat,"Uid = 0x%08x\n");
|
sl@0
|
1288 |
_LIT(KLists,"There are %d Implementations \n");
|
sl@0
|
1289 |
|
sl@0
|
1290 |
TheTest.Printf(KLists, iUidListPtr->Count());
|
sl@0
|
1291 |
// Tests for expected number of implementations.
|
sl@0
|
1292 |
TEST(iUidListPtr->Count() == 1);
|
sl@0
|
1293 |
|
sl@0
|
1294 |
for(TInt index = 0; index < iUidListPtr->Count(); ++index)
|
sl@0
|
1295 |
{
|
sl@0
|
1296 |
// checks VID of every implementation
|
sl@0
|
1297 |
TEST(((*(iUidListPtr))[index]->VendorId()).iId == 0x70000001);
|
sl@0
|
1298 |
TUid uid = (*(iUidListPtr))[index]->ImplementationUid();
|
sl@0
|
1299 |
TheTest.Printf(KUIDFormat, uid);
|
sl@0
|
1300 |
}
|
sl@0
|
1301 |
CleanupStack::PopAndDestroy(registryResolveTransaction);
|
sl@0
|
1302 |
CleanupStack::PopAndDestroy(&extendedInterfaces);
|
sl@0
|
1303 |
}
|
sl@0
|
1304 |
|
sl@0
|
1305 |
|
sl@0
|
1306 |
/**
|
sl@0
|
1307 |
The interface Uid 0x10009DC0 has 6 implementations on different DLLs but only 4 will
|
sl@0
|
1308 |
be picked up as 2 of them are of older version(Impl ID 0x10009DC3 and 0x10009DC4 with version 1)
|
sl@0
|
1309 |
|
sl@0
|
1310 |
Interface UID DLL UID Implementation UID Version
|
sl@0
|
1311 |
-------------------------------------------------------
|
sl@0
|
1312 |
0x10009DC0 0x10009DB1 0x10009DC3 1
|
sl@0
|
1313 |
0x10009DB1 0x10009DC4 1
|
sl@0
|
1314 |
0x10009DB3 0x10009DC3 2
|
sl@0
|
1315 |
0x10009DB3 0x10009DC4 2
|
sl@0
|
1316 |
0x101F8477 0x101F8478 1
|
sl@0
|
1317 |
0x101F847B 0x101F847C 1
|
sl@0
|
1318 |
|
sl@0
|
1319 |
@SYMTestCaseID SYSLIB-ECOM-UT-3576
|
sl@0
|
1320 |
@SYMTestCaseDesc Tests for CRegistryResolveTransaction::ListImplementationsL() function with matches
|
sl@0
|
1321 |
that fall into a PLUGIN1 Dll.
|
sl@0
|
1322 |
@SYMTestPriority High
|
sl@0
|
1323 |
@SYMTestActions List the implementations for an existing interface UID and
|
sl@0
|
1324 |
test for expected number of implementations.Check the VID of
|
sl@0
|
1325 |
every implementation match the VID of the DLL which the implementation
|
sl@0
|
1326 |
belongs to.
|
sl@0
|
1327 |
@SYMTestExpectedResults Expected number of implementations are returned.
|
sl@0
|
1328 |
@SYMEC EC43
|
sl@0
|
1329 |
*/
|
sl@0
|
1330 |
void CRegistryDataTest::ListImplementationsTestT1L()
|
sl@0
|
1331 |
{
|
sl@0
|
1332 |
TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-UT-3576 "));
|
sl@0
|
1333 |
TEST(iRegistryData->IndexValid());
|
sl@0
|
1334 |
// Set up client request and extended interfaces
|
sl@0
|
1335 |
TClientRequest clientReq;
|
sl@0
|
1336 |
RArray<TUid> extendedInterfaces;
|
sl@0
|
1337 |
CleanupClosePushL(extendedInterfaces);
|
sl@0
|
1338 |
TBool capability= ETrue;
|
sl@0
|
1339 |
CRegistryResolveTransaction* registryResolveTransaction = CRegistryResolveTransaction::NewL(*iRegistryData,extendedInterfaces,clientReq,capability);
|
sl@0
|
1340 |
CleanupStack::PushL(registryResolveTransaction);
|
sl@0
|
1341 |
RImplInfoArray* iUidListPtr = NULL;
|
sl@0
|
1342 |
TRAPD(err, iUidListPtr = &(registryResolveTransaction->ListImplementationsL(iInterfaceUid)));
|
sl@0
|
1343 |
|
sl@0
|
1344 |
TEST_OOM_ERR;
|
sl@0
|
1345 |
TEST2(err, KErrNone);
|
sl@0
|
1346 |
// Prints UIDs of implementations
|
sl@0
|
1347 |
_LIT(KUIDFormat,"Uid = 0x%08x\n");
|
sl@0
|
1348 |
_LIT(KLists,"There are %d Implementations \n");
|
sl@0
|
1349 |
|
sl@0
|
1350 |
TheTest.Printf(KLists, iUidListPtr->Count());
|
sl@0
|
1351 |
// Tests for expected number of implementations.
|
sl@0
|
1352 |
TEST(iUidListPtr->Count() == 4);
|
sl@0
|
1353 |
|
sl@0
|
1354 |
for(TInt index = 0; index < iUidListPtr->Count(); ++index)
|
sl@0
|
1355 |
{
|
sl@0
|
1356 |
// checks VID of every implementation
|
sl@0
|
1357 |
TEST(((*(iUidListPtr))[index]->VendorId()).iId == 0x70000001);
|
sl@0
|
1358 |
TUid uid = (*(iUidListPtr))[index]->ImplementationUid();
|
sl@0
|
1359 |
TheTest.Printf(KUIDFormat, uid);
|
sl@0
|
1360 |
}
|
sl@0
|
1361 |
CleanupStack::PopAndDestroy(registryResolveTransaction);
|
sl@0
|
1362 |
CleanupStack::PopAndDestroy(&extendedInterfaces);
|
sl@0
|
1363 |
}
|
sl@0
|
1364 |
|
sl@0
|
1365 |
/** In order to create an instance of CImplementationData, the test
|
sl@0
|
1366 |
has to create the chain of: drive data, dll data, and interface data.
|
sl@0
|
1367 |
Use this method to safe the repetitive work.
|
sl@0
|
1368 |
|
sl@0
|
1369 |
This method will not new the CImplementationData's parents if they
|
sl@0
|
1370 |
have been set. Hence can be used to add an implementation to an
|
sl@0
|
1371 |
existing interface data.
|
sl@0
|
1372 |
*/
|
sl@0
|
1373 |
void CRegistryDataTest::CreateImplL(TImplCreationStruct& aCreationData)
|
sl@0
|
1374 |
{
|
sl@0
|
1375 |
if (aCreationData.iImplData)
|
sl@0
|
1376 |
{
|
sl@0
|
1377 |
// Should not call this method. There is nothing to create.
|
sl@0
|
1378 |
User::Leave(KErrGeneral);
|
sl@0
|
1379 |
}
|
sl@0
|
1380 |
|
sl@0
|
1381 |
if (! aCreationData.iDriveData || (KErrNotFound == aCreationData.iDriveIndex))
|
sl@0
|
1382 |
{
|
sl@0
|
1383 |
aCreationData.iDriveIndex = iRegistryData->FindDriveL(
|
sl@0
|
1384 |
aCreationData.iDriveUnit, aCreationData.iDriveData);
|
sl@0
|
1385 |
if (KErrNotFound == aCreationData.iDriveIndex)
|
sl@0
|
1386 |
{
|
sl@0
|
1387 |
aCreationData.iDriveData = CRegistryData::CDriveData::NewLC(
|
sl@0
|
1388 |
aCreationData.iDriveUnit, iRegistryData);
|
sl@0
|
1389 |
iStateAccessor->AppendDriveDataL(*iRegistryData,
|
sl@0
|
1390 |
aCreationData.iDriveData);
|
sl@0
|
1391 |
CleanupStack::Pop(aCreationData.iDriveData);
|
sl@0
|
1392 |
|
sl@0
|
1393 |
aCreationData.iDriveIndex = iRegistryData->FindDriveL(
|
sl@0
|
1394 |
aCreationData.iDriveUnit,aCreationData.iDriveData);
|
sl@0
|
1395 |
}
|
sl@0
|
1396 |
}
|
sl@0
|
1397 |
|
sl@0
|
1398 |
if (! aCreationData.iDllData)
|
sl@0
|
1399 |
{
|
sl@0
|
1400 |
if (aCreationData.iInterfaceData)
|
sl@0
|
1401 |
{
|
sl@0
|
1402 |
User::Leave(KErrGeneral); // can not have child without parent
|
sl@0
|
1403 |
}
|
sl@0
|
1404 |
TEntry e;
|
sl@0
|
1405 |
e.iName = aCreationData.iDllPathName;
|
sl@0
|
1406 |
TParse fileparse;
|
sl@0
|
1407 |
fileparse.Set(e.iName,NULL,NULL);
|
sl@0
|
1408 |
aCreationData.iDllData = CRegistryData::CDllData::NewLC(
|
sl@0
|
1409 |
fileparse.NameAndExt(),e.iModified,KNullUid,KNullUid, aCreationData.iDriveData);
|
sl@0
|
1410 |
aCreationData.iDllData->iSecurityChecked = ETrue;
|
sl@0
|
1411 |
aCreationData.iDriveData->AddL(aCreationData.iDllData);
|
sl@0
|
1412 |
CleanupStack::Pop(aCreationData.iDllData);
|
sl@0
|
1413 |
}
|
sl@0
|
1414 |
|
sl@0
|
1415 |
if (!aCreationData.iInterfaceData)
|
sl@0
|
1416 |
{
|
sl@0
|
1417 |
aCreationData.iInterfaceData = CRegistryData::CInterfaceData::NewLC(
|
sl@0
|
1418 |
aCreationData.iInterfaceUid, aCreationData.iDllData);
|
sl@0
|
1419 |
aCreationData.iDllData->AddL(aCreationData.iInterfaceData);
|
sl@0
|
1420 |
CleanupStack::Pop(aCreationData.iInterfaceData);
|
sl@0
|
1421 |
}
|
sl@0
|
1422 |
|
sl@0
|
1423 |
HBufC* name = aCreationData.iImplDisplayName.AllocLC();
|
sl@0
|
1424 |
HBufC8* dataType = aCreationData.iImplDataType.AllocLC();
|
sl@0
|
1425 |
HBufC8* opaqueData = aCreationData.iImplOpaqueData.AllocLC();
|
sl@0
|
1426 |
|
sl@0
|
1427 |
aCreationData.iImplData = CRegistryData::CImplementationData::NewL(
|
sl@0
|
1428 |
aCreationData.iInterfaceData,
|
sl@0
|
1429 |
aCreationData.iImplUid,
|
sl@0
|
1430 |
aCreationData.iImplVersion,
|
sl@0
|
1431 |
name,
|
sl@0
|
1432 |
dataType,
|
sl@0
|
1433 |
opaqueData,
|
sl@0
|
1434 |
aCreationData.iDriveUnit,
|
sl@0
|
1435 |
aCreationData.iRomOnly,
|
sl@0
|
1436 |
aCreationData.iRomBased);
|
sl@0
|
1437 |
|
sl@0
|
1438 |
CleanupStack::Pop(opaqueData);
|
sl@0
|
1439 |
CleanupStack::Pop(dataType);
|
sl@0
|
1440 |
CleanupStack::Pop(name);
|
sl@0
|
1441 |
|
sl@0
|
1442 |
CleanupStack::PushL(aCreationData.iImplData);
|
sl@0
|
1443 |
aCreationData.iInterfaceData->AddL(aCreationData.iImplData);
|
sl@0
|
1444 |
CleanupStack::Pop(aCreationData.iImplData);
|
sl@0
|
1445 |
}
|
sl@0
|
1446 |
|
sl@0
|
1447 |
|
sl@0
|
1448 |
/**
|
sl@0
|
1449 |
@SYMTestCaseID SYSLIB-ECOM-CT-0290
|
sl@0
|
1450 |
@SYMTestCaseDesc Unit tests for CRegistryData::CImplementationData
|
sl@0
|
1451 |
@SYMTestPriority High
|
sl@0
|
1452 |
@SYMTestActions Create instances using NewLC and NewL. Check that the parent supplied is
|
sl@0
|
1453 |
correctly set.
|
sl@0
|
1454 |
Externalize instance created by NewL.
|
sl@0
|
1455 |
Internalize data set by previous step. Check implementation data is identical.
|
sl@0
|
1456 |
Check compare uid returns correct values.
|
sl@0
|
1457 |
Check for no crash and memory leaks.
|
sl@0
|
1458 |
@SYMTestExpectedResults The test must not fail.
|
sl@0
|
1459 |
@SYMPREQ PREQ277
|
sl@0
|
1460 |
*/
|
sl@0
|
1461 |
void CRegistryDataTest::ImplementationDataTestL()
|
sl@0
|
1462 |
{
|
sl@0
|
1463 |
TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-0290 "));
|
sl@0
|
1464 |
// Set up for heap leak checking
|
sl@0
|
1465 |
__UHEAP_MARK;
|
sl@0
|
1466 |
|
sl@0
|
1467 |
// and leaking thread handles
|
sl@0
|
1468 |
TInt startProcessHandleCount;
|
sl@0
|
1469 |
TInt startThreadHandleCount;
|
sl@0
|
1470 |
TInt endProcessHandleCount;
|
sl@0
|
1471 |
TInt endThreadHandleCount;
|
sl@0
|
1472 |
|
sl@0
|
1473 |
// Test Starts...
|
sl@0
|
1474 |
RThread().HandleCount(startProcessHandleCount, startThreadHandleCount);
|
sl@0
|
1475 |
|
sl@0
|
1476 |
// Test Data
|
sl@0
|
1477 |
TUid testImplUid;
|
sl@0
|
1478 |
testImplUid.iUid = KCExampleInterfaceUid.iUid;
|
sl@0
|
1479 |
TInt testImplVersion = 2;
|
sl@0
|
1480 |
_LIT(KTestImplName, "Implementation");
|
sl@0
|
1481 |
_LIT8(KTestImplDataType, "Data Type");
|
sl@0
|
1482 |
_LIT8(KTestImplOpaqueData, "Opaque Data");
|
sl@0
|
1483 |
TUid testExtendedInterfaceUid1;
|
sl@0
|
1484 |
TUid testExtendedInterfaceUid2;
|
sl@0
|
1485 |
testExtendedInterfaceUid1.iUid = 0x10009E44;
|
sl@0
|
1486 |
testExtendedInterfaceUid2.iUid = 0x10009E45;
|
sl@0
|
1487 |
|
sl@0
|
1488 |
TDriveUnit testImplDrive = EDriveC;
|
sl@0
|
1489 |
TBool testImplRomOnly = ETrue;
|
sl@0
|
1490 |
TBool testImplRomBased = EFalse;
|
sl@0
|
1491 |
|
sl@0
|
1492 |
CRegistryData* registryData = CRegistryData::NewL(TheFs);
|
sl@0
|
1493 |
CleanupStack::PushL(registryData);
|
sl@0
|
1494 |
CRegistryData::CDriveData* driveData = CRegistryData::CDriveData::NewLC(testImplDrive, registryData);
|
sl@0
|
1495 |
CRegistryData::CDllData* dllData = CRegistryData::CDllData::NewLC(driveData);
|
sl@0
|
1496 |
CRegistryData::CInterfaceData* interfaceData = CRegistryData::CInterfaceData::NewLC(dllData);
|
sl@0
|
1497 |
|
sl@0
|
1498 |
// Start tests...
|
sl@0
|
1499 |
// NewLC test
|
sl@0
|
1500 |
CRegistryData::CImplementationData* implementation1;
|
sl@0
|
1501 |
implementation1 = CRegistryData::CImplementationData::NewLC(interfaceData);
|
sl@0
|
1502 |
TEST(interfaceData == implementation1->iParent);
|
sl@0
|
1503 |
|
sl@0
|
1504 |
// NewL test
|
sl@0
|
1505 |
HBufC* name = KTestImplName().AllocLC();
|
sl@0
|
1506 |
HBufC8* dataType = KTestImplDataType().AllocLC();
|
sl@0
|
1507 |
HBufC8* opaqueData = KTestImplOpaqueData().AllocLC();
|
sl@0
|
1508 |
|
sl@0
|
1509 |
RArray<TUid>* extendedInterfaces = new(ELeave) RArray<TUid>;
|
sl@0
|
1510 |
|
sl@0
|
1511 |
CleanupStack::PushL(TCleanupItem(CloseAndDeleteArray, extendedInterfaces));
|
sl@0
|
1512 |
|
sl@0
|
1513 |
CRegistryData::CImplementationData* implementation2;
|
sl@0
|
1514 |
implementation2 = CRegistryData::CImplementationData::NewL(interfaceData,
|
sl@0
|
1515 |
testImplUid,
|
sl@0
|
1516 |
testImplVersion,
|
sl@0
|
1517 |
name,
|
sl@0
|
1518 |
dataType,
|
sl@0
|
1519 |
opaqueData,
|
sl@0
|
1520 |
testImplDrive,
|
sl@0
|
1521 |
testImplRomOnly,
|
sl@0
|
1522 |
testImplRomBased,
|
sl@0
|
1523 |
extendedInterfaces);
|
sl@0
|
1524 |
|
sl@0
|
1525 |
CleanupStack::Pop(extendedInterfaces);
|
sl@0
|
1526 |
CleanupStack::Pop(opaqueData);
|
sl@0
|
1527 |
CleanupStack::Pop(dataType);
|
sl@0
|
1528 |
CleanupStack::Pop(name);
|
sl@0
|
1529 |
|
sl@0
|
1530 |
CleanupStack::PushL(implementation2);
|
sl@0
|
1531 |
TEST(interfaceData == implementation1->iParent);
|
sl@0
|
1532 |
|
sl@0
|
1533 |
//Add extended interface
|
sl@0
|
1534 |
implementation2->iImplInfo->AddExtendedInterfaceL(testExtendedInterfaceUid1);
|
sl@0
|
1535 |
implementation2->iImplInfo->AddExtendedInterfaceL(testExtendedInterfaceUid2);
|
sl@0
|
1536 |
|
sl@0
|
1537 |
// Externalize test
|
sl@0
|
1538 |
_LIT(KFileName,"c:\\ecomimpldata.dat");
|
sl@0
|
1539 |
RFile file;
|
sl@0
|
1540 |
TFileName fileName(KFileName);
|
sl@0
|
1541 |
TEST2(file.Replace(TheFs,fileName,EFileWrite|EFileRead), KErrNone);
|
sl@0
|
1542 |
RFileBuf buf;
|
sl@0
|
1543 |
CleanupClosePushL(buf);
|
sl@0
|
1544 |
buf.Attach(file);
|
sl@0
|
1545 |
RWriteStream stream(&buf);
|
sl@0
|
1546 |
|
sl@0
|
1547 |
implementation2->ExternalizeL(stream);
|
sl@0
|
1548 |
buf.SynchL();
|
sl@0
|
1549 |
CleanupStack::PopAndDestroy(&buf);
|
sl@0
|
1550 |
|
sl@0
|
1551 |
// Internalize test
|
sl@0
|
1552 |
TInt err = file.Open(TheFs,fileName,EFileRead);
|
sl@0
|
1553 |
TEST2(err, KErrNone);
|
sl@0
|
1554 |
RFileBuf buf2;
|
sl@0
|
1555 |
CleanupClosePushL(buf2);
|
sl@0
|
1556 |
buf2.Attach(file);
|
sl@0
|
1557 |
RReadStream stream2(&buf2);
|
sl@0
|
1558 |
|
sl@0
|
1559 |
implementation1->InternalizeL(stream2);
|
sl@0
|
1560 |
|
sl@0
|
1561 |
TEST(implementation1->iImplInfo->ImplementationUid().Uid == testImplUid.Uid);
|
sl@0
|
1562 |
TEST(implementation1->iImplInfo->Version() == testImplVersion);
|
sl@0
|
1563 |
TEST2(KErrNone, name->Compare(implementation1->iImplInfo->DisplayName()));
|
sl@0
|
1564 |
TEST2(KErrNone, dataType->Compare(implementation1->iImplInfo->DataType()));
|
sl@0
|
1565 |
TEST2(KErrNone, opaqueData->Compare(implementation1->iImplInfo->OpaqueData()));
|
sl@0
|
1566 |
TEST(implementation1->iImplInfo->Drive() == testImplDrive);
|
sl@0
|
1567 |
TEST(implementation1->iImplInfo->RomOnly() == testImplRomOnly);
|
sl@0
|
1568 |
TEST(implementation1->iImplInfo->RomBased() == testImplRomBased);
|
sl@0
|
1569 |
//Get extended interface and check
|
sl@0
|
1570 |
RArray<TUid>* extendedInterfaceList = implementation1->iImplInfo->GetExtendedInterfaceList();
|
sl@0
|
1571 |
TEST((*extendedInterfaceList)[0] == testExtendedInterfaceUid1);
|
sl@0
|
1572 |
TEST((*extendedInterfaceList)[1] == testExtendedInterfaceUid2);
|
sl@0
|
1573 |
|
sl@0
|
1574 |
CleanupStack::PopAndDestroy(&buf2);
|
sl@0
|
1575 |
|
sl@0
|
1576 |
// Setup data for Compare Implementation Uid
|
sl@0
|
1577 |
name = KTestImplName().AllocLC();
|
sl@0
|
1578 |
dataType = KTestImplDataType().AllocLC();
|
sl@0
|
1579 |
opaqueData = KTestImplOpaqueData().AllocLC();
|
sl@0
|
1580 |
TUid compareTestImplUid;
|
sl@0
|
1581 |
compareTestImplUid.iUid = 0x10009DC3;
|
sl@0
|
1582 |
CRegistryData::CImplementationData* implementation3;
|
sl@0
|
1583 |
implementation3 = CRegistryData::CImplementationData::NewL(interfaceData,
|
sl@0
|
1584 |
compareTestImplUid,
|
sl@0
|
1585 |
testImplVersion,
|
sl@0
|
1586 |
name,
|
sl@0
|
1587 |
dataType,
|
sl@0
|
1588 |
opaqueData,
|
sl@0
|
1589 |
testImplDrive,
|
sl@0
|
1590 |
testImplRomOnly,
|
sl@0
|
1591 |
testImplRomBased);
|
sl@0
|
1592 |
CleanupStack::Pop(opaqueData);
|
sl@0
|
1593 |
CleanupStack::Pop(dataType);
|
sl@0
|
1594 |
CleanupStack::Pop(name);
|
sl@0
|
1595 |
|
sl@0
|
1596 |
CleanupStack::PushL(implementation3);
|
sl@0
|
1597 |
TEST(interfaceData == implementation3->iParent);
|
sl@0
|
1598 |
|
sl@0
|
1599 |
// Compare Implementation Uid test
|
sl@0
|
1600 |
TEST(CRegistryData::CImplementationData::CompareImplUid(*implementation3, *implementation2) > 0);
|
sl@0
|
1601 |
TEST(CRegistryData::CImplementationData::CompareImplUid(*implementation1, *implementation3) < 0);
|
sl@0
|
1602 |
TEST(CRegistryData::CImplementationData::CompareImplUid(*implementation3, *implementation3) == 0);
|
sl@0
|
1603 |
|
sl@0
|
1604 |
// Tidy up
|
sl@0
|
1605 |
CleanupStack::PopAndDestroy(7, registryData);
|
sl@0
|
1606 |
TheFs.Delete(KFileName);
|
sl@0
|
1607 |
|
sl@0
|
1608 |
// Check for open handles
|
sl@0
|
1609 |
RThread().HandleCount(endProcessHandleCount, endThreadHandleCount);
|
sl@0
|
1610 |
TEST(startThreadHandleCount == endThreadHandleCount);
|
sl@0
|
1611 |
|
sl@0
|
1612 |
// Test Ends...
|
sl@0
|
1613 |
__UHEAP_MARKEND;
|
sl@0
|
1614 |
}
|
sl@0
|
1615 |
|
sl@0
|
1616 |
/**
|
sl@0
|
1617 |
@SYMTestCaseID SYSLIB-ECOM-CT-0291
|
sl@0
|
1618 |
@SYMTestCaseDesc Tests for CRegistryData::InsertIntoIndexRemoveFromIndexTestL
|
sl@0
|
1619 |
See CR65BCA3.
|
sl@0
|
1620 |
@SYMTestPriority High
|
sl@0
|
1621 |
@SYMTestActions Create 2 identical implementations, 1 for the Z drive and 1 for the C drive,
|
sl@0
|
1622 |
including parents and add to the registry.
|
sl@0
|
1623 |
Create a 3rd identical implementation, except for the name, for the C drive.
|
sl@0
|
1624 |
Check there are no implementations in the Implementation Index List.
|
sl@0
|
1625 |
Insert the Z implementations into the Implementation Index List and check.
|
sl@0
|
1626 |
Insert the 1st C implementation with security check on and check the upgrade
|
sl@0
|
1627 |
took place.
|
sl@0
|
1628 |
Remove the implementation. Check.
|
sl@0
|
1629 |
Add the Z drive implementation. Check.
|
sl@0
|
1630 |
Insert the 1st C implementation with security check off and check the upgrade
|
sl@0
|
1631 |
took place.
|
sl@0
|
1632 |
Remove the implementation. Check.
|
sl@0
|
1633 |
Add the Z drive implementation. Check.
|
sl@0
|
1634 |
Insert the 2nd C implementation with security check on and check the upgrade
|
sl@0
|
1635 |
did not take place.
|
sl@0
|
1636 |
Insert the 2nd C implementation with security check off and check the upgrade
|
sl@0
|
1637 |
did took place.
|
sl@0
|
1638 |
Remove the implementation. Check.
|
sl@0
|
1639 |
Check for no crash and memory leaks.
|
sl@0
|
1640 |
@SYMTestExpectedResults The test must not fail.
|
sl@0
|
1641 |
@SYMPREQ PREQ277
|
sl@0
|
1642 |
*/
|
sl@0
|
1643 |
void CRegistryDataTest::InsertIntoIndexRemoveFromIndexTestL()
|
sl@0
|
1644 |
{
|
sl@0
|
1645 |
TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-0291 "));
|
sl@0
|
1646 |
_LIT(KTestImplName, "Implementation");
|
sl@0
|
1647 |
_LIT8(KTestImplDataType, "Data Type");
|
sl@0
|
1648 |
_LIT8(KTestImplOpaqueData, "Opaque Data");
|
sl@0
|
1649 |
|
sl@0
|
1650 |
// create Z drive data
|
sl@0
|
1651 |
TDriveUnit implDriveZ = EDriveZ;
|
sl@0
|
1652 |
CRegistryData::CDriveData* driveDataZ = CRegistryData::CDriveData::NewLC(implDriveZ, iRegistryData);
|
sl@0
|
1653 |
iStateAccessor->AppendDriveDataL(*iRegistryData, driveDataZ);
|
sl@0
|
1654 |
CleanupStack::Pop(driveDataZ);
|
sl@0
|
1655 |
|
sl@0
|
1656 |
// Create Implementation 1 on Z drive
|
sl@0
|
1657 |
_LIT(KEComUpgradeExample1OnZ, "Z:\\sys\\bin\\EComUpgradeExampleOne.dll");
|
sl@0
|
1658 |
TEntry upgradeExample1OnZ;
|
sl@0
|
1659 |
upgradeExample1OnZ.iName = KEComUpgradeExample1OnZ;
|
sl@0
|
1660 |
TParse fileparse;
|
sl@0
|
1661 |
fileparse.Set(KEComUpgradeExample1OnZ,NULL,NULL);
|
sl@0
|
1662 |
|
sl@0
|
1663 |
CRegistryData::CDllData* dllDataZ = CRegistryData::CDllData::NewLC(fileparse.NameAndExt(),upgradeExample1OnZ.iModified,KNullUid, KNullUid, driveDataZ);
|
sl@0
|
1664 |
dllDataZ->iSecurityChecked = ETrue;
|
sl@0
|
1665 |
driveDataZ->AddL(dllDataZ);
|
sl@0
|
1666 |
CleanupStack::Pop(dllDataZ);
|
sl@0
|
1667 |
CRegistryData::CInterfaceData* interfaceDataZ = CRegistryData::CInterfaceData::NewLC(iInterfaceUid, dllDataZ);
|
sl@0
|
1668 |
dllDataZ->AddL(interfaceDataZ);
|
sl@0
|
1669 |
CleanupStack::Pop(interfaceDataZ);
|
sl@0
|
1670 |
HBufC* name = KTestImplName().AllocLC();
|
sl@0
|
1671 |
HBufC8* dataType = KTestImplDataType().AllocLC();
|
sl@0
|
1672 |
HBufC8* opaqueData = KTestImplOpaqueData().AllocLC();
|
sl@0
|
1673 |
|
sl@0
|
1674 |
CRegistryData::CImplementationData* implementation1;
|
sl@0
|
1675 |
implementation1 = CRegistryData::CImplementationData::NewL(interfaceDataZ,
|
sl@0
|
1676 |
iImplementationUid,
|
sl@0
|
1677 |
1,
|
sl@0
|
1678 |
name,
|
sl@0
|
1679 |
dataType,
|
sl@0
|
1680 |
opaqueData,
|
sl@0
|
1681 |
implDriveZ,
|
sl@0
|
1682 |
EFalse,
|
sl@0
|
1683 |
EFalse);
|
sl@0
|
1684 |
CleanupStack::Pop(opaqueData);
|
sl@0
|
1685 |
CleanupStack::Pop(dataType);
|
sl@0
|
1686 |
CleanupStack::Pop(name);
|
sl@0
|
1687 |
CleanupStack::PushL(implementation1);
|
sl@0
|
1688 |
interfaceDataZ->AddL(implementation1);
|
sl@0
|
1689 |
CleanupStack::Pop(implementation1);
|
sl@0
|
1690 |
|
sl@0
|
1691 |
// create C drive data
|
sl@0
|
1692 |
TDriveUnit implDriveC = EDriveC;
|
sl@0
|
1693 |
CRegistryData::CDriveData* driveDataC = CRegistryData::CDriveData::NewLC(implDriveC, iRegistryData);
|
sl@0
|
1694 |
iStateAccessor->AppendDriveDataL(*iRegistryData, driveDataC);
|
sl@0
|
1695 |
CleanupStack::Pop(driveDataC);
|
sl@0
|
1696 |
|
sl@0
|
1697 |
// Create Implementation 1 on C drive
|
sl@0
|
1698 |
_LIT(KEComUpgradeExample1OnC, "C:\\sys\\bin\\EComUpgradeExampleOne.dll");
|
sl@0
|
1699 |
TEntry upgradeExample1OnC;
|
sl@0
|
1700 |
upgradeExample1OnC.iName = KEComUpgradeExample1OnC;
|
sl@0
|
1701 |
fileparse.Set(KEComUpgradeExample1OnC,NULL,NULL);
|
sl@0
|
1702 |
|
sl@0
|
1703 |
CRegistryData::CDllData* dllDataC1 = CRegistryData::CDllData::NewLC(fileparse.NameAndExt(),upgradeExample1OnC.iModified,KNullUid, KNullUid, driveDataC);
|
sl@0
|
1704 |
dllDataC1->iSecurityChecked = ETrue;
|
sl@0
|
1705 |
driveDataC->AddL(dllDataC1);
|
sl@0
|
1706 |
CleanupStack::Pop(dllDataC1);
|
sl@0
|
1707 |
CRegistryData::CInterfaceData* interfaceDataC1 = CRegistryData::CInterfaceData::NewLC(iInterfaceUid, dllDataC1);
|
sl@0
|
1708 |
dllDataC1->AddL(interfaceDataC1);
|
sl@0
|
1709 |
CleanupStack::Pop(interfaceDataC1);
|
sl@0
|
1710 |
name = KTestImplName().AllocLC();
|
sl@0
|
1711 |
dataType = KTestImplDataType().AllocLC();
|
sl@0
|
1712 |
opaqueData = KTestImplOpaqueData().AllocLC();
|
sl@0
|
1713 |
|
sl@0
|
1714 |
CRegistryData::CImplementationData* implementation2;
|
sl@0
|
1715 |
implementation2 = CRegistryData::CImplementationData::NewL(interfaceDataC1,
|
sl@0
|
1716 |
iImplementationUid,
|
sl@0
|
1717 |
2,
|
sl@0
|
1718 |
name,
|
sl@0
|
1719 |
dataType,
|
sl@0
|
1720 |
opaqueData,
|
sl@0
|
1721 |
implDriveC,
|
sl@0
|
1722 |
EFalse,
|
sl@0
|
1723 |
EFalse);
|
sl@0
|
1724 |
CleanupStack::Pop(opaqueData);
|
sl@0
|
1725 |
CleanupStack::Pop(dataType);
|
sl@0
|
1726 |
CleanupStack::Pop(name);
|
sl@0
|
1727 |
CleanupStack::PushL(implementation2);
|
sl@0
|
1728 |
interfaceDataC1->AddL(implementation2);
|
sl@0
|
1729 |
CleanupStack::Pop(implementation2);
|
sl@0
|
1730 |
|
sl@0
|
1731 |
// Create Implementation 2 on C drive
|
sl@0
|
1732 |
_LIT(KEComUpgradeExample2OnC, "C:\\sys\\bin\\EComUpgradeExampleTwo.dll");
|
sl@0
|
1733 |
TEntry upgradeExample2OnC;
|
sl@0
|
1734 |
upgradeExample2OnC.iName = KEComUpgradeExample2OnC;
|
sl@0
|
1735 |
fileparse.Set(KEComUpgradeExample2OnC,NULL,NULL);
|
sl@0
|
1736 |
|
sl@0
|
1737 |
CRegistryData::CDllData* dllDataC2 = CRegistryData::CDllData::NewLC(fileparse.NameAndExt(),upgradeExample2OnC.iModified,KNullUid,KNullUid, driveDataC);
|
sl@0
|
1738 |
dllDataC2->iSecurityChecked = ETrue;
|
sl@0
|
1739 |
driveDataC->AddL(dllDataC2);
|
sl@0
|
1740 |
CleanupStack::Pop(dllDataC2);
|
sl@0
|
1741 |
CRegistryData::CInterfaceData* interfaceDataC2 = CRegistryData::CInterfaceData::NewLC(iInterfaceUid, dllDataC2);
|
sl@0
|
1742 |
dllDataC2->AddL(interfaceDataC2);
|
sl@0
|
1743 |
CleanupStack::Pop(interfaceDataC2);
|
sl@0
|
1744 |
name = KTestImplName().AllocLC();
|
sl@0
|
1745 |
dataType = KTestImplDataType().AllocLC();
|
sl@0
|
1746 |
opaqueData = KTestImplOpaqueData().AllocLC();
|
sl@0
|
1747 |
|
sl@0
|
1748 |
CRegistryData::CImplementationData* implementation3;
|
sl@0
|
1749 |
implementation3 = CRegistryData::CImplementationData::NewL(interfaceDataC2,
|
sl@0
|
1750 |
iImplementationUid,
|
sl@0
|
1751 |
2,
|
sl@0
|
1752 |
name,
|
sl@0
|
1753 |
dataType,
|
sl@0
|
1754 |
opaqueData,
|
sl@0
|
1755 |
implDriveC,
|
sl@0
|
1756 |
EFalse,
|
sl@0
|
1757 |
EFalse);
|
sl@0
|
1758 |
CleanupStack::Pop(opaqueData);
|
sl@0
|
1759 |
CleanupStack::Pop(dataType);
|
sl@0
|
1760 |
CleanupStack::Pop(name);
|
sl@0
|
1761 |
CleanupStack::PushL(implementation3);
|
sl@0
|
1762 |
interfaceDataC2->AddL(implementation3);
|
sl@0
|
1763 |
CleanupStack::Pop(implementation3);
|
sl@0
|
1764 |
|
sl@0
|
1765 |
//===========================================================================
|
sl@0
|
1766 |
|
sl@0
|
1767 |
// Check index is empty
|
sl@0
|
1768 |
TEST(iStateAccessor->ImplementationsCount(*iRegistryData) == 0);
|
sl@0
|
1769 |
|
sl@0
|
1770 |
//===========================================================================
|
sl@0
|
1771 |
|
sl@0
|
1772 |
// Add Implementation from Z drive to index
|
sl@0
|
1773 |
TBool result = iRegistryData->InsertIntoIndexL(implementation1, ETrue);
|
sl@0
|
1774 |
TEST2(result, ETrue);
|
sl@0
|
1775 |
|
sl@0
|
1776 |
RImplDataArray impls;
|
sl@0
|
1777 |
CleanupClosePushL(impls);
|
sl@0
|
1778 |
iStateAccessor->GetImplementationInfoL(*iRegistryData, iInterfaceUid, impls);
|
sl@0
|
1779 |
TEST(impls.Count() == 1);
|
sl@0
|
1780 |
TEST(impls[0]->iImplInfo->Drive() == implDriveZ);
|
sl@0
|
1781 |
|
sl@0
|
1782 |
//===========================================================================
|
sl@0
|
1783 |
|
sl@0
|
1784 |
// Add Implementation from C drive to index - this should upgrade existing implementation
|
sl@0
|
1785 |
result = iRegistryData->InsertIntoIndexL(implementation2, ETrue);
|
sl@0
|
1786 |
TEST2(result, ETrue);
|
sl@0
|
1787 |
|
sl@0
|
1788 |
iStateAccessor->GetImplementationInfoL(*iRegistryData, iInterfaceUid, impls);
|
sl@0
|
1789 |
TEST(impls.Count() == 1);
|
sl@0
|
1790 |
TEST(impls[0]->iImplInfo->Drive() == implDriveC);
|
sl@0
|
1791 |
|
sl@0
|
1792 |
//===========================================================================
|
sl@0
|
1793 |
|
sl@0
|
1794 |
// remove existing implementation which causes rollback to Z drive impl
|
sl@0
|
1795 |
iRegistryData->RemoveFromIndexL(dllDataC1);
|
sl@0
|
1796 |
iStateAccessor->GetImplementationInfoL(*iRegistryData, iInterfaceUid, impls);
|
sl@0
|
1797 |
TEST(impls.Count() == 1);
|
sl@0
|
1798 |
TEST(impls[0]->iImplInfo->Drive() == implDriveZ);
|
sl@0
|
1799 |
|
sl@0
|
1800 |
//===========================================================================
|
sl@0
|
1801 |
|
sl@0
|
1802 |
// Add Implementation from C drive to index - this should upgrade existing implementation
|
sl@0
|
1803 |
result = iRegistryData->InsertIntoIndexL(implementation2, EFalse);
|
sl@0
|
1804 |
TEST2(result, ETrue);
|
sl@0
|
1805 |
|
sl@0
|
1806 |
iStateAccessor->GetImplementationInfoL(*iRegistryData, iInterfaceUid, impls);
|
sl@0
|
1807 |
TEST(impls.Count() == 1);
|
sl@0
|
1808 |
TEST(impls[0]->iImplInfo->Drive() == implDriveC);
|
sl@0
|
1809 |
//===========================================================================
|
sl@0
|
1810 |
|
sl@0
|
1811 |
// remove existing implementation which causes rollback to Z drive impl
|
sl@0
|
1812 |
iRegistryData->RemoveFromIndexL(dllDataC1);
|
sl@0
|
1813 |
iStateAccessor->GetImplementationInfoL(*iRegistryData, iInterfaceUid, impls);
|
sl@0
|
1814 |
TEST(impls.Count() == 1);
|
sl@0
|
1815 |
TEST(impls[0]->iImplInfo->Drive() == implDriveZ);
|
sl@0
|
1816 |
//===========================================================================
|
sl@0
|
1817 |
|
sl@0
|
1818 |
// Add Implementation with different name from C drive to index
|
sl@0
|
1819 |
// this should NOT upgrade existing implementation
|
sl@0
|
1820 |
result = iRegistryData->InsertIntoIndexL(implementation3, ETrue);
|
sl@0
|
1821 |
TEST2(result, EFalse);
|
sl@0
|
1822 |
|
sl@0
|
1823 |
iStateAccessor->GetImplementationInfoL(*iRegistryData, iInterfaceUid, impls);
|
sl@0
|
1824 |
TEST(impls.Count() == 1);
|
sl@0
|
1825 |
TEST(impls[0]->iImplInfo->Drive() == implDriveZ);
|
sl@0
|
1826 |
//===========================================================================
|
sl@0
|
1827 |
|
sl@0
|
1828 |
// Add Implementation with different name from C drive to index
|
sl@0
|
1829 |
// this should upgrade existing implementation as security check is OFF
|
sl@0
|
1830 |
result = iRegistryData->InsertIntoIndexL(implementation3, EFalse);
|
sl@0
|
1831 |
TEST2(result, ETrue);
|
sl@0
|
1832 |
|
sl@0
|
1833 |
iStateAccessor->GetImplementationInfoL(*iRegistryData, iInterfaceUid, impls);
|
sl@0
|
1834 |
TEST(impls.Count() == 1);
|
sl@0
|
1835 |
TEST(impls[0]->iImplInfo->Drive() == implDriveC);
|
sl@0
|
1836 |
//===========================================================================
|
sl@0
|
1837 |
|
sl@0
|
1838 |
// remove existing implementation which causes rollback to Z drive impl
|
sl@0
|
1839 |
iRegistryData->RemoveFromIndexL(dllDataC2);
|
sl@0
|
1840 |
iStateAccessor->GetImplementationInfoL(*iRegistryData, iInterfaceUid, impls);
|
sl@0
|
1841 |
TEST(impls.Count() == 1);
|
sl@0
|
1842 |
TEST(impls[0]->iImplInfo->Drive() == implDriveZ);
|
sl@0
|
1843 |
CleanupStack::PopAndDestroy(&impls);
|
sl@0
|
1844 |
}
|
sl@0
|
1845 |
|
sl@0
|
1846 |
/**
|
sl@0
|
1847 |
Test case for Defect ECOM Index must rollback to original Impl. if upgrade impl. is removed
|
sl@0
|
1848 |
|
sl@0
|
1849 |
@SYMTestCaseID SYSLIB-ECOM-CT-1373
|
sl@0
|
1850 |
@SYMTestCaseDesc Test case for defect number DEF065559 ECOM Index must rollback
|
sl@0
|
1851 |
to original Impl. if upgrade impl. is removed.
|
sl@0
|
1852 |
@SYMTestPriority High
|
sl@0
|
1853 |
@SYMTestActions Create 3 identical implementations, 1 for the Z drive, 1 for the C drive and
|
sl@0
|
1854 |
1 for the D drive, including parents and add to the registry.
|
sl@0
|
1855 |
Insert the Z implementation and check.
|
sl@0
|
1856 |
Insert the C implementation and check the upgrade took place.
|
sl@0
|
1857 |
Insert the D implementation and check the upgrade took place.
|
sl@0
|
1858 |
Remove the D implementation and check rollback to C occurred.
|
sl@0
|
1859 |
Remove the C implementation and check rollback to Z occurred.
|
sl@0
|
1860 |
Insert the C implementation and check the upgrade took place.
|
sl@0
|
1861 |
Insert the D implementation and check the upgrade took place.
|
sl@0
|
1862 |
Remove the C implementation and check no rollback occurred. i.e D impl available
|
sl@0
|
1863 |
Remove the D implementation and check rollback to Z occurred.
|
sl@0
|
1864 |
Insert the D implementation and check the upgrade took place.
|
sl@0
|
1865 |
Insert the C implementation and check no upgrade took place. i.e D impl available
|
sl@0
|
1866 |
Remove the D implementation and check rollback to C occurred.
|
sl@0
|
1867 |
Remove the C implementation and check rollback to Z occurred.
|
sl@0
|
1868 |
Check for no crash and memory leaks.
|
sl@0
|
1869 |
@SYMTestExpectedResults The test must not fail.
|
sl@0
|
1870 |
@SYMDEF DEF065559
|
sl@0
|
1871 |
*/
|
sl@0
|
1872 |
void CRegistryDataTest::RollbackTestL()
|
sl@0
|
1873 |
{
|
sl@0
|
1874 |
TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-1373 "));
|
sl@0
|
1875 |
_LIT(KTestImplName, "Implementation");
|
sl@0
|
1876 |
_LIT8(KTestImplDataType, "Data Type");
|
sl@0
|
1877 |
_LIT8(KTestImplOpaqueData, "Opaque Data");
|
sl@0
|
1878 |
|
sl@0
|
1879 |
// Create Implementation 1 on Z drive
|
sl@0
|
1880 |
_LIT(KEComUpgradeExample1OnZ, "Z:\\sys\\bin\\EComUpgradeExampleOne.dll");
|
sl@0
|
1881 |
TImplCreationStruct zDllData(EDriveZ,
|
sl@0
|
1882 |
iInterfaceUid,
|
sl@0
|
1883 |
iImplementationUid,
|
sl@0
|
1884 |
KEComUpgradeExample1OnZ,
|
sl@0
|
1885 |
KTestImplName,
|
sl@0
|
1886 |
KTestImplDataType,
|
sl@0
|
1887 |
KTestImplOpaqueData,
|
sl@0
|
1888 |
1,
|
sl@0
|
1889 |
ETrue, // Z: is ROMBased
|
sl@0
|
1890 |
EFalse);
|
sl@0
|
1891 |
CreateImplL(zDllData);
|
sl@0
|
1892 |
|
sl@0
|
1893 |
// Create Implementation 1 on C drive
|
sl@0
|
1894 |
_LIT(KEComUpgradeExample1OnC, "C:\\sys\\bin\\EComUpgradeExampleOne.dll");
|
sl@0
|
1895 |
TImplCreationStruct cDllData(EDriveC,
|
sl@0
|
1896 |
iInterfaceUid,
|
sl@0
|
1897 |
iImplementationUid,
|
sl@0
|
1898 |
KEComUpgradeExample1OnC,
|
sl@0
|
1899 |
KTestImplName,
|
sl@0
|
1900 |
KTestImplDataType,
|
sl@0
|
1901 |
KTestImplOpaqueData,
|
sl@0
|
1902 |
2);
|
sl@0
|
1903 |
CreateImplL(cDllData);
|
sl@0
|
1904 |
|
sl@0
|
1905 |
// create drive data on third drive.
|
sl@0
|
1906 |
|
sl@0
|
1907 |
// find a valid drive which is not Z and not C.
|
sl@0
|
1908 |
TEComCachedDriveInfoIterator iter(*iRegistryData->iCachedDriveInfo);
|
sl@0
|
1909 |
iter.Last(); // positioned at Z:
|
sl@0
|
1910 |
iter.Prev(); // the drive before Z:
|
sl@0
|
1911 |
for (; iter.InRange(); iter.Prev())
|
sl@0
|
1912 |
{
|
sl@0
|
1913 |
if (iter.DriveNumber() != EDriveC)
|
sl@0
|
1914 |
{
|
sl@0
|
1915 |
break;
|
sl@0
|
1916 |
}
|
sl@0
|
1917 |
}
|
sl@0
|
1918 |
|
sl@0
|
1919 |
TEST(iter.InRange() && iter.DriveNumber() != EDriveC);
|
sl@0
|
1920 |
|
sl@0
|
1921 |
TDriveName drvName = iter.DriveUnit().Name();
|
sl@0
|
1922 |
|
sl@0
|
1923 |
_LIT(KEComUpgradeExample1On3, "_:\\sys\\bin\\EComUpgradeExampleOne.dll");
|
sl@0
|
1924 |
TBuf<36> dllName3(KEComUpgradeExample1On3);
|
sl@0
|
1925 |
dllName3[0] = drvName[0];
|
sl@0
|
1926 |
TImplCreationStruct thirdDllData(iter.DriveNumber(),
|
sl@0
|
1927 |
iInterfaceUid,
|
sl@0
|
1928 |
iImplementationUid,
|
sl@0
|
1929 |
dllName3,
|
sl@0
|
1930 |
KTestImplName,
|
sl@0
|
1931 |
KTestImplDataType,
|
sl@0
|
1932 |
KTestImplOpaqueData,
|
sl@0
|
1933 |
3);
|
sl@0
|
1934 |
CreateImplL(thirdDllData);
|
sl@0
|
1935 |
//===========================================================================
|
sl@0
|
1936 |
|
sl@0
|
1937 |
// Check index is empty
|
sl@0
|
1938 |
TEST(iStateAccessor->ImplementationsCount(*iRegistryData) == 0);
|
sl@0
|
1939 |
|
sl@0
|
1940 |
//===========================================================================
|
sl@0
|
1941 |
TDriveUnit implDriveZ = EDriveZ;
|
sl@0
|
1942 |
TDriveUnit implDriveC = EDriveC;
|
sl@0
|
1943 |
|
sl@0
|
1944 |
// Add Implementation from Z drive to index
|
sl@0
|
1945 |
TBool result = iRegistryData->InsertIntoIndexL(zDllData.iImplData, ETrue);
|
sl@0
|
1946 |
TEST2(result, ETrue);
|
sl@0
|
1947 |
|
sl@0
|
1948 |
RImplDataArray impls;
|
sl@0
|
1949 |
CleanupClosePushL(impls);
|
sl@0
|
1950 |
iStateAccessor->GetImplementationInfoL(*iRegistryData, iInterfaceUid, impls);
|
sl@0
|
1951 |
TEST(impls.Count() == 1);
|
sl@0
|
1952 |
TEST(impls[0]->iImplInfo->Drive() == implDriveZ);
|
sl@0
|
1953 |
|
sl@0
|
1954 |
//===========================================================================
|
sl@0
|
1955 |
|
sl@0
|
1956 |
// Add Implementation from C drive to index - this should upgrade existing implementation
|
sl@0
|
1957 |
result = iRegistryData->InsertIntoIndexL(cDllData.iImplData, ETrue);
|
sl@0
|
1958 |
TEST2(result, ETrue);
|
sl@0
|
1959 |
|
sl@0
|
1960 |
iStateAccessor->GetImplementationInfoL(*iRegistryData, iInterfaceUid, impls);
|
sl@0
|
1961 |
TEST(impls.Count() == 1);
|
sl@0
|
1962 |
TEST(impls[0]->iImplInfo->Drive() == implDriveC);
|
sl@0
|
1963 |
|
sl@0
|
1964 |
//===========================================================================
|
sl@0
|
1965 |
|
sl@0
|
1966 |
// Add Implementation from third drive to index - this should upgrade existing implementation
|
sl@0
|
1967 |
result = iRegistryData->InsertIntoIndexL(thirdDllData.iImplData, ETrue);
|
sl@0
|
1968 |
TEST2(result, ETrue);
|
sl@0
|
1969 |
|
sl@0
|
1970 |
iStateAccessor->GetImplementationInfoL(*iRegistryData, iInterfaceUid, impls);
|
sl@0
|
1971 |
TEST(impls.Count() == 1);
|
sl@0
|
1972 |
TEST(impls[0]->iImplInfo->Drive() == iter.DriveUnit());
|
sl@0
|
1973 |
|
sl@0
|
1974 |
//===========================================================================
|
sl@0
|
1975 |
|
sl@0
|
1976 |
// remove implementation from third drive which causes rollback to C drive impl
|
sl@0
|
1977 |
iRegistryData->RemoveFromIndexL(thirdDllData.iDllData);
|
sl@0
|
1978 |
iStateAccessor->GetImplementationInfoL(*iRegistryData, iInterfaceUid, impls);
|
sl@0
|
1979 |
TEST(impls.Count() == 1);
|
sl@0
|
1980 |
TEST(impls[0]->iImplInfo->Drive() == implDriveC);
|
sl@0
|
1981 |
|
sl@0
|
1982 |
//===========================================================================
|
sl@0
|
1983 |
|
sl@0
|
1984 |
// remove implementation from C which causes rollback to Z drive impl
|
sl@0
|
1985 |
iRegistryData->RemoveFromIndexL(cDllData.iDllData);
|
sl@0
|
1986 |
iStateAccessor->GetImplementationInfoL(*iRegistryData, iInterfaceUid, impls);
|
sl@0
|
1987 |
TEST(impls.Count() == 1);
|
sl@0
|
1988 |
TEST(impls[0]->iImplInfo->Drive() == implDriveZ);
|
sl@0
|
1989 |
|
sl@0
|
1990 |
//===========================================================================
|
sl@0
|
1991 |
|
sl@0
|
1992 |
// Add Implementation from C drive to index - this should upgrade existing implementation
|
sl@0
|
1993 |
result = iRegistryData->InsertIntoIndexL(cDllData.iImplData, ETrue);
|
sl@0
|
1994 |
TEST2(result, ETrue);
|
sl@0
|
1995 |
|
sl@0
|
1996 |
iStateAccessor->GetImplementationInfoL(*iRegistryData, iInterfaceUid, impls);
|
sl@0
|
1997 |
TEST(impls.Count() == 1);
|
sl@0
|
1998 |
TEST(impls[0]->iImplInfo->Drive() == implDriveC);
|
sl@0
|
1999 |
|
sl@0
|
2000 |
//===========================================================================
|
sl@0
|
2001 |
|
sl@0
|
2002 |
// Add Implementation from third drive to index - this should upgrade existing implementation
|
sl@0
|
2003 |
result = iRegistryData->InsertIntoIndexL(thirdDllData.iImplData, ETrue);
|
sl@0
|
2004 |
TEST2(result, ETrue);
|
sl@0
|
2005 |
|
sl@0
|
2006 |
iStateAccessor->GetImplementationInfoL(*iRegistryData, iInterfaceUid, impls);
|
sl@0
|
2007 |
TEST(impls.Count() == 1);
|
sl@0
|
2008 |
TEST(impls[0]->iImplInfo->Drive() == iter.DriveUnit());
|
sl@0
|
2009 |
|
sl@0
|
2010 |
//===========================================================================
|
sl@0
|
2011 |
|
sl@0
|
2012 |
// remove implementation from C which should cause no rollback
|
sl@0
|
2013 |
iRegistryData->RemoveFromIndexL(cDllData.iDllData);
|
sl@0
|
2014 |
iStateAccessor->GetImplementationInfoL(*iRegistryData, iInterfaceUid, impls);
|
sl@0
|
2015 |
TEST(impls.Count() == 1);
|
sl@0
|
2016 |
TEST(impls[0]->iImplInfo->Drive() == iter.DriveUnit());
|
sl@0
|
2017 |
|
sl@0
|
2018 |
//===========================================================================
|
sl@0
|
2019 |
|
sl@0
|
2020 |
// remove implementation from third drive which causes rollback to Z drive impl
|
sl@0
|
2021 |
iRegistryData->RemoveFromIndexL(thirdDllData.iDllData);
|
sl@0
|
2022 |
iStateAccessor->GetImplementationInfoL(*iRegistryData, iInterfaceUid, impls);
|
sl@0
|
2023 |
TEST(impls.Count() == 1);
|
sl@0
|
2024 |
TEST(impls[0]->iImplInfo->Drive() == implDriveZ);
|
sl@0
|
2025 |
|
sl@0
|
2026 |
//===========================================================================
|
sl@0
|
2027 |
|
sl@0
|
2028 |
// Add Implementation from third drive to index - this should upgrade existing implementation
|
sl@0
|
2029 |
result = iRegistryData->InsertIntoIndexL(thirdDllData.iImplData, ETrue);
|
sl@0
|
2030 |
TEST2(result, ETrue);
|
sl@0
|
2031 |
|
sl@0
|
2032 |
iStateAccessor->GetImplementationInfoL(*iRegistryData, iInterfaceUid, impls);
|
sl@0
|
2033 |
TEST(impls.Count() == 1);
|
sl@0
|
2034 |
TEST(impls[0]->iImplInfo->Drive() == iter.DriveUnit());
|
sl@0
|
2035 |
|
sl@0
|
2036 |
//===========================================================================
|
sl@0
|
2037 |
|
sl@0
|
2038 |
// Add Implementation from C drive to index - this should not upgrade existing implementation
|
sl@0
|
2039 |
result = iRegistryData->InsertIntoIndexL(cDllData.iImplData, ETrue);
|
sl@0
|
2040 |
TEST2(result, ETrue);
|
sl@0
|
2041 |
|
sl@0
|
2042 |
iStateAccessor->GetImplementationInfoL(*iRegistryData, iInterfaceUid, impls);
|
sl@0
|
2043 |
TEST(impls.Count() == 1);
|
sl@0
|
2044 |
TEST(impls[0]->iImplInfo->Drive() == iter.DriveUnit());
|
sl@0
|
2045 |
|
sl@0
|
2046 |
//===========================================================================
|
sl@0
|
2047 |
|
sl@0
|
2048 |
// remove implementation from third drive which causes rollback to C drive impl
|
sl@0
|
2049 |
iRegistryData->RemoveFromIndexL(thirdDllData.iDllData);
|
sl@0
|
2050 |
iStateAccessor->GetImplementationInfoL(*iRegistryData, iInterfaceUid, impls);
|
sl@0
|
2051 |
TEST(impls.Count() == 1);
|
sl@0
|
2052 |
TEST(impls[0]->iImplInfo->Drive() == implDriveC);
|
sl@0
|
2053 |
|
sl@0
|
2054 |
//===========================================================================
|
sl@0
|
2055 |
|
sl@0
|
2056 |
// remove implementation from C which causes rollback to Z drive impl
|
sl@0
|
2057 |
iRegistryData->RemoveFromIndexL(cDllData.iDllData);
|
sl@0
|
2058 |
iStateAccessor->GetImplementationInfoL(*iRegistryData, iInterfaceUid, impls);
|
sl@0
|
2059 |
TEST(impls.Count() == 1);
|
sl@0
|
2060 |
TEST(impls[0]->iImplInfo->Drive() == implDriveZ);
|
sl@0
|
2061 |
CleanupStack::PopAndDestroy(&impls);
|
sl@0
|
2062 |
}
|
sl@0
|
2063 |
|
sl@0
|
2064 |
/**
|
sl@0
|
2065 |
@SYMTestCaseID SYSLIB-ECOM-CT-0737
|
sl@0
|
2066 |
@SYMTestCaseDesc Tests the creation and deletion of CRegistryData
|
sl@0
|
2067 |
@SYMTestPriority High
|
sl@0
|
2068 |
@SYMTestActions Create and delete CRegistryData object,checks for open handles
|
sl@0
|
2069 |
@SYMTestExpectedResults The test must not fail.
|
sl@0
|
2070 |
@SYMREQ REQ0000
|
sl@0
|
2071 |
*/
|
sl@0
|
2072 |
LOCAL_C void CreateDeleteTestL()
|
sl@0
|
2073 |
{
|
sl@0
|
2074 |
TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-0737 Create and Delete Test "));
|
sl@0
|
2075 |
// Set up for heap leak checking
|
sl@0
|
2076 |
__UHEAP_MARK;
|
sl@0
|
2077 |
|
sl@0
|
2078 |
// and leaking thread handles
|
sl@0
|
2079 |
TInt startProcessHandleCount;
|
sl@0
|
2080 |
TInt startThreadHandleCount;
|
sl@0
|
2081 |
TInt endProcessHandleCount;
|
sl@0
|
2082 |
TInt endThreadHandleCount;
|
sl@0
|
2083 |
|
sl@0
|
2084 |
// Test Starts...
|
sl@0
|
2085 |
RThread().HandleCount(startProcessHandleCount, startThreadHandleCount);
|
sl@0
|
2086 |
|
sl@0
|
2087 |
CRegistryDataTest* theTest = NULL;
|
sl@0
|
2088 |
// Create the object
|
sl@0
|
2089 |
TRAPD(err, theTest = CRegistryDataTest::NewL(EFalse));
|
sl@0
|
2090 |
TEST2(err, KErrNone);
|
sl@0
|
2091 |
// Delete the object
|
sl@0
|
2092 |
delete theTest;
|
sl@0
|
2093 |
|
sl@0
|
2094 |
// Check for open handles
|
sl@0
|
2095 |
RThread().HandleCount(endProcessHandleCount, endThreadHandleCount);
|
sl@0
|
2096 |
TEST(startThreadHandleCount == endThreadHandleCount);
|
sl@0
|
2097 |
|
sl@0
|
2098 |
// Test Ends...
|
sl@0
|
2099 |
__UHEAP_MARKEND;
|
sl@0
|
2100 |
}
|
sl@0
|
2101 |
|
sl@0
|
2102 |
/**
|
sl@0
|
2103 |
@SYMTestCaseID SYSLIB-ECOM-UT-3572
|
sl@0
|
2104 |
@SYMTestCaseDesc Tests for CRegistryData::UpdateDllDataL() function when an existing registered
|
sl@0
|
2105 |
PLUGIN3 is downgraded with an updated PLUGIN1 resource file.
|
sl@0
|
2106 |
@SYMTestPriority High
|
sl@0
|
2107 |
@SYMTestActions Update the data for a dll in the registry.
|
sl@0
|
2108 |
Tests for OOM error.
|
sl@0
|
2109 |
@SYMTestExpectedResults The data for the dll in the registry is updated.
|
sl@0
|
2110 |
@SYMEC EC43
|
sl@0
|
2111 |
*/
|
sl@0
|
2112 |
void CRegistryDataTest::UpdateDllDataTest3L()
|
sl@0
|
2113 |
{
|
sl@0
|
2114 |
TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-UT-3572 "));
|
sl@0
|
2115 |
// Checks if drive is registered
|
sl@0
|
2116 |
TEST(iStateAccessor->IsRegisteredDriveL(*iRegistryData, iDriveUnit)!= KErrNotFound);
|
sl@0
|
2117 |
CRegistryData::CDriveData* driveData = NULL;
|
sl@0
|
2118 |
// Fetches index of drive, in iFoundDriveIndex
|
sl@0
|
2119 |
iFoundDriveIndex = iRegistryData->FindDriveL(iDriveUnit,driveData);
|
sl@0
|
2120 |
|
sl@0
|
2121 |
TEntry dllEntry;
|
sl@0
|
2122 |
TUid example12ThirdUid = {0x10009E3E};
|
sl@0
|
2123 |
dllEntry.iType = TUidType(KNullUid, KNullUid, example12ThirdUid);
|
sl@0
|
2124 |
dllEntry.iName = KEComExample12DllOnC;
|
sl@0
|
2125 |
dllEntry.iModified.HomeTime();
|
sl@0
|
2126 |
|
sl@0
|
2127 |
TBool registered = EFalse;
|
sl@0
|
2128 |
|
sl@0
|
2129 |
registered = iRegistryData->IsRegisteredWithDate(
|
sl@0
|
2130 |
dllEntry[2],
|
sl@0
|
2131 |
dllEntry.iModified,
|
sl@0
|
2132 |
iUpdate,
|
sl@0
|
2133 |
driveData);
|
sl@0
|
2134 |
TEST(registered);
|
sl@0
|
2135 |
// Log message if implementations need update
|
sl@0
|
2136 |
if (!iUpdate)
|
sl@0
|
2137 |
{
|
sl@0
|
2138 |
TheTest.Printf(_L("Specified implementation group is already registered and does not need an update\n"));
|
sl@0
|
2139 |
}
|
sl@0
|
2140 |
//If the implementation needs an update, update it using UpdateDllDataL
|
sl@0
|
2141 |
else
|
sl@0
|
2142 |
{
|
sl@0
|
2143 |
TheTest.Printf(_L("Specified implementation group is not registered with date and needs an update\n"));
|
sl@0
|
2144 |
// Checks Implementation 0x10009E48 registered in the registry is version 1, display name is "Example 12 PlugIn3"
|
sl@0
|
2145 |
// A reference to the implementation entry in the registry
|
sl@0
|
2146 |
const TUid implementationUid = {0x10009E3C};
|
sl@0
|
2147 |
CRegistryData::CImplementationData* implementationData = NULL;
|
sl@0
|
2148 |
TInt err = iStateAccessor->FindImplementation(*iRegistryData, implementationUid, KCDummyUid, implementationData);
|
sl@0
|
2149 |
TEST2(err,KErrNone);
|
sl@0
|
2150 |
CImplementationInformation* implementationInfo = implementationData->iImplInfo;
|
sl@0
|
2151 |
TEST(implementationInfo->Version() == 1);
|
sl@0
|
2152 |
TEST(implementationInfo->DisplayName().CompareF(_L("Example 12 PlugIn3"))==0);
|
sl@0
|
2153 |
|
sl@0
|
2154 |
// Dll Data object to be updated
|
sl@0
|
2155 |
CRegistryData::CDllData* updateDllData = NULL;
|
sl@0
|
2156 |
TParse fileparse;
|
sl@0
|
2157 |
fileparse.Set(dllEntry.iName,NULL,NULL);
|
sl@0
|
2158 |
updateDllData = CRegistryData::CDllData::NewLC(fileparse.NameAndExt(),dllEntry.iModified,dllEntry[1], dllEntry[2],driveData);
|
sl@0
|
2159 |
|
sl@0
|
2160 |
//Copies the downgraded resource file to C:
|
sl@0
|
2161 |
TRAP(err, EComTestUtils::FileManCopyFileL(KEcomExample12DowngradedOnZ, KEcomExample12DowngradedOnC));
|
sl@0
|
2162 |
TEST2(err, KErrNone);
|
sl@0
|
2163 |
//Creats the entry using downgraded resource file
|
sl@0
|
2164 |
TEntry rscBasedEntry;
|
sl@0
|
2165 |
rscBasedEntry.iName = KEcomExample12DowngradedResourceNameOnly;
|
sl@0
|
2166 |
TParse rscPath;
|
sl@0
|
2167 |
rscPath.Set(KEcomExample12DowngradedOnC,NULL,NULL);
|
sl@0
|
2168 |
CPluginBase* entryBase = NULL;
|
sl@0
|
2169 |
entryBase=CSecurePlugin::NewL(TheFs,rscBasedEntry,rscPath.Drive(), EFalse);
|
sl@0
|
2170 |
CleanupStack::PushL(entryBase);
|
sl@0
|
2171 |
// Updates resource ext info
|
sl@0
|
2172 |
HBufC* resourceExt = entryBase->RscFileExt();
|
sl@0
|
2173 |
if(resourceExt)
|
sl@0
|
2174 |
{
|
sl@0
|
2175 |
updateDllData->SetResourceExtL(*resourceExt);
|
sl@0
|
2176 |
}
|
sl@0
|
2177 |
// parses the downgraded resource file
|
sl@0
|
2178 |
TInt error = KErrNone;
|
sl@0
|
2179 |
TRAP(error, iRegistrarAccessor->ParseL(*iRegistrar, entryBase, *updateDllData));
|
sl@0
|
2180 |
if (error == KErrNoMemory)
|
sl@0
|
2181 |
{
|
sl@0
|
2182 |
User::LeaveNoMemory();
|
sl@0
|
2183 |
}
|
sl@0
|
2184 |
CleanupStack::PopAndDestroy(entryBase);
|
sl@0
|
2185 |
TDriveUnit aDrive;
|
sl@0
|
2186 |
// Updates DLL data with a new dll data
|
sl@0
|
2187 |
TRAP(err, iRegistryData->UpdateDllDataL(aDrive, iFoundDriveIndex, updateDllData));
|
sl@0
|
2188 |
TEST_OOM_ERR;
|
sl@0
|
2189 |
TEST2(err, KErrNone);
|
sl@0
|
2190 |
CleanupStack::Pop(updateDllData);
|
sl@0
|
2191 |
// Checks registry data is updated with new data
|
sl@0
|
2192 |
// Implementation 0x10009E48 is downgraded from version 1 to version 0, display name is changed to "Example 12 PlugIn"
|
sl@0
|
2193 |
implementationData = NULL;
|
sl@0
|
2194 |
err = iStateAccessor->FindImplementation(*iRegistryData, implementationUid, KCDummyUid, implementationData);
|
sl@0
|
2195 |
TEST2(err,KErrNone);
|
sl@0
|
2196 |
implementationInfo = implementationData->iImplInfo;
|
sl@0
|
2197 |
TEST(implementationInfo->Version() == 0);
|
sl@0
|
2198 |
TEST(implementationInfo->DisplayName().CompareF(_L("Example 12 PlugIn")) == 0);
|
sl@0
|
2199 |
TheTest.Printf(_L("DLL data is updated \n"));
|
sl@0
|
2200 |
//deletes the downgraded resource file
|
sl@0
|
2201 |
TRAP(err,EComTestUtils::FileManDeleteFileL(KEcomExample12DowngradedOnC));
|
sl@0
|
2202 |
}
|
sl@0
|
2203 |
registered = iRegistryData->IsRegisteredWithDate(
|
sl@0
|
2204 |
dllEntry[2],
|
sl@0
|
2205 |
dllEntry.iModified,
|
sl@0
|
2206 |
iUpdate,
|
sl@0
|
2207 |
driveData);
|
sl@0
|
2208 |
TEST(registered);
|
sl@0
|
2209 |
TEST(!iUpdate);
|
sl@0
|
2210 |
}
|
sl@0
|
2211 |
|
sl@0
|
2212 |
/**
|
sl@0
|
2213 |
@SYMTestCaseID SYSLIB-ECOM-UT-3571
|
sl@0
|
2214 |
@SYMTestCaseDesc Tests for CRegistryData::UpdateDllDataL() function when an existing registered
|
sl@0
|
2215 |
PLUGIN1 is upgraded with an updated PLUGIN3 resource file.
|
sl@0
|
2216 |
@SYMTestPriority High
|
sl@0
|
2217 |
@SYMTestActions Update the data for a dll in the registry.
|
sl@0
|
2218 |
Tests for OOM error.
|
sl@0
|
2219 |
@SYMTestExpectedResults The data for the dll in the registry is updated.
|
sl@0
|
2220 |
@SYMEC EC43
|
sl@0
|
2221 |
*/
|
sl@0
|
2222 |
void CRegistryDataTest::UpdateDllDataTest2L()
|
sl@0
|
2223 |
{
|
sl@0
|
2224 |
TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-UT-3571 "));
|
sl@0
|
2225 |
// Checks if drive is registered
|
sl@0
|
2226 |
TEST(iStateAccessor->IsRegisteredDriveL(*iRegistryData, iDriveUnit)!= KErrNotFound);
|
sl@0
|
2227 |
CRegistryData::CDriveData* driveData = NULL;
|
sl@0
|
2228 |
// Fetches index of drive, in iFoundDriveIndex
|
sl@0
|
2229 |
iFoundDriveIndex = iRegistryData->FindDriveL(iDriveUnit,driveData);
|
sl@0
|
2230 |
|
sl@0
|
2231 |
TEntry dllEntry;
|
sl@0
|
2232 |
TUid example14ThirdUid = {0x10009E40};
|
sl@0
|
2233 |
dllEntry.iType = TUidType(KNullUid, KNullUid, example14ThirdUid);
|
sl@0
|
2234 |
dllEntry.iName = KEComExample14DllOnC;
|
sl@0
|
2235 |
dllEntry.iModified.HomeTime();
|
sl@0
|
2236 |
|
sl@0
|
2237 |
TBool registered = EFalse;
|
sl@0
|
2238 |
|
sl@0
|
2239 |
registered = iRegistryData->IsRegisteredWithDate(
|
sl@0
|
2240 |
dllEntry[2],
|
sl@0
|
2241 |
dllEntry.iModified,
|
sl@0
|
2242 |
iUpdate,
|
sl@0
|
2243 |
driveData);
|
sl@0
|
2244 |
TEST(registered);
|
sl@0
|
2245 |
// Log message if implementations need update
|
sl@0
|
2246 |
if (!iUpdate)
|
sl@0
|
2247 |
{
|
sl@0
|
2248 |
TheTest.Printf(_L("Specified implementation group is already registered and does not need an update\n"));
|
sl@0
|
2249 |
}
|
sl@0
|
2250 |
//If the implementation needs an update, update it using UpdateDllDataL
|
sl@0
|
2251 |
else
|
sl@0
|
2252 |
{
|
sl@0
|
2253 |
TheTest.Printf(_L("Specified implementation group is not registered with date and needs an update\n"));
|
sl@0
|
2254 |
|
sl@0
|
2255 |
// Checks Implementation 0x10009E48 registered in the registry is version 1, display name is "Example 14 PlugIn"
|
sl@0
|
2256 |
// A reference to the implementation entry in the registry
|
sl@0
|
2257 |
const TUid implementationUid = {0x10009E48};
|
sl@0
|
2258 |
CRegistryData::CImplementationData* implementationData = NULL;
|
sl@0
|
2259 |
TInt err = iStateAccessor->FindImplementation(*iRegistryData, implementationUid, KCDummyUid, implementationData);
|
sl@0
|
2260 |
TEST2(err,KErrNone);
|
sl@0
|
2261 |
CImplementationInformation* implementationInfo = implementationData->iImplInfo;
|
sl@0
|
2262 |
TEST(implementationInfo->Version() == 1);
|
sl@0
|
2263 |
TEST(implementationInfo->DisplayName().CompareF(_L("Example 14 PlugIn"))==0);
|
sl@0
|
2264 |
|
sl@0
|
2265 |
// Dll Data object to be updated
|
sl@0
|
2266 |
CRegistryData::CDllData* updateDllData = NULL;
|
sl@0
|
2267 |
TParse fileparse;
|
sl@0
|
2268 |
fileparse.Set(dllEntry.iName,NULL,NULL);
|
sl@0
|
2269 |
updateDllData = CRegistryData::CDllData::NewLC(fileparse.NameAndExt(),dllEntry.iModified,dllEntry[1], dllEntry[2],driveData);
|
sl@0
|
2270 |
|
sl@0
|
2271 |
//copies the upgraded resource file to C:
|
sl@0
|
2272 |
TRAP(err, EComTestUtils::FileManCopyFileL(KEcomExample14UpgradedOnZ, KEcomExample14UpgradedOnC));
|
sl@0
|
2273 |
TEST2(err, KErrNone);
|
sl@0
|
2274 |
//Creats the entry using upgraded resource file
|
sl@0
|
2275 |
TEntry rscBasedEntry;
|
sl@0
|
2276 |
rscBasedEntry.iName = KEcomExample14UpgradedResourceNameOnly;
|
sl@0
|
2277 |
TParse rscPath;
|
sl@0
|
2278 |
rscPath.Set(KEcomExample14UpgradedOnC,NULL,NULL);
|
sl@0
|
2279 |
CPluginBase* entryBase = NULL;
|
sl@0
|
2280 |
entryBase=CSecurePlugin::NewL(TheFs,rscBasedEntry,rscPath.Drive(), EFalse);
|
sl@0
|
2281 |
CleanupStack::PushL(entryBase);
|
sl@0
|
2282 |
// Updates resource ext info
|
sl@0
|
2283 |
HBufC* resourceExt = entryBase->RscFileExt();
|
sl@0
|
2284 |
if(resourceExt)
|
sl@0
|
2285 |
{
|
sl@0
|
2286 |
updateDllData->SetResourceExtL(*resourceExt);
|
sl@0
|
2287 |
}
|
sl@0
|
2288 |
// parses the upgraded resource file
|
sl@0
|
2289 |
TInt error = KErrNone;
|
sl@0
|
2290 |
TRAP(error, iRegistrarAccessor->ParseL(*iRegistrar, entryBase, *updateDllData));
|
sl@0
|
2291 |
if (error == KErrNoMemory)
|
sl@0
|
2292 |
{
|
sl@0
|
2293 |
User::LeaveNoMemory();
|
sl@0
|
2294 |
}
|
sl@0
|
2295 |
CleanupStack::PopAndDestroy(entryBase);
|
sl@0
|
2296 |
|
sl@0
|
2297 |
TDriveUnit aDrive;
|
sl@0
|
2298 |
// Updates DLL data with a new dll data
|
sl@0
|
2299 |
TRAP(err, iRegistryData->UpdateDllDataL(aDrive, iFoundDriveIndex, updateDllData));
|
sl@0
|
2300 |
TEST_OOM_ERR;
|
sl@0
|
2301 |
TEST2(err, KErrNone);
|
sl@0
|
2302 |
CleanupStack::Pop(updateDllData);
|
sl@0
|
2303 |
// Checks registry data is updated with new data
|
sl@0
|
2304 |
// Implementation 0x10009E48 is upgraded from version 1 to version 2, display name is changed to "Example 14 PlugIn3"
|
sl@0
|
2305 |
implementationData = NULL;
|
sl@0
|
2306 |
err = iStateAccessor->FindImplementation(*iRegistryData, implementationUid, KCDummyUid, implementationData);
|
sl@0
|
2307 |
TEST2(err,KErrNone);
|
sl@0
|
2308 |
implementationInfo = implementationData->iImplInfo;
|
sl@0
|
2309 |
TEST(implementationInfo->Version() == 2);
|
sl@0
|
2310 |
TEST(implementationInfo->DisplayName().CompareF(_L("Example 14 PlugIn3"))==0);
|
sl@0
|
2311 |
TheTest.Printf(_L("DLL data is updated \n"));
|
sl@0
|
2312 |
//deletes the upgraded resource file
|
sl@0
|
2313 |
TRAP(err,EComTestUtils::FileManDeleteFileL(KEcomExample14UpgradedOnC));
|
sl@0
|
2314 |
}
|
sl@0
|
2315 |
registered = iRegistryData->IsRegisteredWithDate(
|
sl@0
|
2316 |
dllEntry[2],
|
sl@0
|
2317 |
dllEntry.iModified,
|
sl@0
|
2318 |
iUpdate,
|
sl@0
|
2319 |
driveData);
|
sl@0
|
2320 |
TEST(registered);
|
sl@0
|
2321 |
TEST(!iUpdate);
|
sl@0
|
2322 |
}
|
sl@0
|
2323 |
|
sl@0
|
2324 |
/**
|
sl@0
|
2325 |
@SYMTestCaseID SYSLIB-ECOM-UT-3570
|
sl@0
|
2326 |
@SYMTestCaseDesc Tests for CRegistryData::UpdateDllDataL() function when an existing registered
|
sl@0
|
2327 |
PLUGIN3 is upgraded with an updated PLUGIN3 resource file.
|
sl@0
|
2328 |
@SYMTestPriority High
|
sl@0
|
2329 |
@SYMTestActions Update the data for a dll in the registry.
|
sl@0
|
2330 |
Tests for OOM error.
|
sl@0
|
2331 |
@SYMTestExpectedResults The data for the dll in the registry is updated.
|
sl@0
|
2332 |
@SYMEC EC43
|
sl@0
|
2333 |
*/
|
sl@0
|
2334 |
|
sl@0
|
2335 |
void CRegistryDataTest::UpdateDllDataTest1L()
|
sl@0
|
2336 |
{
|
sl@0
|
2337 |
TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-UT-3570 "));
|
sl@0
|
2338 |
// Checks if drive is registered
|
sl@0
|
2339 |
TEST2(iStateAccessor->IsRegisteredDriveL(*iRegistryData, iDriveUnit),ETrue);
|
sl@0
|
2340 |
CRegistryData::CDriveData* driveData = NULL;
|
sl@0
|
2341 |
// Fetches index of drive, in iFoundDriveIndex
|
sl@0
|
2342 |
iFoundDriveIndex = iRegistryData->FindDriveL(iDriveUnit,driveData);
|
sl@0
|
2343 |
|
sl@0
|
2344 |
TEntry dllEntry;
|
sl@0
|
2345 |
TUid example12ThirdUid = {0x10009E3E};
|
sl@0
|
2346 |
dllEntry.iType = TUidType(KNullUid, KNullUid, example12ThirdUid);
|
sl@0
|
2347 |
dllEntry.iName = KEComExample12DllOnC;
|
sl@0
|
2348 |
dllEntry.iModified.HomeTime();
|
sl@0
|
2349 |
|
sl@0
|
2350 |
TBool registered = EFalse;
|
sl@0
|
2351 |
registered = iRegistryData->IsRegisteredWithDate(
|
sl@0
|
2352 |
dllEntry[2],
|
sl@0
|
2353 |
dllEntry.iModified,
|
sl@0
|
2354 |
iUpdate,
|
sl@0
|
2355 |
driveData);
|
sl@0
|
2356 |
TEST(registered);
|
sl@0
|
2357 |
// Log message if implementations need update
|
sl@0
|
2358 |
if (!iUpdate)
|
sl@0
|
2359 |
{
|
sl@0
|
2360 |
TheTest.Printf(_L("Specified implementation group is already registered and does not need an update\n"));
|
sl@0
|
2361 |
}
|
sl@0
|
2362 |
//If the implementation needs an update, update it using UpdateDllDataL
|
sl@0
|
2363 |
else
|
sl@0
|
2364 |
{
|
sl@0
|
2365 |
TheTest.Printf(_L("Specified implementation group is not registered with date and needs an update\n"));
|
sl@0
|
2366 |
|
sl@0
|
2367 |
// Checks Implementation 0x10009E3C registered in the registry is version 1
|
sl@0
|
2368 |
// A reference to the implementation entry in the registry
|
sl@0
|
2369 |
const TUid implementationUid = {0x10009E3C};
|
sl@0
|
2370 |
CRegistryData::CImplementationData* implementationData = NULL;
|
sl@0
|
2371 |
TInt err = iStateAccessor->FindImplementation(*iRegistryData, implementationUid, KCDummyUid, implementationData);
|
sl@0
|
2372 |
TEST2(err,KErrNone);
|
sl@0
|
2373 |
CImplementationInformation* implementationInfo = implementationData->iImplInfo;
|
sl@0
|
2374 |
TEST(implementationInfo->Version() == 1);
|
sl@0
|
2375 |
// Dll Data object to be updated
|
sl@0
|
2376 |
CRegistryData::CDllData* updateDllData = NULL;
|
sl@0
|
2377 |
TParse fileparse;
|
sl@0
|
2378 |
fileparse.Set(dllEntry.iName,NULL,NULL);
|
sl@0
|
2379 |
updateDllData = CRegistryData::CDllData::NewLC(fileparse.NameAndExt(),dllEntry.iModified,dllEntry[1], dllEntry[2],driveData);
|
sl@0
|
2380 |
|
sl@0
|
2381 |
//copies the upgraded resource file to C:
|
sl@0
|
2382 |
TRAP(err, EComTestUtils::FileManCopyFileL(KEcomExample12UpgradedOnZ, KEcomExample12UpgradedOnC));
|
sl@0
|
2383 |
TEST_OOM_ERR;
|
sl@0
|
2384 |
TEST2(err, KErrNone);
|
sl@0
|
2385 |
//Creats the entry using upgraded resource file
|
sl@0
|
2386 |
TEntry rscBasedEntry;
|
sl@0
|
2387 |
rscBasedEntry.iName = KEcomExample12UpgradedResourceNameOnly;
|
sl@0
|
2388 |
TParse rscPath;
|
sl@0
|
2389 |
rscPath.Set(KEcomExample12UpgradedOnC,NULL,NULL);
|
sl@0
|
2390 |
CPluginBase* entryBase = NULL;
|
sl@0
|
2391 |
entryBase=CSecurePlugin::NewL(TheFs,rscBasedEntry,rscPath.Drive(), EFalse);
|
sl@0
|
2392 |
CleanupStack::PushL(entryBase);
|
sl@0
|
2393 |
// Updates resource ext info
|
sl@0
|
2394 |
HBufC* resourceExt = entryBase->RscFileExt();
|
sl@0
|
2395 |
if(resourceExt)
|
sl@0
|
2396 |
{
|
sl@0
|
2397 |
updateDllData->SetResourceExtL(*resourceExt);
|
sl@0
|
2398 |
}
|
sl@0
|
2399 |
// parses the upgraded resource file
|
sl@0
|
2400 |
TInt error = KErrNone;
|
sl@0
|
2401 |
TRAP(error, iRegistrarAccessor->ParseL(*iRegistrar, entryBase, *updateDllData));
|
sl@0
|
2402 |
if (error == KErrNoMemory)
|
sl@0
|
2403 |
{
|
sl@0
|
2404 |
User::LeaveNoMemory();
|
sl@0
|
2405 |
}
|
sl@0
|
2406 |
CleanupStack::PopAndDestroy(entryBase);
|
sl@0
|
2407 |
TDriveUnit aDrive;
|
sl@0
|
2408 |
// Updates DLL data with a new dll data
|
sl@0
|
2409 |
TRAP(err, iRegistryData->UpdateDllDataL(aDrive, iFoundDriveIndex, updateDllData));
|
sl@0
|
2410 |
TEST_OOM_ERR;
|
sl@0
|
2411 |
TEST2(err, KErrNone);
|
sl@0
|
2412 |
CleanupStack::Pop(updateDllData);
|
sl@0
|
2413 |
// Checks registry data is updated with new data
|
sl@0
|
2414 |
// Implementation 0x10009E3C is upgraded from version 1 to version 2
|
sl@0
|
2415 |
implementationData = NULL;
|
sl@0
|
2416 |
err = iStateAccessor->FindImplementation(*iRegistryData, implementationUid, KCDummyUid, implementationData);
|
sl@0
|
2417 |
TEST_OOM_ERR;
|
sl@0
|
2418 |
TEST2(err,KErrNone);
|
sl@0
|
2419 |
implementationInfo = implementationData->iImplInfo;
|
sl@0
|
2420 |
TEST(implementationInfo->Version() == 2);
|
sl@0
|
2421 |
TheTest.Printf(_L("DLL data is updated \n"));
|
sl@0
|
2422 |
//cleans the upgraded resource file
|
sl@0
|
2423 |
TRAP(err,EComTestUtils::FileManDeleteFileL(KEcomExample12UpgradedOnC));
|
sl@0
|
2424 |
}
|
sl@0
|
2425 |
registered = iRegistryData->IsRegisteredWithDate(
|
sl@0
|
2426 |
dllEntry[2],
|
sl@0
|
2427 |
dllEntry.iModified,
|
sl@0
|
2428 |
iUpdate,
|
sl@0
|
2429 |
driveData);
|
sl@0
|
2430 |
TEST(registered);
|
sl@0
|
2431 |
TEST(!iUpdate);
|
sl@0
|
2432 |
}
|
sl@0
|
2433 |
|
sl@0
|
2434 |
|
sl@0
|
2435 |
|
sl@0
|
2436 |
/**
|
sl@0
|
2437 |
@SYMTestCaseID SYSLIB-ECOM-UT-3569
|
sl@0
|
2438 |
@SYMTestCaseDesc Tests for CRegistryData::AddDllDataL() function using Dll type PLUGIN3
|
sl@0
|
2439 |
@SYMTestPriority High
|
sl@0
|
2440 |
@SYMTestActions Adds data on a specific dll to the registry.
|
sl@0
|
2441 |
Tests for OOM error,checks if drive is registered.
|
sl@0
|
2442 |
@SYMTestExpectedResults Dll data is added to the registry.
|
sl@0
|
2443 |
@SYMEC EC43
|
sl@0
|
2444 |
*/
|
sl@0
|
2445 |
void CRegistryDataTest::AddDllDataPlugIn3TestL()
|
sl@0
|
2446 |
{
|
sl@0
|
2447 |
TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-UT-3569 "));
|
sl@0
|
2448 |
// Checks if drive is registered
|
sl@0
|
2449 |
TEST(iStateAccessor->IsRegisteredDriveL(*iRegistryData, iDriveUnit)!= KErrNotFound);
|
sl@0
|
2450 |
CRegistryData::CDriveData* driveData = NULL;
|
sl@0
|
2451 |
// Fetches index of drive, in iFoundDriveIndex
|
sl@0
|
2452 |
iFoundDriveIndex = iRegistryData->FindDriveL(iDriveUnit,driveData);
|
sl@0
|
2453 |
|
sl@0
|
2454 |
TEntry dllEntry;
|
sl@0
|
2455 |
TUid example10ThirdUid = {0x10009E37};
|
sl@0
|
2456 |
dllEntry.iType = TUidType(KNullUid, KNullUid, example10ThirdUid);
|
sl@0
|
2457 |
dllEntry.iName = KEComExample10DllOnC;
|
sl@0
|
2458 |
TBool registered = EFalse;
|
sl@0
|
2459 |
TRAPD(err, registered = iRegistryData->IsRegisteredWithDate(
|
sl@0
|
2460 |
dllEntry[2],
|
sl@0
|
2461 |
dllEntry.iModified,
|
sl@0
|
2462 |
iUpdate,
|
sl@0
|
2463 |
driveData));
|
sl@0
|
2464 |
TEST_OOM_ERR;
|
sl@0
|
2465 |
TEST2(err, KErrNone);
|
sl@0
|
2466 |
TEST(!registered);
|
sl@0
|
2467 |
// Dll Data object to be added
|
sl@0
|
2468 |
CRegistryData::CDllData* addDllData = NULL;
|
sl@0
|
2469 |
TParse fileparse;
|
sl@0
|
2470 |
fileparse.Set(dllEntry.iName,NULL,NULL);
|
sl@0
|
2471 |
addDllData = CRegistryData::CDllData::NewLC(fileparse.NameAndExt(),dllEntry.iModified,dllEntry[1], dllEntry[2],driveData);
|
sl@0
|
2472 |
|
sl@0
|
2473 |
// Adds DLL data of an existing DLL
|
sl@0
|
2474 |
TRAP(err, iRegistryData->AddDllDataL(iDriveUnit, iFoundDriveIndex, addDllData));
|
sl@0
|
2475 |
|
sl@0
|
2476 |
TEST_OOM_ERR;
|
sl@0
|
2477 |
CleanupStack::Pop(addDllData);
|
sl@0
|
2478 |
TEST2(err, KErrNone);
|
sl@0
|
2479 |
|
sl@0
|
2480 |
|
sl@0
|
2481 |
TRAP(err, iFoundDriveIndex = iRegistryData->FindDriveL(iDriveUnit,driveData));
|
sl@0
|
2482 |
TEST_OOM_ERR;
|
sl@0
|
2483 |
TEST2(err, KErrNone);
|
sl@0
|
2484 |
TRAP(err, registered = iRegistryData->IsRegisteredWithDate(
|
sl@0
|
2485 |
dllEntry[2],
|
sl@0
|
2486 |
dllEntry.iModified,
|
sl@0
|
2487 |
iUpdate,
|
sl@0
|
2488 |
driveData));
|
sl@0
|
2489 |
|
sl@0
|
2490 |
TEST_OOM_ERR;
|
sl@0
|
2491 |
TEST2(err, KErrNone);
|
sl@0
|
2492 |
TEST(registered);
|
sl@0
|
2493 |
// Do not delete addDllData as ownership is with the iRegistryData
|
sl@0
|
2494 |
}
|
sl@0
|
2495 |
|
sl@0
|
2496 |
|
sl@0
|
2497 |
/**
|
sl@0
|
2498 |
Adds the dll data on a perticular drive.
|
sl@0
|
2499 |
|
sl@0
|
2500 |
@SYMTestCaseID SYSLIB-ECOM-CT-0738
|
sl@0
|
2501 |
@SYMTestCaseDesc Tests for CRegistryData::AddDllDataL() function
|
sl@0
|
2502 |
@SYMTestPriority High
|
sl@0
|
2503 |
@SYMTestActions Adds data on a specific dll to the registry.
|
sl@0
|
2504 |
Tests for OOM error,checks if drive is registered.
|
sl@0
|
2505 |
@SYMTestExpectedResults The test must not fail.
|
sl@0
|
2506 |
@SYMREQ REQ0000
|
sl@0
|
2507 |
*/
|
sl@0
|
2508 |
void CRegistryDataTest::AddDllDataTestL()
|
sl@0
|
2509 |
{
|
sl@0
|
2510 |
TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-0738 "));
|
sl@0
|
2511 |
// Check if drive is registered
|
sl@0
|
2512 |
TEST(iStateAccessor->IsRegisteredDriveL(*iRegistryData, iDriveUnit)!= KErrNotFound);
|
sl@0
|
2513 |
CRegistryData::CDriveData* driveData = NULL;
|
sl@0
|
2514 |
// Fetch index of drive, in iFoundDriveIndex
|
sl@0
|
2515 |
iFoundDriveIndex = iRegistryData->FindDriveL(iDriveUnit,driveData);
|
sl@0
|
2516 |
|
sl@0
|
2517 |
iRegistryData->IsRegisteredWithDate(
|
sl@0
|
2518 |
iDllEntry[2],
|
sl@0
|
2519 |
iDllEntry.iModified,
|
sl@0
|
2520 |
iUpdate,
|
sl@0
|
2521 |
|
sl@0
|
2522 |
driveData);
|
sl@0
|
2523 |
// Dll Data object to be added
|
sl@0
|
2524 |
CRegistryData::CDllData* addDllData=NULL;
|
sl@0
|
2525 |
TParse fileparse;
|
sl@0
|
2526 |
fileparse.Set(iDllEntry.iName,NULL,NULL);
|
sl@0
|
2527 |
addDllData = CRegistryData::CDllData::NewLC(fileparse.NameAndExt(),iDllEntry.iModified,iDllEntry[1], iDllEntry[2],driveData);
|
sl@0
|
2528 |
|
sl@0
|
2529 |
// Add DLL data of an existing DLL
|
sl@0
|
2530 |
TRAPD(err, iRegistryData->AddDllDataL(iDriveUnit, iFoundDriveIndex, addDllData));
|
sl@0
|
2531 |
|
sl@0
|
2532 |
TEST_OOM_ERR;
|
sl@0
|
2533 |
CleanupStack::Pop(addDllData);
|
sl@0
|
2534 |
TEST2(err, KErrNone);
|
sl@0
|
2535 |
|
sl@0
|
2536 |
TBool registered = EFalse;
|
sl@0
|
2537 |
TRAP(err, iFoundDriveIndex = iRegistryData->FindDriveL(iDriveUnit,driveData));
|
sl@0
|
2538 |
TEST_OOM_ERR;
|
sl@0
|
2539 |
TEST2(err, KErrNone);
|
sl@0
|
2540 |
TRAP(err, registered = iRegistryData->IsRegisteredWithDate(
|
sl@0
|
2541 |
iDllEntry[2],
|
sl@0
|
2542 |
iDllEntry.iModified,
|
sl@0
|
2543 |
iUpdate,
|
sl@0
|
2544 |
|
sl@0
|
2545 |
driveData));
|
sl@0
|
2546 |
|
sl@0
|
2547 |
TEST_OOM_ERR;
|
sl@0
|
2548 |
TEST2(err, KErrNone);
|
sl@0
|
2549 |
TEST(registered);
|
sl@0
|
2550 |
// Do not delete addDllData as ownership is with the iRegistryData
|
sl@0
|
2551 |
}
|
sl@0
|
2552 |
|
sl@0
|
2553 |
/**
|
sl@0
|
2554 |
Determines if the specified implementation is already registered and
|
sl@0
|
2555 |
updates the data for the dll in the registry if it needs an update
|
sl@0
|
2556 |
|
sl@0
|
2557 |
@SYMTestCaseID SYSLIB-ECOM-CT-0739
|
sl@0
|
2558 |
@SYMTestCaseDesc Tests for CRegistryData::UpdateDllDataL() function
|
sl@0
|
2559 |
@SYMTestPriority High
|
sl@0
|
2560 |
@SYMTestActions Update the data for a dll in the registry if it needs an update.
|
sl@0
|
2561 |
Tests for OOM error.
|
sl@0
|
2562 |
@SYMTestExpectedResults The test must not fail.
|
sl@0
|
2563 |
@SYMREQ REQ0000
|
sl@0
|
2564 |
*/
|
sl@0
|
2565 |
void CRegistryDataTest::IsRegisteredWithDateUpdateDllDataTestL()
|
sl@0
|
2566 |
{
|
sl@0
|
2567 |
TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-0739 "));
|
sl@0
|
2568 |
TBool result=EFalse;
|
sl@0
|
2569 |
CRegistryData::CDriveData* driveData = NULL;
|
sl@0
|
2570 |
TInt err = KErrNone;
|
sl@0
|
2571 |
// Here we are doing positive testing. We are testing with valid entry.
|
sl@0
|
2572 |
// If that is not registered, register it using UpdateDllDataL
|
sl@0
|
2573 |
TRAP(err, iFoundDriveIndex = iRegistryData->FindDriveL(iDriveUnit,driveData));
|
sl@0
|
2574 |
TEST_OOM_ERR;
|
sl@0
|
2575 |
TEST2(err, KErrNone);
|
sl@0
|
2576 |
|
sl@0
|
2577 |
TRAP(err, result = iRegistryData->IsRegisteredWithDate(
|
sl@0
|
2578 |
iDllEntry[2],
|
sl@0
|
2579 |
iDllEntry.iModified,
|
sl@0
|
2580 |
iUpdate,
|
sl@0
|
2581 |
|
sl@0
|
2582 |
driveData));
|
sl@0
|
2583 |
TEST_OOM_ERR;
|
sl@0
|
2584 |
TEST2(err, KErrNone);
|
sl@0
|
2585 |
// Log message if implementations need update
|
sl@0
|
2586 |
if(result)
|
sl@0
|
2587 |
{
|
sl@0
|
2588 |
if(!iUpdate)
|
sl@0
|
2589 |
{
|
sl@0
|
2590 |
TEST(!iUpdate);
|
sl@0
|
2591 |
TheTest.Printf(_L("Specified implementation group is already registered and does not need an update\n"));
|
sl@0
|
2592 |
}
|
sl@0
|
2593 |
else
|
sl@0
|
2594 |
{
|
sl@0
|
2595 |
TheTest.Printf(_L("Specified implementation group is not registered with date and needs an update\n"));
|
sl@0
|
2596 |
|
sl@0
|
2597 |
// Dll Data object to be updated
|
sl@0
|
2598 |
CRegistryData::CDllData* updateDllData=NULL;
|
sl@0
|
2599 |
TParse fileparse;
|
sl@0
|
2600 |
fileparse.Set(iDllEntry.iName,NULL,NULL);
|
sl@0
|
2601 |
updateDllData = CRegistryData::CDllData::NewLC(fileparse.NameAndExt(),iDllEntry.iModified,iDllEntry[1],iDllEntry[2],driveData);
|
sl@0
|
2602 |
TDriveUnit aDrive;
|
sl@0
|
2603 |
|
sl@0
|
2604 |
// Updates DLL data with a new dll data
|
sl@0
|
2605 |
TRAP(err, iRegistryData->UpdateDllDataL(aDrive, iFoundDriveIndex, updateDllData));
|
sl@0
|
2606 |
TEST_OOM_ERR;
|
sl@0
|
2607 |
CleanupStack::Pop(updateDllData);
|
sl@0
|
2608 |
TEST2(err, KErrNone);
|
sl@0
|
2609 |
// Print to that dll data is updated else we won't know we did.
|
sl@0
|
2610 |
TheTest.Printf(_L("DLL data is updated \n"));
|
sl@0
|
2611 |
}
|
sl@0
|
2612 |
}
|
sl@0
|
2613 |
|
sl@0
|
2614 |
TUid thirdUid = {0x101F8400};
|
sl@0
|
2615 |
iDllEntry.iType = TUidType(KNullUid, KNullUid, thirdUid);
|
sl@0
|
2616 |
// Here we are doing negative testing. We are testing with invalid entry.
|
sl@0
|
2617 |
// The result should be false
|
sl@0
|
2618 |
TRAP(err, iFoundDriveIndex = iRegistryData->FindDriveL(iDriveUnit,driveData));
|
sl@0
|
2619 |
TEST_OOM_ERR;
|
sl@0
|
2620 |
TEST2(err, KErrNone);
|
sl@0
|
2621 |
TRAP(err, result = iRegistryData->IsRegisteredWithDate(
|
sl@0
|
2622 |
iDllEntry[2],
|
sl@0
|
2623 |
iDllEntry.iModified,
|
sl@0
|
2624 |
iUpdate,
|
sl@0
|
2625 |
|
sl@0
|
2626 |
driveData));
|
sl@0
|
2627 |
TEST_OOM_ERR;
|
sl@0
|
2628 |
TEST2(err, KErrNone);
|
sl@0
|
2629 |
TEST(!result);
|
sl@0
|
2630 |
}
|
sl@0
|
2631 |
|
sl@0
|
2632 |
/**
|
sl@0
|
2633 |
Tests that an implementation is disabled and enabled by setting the state
|
sl@0
|
2634 |
|
sl@0
|
2635 |
@SYMTestCaseID SYSLIB-ECOM-CT-0740
|
sl@0
|
2636 |
@SYMTestCaseDesc Tests for CRegistryData::SetEnabledState() function
|
sl@0
|
2637 |
@SYMTestPriority High
|
sl@0
|
2638 |
@SYMTestActions Tests for enable or disable the specified interface implementation
|
sl@0
|
2639 |
within the registry.
|
sl@0
|
2640 |
@SYMTestExpectedResults The test must not fail.
|
sl@0
|
2641 |
@SYMREQ REQ0000
|
sl@0
|
2642 |
*/
|
sl@0
|
2643 |
void CRegistryDataTest::SetEnabledStateTestL()
|
sl@0
|
2644 |
{
|
sl@0
|
2645 |
TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-0740 "));
|
sl@0
|
2646 |
// A reference to the implementation entry in the registry
|
sl@0
|
2647 |
CRegistryData::CImplementationData* implementationData = NULL;
|
sl@0
|
2648 |
|
sl@0
|
2649 |
// Pass the state and enable or disable the implementaion
|
sl@0
|
2650 |
TInt err;
|
sl@0
|
2651 |
err = iStateAccessor->FindImplementation(*iRegistryData, iImplementationUid, KCDummyUid, implementationData);
|
sl@0
|
2652 |
TEST2(err, KErrNone);
|
sl@0
|
2653 |
|
sl@0
|
2654 |
const CImplementationInformation* implementationInfo = implementationData->iImplInfo;
|
sl@0
|
2655 |
|
sl@0
|
2656 |
// SetEnabledState() will disable the implementation if enablestate parameter is EFalse.
|
sl@0
|
2657 |
// If the disablestate parameter is false the reverse will happen.
|
sl@0
|
2658 |
TBool result=EFalse;
|
sl@0
|
2659 |
TBool enableState=EFalse;
|
sl@0
|
2660 |
TRAP(err, result = iRegistryData->SetEnabledState(iImplementationUid, enableState));
|
sl@0
|
2661 |
TEST_OOM_ERR;
|
sl@0
|
2662 |
TEST2(err, KErrNone);
|
sl@0
|
2663 |
TEST(result == KErrNone);
|
sl@0
|
2664 |
|
sl@0
|
2665 |
//Implementation should be disabled
|
sl@0
|
2666 |
TEST(implementationInfo->Disabled()==(!enableState));
|
sl@0
|
2667 |
|
sl@0
|
2668 |
// enable it
|
sl@0
|
2669 |
enableState = ETrue;
|
sl@0
|
2670 |
TRAP(err, result = iRegistryData->SetEnabledState(iImplementationUid, enableState));
|
sl@0
|
2671 |
TEST_OOM_ERR;
|
sl@0
|
2672 |
TEST2(err, KErrNone);
|
sl@0
|
2673 |
TEST(result == KErrNone);
|
sl@0
|
2674 |
|
sl@0
|
2675 |
// Implementation should be enabled
|
sl@0
|
2676 |
TEST(implementationInfo->Disabled()==(!enableState));
|
sl@0
|
2677 |
}
|
sl@0
|
2678 |
|
sl@0
|
2679 |
/**
|
sl@0
|
2680 |
Obtains Implementation data and prints to log
|
sl@0
|
2681 |
|
sl@0
|
2682 |
@SYMTestCaseID SYSLIB-ECOM-CT-0741
|
sl@0
|
2683 |
@SYMTestCaseDesc Tests for CRegistryData::FindImplementation() functions
|
sl@0
|
2684 |
@SYMTestPriority High
|
sl@0
|
2685 |
@SYMTestActions Fetch the information on a particular implementation (UID)
|
sl@0
|
2686 |
Tests for the validation of the information fetched.
|
sl@0
|
2687 |
Fetch the information on a particular implementation (UID) and interface (UID)
|
sl@0
|
2688 |
Tests for the validation of the information fetched.
|
sl@0
|
2689 |
@SYMTestExpectedResults The test must not fail.
|
sl@0
|
2690 |
@SYMREQ REQ0000
|
sl@0
|
2691 |
*/
|
sl@0
|
2692 |
void CRegistryDataTest::FindImplementationTestL()
|
sl@0
|
2693 |
{
|
sl@0
|
2694 |
TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-0741 "));
|
sl@0
|
2695 |
// A reference to the implementation entry in the registry
|
sl@0
|
2696 |
CRegistryData::CImplementationData* implementationData = NULL;
|
sl@0
|
2697 |
|
sl@0
|
2698 |
// find implementation with interface uid unknown
|
sl@0
|
2699 |
TInt err = iStateAccessor->FindImplementation(*iRegistryData, iImplementationUid, KCDummyUid, implementationData);
|
sl@0
|
2700 |
TEST_OOM_ERR;
|
sl@0
|
2701 |
TEST2(err, KErrNone);
|
sl@0
|
2702 |
|
sl@0
|
2703 |
const CImplementationInformation* implementationInfo = implementationData->iImplInfo;
|
sl@0
|
2704 |
|
sl@0
|
2705 |
TheTest.Printf((implementationInfo->DisplayName()));
|
sl@0
|
2706 |
_LIT(KUIDFormat,"Uid = 0x%08X\n");
|
sl@0
|
2707 |
TheTest.Printf(KUIDFormat, iImplementationUid);
|
sl@0
|
2708 |
TheTest.Printf(KUIDFormat, implementationInfo->ImplementationUid());
|
sl@0
|
2709 |
// Check for if its the same implementation
|
sl@0
|
2710 |
TEST(iImplementationUid == implementationInfo->ImplementationUid());
|
sl@0
|
2711 |
|
sl@0
|
2712 |
// find implementation with interface uid known
|
sl@0
|
2713 |
err = iStateAccessor->FindImplementation(*iRegistryData, iImplementationUid, iInterfaceUid, implementationData);
|
sl@0
|
2714 |
TEST_OOM_ERR;
|
sl@0
|
2715 |
TEST2(err, KErrNone);
|
sl@0
|
2716 |
|
sl@0
|
2717 |
implementationInfo = implementationData->iImplInfo;
|
sl@0
|
2718 |
|
sl@0
|
2719 |
TheTest.Printf((implementationInfo->DisplayName()));
|
sl@0
|
2720 |
TheTest.Printf(KUIDFormat, iImplementationUid);
|
sl@0
|
2721 |
TheTest.Printf(KUIDFormat, implementationInfo->ImplementationUid());
|
sl@0
|
2722 |
TheTest.Printf(KUIDFormat, iInterfaceUid);
|
sl@0
|
2723 |
TheTest.Printf(KUIDFormat, implementationData->iParent->iInterfaceUid);
|
sl@0
|
2724 |
|
sl@0
|
2725 |
// Check for if its the same implementation
|
sl@0
|
2726 |
TEST(iImplementationUid == implementationInfo->ImplementationUid());
|
sl@0
|
2727 |
// Check for if its the same interface
|
sl@0
|
2728 |
TEST(iInterfaceUid == implementationData->iParent->iInterfaceUid);
|
sl@0
|
2729 |
|
sl@0
|
2730 |
// attempt to find unknown implementation with dummy interface uid
|
sl@0
|
2731 |
err = iStateAccessor->FindImplementation(*iRegistryData, KCInvalidUid, KCDummyUid, implementationData);
|
sl@0
|
2732 |
TEST_OOM_ERR;
|
sl@0
|
2733 |
TEST2(err, KErrNotFound);
|
sl@0
|
2734 |
|
sl@0
|
2735 |
// attempt to find implementation for unknown interface uid
|
sl@0
|
2736 |
err = iStateAccessor->FindImplementation(*iRegistryData, iImplementationUid, KCInvalidUid, implementationData);
|
sl@0
|
2737 |
TEST_OOM_ERR;
|
sl@0
|
2738 |
TEST2(err, KErrNotFound);
|
sl@0
|
2739 |
}
|
sl@0
|
2740 |
|
sl@0
|
2741 |
/**
|
sl@0
|
2742 |
Tests functionality of ListImplementationsL for an interface id and listing all
|
sl@0
|
2743 |
the implementations.
|
sl@0
|
2744 |
The interface Uid 0x10009DC0 has 6 implementations on different DLLs but only 4 will
|
sl@0
|
2745 |
be picked as as 2 of them are of older version(Impl ID 0x10009DC3 and 0x10009DC4 with version 1)
|
sl@0
|
2746 |
|
sl@0
|
2747 |
Interface UID DLL UID Implementation UID Version
|
sl@0
|
2748 |
-------------------------------------------------------
|
sl@0
|
2749 |
0x10009DC0 0x10009DB1 0x10009DC3 1
|
sl@0
|
2750 |
0x10009DB1 0x10009DC4 1
|
sl@0
|
2751 |
0x10009DB3 0x10009DC3 2
|
sl@0
|
2752 |
0x10009DB3 0x10009DC4 2
|
sl@0
|
2753 |
0x101F8477 0x101F8478 1
|
sl@0
|
2754 |
0x101F847B 0x101F847C 1
|
sl@0
|
2755 |
|
sl@0
|
2756 |
@SYMTestCaseID SYSLIB-ECOM-CT-0742
|
sl@0
|
2757 |
@SYMTestCaseDesc Tests for CRegistryData::ListImplementationsL() function
|
sl@0
|
2758 |
@SYMTestPriority High
|
sl@0
|
2759 |
@SYMTestActions List the implementations for an existing interface UID and
|
sl@0
|
2760 |
test for expected number of implementations.Check the VID of
|
sl@0
|
2761 |
every implementation match the VID of the DLL which the implementation
|
sl@0
|
2762 |
belongs to.
|
sl@0
|
2763 |
@SYMTestExpectedResults The test must not fail.
|
sl@0
|
2764 |
@SYMREQ REQ0000, REQ6111
|
sl@0
|
2765 |
*/
|
sl@0
|
2766 |
void CRegistryDataTest::ListImplementationsL()
|
sl@0
|
2767 |
{
|
sl@0
|
2768 |
TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-0742 "));
|
sl@0
|
2769 |
// List the implementations for an existing interface UID
|
sl@0
|
2770 |
TEST(iRegistryData->IndexValid());
|
sl@0
|
2771 |
|
sl@0
|
2772 |
TRAPD(err, iRegistryData->ListImplementationsL(iInterfaceUid,iImplDataList));
|
sl@0
|
2773 |
CleanupClosePushL(iImplDataList);
|
sl@0
|
2774 |
|
sl@0
|
2775 |
TEST_OOM_ERR;
|
sl@0
|
2776 |
TEST2(err, KErrNone);
|
sl@0
|
2777 |
|
sl@0
|
2778 |
// Print UIDs of implementations
|
sl@0
|
2779 |
_LIT(KUIDFormat,"Uid = 0x%08x\n");
|
sl@0
|
2780 |
_LIT(KLists,"There are %d Implementations \n");
|
sl@0
|
2781 |
|
sl@0
|
2782 |
TheTest.Printf(KLists, iImplDataList.Count());
|
sl@0
|
2783 |
// Test for expected number of implementations
|
sl@0
|
2784 |
TEST(iImplDataList.Count() == 4);
|
sl@0
|
2785 |
|
sl@0
|
2786 |
for(TInt index = 0; index < iImplDataList.Count(); ++index)
|
sl@0
|
2787 |
{
|
sl@0
|
2788 |
CImplementationInformation* implInfo = iImplDataList[index]->iImplInfo;
|
sl@0
|
2789 |
TUid uid = implInfo->ImplementationUid();
|
sl@0
|
2790 |
TheTest.Printf(KUIDFormat, uid);
|
sl@0
|
2791 |
}
|
sl@0
|
2792 |
// Empty the array of implementation data
|
sl@0
|
2793 |
CleanupStack::PopAndDestroy(&iImplDataList);
|
sl@0
|
2794 |
}
|
sl@0
|
2795 |
|
sl@0
|
2796 |
/**
|
sl@0
|
2797 |
Tests functionality of TemporaryUninstallL and UndoTemporaryUninstallL
|
sl@0
|
2798 |
Test does temporarily 1.install 2.uninstall and 3.install the specified drive
|
sl@0
|
2799 |
|
sl@0
|
2800 |
@SYMTestCaseID SYSLIB-ECOM-CT-0743
|
sl@0
|
2801 |
@SYMTestCaseDesc Tests for CRegistryData::UndoTemporaryUninstallL(),TemporaryUninstallL() function
|
sl@0
|
2802 |
@SYMTestPriority High
|
sl@0
|
2803 |
@SYMTestActions Tests for temporarily install,uninstall,install the specified drive
|
sl@0
|
2804 |
@SYMTestExpectedResults The test must not fail.
|
sl@0
|
2805 |
@SYMREQ REQ0000
|
sl@0
|
2806 |
*/
|
sl@0
|
2807 |
void CRegistryDataTest::DoUndoTemporaryUninstallTestL()
|
sl@0
|
2808 |
{
|
sl@0
|
2809 |
TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-0743 "));
|
sl@0
|
2810 |
// We are testing with F drive.
|
sl@0
|
2811 |
iDriveUnit = EDriveF;
|
sl@0
|
2812 |
TBool driveregistered = iStateAccessor->IsRegisteredDriveL(*iRegistryData, iDriveUnit);
|
sl@0
|
2813 |
// Check that the drive is registered. If its not there add it by UndoTemporaryUninstallL
|
sl@0
|
2814 |
if (!driveregistered)
|
sl@0
|
2815 |
{
|
sl@0
|
2816 |
TRAPD(err, iRegistryData->UndoTemporaryUninstallL(iDriveUnit));
|
sl@0
|
2817 |
TEST_OOM_ERR;
|
sl@0
|
2818 |
TEST2(err, KErrNone);
|
sl@0
|
2819 |
}
|
sl@0
|
2820 |
|
sl@0
|
2821 |
// Test drive should be present
|
sl@0
|
2822 |
TEST(iStateAccessor->IsRegisteredDriveL(*iRegistryData, iDriveUnit));
|
sl@0
|
2823 |
|
sl@0
|
2824 |
// Uninstall the test drive
|
sl@0
|
2825 |
TRAPD(err, iRegistryData->TemporaryUninstallL(iDriveUnit));
|
sl@0
|
2826 |
TEST_OOM_ERR;
|
sl@0
|
2827 |
TEST2(err, KErrNone);
|
sl@0
|
2828 |
// Test drive should not be present
|
sl@0
|
2829 |
TEST(!(iStateAccessor->IsRegisteredDriveL(*iRegistryData, iDriveUnit)));
|
sl@0
|
2830 |
|
sl@0
|
2831 |
// Put the test drive back to work if it was registered before
|
sl@0
|
2832 |
if (driveregistered)
|
sl@0
|
2833 |
{
|
sl@0
|
2834 |
TRAP(err, iRegistryData->UndoTemporaryUninstallL(iDriveUnit));
|
sl@0
|
2835 |
TEST_OOM_ERR;
|
sl@0
|
2836 |
TEST2(err, KErrNone);
|
sl@0
|
2837 |
// Test drive should be present
|
sl@0
|
2838 |
TEST(iStateAccessor->IsRegisteredDriveL(*iRegistryData, iDriveUnit));
|
sl@0
|
2839 |
}
|
sl@0
|
2840 |
}
|
sl@0
|
2841 |
|
sl@0
|
2842 |
/**
|
sl@0
|
2843 |
Tests functionality of DiscoveriesBeginning and DiscoveriesCompleteL
|
sl@0
|
2844 |
Tests registry data discovery process.
|
sl@0
|
2845 |
|
sl@0
|
2846 |
@SYMTestCaseID SYSLIB-ECOM-CT-0745
|
sl@0
|
2847 |
@SYMTestCaseDesc Tests for CRegistryData::DiscoveriesBeginning(),CRegistryData::DiscoveriesCompleteL() functions
|
sl@0
|
2848 |
@SYMTestPriority High
|
sl@0
|
2849 |
@SYMTestActions Tests for registry data discovery process.
|
sl@0
|
2850 |
@SYMTestExpectedResults The test must not fail.
|
sl@0
|
2851 |
@SYMREQ REQ0000
|
sl@0
|
2852 |
*/
|
sl@0
|
2853 |
void CRegistryDataTest::DiscoveriesBeginCompleteTestL()
|
sl@0
|
2854 |
{
|
sl@0
|
2855 |
TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-0745 "));
|
sl@0
|
2856 |
// Issue discoveries begin and complete requests
|
sl@0
|
2857 |
// and confirm the same
|
sl@0
|
2858 |
|
sl@0
|
2859 |
// DiscoveriesBegin marks the registry indexes as invalid as
|
sl@0
|
2860 |
// the discovery process is in progress
|
sl@0
|
2861 |
TRAPD(err, iRegistryData->DiscoveriesBeginning());
|
sl@0
|
2862 |
TEST_OOM_ERR;
|
sl@0
|
2863 |
TEST2(err, KErrNone);
|
sl@0
|
2864 |
// Check Registry is invalid
|
sl@0
|
2865 |
TEST(!iStateAccessor->IsIndexValid(*(iRegistryData)));
|
sl@0
|
2866 |
|
sl@0
|
2867 |
// DiscoveriesCompleteL marks the registry indexes valid as
|
sl@0
|
2868 |
// the discovery process is complete
|
sl@0
|
2869 |
TBool regChanged = EFalse;
|
sl@0
|
2870 |
TRAP(err, iRegistryData->DiscoveriesCompleteL(EFalse, EPluginProcessingTypeAll,regChanged));
|
sl@0
|
2871 |
TEST_OOM_ERR;
|
sl@0
|
2872 |
TEST2(err, KErrNone);
|
sl@0
|
2873 |
// Check Registry is valid
|
sl@0
|
2874 |
TEST(iStateAccessor->IsIndexValid(*(iRegistryData)));
|
sl@0
|
2875 |
}
|
sl@0
|
2876 |
|
sl@0
|
2877 |
/**
|
sl@0
|
2878 |
Tests finding index for an entry for implementation Uid
|
sl@0
|
2879 |
|
sl@0
|
2880 |
@SYMTestCaseID SYSLIB-ECOM-CT-0747
|
sl@0
|
2881 |
@SYMTestCaseDesc Tests for CRegistryData::IndexedFindTestL() function
|
sl@0
|
2882 |
@SYMTestPriority High
|
sl@0
|
2883 |
@SYMTestActions Tests to find the index entry for aImplementationUid and log it
|
sl@0
|
2884 |
@SYMTestExpectedResults The test must not fail.
|
sl@0
|
2885 |
@SYMREQ REQ0000
|
sl@0
|
2886 |
*/
|
sl@0
|
2887 |
void CRegistryDataTest::IndexedFindTestL()
|
sl@0
|
2888 |
{
|
sl@0
|
2889 |
TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-0747 "));
|
sl@0
|
2890 |
// Find the index entry for aImplementationUid and print it
|
sl@0
|
2891 |
TInt index=0;
|
sl@0
|
2892 |
|
sl@0
|
2893 |
TRAPD(err, index = iStateAccessor->IndexedFind(*(iRegistryData), iInterfaceUid));
|
sl@0
|
2894 |
TEST_OOM_ERR;
|
sl@0
|
2895 |
TEST2(err, KErrNone);
|
sl@0
|
2896 |
TheTest.Printf(_L("The index of interface 0x%08x is %d \n"), iInterfaceUid, index);
|
sl@0
|
2897 |
// Index should have some valid value
|
sl@0
|
2898 |
TEST(index >= 0);
|
sl@0
|
2899 |
}
|
sl@0
|
2900 |
|
sl@0
|
2901 |
|
sl@0
|
2902 |
/**
|
sl@0
|
2903 |
Plugins to be used in this test
|
sl@0
|
2904 |
Interface UID DLL UID Implementation UID Version DLL File
|
sl@0
|
2905 |
--------------------------------------------------------------------------------
|
sl@0
|
2906 |
0x10009E36 0x10009E3E 0x10009E39 1 C:\\..\\EComExample12.dll
|
sl@0
|
2907 |
0x10009E3E 0x10009E3C 1 C:\\..\\EComExample12.dll
|
sl@0
|
2908 |
0x10009E3E 0x10009E3D 1 C:\\..\\EComExample12.dll
|
sl@0
|
2909 |
0x10009E42 0x10009E39 2 C:\\..\\EComExample15.dll
|
sl@0
|
2910 |
|
sl@0
|
2911 |
|
sl@0
|
2912 |
@SYMTestCaseID SYSLIB-ECOM-UT-3573
|
sl@0
|
2913 |
@SYMTestCaseDesc Tests for CRegistryData::GetImplementationDllInfoForClientL() function for DLL type PLUGIN3.
|
sl@0
|
2914 |
@SYMTestPriority High
|
sl@0
|
2915 |
@SYMTestActions Get the plugin information of the implementation UID and validate the information.
|
sl@0
|
2916 |
Get the plugin information of the implementation UID and Interface UID and validate
|
sl@0
|
2917 |
the information.
|
sl@0
|
2918 |
Tests for that the implementation returned will have the highest version
|
sl@0
|
2919 |
@SYMTestExpectedResults Implementation information is returned correctly.
|
sl@0
|
2920 |
@SYMEC EC43
|
sl@0
|
2921 |
*/
|
sl@0
|
2922 |
void CRegistryDataTest::GetImplementationDllInfoForClientPlugIn3TestL()
|
sl@0
|
2923 |
{
|
sl@0
|
2924 |
TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-UT-3573 "));
|
sl@0
|
2925 |
TUid ImpUid15 = {0x10009E39};
|
sl@0
|
2926 |
TUid ImpUid12 = {0x10009E3C};
|
sl@0
|
2927 |
TUid InterfaceUid = {0x10009E36};
|
sl@0
|
2928 |
TEntry dllinfo;
|
sl@0
|
2929 |
TInt err;
|
sl@0
|
2930 |
TClientRequest clntRq;
|
sl@0
|
2931 |
|
sl@0
|
2932 |
//Tests the CImplementationInformation is correct
|
sl@0
|
2933 |
//and the DllInfo contains correct implementation info
|
sl@0
|
2934 |
//Implementation uid used=0x10009E3C
|
sl@0
|
2935 |
CImplementationInformation* implementationInfo = NULL;
|
sl@0
|
2936 |
err = iRegistryData->GetImplementationDllInfoForClientL(clntRq, ImpUid12, KCDummyUid, dllinfo, implementationInfo, ETrue);
|
sl@0
|
2937 |
TEST2(err, KErrNone);
|
sl@0
|
2938 |
TEST(implementationInfo->ImplementationUid() == ImpUid12);
|
sl@0
|
2939 |
TEST(implementationInfo->Version() == 1);
|
sl@0
|
2940 |
TEST(dllinfo.iName.CompareF(KEComExample12DllOnC) == 0);
|
sl@0
|
2941 |
|
sl@0
|
2942 |
// ... again but with interface uid
|
sl@0
|
2943 |
err = iRegistryData->GetImplementationDllInfoForClientL(clntRq, ImpUid12, InterfaceUid, dllinfo, implementationInfo, ETrue);
|
sl@0
|
2944 |
TEST2(err, KErrNone);
|
sl@0
|
2945 |
TEST(implementationInfo->ImplementationUid() == ImpUid12);
|
sl@0
|
2946 |
TEST(implementationInfo->Version() == 1);
|
sl@0
|
2947 |
TEST(dllinfo.iName.CompareF(KEComExample12DllOnC) == 0);
|
sl@0
|
2948 |
|
sl@0
|
2949 |
//Tests that the implementation returned will have the highest version
|
sl@0
|
2950 |
//EComExample12.dll contains Impl 0x10009E39 with version 1
|
sl@0
|
2951 |
//EComExample15.dll contains Impl 0x10009E39 with version 2
|
sl@0
|
2952 |
//Ensure that choose the implementation in EComExample15.dll
|
sl@0
|
2953 |
err = iRegistryData->GetImplementationDllInfoForClientL(clntRq, ImpUid15, KCDummyUid, dllinfo, implementationInfo, ETrue);
|
sl@0
|
2954 |
TEST2(err, KErrNone);
|
sl@0
|
2955 |
TEST(implementationInfo->ImplementationUid() == ImpUid15);
|
sl@0
|
2956 |
TEST(implementationInfo->Version() == 2);
|
sl@0
|
2957 |
TEST(dllinfo.iName.CompareF(KEComExample15DllOnC) == 0);
|
sl@0
|
2958 |
|
sl@0
|
2959 |
// ... again but with interface uid
|
sl@0
|
2960 |
err = iRegistryData->GetImplementationDllInfoForClientL(clntRq, ImpUid15, InterfaceUid, dllinfo, implementationInfo, ETrue);
|
sl@0
|
2961 |
TEST2(err, KErrNone);
|
sl@0
|
2962 |
TEST(implementationInfo->ImplementationUid() == ImpUid15);
|
sl@0
|
2963 |
TEST(implementationInfo->Version() == 2);
|
sl@0
|
2964 |
TEST(dllinfo.iName.CompareF(KEComExample15DllOnC) == 0);
|
sl@0
|
2965 |
}
|
sl@0
|
2966 |
|
sl@0
|
2967 |
/**
|
sl@0
|
2968 |
Plugins to be used in this test
|
sl@0
|
2969 |
Interface UID DLL UID Implementation UID Version DLL File
|
sl@0
|
2970 |
--------------------------------------------------------------------------------
|
sl@0
|
2971 |
0x10009E36 0x10009E3E 0x10009E39 1 C:\\..\\EComExample12.dll
|
sl@0
|
2972 |
0x10009E3E 0x10009E3C 1 C:\\..\\EComExample12.dll
|
sl@0
|
2973 |
0x10009E3E 0x10009E3D 1 C:\\..\\EComExample12.dll
|
sl@0
|
2974 |
0x10009E42 0x10009E39 2 C:\\..\\EComExample15.dll
|
sl@0
|
2975 |
|
sl@0
|
2976 |
@SYMTestCaseID SYSLIB-ECOM-UT-3574
|
sl@0
|
2977 |
@SYMTestCaseDesc Tests for CRegistryData::GetImplementationDllInfoForServer() function for DLL type PLUGIN3.
|
sl@0
|
2978 |
@SYMTestPriority High
|
sl@0
|
2979 |
@SYMTestActions Get the plugin information of the implementation UID and validate the information.
|
sl@0
|
2980 |
Get the plugin information of the implementation UID and Interface UID and validate
|
sl@0
|
2981 |
the information.
|
sl@0
|
2982 |
Tests for loading implementation from RAM
|
sl@0
|
2983 |
Tests for that the implementation returned will have the highest version
|
sl@0
|
2984 |
@SYMTestExpectedResults Implementation information is returned correctly.
|
sl@0
|
2985 |
@SYMEC EC43
|
sl@0
|
2986 |
*/
|
sl@0
|
2987 |
void CRegistryDataTest::GetImplementationDllInfoForServerPlugIn3Test()
|
sl@0
|
2988 |
{
|
sl@0
|
2989 |
TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-UT-3574 "));
|
sl@0
|
2990 |
TUid ImpUid15={0x10009E39};
|
sl@0
|
2991 |
TUid ImpUid12={0x10009E3C};
|
sl@0
|
2992 |
TUid InterfaceUid={0x10009E36};
|
sl@0
|
2993 |
TEntry dllinfo;
|
sl@0
|
2994 |
TInt err;
|
sl@0
|
2995 |
TBool dummyBool;
|
sl@0
|
2996 |
|
sl@0
|
2997 |
//Tests the CImplementationInformation is correct
|
sl@0
|
2998 |
//and the DllInfo contains correct implementation info
|
sl@0
|
2999 |
//Implementation uid used=0x10009E3C
|
sl@0
|
3000 |
CImplementationInformation* implementationInfo=NULL;
|
sl@0
|
3001 |
err = iRegistryData->GetImplementationDllInfoForServer(dummycaps, ImpUid12, KCDummyUid, dllinfo, implementationInfo, dummyBool);
|
sl@0
|
3002 |
TEST2(err, KErrNone);
|
sl@0
|
3003 |
TEST(implementationInfo->ImplementationUid() == ImpUid12);
|
sl@0
|
3004 |
TEST(implementationInfo->Version() == 1);
|
sl@0
|
3005 |
TEST(dllinfo.iName.CompareF(KEComExample12DllOnC) == 0);
|
sl@0
|
3006 |
|
sl@0
|
3007 |
// ... again but with interface uid
|
sl@0
|
3008 |
err = iRegistryData->GetImplementationDllInfoForServer(dummycaps, ImpUid12, InterfaceUid, dllinfo, implementationInfo, dummyBool);
|
sl@0
|
3009 |
TEST2(err, KErrNone);
|
sl@0
|
3010 |
TEST(implementationInfo->ImplementationUid() == ImpUid12);
|
sl@0
|
3011 |
TEST(implementationInfo->Version() == 1);
|
sl@0
|
3012 |
TEST(dllinfo.iName.CompareF(KEComExample12DllOnC) == 0);
|
sl@0
|
3013 |
|
sl@0
|
3014 |
//Tests that the implementation returned will have the highest version
|
sl@0
|
3015 |
//EComExample12.dll contains Impl 0x10009E39 with version 1
|
sl@0
|
3016 |
//EComExample15.dll contains Impl 0x10009E39 with version 2
|
sl@0
|
3017 |
//Ensure that choose the implementation in EComExample15.dll
|
sl@0
|
3018 |
err = iRegistryData->GetImplementationDllInfoForServer(dummycaps, ImpUid15, KCDummyUid, dllinfo, implementationInfo, dummyBool);
|
sl@0
|
3019 |
TEST2(err, KErrNone);
|
sl@0
|
3020 |
TEST(implementationInfo->ImplementationUid() == ImpUid15);
|
sl@0
|
3021 |
TEST(implementationInfo->Version() == 2);
|
sl@0
|
3022 |
TEST(dllinfo.iName.CompareF(KEComExample15DllOnC) == 0);
|
sl@0
|
3023 |
|
sl@0
|
3024 |
// ... again but with interface uid
|
sl@0
|
3025 |
err = iRegistryData->GetImplementationDllInfoForServer(dummycaps, ImpUid15, InterfaceUid, dllinfo, implementationInfo, dummyBool);
|
sl@0
|
3026 |
TEST2(err, KErrNone);
|
sl@0
|
3027 |
TEST(implementationInfo->ImplementationUid() == ImpUid15);
|
sl@0
|
3028 |
TEST(implementationInfo->Version() == 2);
|
sl@0
|
3029 |
TEST(dllinfo.iName.CompareF(KEComExample15DllOnC) == 0);
|
sl@0
|
3030 |
}
|
sl@0
|
3031 |
|
sl@0
|
3032 |
/**
|
sl@0
|
3033 |
Tests for the CRegistryData::GetImplementationDllInfoForClientTestL.
|
sl@0
|
3034 |
Plugins to be used in this test
|
sl@0
|
3035 |
Interface UID DLL UID Implementation UID Version DllFile
|
sl@0
|
3036 |
-------------------------------------------------------------------
|
sl@0
|
3037 |
0x10009DC0 0x10009DB1 0x10009DC3 1 C:\\..\\EComExample.dll
|
sl@0
|
3038 |
0x10009DB1 0x10009DC4 1 C:\\..\\EComExample.dll
|
sl@0
|
3039 |
0x10009DB3 0x10009DC3 2 C:\\..\\EComExample2.dll
|
sl@0
|
3040 |
0x10009DB3 0x10009DC4 2 C:\\..\\EComExample2.dll
|
sl@0
|
3041 |
0x101F8477 0x101F8478 1 C:\\..\\EComExample3.dll
|
sl@0
|
3042 |
0x101F847B 0x101F847C 1 C:\\..\\EComExample5.dll
|
sl@0
|
3043 |
|
sl@0
|
3044 |
|
sl@0
|
3045 |
@SYMTestCaseID SYSLIB-ECOM-CT-1374
|
sl@0
|
3046 |
@SYMTestCaseDesc Tests for CRegistryData::GetImplementationDllInfoForClientL() function.
|
sl@0
|
3047 |
@SYMTestPriority High
|
sl@0
|
3048 |
@SYMTestActions Get the plugin information of the implementation UID and validate the information.
|
sl@0
|
3049 |
Get the plugin information of the implementation UID and Interface UID and validate
|
sl@0
|
3050 |
the information.
|
sl@0
|
3051 |
Tests for the CImplementationInformation is correct
|
sl@0
|
3052 |
Tests for loading implementation from RAM
|
sl@0
|
3053 |
Tests for that the implementation returned will have the highest version
|
sl@0
|
3054 |
Tests for for invalid ImplementationUid
|
sl@0
|
3055 |
@SYMTestExpectedResults The test must not fail.
|
sl@0
|
3056 |
@SYMREQ DEF065552
|
sl@0
|
3057 |
*/
|
sl@0
|
3058 |
void CRegistryDataTest::GetImplementationDllInfoForClientTestL()
|
sl@0
|
3059 |
{
|
sl@0
|
3060 |
TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-1374 "));
|
sl@0
|
3061 |
_LIT(KEComExample2,"C:\\sys\\bin\\EComExample2.dll");
|
sl@0
|
3062 |
_LIT(KEComExample3,"C:\\sys\\bin\\EComExample3.dll");
|
sl@0
|
3063 |
_LIT(KEComExample5,"C:\\sys\\bin\\EComExample5.dll");
|
sl@0
|
3064 |
|
sl@0
|
3065 |
TUid ImpUid={0x10009DC3};
|
sl@0
|
3066 |
TUid ImpUid3={0x101F8478};
|
sl@0
|
3067 |
TUid ImpUid5={0x101F847C};
|
sl@0
|
3068 |
TEntry dllinfo;
|
sl@0
|
3069 |
TInt err;
|
sl@0
|
3070 |
TClientRequest clntRq;
|
sl@0
|
3071 |
|
sl@0
|
3072 |
//Testing the CImplementationInformation is correct
|
sl@0
|
3073 |
//and the DllInfo contains correct implementation info
|
sl@0
|
3074 |
//Implementation uid used=0x101F8478
|
sl@0
|
3075 |
CImplementationInformation* implementationInfo=NULL;
|
sl@0
|
3076 |
err = iRegistryData->GetImplementationDllInfoForClientL(clntRq, ImpUid3, KCDummyUid, dllinfo, implementationInfo, ETrue);
|
sl@0
|
3077 |
TEST2(err, KErrNone);
|
sl@0
|
3078 |
TEST(implementationInfo->ImplementationUid()==ImpUid3);
|
sl@0
|
3079 |
TEST(implementationInfo->Version()==1);
|
sl@0
|
3080 |
TEST(dllinfo.iName.CompareF(KEComExample3)==0);
|
sl@0
|
3081 |
|
sl@0
|
3082 |
// ... again but with interface uid
|
sl@0
|
3083 |
err = iRegistryData->GetImplementationDllInfoForClientL(clntRq, ImpUid3, iInterfaceUid, dllinfo, implementationInfo, ETrue);
|
sl@0
|
3084 |
TEST2(err, KErrNone);
|
sl@0
|
3085 |
TEST(implementationInfo->ImplementationUid()==ImpUid3);
|
sl@0
|
3086 |
TEST(implementationInfo->Version()==1);
|
sl@0
|
3087 |
TEST(dllinfo.iName.CompareF(KEComExample3)==0);
|
sl@0
|
3088 |
|
sl@0
|
3089 |
//Testing loading implementation from RAM(EComExample5.dll)
|
sl@0
|
3090 |
//Implementation uid used=0x101F847C
|
sl@0
|
3091 |
err = iRegistryData->GetImplementationDllInfoForClientL(clntRq, ImpUid5, KCDummyUid, dllinfo, implementationInfo, ETrue);
|
sl@0
|
3092 |
TEST2(err, KErrNone);
|
sl@0
|
3093 |
TEST(implementationInfo->ImplementationUid()==ImpUid5);
|
sl@0
|
3094 |
TEST(implementationInfo->Version()==1);
|
sl@0
|
3095 |
TEST(dllinfo.iName.CompareF(KEComExample5)==0);
|
sl@0
|
3096 |
|
sl@0
|
3097 |
// ... again but with interface uid
|
sl@0
|
3098 |
err = iRegistryData->GetImplementationDllInfoForClientL(clntRq, ImpUid5, iInterfaceUid, dllinfo, implementationInfo, ETrue);
|
sl@0
|
3099 |
TEST2(err, KErrNone);
|
sl@0
|
3100 |
TEST(implementationInfo->ImplementationUid()==ImpUid5);
|
sl@0
|
3101 |
TEST(implementationInfo->Version()==1);
|
sl@0
|
3102 |
TEST(dllinfo.iName.CompareF(KEComExample5)==0);
|
sl@0
|
3103 |
|
sl@0
|
3104 |
//Testing that the implementation returned will have the highest version
|
sl@0
|
3105 |
//EComExample.dll contains Impl 0x10009DC3 with version 1
|
sl@0
|
3106 |
//EComExample2.dll contains Impl 0x10009DC3 with version 2
|
sl@0
|
3107 |
//Ensure that choose the implementation in EComExample2.dll
|
sl@0
|
3108 |
err = iRegistryData->GetImplementationDllInfoForClientL(clntRq, ImpUid, KCDummyUid, dllinfo, implementationInfo, ETrue);
|
sl@0
|
3109 |
TEST2(err, KErrNone);
|
sl@0
|
3110 |
TEST(implementationInfo->ImplementationUid()==ImpUid);
|
sl@0
|
3111 |
TEST(implementationInfo->Version()==2);
|
sl@0
|
3112 |
TEST(dllinfo.iName.CompareF(KEComExample2)==0);
|
sl@0
|
3113 |
|
sl@0
|
3114 |
// ... again but with interface uid
|
sl@0
|
3115 |
err = iRegistryData->GetImplementationDllInfoForClientL(clntRq, ImpUid, iInterfaceUid, dllinfo, implementationInfo, ETrue);
|
sl@0
|
3116 |
TEST2(err, KErrNone);
|
sl@0
|
3117 |
TEST(implementationInfo->ImplementationUid()==ImpUid);
|
sl@0
|
3118 |
TEST(implementationInfo->Version()==2);
|
sl@0
|
3119 |
TEST(dllinfo.iName.CompareF(KEComExample2)==0);
|
sl@0
|
3120 |
|
sl@0
|
3121 |
//Testing for invalid ImplementationUid
|
sl@0
|
3122 |
err = iRegistryData->GetImplementationDllInfoForClientL(clntRq, KCInvalidUid, KCDummyUid, dllinfo, implementationInfo, ETrue);
|
sl@0
|
3123 |
TEST2(err, KErrNotFound);
|
sl@0
|
3124 |
TEST(implementationInfo==0);
|
sl@0
|
3125 |
|
sl@0
|
3126 |
//Testing for invalid InterfaceUid
|
sl@0
|
3127 |
err = iRegistryData->GetImplementationDllInfoForClientL(clntRq, ImpUid, KCInvalidUid, dllinfo, implementationInfo, ETrue);
|
sl@0
|
3128 |
TEST2(err, KErrNotFound);
|
sl@0
|
3129 |
TEST(implementationInfo==0);
|
sl@0
|
3130 |
|
sl@0
|
3131 |
//Testing for invalid ImplementationUid and invalid InterfaceUid
|
sl@0
|
3132 |
err = iRegistryData->GetImplementationDllInfoForClientL(clntRq, KCInvalidUid, KCInvalidUid, dllinfo, implementationInfo, ETrue);
|
sl@0
|
3133 |
TEST2(err, KErrNotFound);
|
sl@0
|
3134 |
TEST(implementationInfo==0);
|
sl@0
|
3135 |
}
|
sl@0
|
3136 |
|
sl@0
|
3137 |
/**
|
sl@0
|
3138 |
Tests for the CRegistryData::GetImplementationDllInfoForServer.
|
sl@0
|
3139 |
This new API is introduced in the Clientside loading of plugins(ECOM Platform security)
|
sl@0
|
3140 |
where the server will return the plugin information(aEntry) of the implementation Uid
|
sl@0
|
3141 |
requested by the client.
|
sl@0
|
3142 |
Plugins to be used in this test
|
sl@0
|
3143 |
Interface UID DLL UID Implementation UID Version DllFile
|
sl@0
|
3144 |
-------------------------------------------------------------------
|
sl@0
|
3145 |
0x10009DC0 0x10009DB1 0x10009DC3 1 C:\\..\\EComExample.dll
|
sl@0
|
3146 |
0x10009DB1 0x10009DC4 1 C:\\..\\EComExample.dll
|
sl@0
|
3147 |
0x10009DB3 0x10009DC3 2 C:\\..\\EComExample2.dll
|
sl@0
|
3148 |
0x10009DB3 0x10009DC4 2 C:\\..\\EComExample2.dll
|
sl@0
|
3149 |
0x101F8477 0x101F8478 1 C:\\..\\EComExample3.dll
|
sl@0
|
3150 |
0x101F847B 0x101F847C 1 C:\\..\\EComExample5.dll
|
sl@0
|
3151 |
|
sl@0
|
3152 |
|
sl@0
|
3153 |
@SYMTestCaseID SYSLIB-ECOM-CT-0749
|
sl@0
|
3154 |
@SYMTestCaseDesc Tests for CRegistryData::GetImplementationDllInfoForServer() function.
|
sl@0
|
3155 |
@SYMTestPriority High
|
sl@0
|
3156 |
@SYMTestActions Get the plugin information of the implementation UID and validate the information.
|
sl@0
|
3157 |
Get the plugin information of the implementation UID and Interface UID and validate
|
sl@0
|
3158 |
the information.
|
sl@0
|
3159 |
Tests for the CImplementationInformation is correct
|
sl@0
|
3160 |
Tests for loading implementation from RAM
|
sl@0
|
3161 |
Tests for that the implementation returned will have the highest version
|
sl@0
|
3162 |
Tests for for invalid ImplementationUid
|
sl@0
|
3163 |
@SYMTestExpectedResults The test must not fail.
|
sl@0
|
3164 |
@SYMREQ REQ0000
|
sl@0
|
3165 |
*/
|
sl@0
|
3166 |
void CRegistryDataTest::GetImplementationDllInfoForServerTest()
|
sl@0
|
3167 |
{
|
sl@0
|
3168 |
TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-0749 "));
|
sl@0
|
3169 |
_LIT(KEComExample2,"C:\\sys\\bin\\EComExample2.dll");
|
sl@0
|
3170 |
_LIT(KEComExample3,"C:\\sys\\bin\\EComExample3.dll");
|
sl@0
|
3171 |
_LIT(KEComExample5,"C:\\sys\\bin\\EComExample5.dll");
|
sl@0
|
3172 |
|
sl@0
|
3173 |
TUid ImpUid={0x10009DC3};
|
sl@0
|
3174 |
TUid ImpUid3={0x101F8478};
|
sl@0
|
3175 |
TUid ImpUid5={0x101F847C};
|
sl@0
|
3176 |
TEntry dllinfo;
|
sl@0
|
3177 |
TInt err;
|
sl@0
|
3178 |
TBool dummyBool;
|
sl@0
|
3179 |
|
sl@0
|
3180 |
//Testing the CImplementationInformation is correct
|
sl@0
|
3181 |
//and the DllInfo contains correct implementation info
|
sl@0
|
3182 |
//Implementation uid used=0x101F8478
|
sl@0
|
3183 |
CImplementationInformation* implementationInfo=NULL;
|
sl@0
|
3184 |
err = iRegistryData->GetImplementationDllInfoForServer(dummycaps, ImpUid3, KCDummyUid, dllinfo, implementationInfo, dummyBool);
|
sl@0
|
3185 |
TEST2(err, KErrNone);
|
sl@0
|
3186 |
TEST(implementationInfo->ImplementationUid()==ImpUid3);
|
sl@0
|
3187 |
TEST(implementationInfo->Version()==1);
|
sl@0
|
3188 |
TEST(dllinfo.iName.CompareF(KEComExample3)==0);
|
sl@0
|
3189 |
|
sl@0
|
3190 |
// ... again but with interface uid
|
sl@0
|
3191 |
err = iRegistryData->GetImplementationDllInfoForServer(dummycaps, ImpUid3, iInterfaceUid, dllinfo, implementationInfo, dummyBool);
|
sl@0
|
3192 |
TEST2(err, KErrNone);
|
sl@0
|
3193 |
TEST(implementationInfo->ImplementationUid()==ImpUid3);
|
sl@0
|
3194 |
TEST(implementationInfo->Version()==1);
|
sl@0
|
3195 |
TEST(dllinfo.iName.CompareF(KEComExample3)==0);
|
sl@0
|
3196 |
|
sl@0
|
3197 |
//Testing loading implementation from RAM(EComExample5.dll)
|
sl@0
|
3198 |
//Implementation uid used=0x101F847C
|
sl@0
|
3199 |
err = iRegistryData->GetImplementationDllInfoForServer(dummycaps, ImpUid5, KCDummyUid, dllinfo, implementationInfo, dummyBool);
|
sl@0
|
3200 |
TEST2(err, KErrNone);
|
sl@0
|
3201 |
TEST(implementationInfo->ImplementationUid()==ImpUid5);
|
sl@0
|
3202 |
TEST(implementationInfo->Version()==1);
|
sl@0
|
3203 |
TEST(dllinfo.iName.CompareF(KEComExample5)==0);
|
sl@0
|
3204 |
|
sl@0
|
3205 |
// ... again but with interface uid
|
sl@0
|
3206 |
err = iRegistryData->GetImplementationDllInfoForServer(dummycaps, ImpUid5, iInterfaceUid, dllinfo, implementationInfo, dummyBool);
|
sl@0
|
3207 |
TEST2(err, KErrNone);
|
sl@0
|
3208 |
TEST(implementationInfo->ImplementationUid()==ImpUid5);
|
sl@0
|
3209 |
TEST(implementationInfo->Version()==1);
|
sl@0
|
3210 |
TEST(dllinfo.iName.CompareF(KEComExample5)==0);
|
sl@0
|
3211 |
|
sl@0
|
3212 |
//Testing that the implementation returned will have the highest version
|
sl@0
|
3213 |
//EComExample.dll contains Impl 0x10009DC3 with version 1
|
sl@0
|
3214 |
//EComExample2.dll contains Impl 0x10009DC3 with version 2
|
sl@0
|
3215 |
//Ensure that choose the implementation in EComExample2.dll
|
sl@0
|
3216 |
err = iRegistryData->GetImplementationDllInfoForServer(dummycaps, ImpUid, KCDummyUid, dllinfo, implementationInfo, dummyBool);
|
sl@0
|
3217 |
TEST2(err, KErrNone);
|
sl@0
|
3218 |
TEST(implementationInfo->ImplementationUid()==ImpUid);
|
sl@0
|
3219 |
TEST(implementationInfo->Version()==2);
|
sl@0
|
3220 |
TEST(dllinfo.iName.CompareF(KEComExample2)==0);
|
sl@0
|
3221 |
|
sl@0
|
3222 |
// ... again but with interface uid
|
sl@0
|
3223 |
err = iRegistryData->GetImplementationDllInfoForServer(dummycaps, ImpUid, iInterfaceUid, dllinfo, implementationInfo, dummyBool);
|
sl@0
|
3224 |
TEST2(err, KErrNone);
|
sl@0
|
3225 |
TEST(implementationInfo->ImplementationUid()==ImpUid);
|
sl@0
|
3226 |
TEST(implementationInfo->Version()==2);
|
sl@0
|
3227 |
TEST(dllinfo.iName.CompareF(KEComExample2)==0);
|
sl@0
|
3228 |
|
sl@0
|
3229 |
//Testing for invalid ImplementationUid
|
sl@0
|
3230 |
err = iRegistryData->GetImplementationDllInfoForServer(dummycaps, KCInvalidUid, KCDummyUid, dllinfo, implementationInfo, dummyBool);
|
sl@0
|
3231 |
TEST2(err, KErrNotFound);
|
sl@0
|
3232 |
TEST(implementationInfo==0);
|
sl@0
|
3233 |
|
sl@0
|
3234 |
//Testing for invalid InterfaceUid
|
sl@0
|
3235 |
err = iRegistryData->GetImplementationDllInfoForServer(dummycaps, ImpUid, KCInvalidUid, dllinfo, implementationInfo, dummyBool);
|
sl@0
|
3236 |
TEST2(err, KErrNotFound);
|
sl@0
|
3237 |
TEST(implementationInfo==0);
|
sl@0
|
3238 |
|
sl@0
|
3239 |
//Testing for invalid ImplementationUid and invalid InterfaceUid
|
sl@0
|
3240 |
err = iRegistryData->GetImplementationDllInfoForServer(dummycaps, KCInvalidUid, KCInvalidUid, dllinfo, implementationInfo, dummyBool);
|
sl@0
|
3241 |
TEST2(err, KErrNotFound);
|
sl@0
|
3242 |
TEST(implementationInfo==0);
|
sl@0
|
3243 |
}
|
sl@0
|
3244 |
|
sl@0
|
3245 |
/**
|
sl@0
|
3246 |
@SYMTestCaseID SYSLIB-ECOM-CT-0750
|
sl@0
|
3247 |
@SYMTestCaseDesc OOM test for the creation and deletion of CRegistryData
|
sl@0
|
3248 |
@SYMTestPriority High
|
sl@0
|
3249 |
@SYMTestActions Create and delete CRegistryData object,checks for handles leaked
|
sl@0
|
3250 |
@SYMTestExpectedResults The test must not fail.
|
sl@0
|
3251 |
@SYMREQ REQ0000
|
sl@0
|
3252 |
*/
|
sl@0
|
3253 |
LOCAL_C void OOMCreateDeleteTest()
|
sl@0
|
3254 |
{
|
sl@0
|
3255 |
TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-0750 OOM CreateDeleteTest "));
|
sl@0
|
3256 |
TInt err;
|
sl@0
|
3257 |
TInt failAt = 1;
|
sl@0
|
3258 |
__UNUSED_VAR(failAt);
|
sl@0
|
3259 |
|
sl@0
|
3260 |
CRegistryDataTest* theTest = NULL;
|
sl@0
|
3261 |
|
sl@0
|
3262 |
do
|
sl@0
|
3263 |
{
|
sl@0
|
3264 |
__UHEAP_MARK;
|
sl@0
|
3265 |
// find out the number of open handles
|
sl@0
|
3266 |
TInt startProcessHandleCount;
|
sl@0
|
3267 |
TInt startThreadHandleCount;
|
sl@0
|
3268 |
RThread().HandleCount(startProcessHandleCount, startThreadHandleCount);
|
sl@0
|
3269 |
|
sl@0
|
3270 |
__UHEAP_SETFAIL(RHeap::EDeterministic, failAt++);
|
sl@0
|
3271 |
|
sl@0
|
3272 |
TRAP(err, theTest = CRegistryDataTest::NewL(EFalse));
|
sl@0
|
3273 |
|
sl@0
|
3274 |
__UHEAP_SETFAIL(RHeap::ENone, 0);
|
sl@0
|
3275 |
|
sl@0
|
3276 |
delete theTest;
|
sl@0
|
3277 |
theTest = NULL;
|
sl@0
|
3278 |
|
sl@0
|
3279 |
// check that no handles have leaked
|
sl@0
|
3280 |
TInt endProcessHandleCount;
|
sl@0
|
3281 |
TInt endThreadHandleCount;
|
sl@0
|
3282 |
RThread().HandleCount(endProcessHandleCount, endThreadHandleCount);
|
sl@0
|
3283 |
|
sl@0
|
3284 |
TEST(startProcessHandleCount == endProcessHandleCount);
|
sl@0
|
3285 |
TEST(startThreadHandleCount == endThreadHandleCount);
|
sl@0
|
3286 |
|
sl@0
|
3287 |
__UHEAP_MARKEND;
|
sl@0
|
3288 |
}
|
sl@0
|
3289 |
while(err == KErrNoMemory);
|
sl@0
|
3290 |
|
sl@0
|
3291 |
TheTest.Printf(_L("- Succeeded at heap failure rate of %i\n"), failAt);
|
sl@0
|
3292 |
TEST2(err, KErrNone);
|
sl@0
|
3293 |
}
|
sl@0
|
3294 |
|
sl@0
|
3295 |
/**
|
sl@0
|
3296 |
@SYMTestCaseID SYSLIB-ECOM-UT-1408
|
sl@0
|
3297 |
@SYMTestCaseDesc Unit tests for CRegistryData::IsAnyDiscoveredL
|
sl@0
|
3298 |
@SYMTestPriority High
|
sl@0
|
3299 |
@SYMTestActions Calls each of the actions that should cause IsAnyDiscovered to be set. Because the behavior is different with and without SPI, the tests are separated into a test with SPI and a test without
|
sl@0
|
3300 |
@SYMTestExpectedResults IsAnyDiscovered should be false when CDriveData is created, and false when the drive is internalized with no dat file.
|
sl@0
|
3301 |
It should be true when the drive is internalized and there is a dat file.
|
sl@0
|
3302 |
@SYMPREQ PREQ1192
|
sl@0
|
3303 |
*/
|
sl@0
|
3304 |
void CRegistryDataTest::IsAnyDllDiscoveredTestL()
|
sl@0
|
3305 |
{
|
sl@0
|
3306 |
TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-UT-1408 "));
|
sl@0
|
3307 |
if (SpiFileExists())
|
sl@0
|
3308 |
{
|
sl@0
|
3309 |
IsAnyDllDiscoveredTestWithSpiL();
|
sl@0
|
3310 |
}
|
sl@0
|
3311 |
IsAnyDllDiscoveredTestNoSpiL();
|
sl@0
|
3312 |
}
|
sl@0
|
3313 |
|
sl@0
|
3314 |
void CRegistryDataTest::IsAnyDllDiscoveredTestWithSpiL()
|
sl@0
|
3315 |
{
|
sl@0
|
3316 |
//
|
sl@0
|
3317 |
// Test DatFileExists for dat files on ROM when there is a SPI file
|
sl@0
|
3318 |
//
|
sl@0
|
3319 |
|
sl@0
|
3320 |
iStateAccessor->ClearRegistrations(*iRegistryData);
|
sl@0
|
3321 |
|
sl@0
|
3322 |
// when a CDriveData is created DatFileExists should be false
|
sl@0
|
3323 |
CRegistryData::CDriveData* driveDataZ = CRegistryData::CDriveData::NewLC(EDriveZ, iRegistryData);
|
sl@0
|
3324 |
iStateAccessor->AppendDriveDataL(*iRegistryData, driveDataZ);
|
sl@0
|
3325 |
CleanupStack::Pop(driveDataZ);
|
sl@0
|
3326 |
TEST(!iRegistryData->IsAnyDllRegisteredWithDriveL(EDriveZ));
|
sl@0
|
3327 |
}
|
sl@0
|
3328 |
|
sl@0
|
3329 |
void CRegistryDataTest::IsAnyDllDiscoveredTestNoSpiL()
|
sl@0
|
3330 |
{
|
sl@0
|
3331 |
//
|
sl@0
|
3332 |
// Test IsAnyDiscovered for dat files on ROM when there is no SPI file
|
sl@0
|
3333 |
//
|
sl@0
|
3334 |
|
sl@0
|
3335 |
iStateAccessor->ClearRegistrations(*iRegistryData);
|
sl@0
|
3336 |
|
sl@0
|
3337 |
// when a CDriveData is created there should be no DLL entries so IsAnyDiscoveredL should be false
|
sl@0
|
3338 |
CRegistryData::CDriveData* driveDataC = CRegistryData::CDriveData::NewLC(EDriveC, iRegistryData);
|
sl@0
|
3339 |
iStateAccessor->AppendDriveDataL(*iRegistryData, driveDataC);
|
sl@0
|
3340 |
CleanupStack::Pop(driveDataC);
|
sl@0
|
3341 |
TEST(!iRegistryData->IsAnyDllRegisteredWithDriveL(EDriveC));
|
sl@0
|
3342 |
}
|
sl@0
|
3343 |
|
sl@0
|
3344 |
/**
|
sl@0
|
3345 |
Adds the dll data on a particular drive.
|
sl@0
|
3346 |
|
sl@0
|
3347 |
@SYMTestCaseID SYSLIB-ECOM-UT-1407
|
sl@0
|
3348 |
@SYMTestCaseDesc Tests for CRegistryData::CDllData::ProcessSecurityCheckL() function
|
sl@0
|
3349 |
@SYMTestPriority High
|
sl@0
|
3350 |
@SYMTestActions Creates CDllData objects and calls ProcessSecurityCheckL on them
|
sl@0
|
3351 |
The CDllData with a missing DLL should return EFalse, the CDllData with invalid
|
sl@0
|
3352 |
SID should return EFalse, and a valid CDllData should return ETrue and ensure the VID
|
sl@0
|
3353 |
match the VID of the valid DLL.
|
sl@0
|
3354 |
@SYMTestExpectedResults ProcessSecurityCheckL returns false when a plugin's dll doesn't exist or has an invalid SID, true otherwise.
|
sl@0
|
3355 |
@SYMREQ PREQ1192, REQ6111
|
sl@0
|
3356 |
*/
|
sl@0
|
3357 |
void CRegistryDataTest::ProcessSecurityCheckTestL()
|
sl@0
|
3358 |
{
|
sl@0
|
3359 |
TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-UT-1407 "));
|
sl@0
|
3360 |
TParse fileparse;
|
sl@0
|
3361 |
TDriveUnit driveUnitC(EDriveC);
|
sl@0
|
3362 |
CRegistryData *registryData = CRegistryData::NewL(TheFs);
|
sl@0
|
3363 |
CleanupStack::PushL(registryData);
|
sl@0
|
3364 |
CRegistryData::CDriveData *driveCData = CRegistryData::CDriveData::NewLC(driveUnitC, registryData);
|
sl@0
|
3365 |
|
sl@0
|
3366 |
//
|
sl@0
|
3367 |
// Test that a missing DLL causes ProcessSecurityCheckL to return EFalse
|
sl@0
|
3368 |
//
|
sl@0
|
3369 |
TEntry missingDllEntry;
|
sl@0
|
3370 |
missingDllEntry.iName = KEComMissingDll;
|
sl@0
|
3371 |
fileparse.Set(KEComMissingDll,NULL,NULL);
|
sl@0
|
3372 |
CRegistryData::CDllData* missingDllData = CRegistryData::CDllData::NewLC(fileparse.NameAndExt(),missingDllEntry.iModified,KNullUid,KNullUid, driveCData);
|
sl@0
|
3373 |
TEST(!missingDllData->ProcessSecurityCheckL());
|
sl@0
|
3374 |
CleanupStack::PopAndDestroy(missingDllData);
|
sl@0
|
3375 |
|
sl@0
|
3376 |
//
|
sl@0
|
3377 |
// Test that an invalid SID causes ProcessSecurityCheckL to return EFalse
|
sl@0
|
3378 |
//
|
sl@0
|
3379 |
TEntry mismatchedSidDllEntry;
|
sl@0
|
3380 |
// The actual secure Id for this DLL is 0x10009DB1, here the corresponding ID is set to 0x01010101
|
sl@0
|
3381 |
TUidType mismatchedSidUidType(KCInvalidUid, KCInvalidUid, KCInvalidUid);
|
sl@0
|
3382 |
mismatchedSidDllEntry.iName = KEComExampleDllOnZSysBin;
|
sl@0
|
3383 |
mismatchedSidDllEntry.iType = mismatchedSidUidType;
|
sl@0
|
3384 |
fileparse.Set(KEComExampleDllOnZSysBin,NULL,NULL);
|
sl@0
|
3385 |
CRegistryData::CDllData* mismatchedSidDllData = CRegistryData::CDllData::NewLC(fileparse.NameAndExt(),mismatchedSidDllEntry.iModified,mismatchedSidUidType[1],mismatchedSidUidType[2], driveCData);
|
sl@0
|
3386 |
TEST(!mismatchedSidDllData->ProcessSecurityCheckL());
|
sl@0
|
3387 |
CleanupStack::PopAndDestroy(mismatchedSidDllData);
|
sl@0
|
3388 |
|
sl@0
|
3389 |
//
|
sl@0
|
3390 |
// Test that a valid entry causes ProcessSecurityCheckL to return ETrue
|
sl@0
|
3391 |
//
|
sl@0
|
3392 |
TUid KEcomExampleSecureId = {0x10009DB1};
|
sl@0
|
3393 |
TEntry validDllEntry;
|
sl@0
|
3394 |
TUidType validUidType(KCInvalidUid, KUidInterfaceImplementationCollection, KEcomExampleSecureId);
|
sl@0
|
3395 |
validDllEntry.iName = KEComExampleDllOnZSysBin;
|
sl@0
|
3396 |
validDllEntry.iType = validUidType;
|
sl@0
|
3397 |
fileparse.Set(KEComExampleDllOnZSysBin(),NULL,NULL);
|
sl@0
|
3398 |
CRegistryData::CDllData* validDllData = CRegistryData::CDllData::NewLC(fileparse.NameAndExt(),validDllEntry.iModified,validUidType[1],validUidType[2], driveCData);
|
sl@0
|
3399 |
// Because ProcessSecurityCheckL is handled differently the first and second times it is called for a given DLL
|
sl@0
|
3400 |
// ProcessSecurityCheckL is called twice here to test both cases (the fist time the security check is performed, and the second time
|
sl@0
|
3401 |
// a cached value is used)
|
sl@0
|
3402 |
TEST(validDllData->ProcessSecurityCheckL());
|
sl@0
|
3403 |
TEST(validDllData->ProcessSecurityCheckL());
|
sl@0
|
3404 |
// check the VID of the DLL.
|
sl@0
|
3405 |
TEST((validDllData->iVid).iId == 0x70000001);
|
sl@0
|
3406 |
CleanupStack::PopAndDestroy(validDllData);
|
sl@0
|
3407 |
|
sl@0
|
3408 |
|
sl@0
|
3409 |
// Clean up
|
sl@0
|
3410 |
CleanupStack::PopAndDestroy(driveCData);
|
sl@0
|
3411 |
CleanupStack::PopAndDestroy(registryData);
|
sl@0
|
3412 |
}
|
sl@0
|
3413 |
|
sl@0
|
3414 |
/**
|
sl@0
|
3415 |
Tests functionality of ListImplementationsL for an interface ID where the security checks
|
sl@0
|
3416 |
for DLLs implementing the given interface fail
|
sl@0
|
3417 |
|
sl@0
|
3418 |
@SYMTestCaseID SYSLIB-ECOM-UT-1405
|
sl@0
|
3419 |
@SYMTestCaseDesc Tests for CRegistryData::ListImplementationsL() function
|
sl@0
|
3420 |
@SYMTestPriority High
|
sl@0
|
3421 |
@SYMTestActions Makes sure the failed DLL security checks are handled properly
|
sl@0
|
3422 |
An RSC file with an incorrect SID is tested, followed by an RSC file with a missing DLL
|
sl@0
|
3423 |
@SYMTestExpectedResults ECom plugin's with invalid DLLs are not returned.
|
sl@0
|
3424 |
@SYMREQ PREQ1192
|
sl@0
|
3425 |
*/
|
sl@0
|
3426 |
void CRegistryDataTest::FailedSecurityCheckTestListImplementationsL()
|
sl@0
|
3427 |
{
|
sl@0
|
3428 |
TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-UT-1405 "));
|
sl@0
|
3429 |
// Set up for heap leak checking
|
sl@0
|
3430 |
__UHEAP_MARK;
|
sl@0
|
3431 |
|
sl@0
|
3432 |
//
|
sl@0
|
3433 |
// Test that mismatching SIDs cause a plug-in to not be returned through ListImplementationsL
|
sl@0
|
3434 |
// InvalidSIDPlugin.rsc and InvalidSIDPlugin.dll are on the C drive, but their SIDs do not match
|
sl@0
|
3435 |
// This will cause the DLL security check to fail, and since there are no other implementations of this interface,
|
sl@0
|
3436 |
// no implementations should be returned
|
sl@0
|
3437 |
//
|
sl@0
|
3438 |
TUid ifUid1 = {0x101FE392}; // the interface UID for InvalidSIDPlugin
|
sl@0
|
3439 |
|
sl@0
|
3440 |
TRAPD(err, iRegistryData->ListImplementationsL(ifUid1,iImplDataList));
|
sl@0
|
3441 |
|
sl@0
|
3442 |
TEST_OOM_ERR;
|
sl@0
|
3443 |
// Since there are no other plug-ins implementing {0x101FE392}, there should be no implementations found
|
sl@0
|
3444 |
TEST2(err, KEComErrNoInterfaceIdentified);
|
sl@0
|
3445 |
|
sl@0
|
3446 |
//
|
sl@0
|
3447 |
// Test that a missing DLL causes a plug-in to not be returned through ListImplementationsL
|
sl@0
|
3448 |
// and that other valid implementations are rolled back to when this happens
|
sl@0
|
3449 |
//
|
sl@0
|
3450 |
// EComRomRslvrExampleOnC.rsc is on the C drive, and has an implementation that upgrades EComRomRslvrExampleOnZ.rsc
|
sl@0
|
3451 |
// The DLL corresponding to EComRomRslvrExampleOnC.rsc is missing, so will fail the security check
|
sl@0
|
3452 |
// This means Ecom should fall back to the implementations from EComRomRslvrExampleOnZ
|
sl@0
|
3453 |
//
|
sl@0
|
3454 |
TUid ifUid3 = {0x10009DC8}; // the interface UID for EComRomRslvrExampleDllOnZ and EComRomRslvrExampleDllOnC
|
sl@0
|
3455 |
TRAP(err, iRegistryData->ListImplementationsL(ifUid3,iImplDataList));
|
sl@0
|
3456 |
|
sl@0
|
3457 |
TEST_OOM_ERR;
|
sl@0
|
3458 |
TEST2(err, KErrNone);
|
sl@0
|
3459 |
CleanupClosePushL(iImplDataList);
|
sl@0
|
3460 |
|
sl@0
|
3461 |
// Print UIDs of implementations
|
sl@0
|
3462 |
_LIT(KUIDFormat,"Uid = 0x%08x\n");
|
sl@0
|
3463 |
_LIT(KLists,"There are %d Implementations \n");
|
sl@0
|
3464 |
|
sl@0
|
3465 |
TheTest.Printf(KLists, iImplDataList.Count());
|
sl@0
|
3466 |
|
sl@0
|
3467 |
// Go through each of the implementations returned, and find the ones that match up with EComRomRslvrExampleRscOnZ
|
sl@0
|
3468 |
// (not the ones from EComRomRslvrExampleRscOnC because it's DLL is missing)
|
sl@0
|
3469 |
// EComRomRslvrExampleOnZ contains the implementation 0x10009DC7v2 and 0x10009DC6v1 (these should be found)
|
sl@0
|
3470 |
// EComRomRslvrExampleOnC contains the implementation 0x10009DC7v1 and 0x10009DC6v2 (these should NOT be returned becuase of the missing DLL)
|
sl@0
|
3471 |
TBool foundRightImplementation1 = EFalse;
|
sl@0
|
3472 |
TBool foundRightImplementation2 = EFalse;
|
sl@0
|
3473 |
for(TInt index = 0; index < iImplDataList.Count(); ++index)
|
sl@0
|
3474 |
{
|
sl@0
|
3475 |
CImplementationInformation* implInfo = iImplDataList[index]->iImplInfo;
|
sl@0
|
3476 |
TUid uid = implInfo->ImplementationUid();
|
sl@0
|
3477 |
TInt version = implInfo->Version();
|
sl@0
|
3478 |
if (uid.iUid == 0x10009DC6)
|
sl@0
|
3479 |
{
|
sl@0
|
3480 |
TEST(version == 1);
|
sl@0
|
3481 |
// The implementation of 0x10009DC6 from EComRomRslvrExampleOnZ was found
|
sl@0
|
3482 |
foundRightImplementation1 = ETrue;
|
sl@0
|
3483 |
}
|
sl@0
|
3484 |
if (uid.iUid == 0x10009DC7)
|
sl@0
|
3485 |
{
|
sl@0
|
3486 |
TEST(version == 2);
|
sl@0
|
3487 |
// The implementation of 0x10009DC7 from EComRomRslvrExampleOnZ was found
|
sl@0
|
3488 |
foundRightImplementation2 = ETrue;
|
sl@0
|
3489 |
}
|
sl@0
|
3490 |
TheTest.Printf(KUIDFormat, uid);
|
sl@0
|
3491 |
}
|
sl@0
|
3492 |
// Test that both implementations were found
|
sl@0
|
3493 |
TEST(foundRightImplementation1 && foundRightImplementation2);
|
sl@0
|
3494 |
|
sl@0
|
3495 |
|
sl@0
|
3496 |
CleanupStack::PopAndDestroy(&iImplDataList);
|
sl@0
|
3497 |
__UHEAP_MARKEND;
|
sl@0
|
3498 |
}
|
sl@0
|
3499 |
|
sl@0
|
3500 |
/**
|
sl@0
|
3501 |
Tests functionality of ListImplementationsL for an interface id where the corresponding
|
sl@0
|
3502 |
DLL fails the se
|
sl@0
|
3503 |
|
sl@0
|
3504 |
@SYMTestCaseID SYSLIB-ECOM-UT-1406
|
sl@0
|
3505 |
@SYMTestCaseDesc Tests for CRegistryData::GetImplementationDllInfoForClientL() function
|
sl@0
|
3506 |
@SYMTestPriority High
|
sl@0
|
3507 |
@SYMTestActions Makes sure the plug-ins that will fail a security check are not returned through GetImplementationDllInfoForClientL
|
sl@0
|
3508 |
InvalidSIDPlugin.rsc and InvalidSIDPlugin.dll are on the C drive, with non-matching SIDs, so will fail a security check
|
sl@0
|
3509 |
Because the security check fails, no implementation should be returned
|
sl@0
|
3510 |
EComRomRslvrExampleOnC is on the C drive, without its associated DLL so will fail a security check
|
sl@0
|
3511 |
Because the DLL is not there, Ecom should fall back to the implementations on the Z drive in EComRomRslvrExampleOnZ
|
sl@0
|
3512 |
@SYMTestExpectedResults ECom plugin's with invalid DLLs are not returned.
|
sl@0
|
3513 |
@SYMREQ PREQ1192
|
sl@0
|
3514 |
*/
|
sl@0
|
3515 |
void CRegistryDataTest::FailedSecurityCheckTestGetImplementationInfoL()
|
sl@0
|
3516 |
{
|
sl@0
|
3517 |
TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-UT-1406 "));
|
sl@0
|
3518 |
// Set up for heap leak checking
|
sl@0
|
3519 |
__UHEAP_MARK;
|
sl@0
|
3520 |
|
sl@0
|
3521 |
//
|
sl@0
|
3522 |
// Test that mismatching SIDs cause a plug-in to not be returned through GetImplementationDllInfoForClientL
|
sl@0
|
3523 |
//
|
sl@0
|
3524 |
TUid implUid1 = {0x101FE393}; // the implementation UID for InvalidSIDPlugin
|
sl@0
|
3525 |
TUid ifUid1 = {0x101FE392}; // the interface UID for InvalidSIDPlugin
|
sl@0
|
3526 |
TClientRequest clientReq;
|
sl@0
|
3527 |
TEntry dllInfo;
|
sl@0
|
3528 |
CImplementationInformation *implementationInfo = NULL;
|
sl@0
|
3529 |
// Test for GetImplementatioDllInfoForClientL when security check is not done.
|
sl@0
|
3530 |
TInt err = iRegistryData->GetImplementationDllInfoForClientL(clientReq, implUid1, ifUid1, dllInfo, implementationInfo, EFalse);
|
sl@0
|
3531 |
TEST2(err, KErrNone);
|
sl@0
|
3532 |
TEST(dllInfo.iName.Compare(_L("C:\\sys\\bin\\InvalidSIDPlugin.dll")) == 0);
|
sl@0
|
3533 |
// Test for GetImplementatioDllInfoForClientL when security check is done.
|
sl@0
|
3534 |
err = iRegistryData->GetImplementationDllInfoForClientL(clientReq, implUid1, ifUid1, dllInfo, implementationInfo, ETrue);
|
sl@0
|
3535 |
// Because the security check failed for InvalidSIDPlugin and there are no other implementations of implementation UID 0x101FE393, KErrNotFound is returned
|
sl@0
|
3536 |
TEST2(err, KErrNotFound);
|
sl@0
|
3537 |
//
|
sl@0
|
3538 |
// Test that a missing DLL causes a plug-in to not be returned through GetImplementationDllInfoForClientL
|
sl@0
|
3539 |
// and that other valid implementations are rolled back to when this happens
|
sl@0
|
3540 |
//
|
sl@0
|
3541 |
TUid implUid3 = {0x10009DC7}; // EComRomRslvrExampleDllOnZ
|
sl@0
|
3542 |
TUid ifUid3 = {0x10009DC8}; // EComRomRslvrExampleDllOnZ
|
sl@0
|
3543 |
err = iRegistryData->GetImplementationDllInfoForClientL(clientReq, implUid3, ifUid3, dllInfo, implementationInfo, ETrue);
|
sl@0
|
3544 |
TEST2(err, KErrNone);
|
sl@0
|
3545 |
// Because the security check failed for EComRomRslvrExampleDllOnC the returned implementation should rollback to the implementation on the Z drive
|
sl@0
|
3546 |
TEST(dllInfo.iName.Compare(_L("C:\\sys\\bin\\EComRomRslvrExampleOnZ.dll")) == 0);
|
sl@0
|
3547 |
|
sl@0
|
3548 |
__UHEAP_MARKEND;
|
sl@0
|
3549 |
}
|
sl@0
|
3550 |
|
sl@0
|
3551 |
/**
|
sl@0
|
3552 |
Test case for Defect ECOM non-spi handling of multiple localised resource files with same name but different extension.
|
sl@0
|
3553 |
Only one dll is created.
|
sl@0
|
3554 |
|
sl@0
|
3555 |
@SYMTestCaseID SYSLIB-ECOM-CT-1806
|
sl@0
|
3556 |
@SYMTestCaseDesc This function is used to check no duplication DLL is created when
|
sl@0
|
3557 |
there are multiple resource files with same name but different extensions.
|
sl@0
|
3558 |
@SYMTestPriority High
|
sl@0
|
3559 |
@SYMTestActions Use CDiscoverer::CDirScanner::ScanDriveL to start discovery plugins on C:.
|
sl@0
|
3560 |
Check that the dll list only has one dll existing with specified dll and interface UID.
|
sl@0
|
3561 |
@SYMTestExpectedResults The test must not fail.
|
sl@0
|
3562 |
@SYMDEF DEF87787
|
sl@0
|
3563 |
*/
|
sl@0
|
3564 |
void CRegistryDataTest::CheckDuplicatPluginsOnCL()
|
sl@0
|
3565 |
{
|
sl@0
|
3566 |
TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-1806 "));
|
sl@0
|
3567 |
|
sl@0
|
3568 |
//clean up all resource files in C:
|
sl@0
|
3569 |
DeleteTestPlugin();
|
sl@0
|
3570 |
|
sl@0
|
3571 |
TDriveUnit driveC = TDriveUnit(KDriveC);
|
sl@0
|
3572 |
|
sl@0
|
3573 |
TRegistrarObserverStub* registrarObsv = new(ELeave) TRegistrarObserverStub;
|
sl@0
|
3574 |
CleanupStack::PushL(registrarObsv);
|
sl@0
|
3575 |
|
sl@0
|
3576 |
CRegistryData* registryData = CRegistryData::NewL(TheFs);
|
sl@0
|
3577 |
CleanupStack::PushL(registryData);
|
sl@0
|
3578 |
|
sl@0
|
3579 |
CRegistrar* registrar = CRegistrar::NewL(*registryData, *registrarObsv, TheFs);
|
sl@0
|
3580 |
CleanupStack::PushL(registrar);
|
sl@0
|
3581 |
|
sl@0
|
3582 |
TRegistryData_StateAccessor* stateAccessor= new(ELeave) TRegistryData_StateAccessor;
|
sl@0
|
3583 |
CleanupStack::PushL(stateAccessor);
|
sl@0
|
3584 |
|
sl@0
|
3585 |
//After construction check that: registry is empty
|
sl@0
|
3586 |
TEST(stateAccessor->RegistrationsCount(*registryData) == 0);
|
sl@0
|
3587 |
|
sl@0
|
3588 |
//Copies multiple resource file with same name but different extensions on C:.
|
sl@0
|
3589 |
TRAPD(err, EComTestUtils::FileManCopyFileL(KEComExDllOnZ, KEComExDllOnC));
|
sl@0
|
3590 |
TEST2(err, KErrNone);
|
sl@0
|
3591 |
TRAP(err, EComTestUtils::FileManCopyFileL(KEComRscFileOnZ, KEComRscFileOnC));
|
sl@0
|
3592 |
TEST2(err, KErrNone);
|
sl@0
|
3593 |
_LIT(KEComRscFileA01OnC, "C:\\resource\\plugins\\EComExample5.A01");
|
sl@0
|
3594 |
TRAP(err, EComTestUtils::FileManCopyFileL(KEComRscFileOnZ, KEComRscFileA01OnC));
|
sl@0
|
3595 |
TEST2(err, KErrNone);
|
sl@0
|
3596 |
_LIT(KEComRscFileA02OnC, "C:\\resource\\plugins\\EComExample5.A02");
|
sl@0
|
3597 |
TRAP(err, EComTestUtils::FileManCopyFileL(KEComRscFileOnZ, KEComRscFileA02OnC));
|
sl@0
|
3598 |
TEST2(err, KErrNone);
|
sl@0
|
3599 |
|
sl@0
|
3600 |
//Scan C: drive
|
sl@0
|
3601 |
TRegistrar_StateAccessor registrarStateAccessorStub;
|
sl@0
|
3602 |
registrarStateAccessorStub.ScanDriveL(*registrar, driveC);
|
sl@0
|
3603 |
|
sl@0
|
3604 |
|
sl@0
|
3605 |
TDll *DllList = NULL;
|
sl@0
|
3606 |
TInt indx = stateAccessor->GetDllListL(*registryData, driveC, DllList);
|
sl@0
|
3607 |
TEST(indx == 0);
|
sl@0
|
3608 |
TEST(DllList->Count() == 1);
|
sl@0
|
3609 |
CRegistryData::CDllData *dllData = (*DllList)[0];
|
sl@0
|
3610 |
|
sl@0
|
3611 |
//Testing loading implementation from RAM(EComExample5.dll) with specified Dll and interface UID.
|
sl@0
|
3612 |
TUid thirdDllUid = {0x101F847B};
|
sl@0
|
3613 |
TEST(dllData->iDllEntry->GetThirdUid() == thirdDllUid);
|
sl@0
|
3614 |
TUid InterfaceUid5={0x10009DC0};
|
sl@0
|
3615 |
TEST2(stateAccessor->FindAnImplementation(*registryData, InterfaceUid5, driveC), ETrue);
|
sl@0
|
3616 |
|
sl@0
|
3617 |
//Clean up
|
sl@0
|
3618 |
TRAP(err, EComTestUtils::FileManDeleteFileL(KEComExDllOnC));
|
sl@0
|
3619 |
TRAP(err, EComTestUtils::FileManDeleteFileL(KEComRscFileOnC));
|
sl@0
|
3620 |
TRAP(err, EComTestUtils::FileManDeleteFileL(KEComRscFileA01OnC));
|
sl@0
|
3621 |
TRAP(err, EComTestUtils::FileManDeleteFileL(KEComRscFileA02OnC));
|
sl@0
|
3622 |
|
sl@0
|
3623 |
CleanupStack::PopAndDestroy(stateAccessor);
|
sl@0
|
3624 |
CleanupStack::PopAndDestroy(registrar);
|
sl@0
|
3625 |
CleanupStack::PopAndDestroy(registryData);
|
sl@0
|
3626 |
CleanupStack::PopAndDestroy(registrarObsv);
|
sl@0
|
3627 |
|
sl@0
|
3628 |
//back to orignal state before the test
|
sl@0
|
3629 |
CopyPluginsL();
|
sl@0
|
3630 |
}
|
sl@0
|
3631 |
|
sl@0
|
3632 |
/**
|
sl@0
|
3633 |
Test case for Defect ECOM non-spi handling of multiple localised resource files but without
|
sl@0
|
3634 |
a proper RSC file based on language downgrade path.
|
sl@0
|
3635 |
|
sl@0
|
3636 |
@SYMTestCaseID SYSLIB-ECOM-CT-1829
|
sl@0
|
3637 |
@SYMTestCaseDesc This function is used to check no DLL is created when multiple resource files
|
sl@0
|
3638 |
exists but no proper RSC file based on language downgrade path.
|
sl@0
|
3639 |
@SYMTestPriority High
|
sl@0
|
3640 |
@SYMTestActions Use CDiscoverer::CDirScanner::ScanDriveL to start discovery plugins on C:.
|
sl@0
|
3641 |
Check that the dll list is empty after scanning.
|
sl@0
|
3642 |
@SYMTestExpectedResults The test must not fail.
|
sl@0
|
3643 |
@SYMDEF DEF87787
|
sl@0
|
3644 |
*/
|
sl@0
|
3645 |
|
sl@0
|
3646 |
void CRegistryDataTest::CheckNoPluginsOnCL()
|
sl@0
|
3647 |
{
|
sl@0
|
3648 |
TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-1829 "));
|
sl@0
|
3649 |
|
sl@0
|
3650 |
//clean up all resource files in C:
|
sl@0
|
3651 |
DeleteTestPlugin();
|
sl@0
|
3652 |
|
sl@0
|
3653 |
TDriveUnit driveC = TDriveUnit(KDriveC);
|
sl@0
|
3654 |
|
sl@0
|
3655 |
TRegistrarObserverStub* registrarObsv = new(ELeave) TRegistrarObserverStub;
|
sl@0
|
3656 |
CleanupStack::PushL(registrarObsv);
|
sl@0
|
3657 |
|
sl@0
|
3658 |
CRegistryData* registryData = CRegistryData::NewL(TheFs);
|
sl@0
|
3659 |
CleanupStack::PushL(registryData);
|
sl@0
|
3660 |
|
sl@0
|
3661 |
CRegistrar* registrar = CRegistrar::NewL(*registryData, *registrarObsv, TheFs);
|
sl@0
|
3662 |
CleanupStack::PushL(registrar);
|
sl@0
|
3663 |
|
sl@0
|
3664 |
TRegistryData_StateAccessor* stateAccessor= new(ELeave) TRegistryData_StateAccessor;
|
sl@0
|
3665 |
CleanupStack::PushL(stateAccessor);
|
sl@0
|
3666 |
|
sl@0
|
3667 |
//After construction check that registry is empty
|
sl@0
|
3668 |
TEST(stateAccessor->RegistrationsCount(*registryData) == 0);
|
sl@0
|
3669 |
|
sl@0
|
3670 |
//Copies only EComExample5.A01 and EComExample5.A02 to C:, but no EComExample5.RSC
|
sl@0
|
3671 |
TRAPD(err, EComTestUtils::FileManCopyFileL(KEComExDllOnZ, KEComExDllOnC));
|
sl@0
|
3672 |
TEST2(err, KErrNone);
|
sl@0
|
3673 |
_LIT(KEComRscFileA01OnC, "C:\\resource\\plugins\\EComExample5.A01");
|
sl@0
|
3674 |
TRAP(err, EComTestUtils::FileManCopyFileL(KEComRscFileOnZ, KEComRscFileA01OnC));
|
sl@0
|
3675 |
TEST2(err, KErrNone);
|
sl@0
|
3676 |
_LIT(KEComRscFileA02OnC, "C:\\resource\\plugins\\EComExample5.A02");
|
sl@0
|
3677 |
TRAP(err, EComTestUtils::FileManCopyFileL(KEComRscFileOnZ, KEComRscFileA02OnC));
|
sl@0
|
3678 |
TEST2(err, KErrNone);
|
sl@0
|
3679 |
|
sl@0
|
3680 |
//Scan C: drive
|
sl@0
|
3681 |
TRegistrar_StateAccessor registrarStateAccessorStub;
|
sl@0
|
3682 |
registrarStateAccessorStub.ScanDriveL(*registrar, driveC);
|
sl@0
|
3683 |
|
sl@0
|
3684 |
//check dll list. No dll is created.
|
sl@0
|
3685 |
TDll *DllList = NULL;
|
sl@0
|
3686 |
TInt indx = stateAccessor->GetDllListL(*registryData, driveC, DllList);
|
sl@0
|
3687 |
TEST(indx == 0);
|
sl@0
|
3688 |
TEST(DllList->Count() == 0);
|
sl@0
|
3689 |
|
sl@0
|
3690 |
TRAP(err, EComTestUtils::FileManDeleteFileL(KEComExDllOnC));
|
sl@0
|
3691 |
TRAP(err, EComTestUtils::FileManDeleteFileL(KEComRscFileA01OnC));
|
sl@0
|
3692 |
TRAP(err, EComTestUtils::FileManDeleteFileL(KEComRscFileA02OnC));
|
sl@0
|
3693 |
|
sl@0
|
3694 |
CleanupStack::PopAndDestroy(stateAccessor);
|
sl@0
|
3695 |
CleanupStack::PopAndDestroy(registrar);
|
sl@0
|
3696 |
CleanupStack::PopAndDestroy(registryData);
|
sl@0
|
3697 |
CleanupStack::PopAndDestroy(registrarObsv);
|
sl@0
|
3698 |
|
sl@0
|
3699 |
//back to orignal state before the test
|
sl@0
|
3700 |
CopyPluginsL();
|
sl@0
|
3701 |
|
sl@0
|
3702 |
}
|
sl@0
|
3703 |
|
sl@0
|
3704 |
/**
|
sl@0
|
3705 |
Test case for implementations with same implementation UID but different
|
sl@0
|
3706 |
interface UIDs. Implementation UIDs should be globally unique. So this
|
sl@0
|
3707 |
is an error condition. But to maintain backward compatibility,
|
sl@0
|
3708 |
ECom will allow it. List operation and most of the time, create
|
sl@0
|
3709 |
should work. Problem arises if client uses the create request which
|
sl@0
|
3710 |
does not supply the interface UID. In that case ECom applies a set of
|
sl@0
|
3711 |
rules to determine which of the duplicate to pick. The returned
|
sl@0
|
3712 |
impl. may not be the one the client is expecting. The rules from high
|
sl@0
|
3713 |
precedence to low are:
|
sl@0
|
3714 |
1. ROM based > non-ROM based,
|
sl@0
|
3715 |
2. High drive letter > low drive letter
|
sl@0
|
3716 |
3. Low I/F UID > High I/F UID.
|
sl@0
|
3717 |
Rule number 1 is tested in SYSLIB-ECOM-CIT-3161.
|
sl@0
|
3718 |
This testcase tests rule number 2 and number 3.
|
sl@0
|
3719 |
|
sl@0
|
3720 |
@SYMTestCaseID SYSLIB-ECOM-CT-3157
|
sl@0
|
3721 |
@SYMTestCaseDesc This function verifies that ECom handles duplicated
|
sl@0
|
3722 |
implementation UID as expected:
|
sl@0
|
3723 |
- List operations always return the correct implementations.
|
sl@0
|
3724 |
- Create request which does not specify the I/F UID would get
|
sl@0
|
3725 |
the implementation with the lowest I/F UID.
|
sl@0
|
3726 |
- Create request specifying both I/F UID and impl UID would
|
sl@0
|
3727 |
get the correct implementation.
|
sl@0
|
3728 |
@SYMTestPriority High
|
sl@0
|
3729 |
@SYMTestActions 1. Add two plugins with duplicated impl. UID but different I/F UID.
|
sl@0
|
3730 |
2. Perform list operation on each interface. Check that the
|
sl@0
|
3731 |
correct implementation is returned in each case.
|
sl@0
|
3732 |
3. Do a search by implementation UID only (I/F UID is zero).
|
sl@0
|
3733 |
Check that ECom returns the implementation with the lower
|
sl@0
|
3734 |
I/F UID.
|
sl@0
|
3735 |
4. Do another search specifying both I/F UID and impl. UID.
|
sl@0
|
3736 |
Check that ECom returns the correct implementation.
|
sl@0
|
3737 |
5. Remove the implementation with lower I/F UID from the
|
sl@0
|
3738 |
indexes. Do search by impl UID only. ECom should return the high
|
sl@0
|
3739 |
implementation.
|
sl@0
|
3740 |
@SYMTestExpectedResults The test must not fail.
|
sl@0
|
3741 |
@SYMDEF INC080992
|
sl@0
|
3742 |
*/
|
sl@0
|
3743 |
void CRegistryDataTest::DuplicateImplUidTestL()
|
sl@0
|
3744 |
{
|
sl@0
|
3745 |
// Do not run this test in OOM mode. Main part of this test is
|
sl@0
|
3746 |
// inserting implementation in iInterfaceImplIndex and iImplIndex.
|
sl@0
|
3747 |
// This operation does not cleanup properly if OOM because it
|
sl@0
|
3748 |
// relies on server exit.
|
sl@0
|
3749 |
|
sl@0
|
3750 |
// This test uses 2 interfaces: KCExampleInterfaceUid (10009DC0) and
|
sl@0
|
3751 |
// KCInvalidUid (10009999).
|
sl@0
|
3752 |
// They have a common implementationUID KCExampleInterfaceImp.
|
sl@0
|
3753 |
TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-3157 "));
|
sl@0
|
3754 |
|
sl@0
|
3755 |
_LIT(KHighDllPath, "C:\\resource\\plugins\\interfacehigh.dll");
|
sl@0
|
3756 |
_LIT(KLowDllPath, "C:\\resource\\plugins\\interfacelow.dll");
|
sl@0
|
3757 |
|
sl@0
|
3758 |
_LIT(KHighDisplayName, "dupl impl. of 10009DC0");
|
sl@0
|
3759 |
_LIT(KLowDisplayName, "dupl impl. of 10009999");
|
sl@0
|
3760 |
|
sl@0
|
3761 |
// Create implementation with high interface UID
|
sl@0
|
3762 |
TImplCreationStruct highIfUid(EDriveC,
|
sl@0
|
3763 |
KCExampleInterfaceUid,
|
sl@0
|
3764 |
KCExampleInterfaceImp,
|
sl@0
|
3765 |
KHighDllPath,
|
sl@0
|
3766 |
KHighDisplayName);
|
sl@0
|
3767 |
CreateImplL(highIfUid);
|
sl@0
|
3768 |
|
sl@0
|
3769 |
// Create implementation with low interface UID
|
sl@0
|
3770 |
TImplCreationStruct lowIfUid(EDriveC,
|
sl@0
|
3771 |
KCInvalidUid,
|
sl@0
|
3772 |
KCExampleInterfaceImp,
|
sl@0
|
3773 |
KLowDllPath,
|
sl@0
|
3774 |
KLowDisplayName);
|
sl@0
|
3775 |
CreateImplL(lowIfUid);
|
sl@0
|
3776 |
|
sl@0
|
3777 |
TheTest.Printf(_L("Testing low I/F UID overrides high I/F UID on same drive\n"));
|
sl@0
|
3778 |
TestDuplicatedImplPrecedenceL(lowIfUid, highIfUid);
|
sl@0
|
3779 |
|
sl@0
|
3780 |
_LIT(KHighDriveDllPath, "K:\\resource\\plugins\\highdriveletter.dll");
|
sl@0
|
3781 |
_LIT(KHighDriveDisplayName, "K: impl. of i/f 10009DC0");
|
sl@0
|
3782 |
TImplCreationStruct highDriveLetter(EDriveK,
|
sl@0
|
3783 |
KCExampleInterfaceUid,
|
sl@0
|
3784 |
KCExampleInterfaceImp,
|
sl@0
|
3785 |
KHighDriveDllPath,
|
sl@0
|
3786 |
KHighDriveDisplayName);
|
sl@0
|
3787 |
CreateImplL(highDriveLetter);
|
sl@0
|
3788 |
|
sl@0
|
3789 |
// I/f UID of the dll in K: is same as highIfUid above.
|
sl@0
|
3790 |
// But K: take precedence over C: by virtue of higher drive number.
|
sl@0
|
3791 |
TheTest.Printf(_L("Testing high drive letter overrides low drive letter"));
|
sl@0
|
3792 |
TestDuplicatedImplPrecedenceL(highDriveLetter, lowIfUid);
|
sl@0
|
3793 |
}
|
sl@0
|
3794 |
|
sl@0
|
3795 |
/** Helper of DuplicateImplUidTestL. This function does the real
|
sl@0
|
3796 |
work while DuplicateImplUidTestL just setup the test parameters.
|
sl@0
|
3797 |
|
sl@0
|
3798 |
@param highprecedence - data of the implementation of higher precedence.
|
sl@0
|
3799 |
@param lowprecedence - the other implementation of lower precedence.
|
sl@0
|
3800 |
*/
|
sl@0
|
3801 |
void CRegistryDataTest::TestDuplicatedImplPrecedenceL(
|
sl@0
|
3802 |
const TImplCreationStruct& highprecedence,
|
sl@0
|
3803 |
const TImplCreationStruct& lowprecedence)
|
sl@0
|
3804 |
{
|
sl@0
|
3805 |
TUid commonImplUid = highprecedence.iImplUid;
|
sl@0
|
3806 |
TEST2(lowprecedence.iImplUid.iUid, highprecedence.iImplUid.iUid);
|
sl@0
|
3807 |
|
sl@0
|
3808 |
//=============================================================
|
sl@0
|
3809 |
// Check index is empty
|
sl@0
|
3810 |
TEST2(iStateAccessor->ImplementationsCount(*iRegistryData), 0);
|
sl@0
|
3811 |
|
sl@0
|
3812 |
//=============================================================
|
sl@0
|
3813 |
// Add implementation of lowprecedence to indexes
|
sl@0
|
3814 |
TBool result = iRegistryData->InsertIntoIndexL(lowprecedence.iImplData,
|
sl@0
|
3815 |
ETrue);
|
sl@0
|
3816 |
TEST2(result, ETrue);
|
sl@0
|
3817 |
|
sl@0
|
3818 |
//=============================================================
|
sl@0
|
3819 |
// Add implementation of highprecedence to indexes
|
sl@0
|
3820 |
result = iRegistryData->InsertIntoIndexL(highprecedence.iImplData,
|
sl@0
|
3821 |
ETrue);
|
sl@0
|
3822 |
TEST2(result, ETrue);
|
sl@0
|
3823 |
|
sl@0
|
3824 |
//=============================================================
|
sl@0
|
3825 |
// Check the two plugins are inserted in the indexes and list
|
sl@0
|
3826 |
// operation works OK
|
sl@0
|
3827 |
TUid tempUid = lowprecedence.iInterfaceUid;
|
sl@0
|
3828 |
RImplDataArray impls;
|
sl@0
|
3829 |
CleanupClosePushL(impls);
|
sl@0
|
3830 |
iStateAccessor->GetImplementationInfoL(*iRegistryData, tempUid, impls);
|
sl@0
|
3831 |
TEST2(impls.Count(), 1);
|
sl@0
|
3832 |
TEST(impls[0]->iImplInfo->DisplayName() == lowprecedence.iImplDisplayName);
|
sl@0
|
3833 |
|
sl@0
|
3834 |
// Next do a list on the other I/F.
|
sl@0
|
3835 |
tempUid = highprecedence.iInterfaceUid;
|
sl@0
|
3836 |
iStateAccessor->GetImplementationInfoL(*iRegistryData, tempUid, impls);
|
sl@0
|
3837 |
TEST2(impls.Count(), 1);
|
sl@0
|
3838 |
TEST(impls[0]->iImplInfo->DisplayName() == highprecedence.iImplDisplayName);
|
sl@0
|
3839 |
|
sl@0
|
3840 |
//=============================================================
|
sl@0
|
3841 |
// If not specify interface UID, FindImplementation should return
|
sl@0
|
3842 |
// the implementation of high precedence
|
sl@0
|
3843 |
CRegistryData::CImplementationData* searchResult = NULL;
|
sl@0
|
3844 |
TInt err = iStateAccessor->FindImplementation(*iRegistryData,
|
sl@0
|
3845 |
commonImplUid,
|
sl@0
|
3846 |
KNullUid,
|
sl@0
|
3847 |
searchResult);
|
sl@0
|
3848 |
TEST2(err, KErrNone);
|
sl@0
|
3849 |
TEST(searchResult == highprecedence.iImplData);
|
sl@0
|
3850 |
|
sl@0
|
3851 |
//=============================================================
|
sl@0
|
3852 |
// FindImplementation should return the correct implementation
|
sl@0
|
3853 |
// if the interface UID is specified.
|
sl@0
|
3854 |
err = iStateAccessor->FindImplementation(*iRegistryData,
|
sl@0
|
3855 |
commonImplUid,
|
sl@0
|
3856 |
lowprecedence.iInterfaceUid,
|
sl@0
|
3857 |
searchResult);
|
sl@0
|
3858 |
TEST2(err, KErrNone);
|
sl@0
|
3859 |
TEST(searchResult == lowprecedence.iImplData);
|
sl@0
|
3860 |
|
sl@0
|
3861 |
// Repeat FindImplementation test on the highprecedence interface UID
|
sl@0
|
3862 |
err = iStateAccessor->FindImplementation(*iRegistryData,
|
sl@0
|
3863 |
commonImplUid,
|
sl@0
|
3864 |
highprecedence.iInterfaceUid,
|
sl@0
|
3865 |
searchResult);
|
sl@0
|
3866 |
TEST2(err, KErrNone);
|
sl@0
|
3867 |
TEST(searchResult == highprecedence.iImplData);
|
sl@0
|
3868 |
|
sl@0
|
3869 |
//=============================================================
|
sl@0
|
3870 |
// Remove the implementation of higher precedence.
|
sl@0
|
3871 |
TRAP(err, iRegistryData->RemoveFromIndexL(highprecedence.iDllData));
|
sl@0
|
3872 |
TEST2(err, KErrNone);
|
sl@0
|
3873 |
|
sl@0
|
3874 |
//=============================================================
|
sl@0
|
3875 |
// Now only the implementation with low precedence is in the indexes
|
sl@0
|
3876 |
err = iStateAccessor->FindImplementation(*iRegistryData,
|
sl@0
|
3877 |
commonImplUid,
|
sl@0
|
3878 |
KNullUid,
|
sl@0
|
3879 |
searchResult);
|
sl@0
|
3880 |
TEST2(err, KErrNone);
|
sl@0
|
3881 |
TEST(searchResult == lowprecedence.iImplData);
|
sl@0
|
3882 |
|
sl@0
|
3883 |
// Before exit, make sure the indexes are empty.
|
sl@0
|
3884 |
TRAP(err, iRegistryData->RemoveFromIndexL(lowprecedence.iDllData));
|
sl@0
|
3885 |
TEST2(err, KErrNone);
|
sl@0
|
3886 |
|
sl@0
|
3887 |
// Check index is empty
|
sl@0
|
3888 |
TEST2(iStateAccessor->ImplementationsCount(*iRegistryData), 0);
|
sl@0
|
3889 |
CleanupStack::PopAndDestroy(&impls);
|
sl@0
|
3890 |
}
|
sl@0
|
3891 |
/**
|
sl@0
|
3892 |
Test case for making sure the flag for indication of language switch set properly when
|
sl@0
|
3893 |
language downgrade change happens during the running time.
|
sl@0
|
3894 |
|
sl@0
|
3895 |
@SYMTestCaseID SYSLIB-ECOM-UT-3171
|
sl@0
|
3896 |
@SYMTestCaseDesc This function verifies that ECom set the flag for indicating
|
sl@0
|
3897 |
language change properly:
|
sl@0
|
3898 |
- False when there is no language switch activity.
|
sl@0
|
3899 |
- True when language downgrade path is changed from non-localise to localise.
|
sl@0
|
3900 |
- True when first language changed only as opposed to complete language downgrade path
|
sl@0
|
3901 |
- False when there is language switch activity, however, the language downgrade
|
sl@0
|
3902 |
path has no change.
|
sl@0
|
3903 |
@SYMTestPriority High
|
sl@0
|
3904 |
@SYMTestActions 1. construct language downgrade path
|
sl@0
|
3905 |
2. Sets up the system-wide locale and language downgrade path.
|
sl@0
|
3906 |
3. Check flag whether set properly.
|
sl@0
|
3907 |
@SYMTestExpectedResults The test must not fail.
|
sl@0
|
3908 |
@SYMDEF CR0902
|
sl@0
|
3909 |
*/
|
sl@0
|
3910 |
void CRegistryDataTest::LanguageChangedTestL()
|
sl@0
|
3911 |
{
|
sl@0
|
3912 |
TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-UT-3171 "));
|
sl@0
|
3913 |
//exclude those changes for language downgrade path during start-up time
|
sl@0
|
3914 |
if(!iStateAccessor->IsLanguageInitChanged(*iRegistryData))
|
sl@0
|
3915 |
{
|
sl@0
|
3916 |
// Language files used for locale settings
|
sl@0
|
3917 |
_LIT(KEComEnglishLocale, "elocl.01");
|
sl@0
|
3918 |
_LIT(KEComSpanishLocale, "elocl.04");
|
sl@0
|
3919 |
|
sl@0
|
3920 |
TLanguage downgradePathSetup[3];
|
sl@0
|
3921 |
TLocale locale;
|
sl@0
|
3922 |
TExtendedLocale extendedLocale;
|
sl@0
|
3923 |
|
sl@0
|
3924 |
TBool isLanguageChange = EFalse;
|
sl@0
|
3925 |
//There is no language switch activity, expect EFalse
|
sl@0
|
3926 |
TRAPD(err, iRegistryData->LanguageChangedL(isLanguageChange));
|
sl@0
|
3927 |
TEST_OOM_ERR;
|
sl@0
|
3928 |
TEST2(err, KErrNone);
|
sl@0
|
3929 |
TEST2(isLanguageChange, EFalse);
|
sl@0
|
3930 |
|
sl@0
|
3931 |
//change language downgrade path from non localise to localise.
|
sl@0
|
3932 |
extendedLocale.LoadSystemSettings();
|
sl@0
|
3933 |
#ifndef SYMBIAN_DISTINCT_LOCALE_MODEL
|
sl@0
|
3934 |
extendedLocale.LoadLocale(KEComEnglishLocale);
|
sl@0
|
3935 |
#else
|
sl@0
|
3936 |
extendedLocale.LoadLocale(KEComEnglishLang,KEComEnglishReg,KEComEnglishColl);
|
sl@0
|
3937 |
#endif
|
sl@0
|
3938 |
extendedLocale.SaveSystemSettings();
|
sl@0
|
3939 |
|
sl@0
|
3940 |
downgradePathSetup[0] = ELangEnglish;
|
sl@0
|
3941 |
downgradePathSetup[1] = ELangFrench;
|
sl@0
|
3942 |
downgradePathSetup[2] = ELangGerman;
|
sl@0
|
3943 |
SetLanguageL(downgradePathSetup);
|
sl@0
|
3944 |
|
sl@0
|
3945 |
TRAP(err, iRegistryData->LanguageChangedL(isLanguageChange));
|
sl@0
|
3946 |
TEST_OOM_ERR;
|
sl@0
|
3947 |
TEST2(err, KErrNone);
|
sl@0
|
3948 |
TEST2(isLanguageChange, ETrue);
|
sl@0
|
3949 |
//Change first language from English to Spanish..
|
sl@0
|
3950 |
extendedLocale.LoadSystemSettings();
|
sl@0
|
3951 |
#ifndef SYMBIAN_DISTINCT_LOCALE_MODEL
|
sl@0
|
3952 |
extendedLocale.LoadLocale(KEComSpanishLocale);
|
sl@0
|
3953 |
#else
|
sl@0
|
3954 |
extendedLocale.LoadLocale(KEComSpanishLang,KEComSpanishReg,KEComSpanishColl);
|
sl@0
|
3955 |
#endif
|
sl@0
|
3956 |
extendedLocale.SaveSystemSettings();
|
sl@0
|
3957 |
downgradePathSetup[0] =ELangSpanish;
|
sl@0
|
3958 |
SetLanguageL(downgradePathSetup);
|
sl@0
|
3959 |
TRAP(err, iRegistryData->LanguageChangedL(isLanguageChange));
|
sl@0
|
3960 |
TEST_OOM_ERR;
|
sl@0
|
3961 |
TEST2(err, KErrNone);
|
sl@0
|
3962 |
TEST2(isLanguageChange, ETrue);
|
sl@0
|
3963 |
|
sl@0
|
3964 |
//use same language downgrade path setting.
|
sl@0
|
3965 |
SetLanguageL(downgradePathSetup);
|
sl@0
|
3966 |
TRAP(err, iRegistryData->LanguageChangedL(isLanguageChange));
|
sl@0
|
3967 |
TEST_OOM_ERR;
|
sl@0
|
3968 |
TEST2(err, KErrNone);
|
sl@0
|
3969 |
TEST2(isLanguageChange, EFalse);
|
sl@0
|
3970 |
}
|
sl@0
|
3971 |
}
|
sl@0
|
3972 |
|
sl@0
|
3973 |
/**
|
sl@0
|
3974 |
@SYMTestCaseID SYSLIB-ECOM-UT-3670
|
sl@0
|
3975 |
@SYMTestCaseDesc This test verifies that ECom sets the iDrivesRemoved correctly when drives
|
sl@0
|
3976 |
are added and removed
|
sl@0
|
3977 |
@SYMTestPriority High
|
sl@0
|
3978 |
@SYMTestActions Call UndoTemporaryUninstallL to install some drives
|
sl@0
|
3979 |
Remove selected drives by calling TemporaryUninstallL
|
sl@0
|
3980 |
Use the state accessor to verify that the iDrivesRemoved flag
|
sl@0
|
3981 |
correctly stores the removed drives
|
sl@0
|
3982 |
@SYMTestExpectedResults The iDrivesRemoved flag should match the removed drives
|
sl@0
|
3983 |
@SYMDEF INC110470
|
sl@0
|
3984 |
*/
|
sl@0
|
3985 |
void CRegistryDataTest::DrivesRemovedTestL()
|
sl@0
|
3986 |
{
|
sl@0
|
3987 |
TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-UT-3670 "));
|
sl@0
|
3988 |
|
sl@0
|
3989 |
//Ensure that the following drives are all installed
|
sl@0
|
3990 |
iRegistryData->UndoTemporaryUninstallL(EDriveA);
|
sl@0
|
3991 |
iRegistryData->UndoTemporaryUninstallL(EDriveO);
|
sl@0
|
3992 |
iRegistryData->UndoTemporaryUninstallL(EDriveF);
|
sl@0
|
3993 |
iRegistryData->UndoTemporaryUninstallL(EDriveZ);
|
sl@0
|
3994 |
|
sl@0
|
3995 |
//Test that there are no drives removed
|
sl@0
|
3996 |
TEST2(iStateAccessor->DrivesRemoved(*iRegistryData), 0);
|
sl@0
|
3997 |
|
sl@0
|
3998 |
//Remove a drive and check that the state indicates the correct drive
|
sl@0
|
3999 |
//has been removed
|
sl@0
|
4000 |
iRegistryData->TemporaryUninstallL(EDriveZ);
|
sl@0
|
4001 |
TInt drivesRemoved = iStateAccessor->DrivesRemoved(*iRegistryData);
|
sl@0
|
4002 |
TEST2(drivesRemoved, 0x2000000);
|
sl@0
|
4003 |
|
sl@0
|
4004 |
//remove another drive then re-add the first and make sure the
|
sl@0
|
4005 |
//correct drive is removed
|
sl@0
|
4006 |
iRegistryData->TemporaryUninstallL(EDriveA);
|
sl@0
|
4007 |
iRegistryData->UndoTemporaryUninstallL(EDriveZ);
|
sl@0
|
4008 |
drivesRemoved = iStateAccessor->DrivesRemoved(*iRegistryData);
|
sl@0
|
4009 |
TEST2(drivesRemoved, 0x1);
|
sl@0
|
4010 |
|
sl@0
|
4011 |
//Remove all existing drives plus that hasnt been mounted
|
sl@0
|
4012 |
//and check the result
|
sl@0
|
4013 |
iRegistryData->TemporaryUninstallL(EDriveA);
|
sl@0
|
4014 |
iRegistryData->TemporaryUninstallL(EDriveO);
|
sl@0
|
4015 |
iRegistryData->TemporaryUninstallL(EDriveF);
|
sl@0
|
4016 |
iRegistryData->TemporaryUninstallL(EDriveZ);
|
sl@0
|
4017 |
iRegistryData->TemporaryUninstallL(EDriveX);
|
sl@0
|
4018 |
|
sl@0
|
4019 |
drivesRemoved = iStateAccessor->DrivesRemoved(*iRegistryData);
|
sl@0
|
4020 |
TEST2(drivesRemoved, 0x2004021);
|
sl@0
|
4021 |
|
sl@0
|
4022 |
//Add some existing and some new drives check the result
|
sl@0
|
4023 |
iRegistryData->UndoTemporaryUninstallL(EDriveF);
|
sl@0
|
4024 |
iRegistryData->UndoTemporaryUninstallL(EDriveZ);
|
sl@0
|
4025 |
iRegistryData->UndoTemporaryUninstallL(EDriveB);
|
sl@0
|
4026 |
iRegistryData->UndoTemporaryUninstallL(EDriveR);
|
sl@0
|
4027 |
|
sl@0
|
4028 |
drivesRemoved = iStateAccessor->DrivesRemoved(*iRegistryData);
|
sl@0
|
4029 |
TEST2(drivesRemoved, 0x0004001);
|
sl@0
|
4030 |
|
sl@0
|
4031 |
}
|
sl@0
|
4032 |
|
sl@0
|
4033 |
// Type definition for pointer to member function.
|
sl@0
|
4034 |
// Used in calling the CRegistryDataTest member function for testing.
|
sl@0
|
4035 |
typedef void (CRegistryDataTest::*ClassFuncPtrL) (void);
|
sl@0
|
4036 |
|
sl@0
|
4037 |
/**
|
sl@0
|
4038 |
@SYMTestCaseID SYSLIB-ECOM-CT-0751
|
sl@0
|
4039 |
@SYMTestCaseDesc Function to call all test functions
|
sl@0
|
4040 |
@SYMTestPriority High
|
sl@0
|
4041 |
@SYMTestActions Calls up all test functions related to CRegistryData
|
sl@0
|
4042 |
@SYMTestExpectedResults The test must not fail.
|
sl@0
|
4043 |
@SYMREQ REQ0000
|
sl@0
|
4044 |
*/
|
sl@0
|
4045 |
/**
|
sl@0
|
4046 |
Wrapper function to call all test functions
|
sl@0
|
4047 |
@param testFunc pointer to test function
|
sl@0
|
4048 |
@param aTestDesc test function name
|
sl@0
|
4049 |
@param aIsFullDriveCDiscovery whether the constructor make full discovery on drive C
|
sl@0
|
4050 |
*/
|
sl@0
|
4051 |
LOCAL_C void DoBasicTestL(ClassFuncPtrL testFuncL, const TDesC& aTestDesc, TBool aIsFullDriveCDiscovery)
|
sl@0
|
4052 |
{
|
sl@0
|
4053 |
TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-0751 "));
|
sl@0
|
4054 |
TheTest.Next(aTestDesc);
|
sl@0
|
4055 |
|
sl@0
|
4056 |
__UHEAP_MARK;
|
sl@0
|
4057 |
// find out the number of open handles
|
sl@0
|
4058 |
TInt startProcessHandleCount;
|
sl@0
|
4059 |
TInt startThreadHandleCount;
|
sl@0
|
4060 |
RThread().HandleCount(startProcessHandleCount, startThreadHandleCount);
|
sl@0
|
4061 |
|
sl@0
|
4062 |
CRegistryDataTest* theTest = CRegistryDataTest::NewL(aIsFullDriveCDiscovery);
|
sl@0
|
4063 |
CleanupStack::PushL(theTest);
|
sl@0
|
4064 |
|
sl@0
|
4065 |
(theTest->*testFuncL)();
|
sl@0
|
4066 |
|
sl@0
|
4067 |
CleanupStack::PopAndDestroy(theTest);
|
sl@0
|
4068 |
|
sl@0
|
4069 |
// check that no handles have leaked
|
sl@0
|
4070 |
TInt endProcessHandleCount;
|
sl@0
|
4071 |
TInt endThreadHandleCount;
|
sl@0
|
4072 |
RThread().HandleCount(endProcessHandleCount, endThreadHandleCount);
|
sl@0
|
4073 |
|
sl@0
|
4074 |
TEST(startProcessHandleCount == endProcessHandleCount);
|
sl@0
|
4075 |
TEST(startThreadHandleCount == endThreadHandleCount);
|
sl@0
|
4076 |
|
sl@0
|
4077 |
__UHEAP_MARKEND;
|
sl@0
|
4078 |
}
|
sl@0
|
4079 |
|
sl@0
|
4080 |
/**
|
sl@0
|
4081 |
@SYMTestCaseID SYSLIB-ECOM-CT-0752
|
sl@0
|
4082 |
@SYMTestCaseDesc Function to call all OOM test functions
|
sl@0
|
4083 |
@SYMTestPriority High
|
sl@0
|
4084 |
@SYMTestActions Calls up all OOM test functions related to CRegistryData
|
sl@0
|
4085 |
@SYMTestExpectedResults The test must not fail.
|
sl@0
|
4086 |
@SYMREQ REQ0000
|
sl@0
|
4087 |
*/
|
sl@0
|
4088 |
/**
|
sl@0
|
4089 |
Wrapper function to call all OOM test functions
|
sl@0
|
4090 |
@param testFuncL pointer to OOM test function
|
sl@0
|
4091 |
@param aTestDesc test function name
|
sl@0
|
4092 |
@param aIsFullDriveCDiscovery whether the constructor make full discovery on drive C
|
sl@0
|
4093 |
*/
|
sl@0
|
4094 |
LOCAL_C void DoOOMTestL(ClassFuncPtrL testFuncL, const TDesC& aTestDesc, TBool aIsFullDriveCDiscovery)
|
sl@0
|
4095 |
{
|
sl@0
|
4096 |
TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-0752 "));
|
sl@0
|
4097 |
TheTest.Next(aTestDesc);
|
sl@0
|
4098 |
|
sl@0
|
4099 |
TInt err;
|
sl@0
|
4100 |
TInt tryCount = 0;
|
sl@0
|
4101 |
do
|
sl@0
|
4102 |
{
|
sl@0
|
4103 |
__UHEAP_MARK;
|
sl@0
|
4104 |
// find out the number of open handles
|
sl@0
|
4105 |
TInt startProcessHandleCount;
|
sl@0
|
4106 |
TInt startThreadHandleCount;
|
sl@0
|
4107 |
RThread().HandleCount(startProcessHandleCount, startThreadHandleCount);
|
sl@0
|
4108 |
|
sl@0
|
4109 |
CRegistryDataTest* theTest = CRegistryDataTest::NewL(aIsFullDriveCDiscovery);
|
sl@0
|
4110 |
CleanupStack::PushL(theTest);
|
sl@0
|
4111 |
|
sl@0
|
4112 |
__UHEAP_SETFAIL(RHeap::EDeterministic, ++tryCount);
|
sl@0
|
4113 |
|
sl@0
|
4114 |
TRAP(err, (theTest->*testFuncL)());
|
sl@0
|
4115 |
|
sl@0
|
4116 |
__UHEAP_SETFAIL(RHeap::ENone, 0);
|
sl@0
|
4117 |
|
sl@0
|
4118 |
CleanupStack::PopAndDestroy(theTest);
|
sl@0
|
4119 |
theTest = NULL;
|
sl@0
|
4120 |
// check that no handles have leaked
|
sl@0
|
4121 |
TInt endProcessHandleCount;
|
sl@0
|
4122 |
TInt endThreadHandleCount;
|
sl@0
|
4123 |
RThread().HandleCount(endProcessHandleCount, endThreadHandleCount);
|
sl@0
|
4124 |
|
sl@0
|
4125 |
TEST(startProcessHandleCount == endProcessHandleCount);
|
sl@0
|
4126 |
TEST(startThreadHandleCount == endThreadHandleCount);
|
sl@0
|
4127 |
|
sl@0
|
4128 |
__UHEAP_MARKEND;
|
sl@0
|
4129 |
} while(err == KErrNoMemory);
|
sl@0
|
4130 |
|
sl@0
|
4131 |
TEST2(err, KErrNone);
|
sl@0
|
4132 |
TheTest.Printf(_L("- server succeeded at heap failure rate of %i\n"), tryCount);
|
sl@0
|
4133 |
}
|
sl@0
|
4134 |
|
sl@0
|
4135 |
/**
|
sl@0
|
4136 |
Wrapper function for OOM test of function UpdateDllDataTest1L,UpdateDllDataTest2L,UpdateDllDataTest3L
|
sl@0
|
4137 |
@param testFuncL pointer to OOM test function
|
sl@0
|
4138 |
@param aTestDesc test function name
|
sl@0
|
4139 |
@param aIsFullDriveCDiscovery whether the constructor makes full discovery on drive C
|
sl@0
|
4140 |
@param aTestNumber The number identifies the test case of update dll data.
|
sl@0
|
4141 |
*/
|
sl@0
|
4142 |
LOCAL_C void DoOOMTestUpdateDllDataL(ClassFuncPtrL testFuncL, const TDesC& aTestDesc, TBool aIsFullDriveCDiscovery,TInt aTestNumber)
|
sl@0
|
4143 |
{
|
sl@0
|
4144 |
TheTest.Next(aTestDesc);
|
sl@0
|
4145 |
|
sl@0
|
4146 |
TInt err;
|
sl@0
|
4147 |
TInt tryCount = 0;
|
sl@0
|
4148 |
do
|
sl@0
|
4149 |
{
|
sl@0
|
4150 |
__UHEAP_MARK;
|
sl@0
|
4151 |
switch (aTestNumber)
|
sl@0
|
4152 |
{
|
sl@0
|
4153 |
case 1:
|
sl@0
|
4154 |
{
|
sl@0
|
4155 |
TRAP(err,EComTestUtils::FileManDeleteFileL(KEcomExample12UpgradedOnC));
|
sl@0
|
4156 |
}
|
sl@0
|
4157 |
case 2:
|
sl@0
|
4158 |
{
|
sl@0
|
4159 |
TRAP(err,EComTestUtils::FileManDeleteFileL(KEcomExample14UpgradedOnC));
|
sl@0
|
4160 |
}
|
sl@0
|
4161 |
case 3:
|
sl@0
|
4162 |
{
|
sl@0
|
4163 |
TRAP(err,EComTestUtils::FileManDeleteFileL(KEcomExample12DowngradedOnC));
|
sl@0
|
4164 |
}
|
sl@0
|
4165 |
}
|
sl@0
|
4166 |
// find out the number of open handles
|
sl@0
|
4167 |
TInt startProcessHandleCount;
|
sl@0
|
4168 |
TInt startThreadHandleCount;
|
sl@0
|
4169 |
RThread().HandleCount(startProcessHandleCount, startThreadHandleCount);
|
sl@0
|
4170 |
|
sl@0
|
4171 |
CRegistryDataTest* theTest = CRegistryDataTest::NewL(aIsFullDriveCDiscovery);
|
sl@0
|
4172 |
CleanupStack::PushL(theTest);
|
sl@0
|
4173 |
|
sl@0
|
4174 |
__UHEAP_SETFAIL(RHeap::EDeterministic, ++tryCount);
|
sl@0
|
4175 |
|
sl@0
|
4176 |
TRAP(err, (theTest->*testFuncL)());
|
sl@0
|
4177 |
|
sl@0
|
4178 |
__UHEAP_SETFAIL(RHeap::ENone, 0);
|
sl@0
|
4179 |
|
sl@0
|
4180 |
CleanupStack::PopAndDestroy(theTest);
|
sl@0
|
4181 |
theTest = NULL;
|
sl@0
|
4182 |
// check that no handles have leaked
|
sl@0
|
4183 |
TInt endProcessHandleCount;
|
sl@0
|
4184 |
TInt endThreadHandleCount;
|
sl@0
|
4185 |
RThread().HandleCount(endProcessHandleCount, endThreadHandleCount);
|
sl@0
|
4186 |
|
sl@0
|
4187 |
TEST(startProcessHandleCount == endProcessHandleCount);
|
sl@0
|
4188 |
TEST(startThreadHandleCount == endThreadHandleCount);
|
sl@0
|
4189 |
|
sl@0
|
4190 |
__UHEAP_MARKEND;
|
sl@0
|
4191 |
} while(err == KErrNoMemory);
|
sl@0
|
4192 |
|
sl@0
|
4193 |
TEST2(err, KErrNone);
|
sl@0
|
4194 |
TheTest.Printf(_L("- server succeeded at heap failure rate of %i\n"), tryCount);
|
sl@0
|
4195 |
}
|
sl@0
|
4196 |
|
sl@0
|
4197 |
|
sl@0
|
4198 |
LOCAL_C void DoTestsL()
|
sl@0
|
4199 |
{
|
sl@0
|
4200 |
__UHEAP_MARK;
|
sl@0
|
4201 |
// Create backup server session here. When deleted it deletes safely.
|
sl@0
|
4202 |
// Registrar object creates BackUpNotifier object which
|
sl@0
|
4203 |
// internally creates CBaBackupSessionWrapper, an interface to BackUpSErver session opens 3 handles.
|
sl@0
|
4204 |
// but when Registrar object is deleted it deletes one handle and two are left open.
|
sl@0
|
4205 |
|
sl@0
|
4206 |
CBaBackupSessionWrapper *BackupSession = CBaBackupSessionWrapper::NewL();
|
sl@0
|
4207 |
|
sl@0
|
4208 |
// Basic tests
|
sl@0
|
4209 |
CreateDeleteTestL();
|
sl@0
|
4210 |
DoBasicTestL(&CRegistryDataTest::FailedSecurityCheckTestListImplementationsL,_L("FailedSecurityCheckTestListImplementations Test"), ETrue);
|
sl@0
|
4211 |
DoBasicTestL(&CRegistryDataTest::FailedSecurityCheckTestGetImplementationInfoL,_L("FailedSecurityCheckTestGetImplementationInfo Test"), ETrue);
|
sl@0
|
4212 |
DoBasicTestL(&CRegistryDataTest::ProcessSecurityCheckTestL, _L("ProcessSecurityCheckTest Test"), ETrue);
|
sl@0
|
4213 |
DoBasicTestL(&CRegistryDataTest::IsAnyDllDiscoveredTestL,_L("IsAnyDllDiscoveredTest Test"), ETrue);
|
sl@0
|
4214 |
DoBasicTestL(&CRegistryDataTest::ImplementationDataTestL,_L("ImplementationData Test"), EFalse);
|
sl@0
|
4215 |
DoBasicTestL(&CRegistryDataTest::InsertIntoIndexRemoveFromIndexTestL,_L("InsertIntoIndexRemoveFromIndex Test"), EFalse);
|
sl@0
|
4216 |
DoBasicTestL(&CRegistryDataTest::RollbackTestL,_L("Rollback Test"), EFalse);
|
sl@0
|
4217 |
DoBasicTestL(&CRegistryDataTest::AddDllDataTestL, _L("AddDllData Test"), ETrue);
|
sl@0
|
4218 |
DoBasicTestL(&CRegistryDataTest::AddDllDataPlugIn3TestL, _L("AddDllData PlugIn3 Test"), ETrue);
|
sl@0
|
4219 |
DoBasicTestL(&CRegistryDataTest::UpdateDllDataTest1L, _L("UpdateDllData Test 1"), ETrue);
|
sl@0
|
4220 |
DoBasicTestL(&CRegistryDataTest::UpdateDllDataTest2L, _L("UpdateDllData Test 2"), ETrue);
|
sl@0
|
4221 |
DoBasicTestL(&CRegistryDataTest::UpdateDllDataTest3L, _L("UpdateDllData Test 3"), ETrue);
|
sl@0
|
4222 |
DoBasicTestL(&CRegistryDataTest::IsRegisteredWithDateUpdateDllDataTestL, _L("IsRegisteredWithDate and UpdateDllData Test"), ETrue);
|
sl@0
|
4223 |
DoBasicTestL(&CRegistryDataTest::SetEnabledStateTestL, _L("SetEnabledState Test"), ETrue);
|
sl@0
|
4224 |
DoBasicTestL(&CRegistryDataTest::FindImplementationTestL, _L("FindImplementation Test"), ETrue);
|
sl@0
|
4225 |
DoBasicTestL(&CRegistryDataTest::ListImplementationsL, _L("ListImplementations Test for CRegistryData"), ETrue);
|
sl@0
|
4226 |
DoBasicTestL(&CRegistryDataTest::ListImplementationsTestT1L, _L("ListImplementations Test for CRegistryResolveTransaction 1"), ETrue);
|
sl@0
|
4227 |
DoBasicTestL(&CRegistryDataTest::ListImplementationsTestT2L, _L("ListImplementations Test for CRegistryResolveTransaction 2"), ETrue);
|
sl@0
|
4228 |
DoBasicTestL(&CRegistryDataTest::ListImplementationsTestT3L, _L("ListImplementations Test for CRegistryResolveTransaction 3"), ETrue);
|
sl@0
|
4229 |
DoBasicTestL(&CRegistryDataTest::ListImplementationsTestT4L, _L("ListImplementations Test for CRegistryResolveTransaction 4"), ETrue);
|
sl@0
|
4230 |
DoBasicTestL(&CRegistryDataTest::ListImplementationsTestT5L, _L("ListImplementations Test for CRegistryResolveTransaction 5"), ETrue);
|
sl@0
|
4231 |
DoBasicTestL(&CRegistryDataTest::ListExtendedInterfacesTestL, _L("ListExtendedInterfaces Test"), ETrue);
|
sl@0
|
4232 |
|
sl@0
|
4233 |
DoBasicTestL(&CRegistryDataTest::DoUndoTemporaryUninstallTestL, _L("TemporaryUninstall and UndoTemporaryUninstall Test"), ETrue);
|
sl@0
|
4234 |
DoBasicTestL(&CRegistryDataTest::DiscoveriesBeginCompleteTestL, _L("DiscoveriesBegin and DiscoveriesComplete Test"), ETrue);
|
sl@0
|
4235 |
|
sl@0
|
4236 |
DoBasicTestL(&CRegistryDataTest::IndexedFindTestL, _L("IndexedFind Test"), ETrue);
|
sl@0
|
4237 |
DoBasicTestL(&CRegistryDataTest::GetImplementationDllInfoForClientTestL,_L("GetImplementationDllInfoForClientL Test"), ETrue);
|
sl@0
|
4238 |
DoBasicTestL(&CRegistryDataTest::GetImplementationDllInfoForServerTest,_L("GetImplementationDllInfoForServer Test"), ETrue);
|
sl@0
|
4239 |
DoBasicTestL(&CRegistryDataTest::GetImplementationDllInfoForClientPlugIn3TestL,_L("GetImplementationDllInfoForClientPlugIn3L Test"), ETrue);
|
sl@0
|
4240 |
DoBasicTestL(&CRegistryDataTest::GetImplementationDllInfoForServerPlugIn3Test,_L("GetImplementationDllInfoForServerPlugIn3 Test"), ETrue);
|
sl@0
|
4241 |
DoBasicTestL(&CRegistryDataTest::CheckDuplicatPluginsOnCL,_L("CheckDuplicatPluginsOnCL Test"), EFalse);
|
sl@0
|
4242 |
DoBasicTestL(&CRegistryDataTest::CheckNoPluginsOnCL,_L("CheckNoPluginsOnCL Test"), EFalse);
|
sl@0
|
4243 |
DoBasicTestL(&CRegistryDataTest::DuplicateImplUidTestL,_L("DuplicateImplUidTestL Test"), EFalse);
|
sl@0
|
4244 |
DoBasicTestL(&CRegistryDataTest::LanguageChangedTestL,_L("LanguageChangedTestL Test"), EFalse);
|
sl@0
|
4245 |
DoBasicTestL(&CRegistryDataTest::DrivesRemovedTestL,_L("DrivesRemovedTestL Test"), EFalse);
|
sl@0
|
4246 |
|
sl@0
|
4247 |
//OOM tests
|
sl@0
|
4248 |
|
sl@0
|
4249 |
OOMCreateDeleteTest();
|
sl@0
|
4250 |
DoOOMTestL(&CRegistryDataTest::FailedSecurityCheckTestListImplementationsL,_L("OOM FailedSecurityCheckTestListImplementations Test"), ETrue);
|
sl@0
|
4251 |
DoOOMTestL(&CRegistryDataTest::FailedSecurityCheckTestGetImplementationInfoL,_L("OOM FailedSecurityCheckTestGetImplementationInfo Test"), ETrue);
|
sl@0
|
4252 |
DoOOMTestL(&CRegistryDataTest::ProcessSecurityCheckTestL, _L("OOM ProcessSecurityCheckTest Test"), ETrue);
|
sl@0
|
4253 |
DoOOMTestL(&CRegistryDataTest::IsAnyDllDiscoveredTestL, _L("OOM IsAnyDllDiscoveredTestL Test"), ETrue);
|
sl@0
|
4254 |
DoOOMTestL(&CRegistryDataTest::ImplementationDataTestL, _L("OOM ImplementationData Test"), EFalse);
|
sl@0
|
4255 |
DoOOMTestL(&CRegistryDataTest::InsertIntoIndexRemoveFromIndexTestL, _L("OOM InsertIntoIndexRemoveFromIndex Test"), EFalse);
|
sl@0
|
4256 |
DoOOMTestL(&CRegistryDataTest::RollbackTestL, _L("OOM Rollback Test"), EFalse);
|
sl@0
|
4257 |
DoOOMTestL(&CRegistryDataTest::AddDllDataTestL, _L("OOM AddDllData Test"), ETrue);
|
sl@0
|
4258 |
DoOOMTestL(&CRegistryDataTest::AddDllDataPlugIn3TestL, _L("OOM AddDllData PlugIn3 Test"), ETrue);
|
sl@0
|
4259 |
DoOOMTestUpdateDllDataL(&CRegistryDataTest::UpdateDllDataTest1L, _L("OOM UpdateDllData Test 1"), ETrue, 1);
|
sl@0
|
4260 |
DoOOMTestUpdateDllDataL(&CRegistryDataTest::UpdateDllDataTest2L, _L("OOM UpdateDllData Test 2"), ETrue, 2);
|
sl@0
|
4261 |
DoOOMTestUpdateDllDataL(&CRegistryDataTest::UpdateDllDataTest3L, _L("OOM UpdateDllData Test 3"), ETrue, 3);
|
sl@0
|
4262 |
DoOOMTestL(&CRegistryDataTest::IsRegisteredWithDateUpdateDllDataTestL, _L("IsRegisteredWithDate and UpdateDllData Test"), ETrue);
|
sl@0
|
4263 |
DoOOMTestL(&CRegistryDataTest::SetEnabledStateTestL, _L("OOM SetEnabledState Test"), ETrue);
|
sl@0
|
4264 |
DoOOMTestL(&CRegistryDataTest::FindImplementationTestL, _L("OOM FindImplementation Test"), ETrue);
|
sl@0
|
4265 |
DoOOMTestL(&CRegistryDataTest::ListImplementationsL, _L("OOM ListImplementations Test for CRegistryData"), ETrue);
|
sl@0
|
4266 |
DoOOMTestL(&CRegistryDataTest::ListImplementationsTestT1L, _L("OOM ListImplementations Test for CRegistryResolveTransaction 1"), ETrue);
|
sl@0
|
4267 |
DoOOMTestL(&CRegistryDataTest::ListImplementationsTestT2L, _L("OOM ListImplementations Test for CRegistryResolveTransaction 2"), ETrue);
|
sl@0
|
4268 |
DoOOMTestL(&CRegistryDataTest::ListImplementationsTestT3L, _L("OOM ListImplementations Test for CRegistryResolveTransaction 3"), ETrue);
|
sl@0
|
4269 |
DoOOMTestL(&CRegistryDataTest::ListImplementationsTestT4L, _L("OOM ListImplementations Test for CRegistryResolveTransaction 4"), ETrue);
|
sl@0
|
4270 |
DoOOMTestL(&CRegistryDataTest::ListImplementationsTestT5L, _L("OOM ListImplementations Test for CRegistryResolveTransaction 5"), ETrue);
|
sl@0
|
4271 |
DoOOMTestL(&CRegistryDataTest::ListExtendedInterfacesTestL, _L("OOM ListExtendedInterfaces Test"), ETrue);
|
sl@0
|
4272 |
DoOOMTestL(&CRegistryDataTest::DoUndoTemporaryUninstallTestL, _L("OOM Test for TemporaryUninstall and UndoTemporaryUninstall"), ETrue);
|
sl@0
|
4273 |
DoOOMTestL(&CRegistryDataTest::DiscoveriesBeginCompleteTestL, _L("OOM Test for DiscoveriesBegin and DiscoveriesComplete"), ETrue);
|
sl@0
|
4274 |
DoOOMTestL(&CRegistryDataTest::IndexedFindTestL, _L("OOM IndexedFind Test"), ETrue);
|
sl@0
|
4275 |
DoOOMTestL(&CRegistryDataTest::GetImplementationDllInfoForClientTestL,_L("OOM Test for GetImplementationDllInfoForClientL Test"), ETrue);
|
sl@0
|
4276 |
DoOOMTestL(&CRegistryDataTest::GetImplementationDllInfoForServerTest,_L("OOM Test for GetImplementationDllInfoForServer Test"), ETrue);
|
sl@0
|
4277 |
DoOOMTestL(&CRegistryDataTest::GetImplementationDllInfoForClientTestL,_L("OOM Test for GetImplementationDllInfoForClientPlugIn3L Test"), ETrue);
|
sl@0
|
4278 |
DoOOMTestL(&CRegistryDataTest::GetImplementationDllInfoForServerTest,_L("OOM Test for GetImplementationDllInfoForServerPlugIn3L Test"), ETrue);
|
sl@0
|
4279 |
DoOOMTestL(&CRegistryDataTest::LanguageChangedTestL,_L("OOM Test for LanguageChangedTestL Test"), ETrue);
|
sl@0
|
4280 |
DoOOMTestL(&CRegistryDataTest::DrivesRemovedTestL,_L("OOM Test for DrivesRemovedTestL Test"), ETrue);
|
sl@0
|
4281 |
|
sl@0
|
4282 |
// OOM test can not be performed on API StoreL nad RestoreL, since registry index file gets corrupted when its
|
sl@0
|
4283 |
// data is not completely written, causing to fail in next call.
|
sl@0
|
4284 |
delete BackupSession;
|
sl@0
|
4285 |
|
sl@0
|
4286 |
// Panic Test
|
sl@0
|
4287 |
TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-UT-3712 "));
|
sl@0
|
4288 |
ThreadPanicTest(_L("AddExtendedInterface Panic Testing"),AddExtendedInterfacePanicL);
|
sl@0
|
4289 |
|
sl@0
|
4290 |
__UHEAP_MARKEND;
|
sl@0
|
4291 |
}
|
sl@0
|
4292 |
|
sl@0
|
4293 |
/**
|
sl@0
|
4294 |
Copies the Plugins to specific folder for testing purpose
|
sl@0
|
4295 |
*/
|
sl@0
|
4296 |
LOCAL_C void CopyPluginsL()
|
sl@0
|
4297 |
{
|
sl@0
|
4298 |
// Copy the dlls and .rsc files on to RAM
|
sl@0
|
4299 |
TRAPD(err, EComTestUtils::FileManCopyFileL(KEComExDllOnZ, KEComExDllOnC));
|
sl@0
|
4300 |
TEST2(err, KErrNone);
|
sl@0
|
4301 |
TRAP(err, EComTestUtils::FileManCopyFileL(KEComRscFileOnZ, KEComRscFileOnC));
|
sl@0
|
4302 |
TEST2(err, KErrNone);
|
sl@0
|
4303 |
|
sl@0
|
4304 |
TRAP(err, EComTestUtils::FileManCopyFileL(KEComExampleDllOnZ, KEComExampleDllOnC));
|
sl@0
|
4305 |
TEST2(err, KErrNone);
|
sl@0
|
4306 |
TRAP(err, EComTestUtils::FileManCopyFileL(KEComExample2DllOnZ, KEComExample2DllOnC));
|
sl@0
|
4307 |
TEST2(err, KErrNone);
|
sl@0
|
4308 |
TRAP(err, EComTestUtils::FileManCopyFileL(KEComExample3DllOnZ, KEComExample3DllOnC));
|
sl@0
|
4309 |
TEST2(err, KErrNone);
|
sl@0
|
4310 |
TRAP(err, EComTestUtils::FileManCopyFileL(KEComExample12DllOnZ, KEComExample12DllOnC));
|
sl@0
|
4311 |
TEST2(err, KErrNone);
|
sl@0
|
4312 |
TRAP(err, EComTestUtils::FileManCopyFileL(KEComExample14DllOnZ, KEComExample14DllOnC));
|
sl@0
|
4313 |
TEST2(err, KErrNone);
|
sl@0
|
4314 |
TRAP(err, EComTestUtils::FileManCopyFileL(KEComExample15DllOnZ, KEComExample15DllOnC));
|
sl@0
|
4315 |
TEST2(err, KErrNone);
|
sl@0
|
4316 |
|
sl@0
|
4317 |
TRAP(err, EComTestUtils::FileManCopyFileL(KEComExampleRscOnZ, KEComExampleRscOnC));
|
sl@0
|
4318 |
TEST2(err, KErrNone);
|
sl@0
|
4319 |
TRAP(err, EComTestUtils::FileManCopyFileL(KEComExample2RscOnZ, KEComExample2RscOnC));
|
sl@0
|
4320 |
TEST2(err, KErrNone);
|
sl@0
|
4321 |
TRAP(err, EComTestUtils::FileManCopyFileL(KEComExample3RscOnZ, KEComExample3RscOnC));
|
sl@0
|
4322 |
TEST2(err, KErrNone);
|
sl@0
|
4323 |
TRAP(err, EComTestUtils::FileManCopyFileL(KEComExample12RscOnZ, KEComExample12RscOnC));
|
sl@0
|
4324 |
TEST2(err, KErrNone);
|
sl@0
|
4325 |
TRAP(err, EComTestUtils::FileManCopyFileL(KEComExample14RscOnZ, KEComExample14RscOnC));
|
sl@0
|
4326 |
TEST2(err, KErrNone);
|
sl@0
|
4327 |
TRAP(err, EComTestUtils::FileManCopyFileL(KEComExample15RscOnZ, KEComExample15RscOnC));
|
sl@0
|
4328 |
TEST2(err, KErrNone);
|
sl@0
|
4329 |
|
sl@0
|
4330 |
// Test plug-in resource file SID that doesn't match the DLL
|
sl@0
|
4331 |
TRAP(err, EComTestUtils::FileManCopyFileL(KEComInvalidDllOnZ, KEComInvalidDllOnC));
|
sl@0
|
4332 |
TEST2(err, KErrNone);
|
sl@0
|
4333 |
TRAP(err, EComTestUtils::FileManCopyFileL(KEComInvalidRscOnZ, KEComInvalidRscOnC));
|
sl@0
|
4334 |
TEST2(err, KErrNone);
|
sl@0
|
4335 |
|
sl@0
|
4336 |
TRAP(err, EComTestUtils::FileManCopyFileL(KMissingDllRomRscFile, KMissingDllRamRscFile));
|
sl@0
|
4337 |
TEST2(err, KErrNone);
|
sl@0
|
4338 |
TRAP(err, EComTestUtils::FileManCopyFileL(KRollbackForMissingDllRomDllFile, KRollbackForMissingDllRamDllFile));
|
sl@0
|
4339 |
TEST2(err, KErrNone);
|
sl@0
|
4340 |
TRAP(err, EComTestUtils::FileManCopyFileL(KRollbackForMissingDllRomRscFile, KRollbackForMissingDllRamRscFile));
|
sl@0
|
4341 |
TEST2(err, KErrNone);
|
sl@0
|
4342 |
|
sl@0
|
4343 |
// Wait, so that ECom server looks for plugins copied from Z: to C drive
|
sl@0
|
4344 |
// ECOM server could be already started. It means that when we copy some
|
sl@0
|
4345 |
// ECOM plugins from Z: to C: drive - ECOM server should look for and
|
sl@0
|
4346 |
// find the new ECOM plugins. The ECOM server uses for that CDiscoverer::CIdleScanningTimer
|
sl@0
|
4347 |
// which is an active object. So the discovering service is asynchronous. We have to
|
sl@0
|
4348 |
// wait some time until it finishes. Otherwise ListImplementationsL could fail to find
|
sl@0
|
4349 |
// requested implementations.
|
sl@0
|
4350 |
User::After(KOneSecond * 3);
|
sl@0
|
4351 |
}
|
sl@0
|
4352 |
|
sl@0
|
4353 |
//Initialise the Active Scheduler
|
sl@0
|
4354 |
LOCAL_C void SetupL()
|
sl@0
|
4355 |
{
|
sl@0
|
4356 |
// Construct and install the Active Scheduler. The Active Schedular is needed
|
sl@0
|
4357 |
// by components used by this test as they are ActiveObjects.
|
sl@0
|
4358 |
TheActiveScheduler = new(ELeave)CActiveScheduler;
|
sl@0
|
4359 |
CActiveScheduler::Install(TheActiveScheduler);
|
sl@0
|
4360 |
ECOMTU_KILL_SERVER_L(TheTest);
|
sl@0
|
4361 |
}
|
sl@0
|
4362 |
|
sl@0
|
4363 |
GLDEF_C TInt E32Main()
|
sl@0
|
4364 |
{
|
sl@0
|
4365 |
__UHEAP_MARK;
|
sl@0
|
4366 |
|
sl@0
|
4367 |
TheTest.Printf(_L("\n"));
|
sl@0
|
4368 |
TheTest.Title();
|
sl@0
|
4369 |
TheTest.Start(_L("Registry Data Tests"));
|
sl@0
|
4370 |
|
sl@0
|
4371 |
TheTrapCleanup = CTrapCleanup::New();
|
sl@0
|
4372 |
|
sl@0
|
4373 |
User::LeaveIfError(TheFs.Connect());
|
sl@0
|
4374 |
|
sl@0
|
4375 |
TRAPD(err, SetupL());
|
sl@0
|
4376 |
TEST2(err, KErrNone);
|
sl@0
|
4377 |
|
sl@0
|
4378 |
CopyPluginsL();
|
sl@0
|
4379 |
|
sl@0
|
4380 |
TRAP(err, DoTestsL());
|
sl@0
|
4381 |
TEST2(err, KErrNone);
|
sl@0
|
4382 |
|
sl@0
|
4383 |
// Cleanup files. If the cleanup fails that is no problem,
|
sl@0
|
4384 |
// as any subsequent tests will replace them. The only downside
|
sl@0
|
4385 |
// would be the disk not being tidied
|
sl@0
|
4386 |
DeleteTestPlugin();
|
sl@0
|
4387 |
TheFs.Close();
|
sl@0
|
4388 |
|
sl@0
|
4389 |
delete TheTrapCleanup;
|
sl@0
|
4390 |
delete TheActiveScheduler;
|
sl@0
|
4391 |
TheTest.End();
|
sl@0
|
4392 |
TheTest.Close();
|
sl@0
|
4393 |
|
sl@0
|
4394 |
__UHEAP_MARKEND;
|
sl@0
|
4395 |
return(KErrNone);
|
sl@0
|
4396 |
}
|