sl@0
|
1 |
// Copyright (c) 2006-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 |
// Contains tests to exercise the hash checking feature for removable drives
|
sl@0
|
15 |
//
|
sl@0
|
16 |
//
|
sl@0
|
17 |
|
sl@0
|
18 |
|
sl@0
|
19 |
#include <ecom/ecom.h>
|
sl@0
|
20 |
#include "../EcomTestUtils/EcomTestUtils.h"
|
sl@0
|
21 |
#include <hash.h>
|
sl@0
|
22 |
#include <swi/swispubsubdefs.h>
|
sl@0
|
23 |
#include "../Example/EComHashExample.h"
|
sl@0
|
24 |
#include "../EcomTestUtils/TPropertyManager.h"
|
sl@0
|
25 |
|
sl@0
|
26 |
using namespace Swi;
|
sl@0
|
27 |
|
sl@0
|
28 |
LOCAL_D RTest test(_L("t_hashcheck.exe"));
|
sl@0
|
29 |
|
sl@0
|
30 |
LOCAL_D CTrapCleanup* TheTrapCleanup = NULL;
|
sl@0
|
31 |
|
sl@0
|
32 |
LOCAL_D CActiveScheduler* TheActiveScheduler = NULL;
|
sl@0
|
33 |
|
sl@0
|
34 |
LOCAL_D RFs TheFs;
|
sl@0
|
35 |
|
sl@0
|
36 |
#define UNUSED_VAR(a) a = a
|
sl@0
|
37 |
|
sl@0
|
38 |
// Implementaion IDs used for testing
|
sl@0
|
39 |
const TUid KUidTestInterface = {0x10009E34};
|
sl@0
|
40 |
const TUid KUidTestImplementation = {0x10009E35};
|
sl@0
|
41 |
|
sl@0
|
42 |
// Plugins used in tests.
|
sl@0
|
43 |
_LIT(KEComHashExampleDllOnZ, "z:\\RAMOnly\\EComHashExample.dll");
|
sl@0
|
44 |
_LIT(KEComHashExampleRscOnZ, "z:\\RAMOnly\\EComHashExample.rsc");
|
sl@0
|
45 |
|
sl@0
|
46 |
_LIT(KEComAllRSCFilesName, "\\Resource\\Plugins\\*.rsc");
|
sl@0
|
47 |
_LIT(KEComRscDirName, "\\Resource\\Plugins");
|
sl@0
|
48 |
|
sl@0
|
49 |
#if defined(__WINSCW__) // X: on emulator
|
sl@0
|
50 |
_LIT(KEComHashExampleDllOnRemovableDrive, "X:\\sys\\bin\\EComHashExample.dll");
|
sl@0
|
51 |
_LIT(KEComHashExampleRscOnRemovableDrive, "X:\\resource\\plugins\\EComHashExample.rsc");
|
sl@0
|
52 |
#else // E: on hardware
|
sl@0
|
53 |
_LIT(KEComHashExampleDllOnRemovableDrive, "E:\\sys\\bin\\EComHashExample.dll");
|
sl@0
|
54 |
_LIT(KEComHashExampleRscOnRemovableDrive, "E:\\resource\\plugins\\EComHashExample.rsc");
|
sl@0
|
55 |
#endif
|
sl@0
|
56 |
|
sl@0
|
57 |
// hash files
|
sl@0
|
58 |
_LIT(KEComTempHashFileOnC, "c:\\EComTempHashFile.dll");
|
sl@0
|
59 |
_LIT(KEComTempCorruptHashFileOnC, "c:\\EComTempCorruptHashFile.dll");
|
sl@0
|
60 |
_LIT(KEComHashExampleHashFileOnRemovableDrive, "c:\\sys\\hash\\EComHashExample.dll");
|
sl@0
|
61 |
_LIT(KEComCorruptHash, "12345678912345678900");
|
sl@0
|
62 |
|
sl@0
|
63 |
const TInt KHashFileReadSize = 1024*8;
|
sl@0
|
64 |
|
sl@0
|
65 |
void CreateTempHashFileL()
|
sl@0
|
66 |
{
|
sl@0
|
67 |
// Create valid hash file for the DLL to be used during this test.
|
sl@0
|
68 |
TInt readsize = KHashFileReadSize;
|
sl@0
|
69 |
HBufC8* block0 = HBufC8::NewLC(readsize);
|
sl@0
|
70 |
TPtr8 fileblock0(block0->Des());
|
sl@0
|
71 |
CSHA1* hasher=CSHA1::NewL();
|
sl@0
|
72 |
CleanupStack::PushL(hasher);
|
sl@0
|
73 |
|
sl@0
|
74 |
RFile file;
|
sl@0
|
75 |
CleanupClosePushL(file);
|
sl@0
|
76 |
User::LeaveIfError(file.Open(TheFs, KEComHashExampleDllOnZ, EFileRead));
|
sl@0
|
77 |
|
sl@0
|
78 |
TInt size;
|
sl@0
|
79 |
User::LeaveIfError(file.Size(size));
|
sl@0
|
80 |
TInt offset=0;
|
sl@0
|
81 |
do {
|
sl@0
|
82 |
if((size - offset) < readsize)
|
sl@0
|
83 |
readsize = (size - offset);
|
sl@0
|
84 |
User::LeaveIfError(file.Read(offset, fileblock0, readsize));
|
sl@0
|
85 |
hasher->Update(fileblock0);
|
sl@0
|
86 |
offset+=readsize;
|
sl@0
|
87 |
}
|
sl@0
|
88 |
while(offset < size);
|
sl@0
|
89 |
|
sl@0
|
90 |
CleanupStack::PopAndDestroy(1); // file
|
sl@0
|
91 |
|
sl@0
|
92 |
TBuf8<SHA1_HASH> hash;
|
sl@0
|
93 |
hash=hasher->Final();
|
sl@0
|
94 |
|
sl@0
|
95 |
CleanupStack::PopAndDestroy(2); // block0, hasher
|
sl@0
|
96 |
|
sl@0
|
97 |
// write hash to file
|
sl@0
|
98 |
RFile tempHashFile;
|
sl@0
|
99 |
CleanupClosePushL(tempHashFile);
|
sl@0
|
100 |
User::LeaveIfError(tempHashFile.Replace(TheFs, KEComTempHashFileOnC, EFileWrite));
|
sl@0
|
101 |
tempHashFile.Write(hash);
|
sl@0
|
102 |
CleanupStack::PopAndDestroy(1); // tempHashFile
|
sl@0
|
103 |
}
|
sl@0
|
104 |
|
sl@0
|
105 |
void DeleteTempHashFileL()
|
sl@0
|
106 |
{
|
sl@0
|
107 |
TRAPD(err, EComTestUtils::FileManDeleteFileL(KEComTempHashFileOnC));
|
sl@0
|
108 |
test(err == KErrNone);
|
sl@0
|
109 |
}
|
sl@0
|
110 |
|
sl@0
|
111 |
void CreateTempCorruptHashFileL()
|
sl@0
|
112 |
{
|
sl@0
|
113 |
// write corrupt hash to file
|
sl@0
|
114 |
TBuf8<SHA1_HASH> hash;
|
sl@0
|
115 |
hash.Append(KEComCorruptHash);
|
sl@0
|
116 |
RFile tempHashFile;
|
sl@0
|
117 |
CleanupClosePushL(tempHashFile);
|
sl@0
|
118 |
User::LeaveIfError(tempHashFile.Replace(TheFs, KEComTempCorruptHashFileOnC, EFileWrite));
|
sl@0
|
119 |
tempHashFile.Write(hash);
|
sl@0
|
120 |
CleanupStack::PopAndDestroy(1); // tempHashFile
|
sl@0
|
121 |
}
|
sl@0
|
122 |
|
sl@0
|
123 |
void DeleteTempCorruptHashFileL()
|
sl@0
|
124 |
{
|
sl@0
|
125 |
TRAPD(err, EComTestUtils::FileManDeleteFileL(KEComTempCorruptHashFileOnC));
|
sl@0
|
126 |
test(err == KErrNone);
|
sl@0
|
127 |
}
|
sl@0
|
128 |
|
sl@0
|
129 |
void CopyHashFile()
|
sl@0
|
130 |
{
|
sl@0
|
131 |
TRAPD(err, EComTestUtils::FileManCopyFileL(KEComTempHashFileOnC,
|
sl@0
|
132 |
KEComHashExampleHashFileOnRemovableDrive));
|
sl@0
|
133 |
test(err == KErrNone);
|
sl@0
|
134 |
}
|
sl@0
|
135 |
|
sl@0
|
136 |
void DeleteHashFile()
|
sl@0
|
137 |
{
|
sl@0
|
138 |
TRAPD(err, EComTestUtils::FileManDeleteFileL(KEComHashExampleHashFileOnRemovableDrive));
|
sl@0
|
139 |
UNUSED_VAR(err);
|
sl@0
|
140 |
|
sl@0
|
141 |
// If ECOM server is already running we need to allow some time for re-discovery
|
sl@0
|
142 |
// to complete.
|
sl@0
|
143 |
WAIT_FOR3s;
|
sl@0
|
144 |
}
|
sl@0
|
145 |
|
sl@0
|
146 |
void CopyCorruptHashFile()
|
sl@0
|
147 |
{
|
sl@0
|
148 |
TRAPD(err, EComTestUtils::FileManCopyFileL(KEComTempCorruptHashFileOnC,
|
sl@0
|
149 |
KEComHashExampleHashFileOnRemovableDrive));
|
sl@0
|
150 |
test(err == KErrNone);
|
sl@0
|
151 |
}
|
sl@0
|
152 |
|
sl@0
|
153 |
void CopyPlugins()
|
sl@0
|
154 |
{
|
sl@0
|
155 |
TRAPD(err, EComTestUtils::FileManCopyFileL(KEComHashExampleDllOnZ, KEComHashExampleDllOnRemovableDrive));
|
sl@0
|
156 |
test(err == KErrNone);
|
sl@0
|
157 |
TRAP(err, EComTestUtils::FileManCopyFileL(KEComHashExampleRscOnZ, KEComHashExampleRscOnRemovableDrive));
|
sl@0
|
158 |
test(err == KErrNone);
|
sl@0
|
159 |
|
sl@0
|
160 |
// If ECOM server is already running we need to allow some time for re-discovery
|
sl@0
|
161 |
// to complete.
|
sl@0
|
162 |
WAIT_FOR3s;
|
sl@0
|
163 |
}
|
sl@0
|
164 |
|
sl@0
|
165 |
void DeletePlugins()
|
sl@0
|
166 |
{
|
sl@0
|
167 |
TRAPD(err, EComTestUtils::FileManDeleteFileL(KEComHashExampleDllOnRemovableDrive));
|
sl@0
|
168 |
UNUSED_VAR(err);
|
sl@0
|
169 |
TRAP(err, EComTestUtils::FileManDeleteFileL(KEComHashExampleRscOnRemovableDrive));
|
sl@0
|
170 |
UNUSED_VAR(err);
|
sl@0
|
171 |
|
sl@0
|
172 |
// If ECOM server is already running we need to allow some time for re-discovery
|
sl@0
|
173 |
// to complete.
|
sl@0
|
174 |
WAIT_FOR3s;
|
sl@0
|
175 |
}
|
sl@0
|
176 |
|
sl@0
|
177 |
|
sl@0
|
178 |
void DeleteRSCFolderOnDrive(TUint aDriveNum)
|
sl@0
|
179 |
{
|
sl@0
|
180 |
TInt err=KErrNone;
|
sl@0
|
181 |
TDriveUnit aDrive(aDriveNum);
|
sl@0
|
182 |
|
sl@0
|
183 |
TBuf<256> resourceFileName;
|
sl@0
|
184 |
resourceFileName.Append(aDrive.Name());
|
sl@0
|
185 |
resourceFileName.Append(KEComAllRSCFilesName);
|
sl@0
|
186 |
TRAP(err, EComTestUtils::FileManDeleteFileL(resourceFileName));
|
sl@0
|
187 |
|
sl@0
|
188 |
TBuf<256> resourceDirName;
|
sl@0
|
189 |
resourceDirName.Append(aDrive.Name());
|
sl@0
|
190 |
resourceDirName.Append(KEComRscDirName);
|
sl@0
|
191 |
TRAP(err, EComTestUtils::FileManDeleteDirL(resourceDirName));
|
sl@0
|
192 |
}
|
sl@0
|
193 |
|
sl@0
|
194 |
TBool IsImplementationListedL()
|
sl@0
|
195 |
{
|
sl@0
|
196 |
RImplInfoPtrArray implArray;
|
sl@0
|
197 |
REComSession::ListImplementationsL(KUidTestInterface, implArray);
|
sl@0
|
198 |
|
sl@0
|
199 |
TBool found = EFalse;
|
sl@0
|
200 |
TInt count = implArray.Count();
|
sl@0
|
201 |
while(count)
|
sl@0
|
202 |
{
|
sl@0
|
203 |
count--;
|
sl@0
|
204 |
if(implArray[count]->ImplementationUid() == KUidTestImplementation)
|
sl@0
|
205 |
{
|
sl@0
|
206 |
found = ETrue;
|
sl@0
|
207 |
break;
|
sl@0
|
208 |
}
|
sl@0
|
209 |
}
|
sl@0
|
210 |
REComSession::FinalClose();
|
sl@0
|
211 |
implArray.ResetAndDestroy();
|
sl@0
|
212 |
return found;
|
sl@0
|
213 |
}
|
sl@0
|
214 |
|
sl@0
|
215 |
TInt IsImplementationCreatedL()
|
sl@0
|
216 |
{
|
sl@0
|
217 |
TUid dtor_ID_Key;
|
sl@0
|
218 |
TAny* ptr = NULL;
|
sl@0
|
219 |
TRAPD(err, ptr = REComSession::CreateImplementationL(KUidTestImplementation, dtor_ID_Key));
|
sl@0
|
220 |
|
sl@0
|
221 |
CImplementationHashExample* implPtr = reinterpret_cast <CImplementationHashExample*> (ptr);
|
sl@0
|
222 |
|
sl@0
|
223 |
if(err == KErrNone)
|
sl@0
|
224 |
{
|
sl@0
|
225 |
REComSession::DestroyedImplementation(dtor_ID_Key);
|
sl@0
|
226 |
delete implPtr;
|
sl@0
|
227 |
}
|
sl@0
|
228 |
|
sl@0
|
229 |
REComSession::FinalClose();
|
sl@0
|
230 |
return err;
|
sl@0
|
231 |
}
|
sl@0
|
232 |
|
sl@0
|
233 |
void DoPreInstall()
|
sl@0
|
234 |
{
|
sl@0
|
235 |
// Install in progress
|
sl@0
|
236 |
PropertyManager::SetProperty(KUidSystemCategory, KSAUidSoftwareInstallKeyValue, ESASwisInstall);
|
sl@0
|
237 |
CopyHashFile();
|
sl@0
|
238 |
WAIT_FOR1s;
|
sl@0
|
239 |
|
sl@0
|
240 |
// Install successful
|
sl@0
|
241 |
PropertyManager::SetProperty(KUidSystemCategory, KSAUidSoftwareInstallKeyValue, ESASwisInstall);
|
sl@0
|
242 |
WAIT_FOR3s;
|
sl@0
|
243 |
|
sl@0
|
244 |
// Reset
|
sl@0
|
245 |
PropertyManager::SetProperty(KUidSystemCategory, KSAUidSoftwareInstallKeyValue, ESASwisNone);
|
sl@0
|
246 |
WAIT_FOR1s;
|
sl@0
|
247 |
}
|
sl@0
|
248 |
|
sl@0
|
249 |
void DoCorruptPreInstall()
|
sl@0
|
250 |
{
|
sl@0
|
251 |
// Install in progress
|
sl@0
|
252 |
PropertyManager::SetProperty(KUidSystemCategory, KSAUidSoftwareInstallKeyValue, ESASwisInstall);
|
sl@0
|
253 |
CopyCorruptHashFile();
|
sl@0
|
254 |
WAIT_FOR1s;
|
sl@0
|
255 |
|
sl@0
|
256 |
// Install successful
|
sl@0
|
257 |
PropertyManager::SetProperty(KUidSystemCategory, KSAUidSoftwareInstallKeyValue, ESASwisInstall);
|
sl@0
|
258 |
WAIT_FOR3s;
|
sl@0
|
259 |
|
sl@0
|
260 |
// Reset
|
sl@0
|
261 |
PropertyManager::SetProperty(KUidSystemCategory, KSAUidSoftwareInstallKeyValue, ESASwisNone);
|
sl@0
|
262 |
WAIT_FOR1s;
|
sl@0
|
263 |
}
|
sl@0
|
264 |
|
sl@0
|
265 |
void DoPreUninstall()
|
sl@0
|
266 |
{
|
sl@0
|
267 |
// Uninstall in progress
|
sl@0
|
268 |
PropertyManager::SetProperty(KUidSystemCategory, KSAUidSoftwareInstallKeyValue, ESASwisUninstall);
|
sl@0
|
269 |
DeleteHashFile();
|
sl@0
|
270 |
WAIT_FOR1s;
|
sl@0
|
271 |
|
sl@0
|
272 |
// Uninstall successful
|
sl@0
|
273 |
PropertyManager::SetProperty(KUidSystemCategory, KSAUidSoftwareInstallKeyValue, ESASwisUninstall);
|
sl@0
|
274 |
WAIT_FOR3s;
|
sl@0
|
275 |
|
sl@0
|
276 |
// Reset
|
sl@0
|
277 |
PropertyManager::SetProperty(KUidSystemCategory, KSAUidSoftwareInstallKeyValue, ESASwisNone);
|
sl@0
|
278 |
WAIT_FOR1s;
|
sl@0
|
279 |
}
|
sl@0
|
280 |
|
sl@0
|
281 |
/**
|
sl@0
|
282 |
@SYMTestCaseID SYSLIB-ECOM-CT-1922
|
sl@0
|
283 |
@SYMTestCaseDesc Test that implementation on removable drive is not available
|
sl@0
|
284 |
when no hash file has been installed.
|
sl@0
|
285 |
@SYMTestPriority High
|
sl@0
|
286 |
@SYMTestActions Copy plugins to removable drive.
|
sl@0
|
287 |
Call ListImplementations() and CreateImplementation()
|
sl@0
|
288 |
Check implementation is unavailable.
|
sl@0
|
289 |
@SYMTestExpectedResults The test must not fail.
|
sl@0
|
290 |
@SYMDEF PDEF090578
|
sl@0
|
291 |
*/
|
sl@0
|
292 |
LOCAL_C void TestNoHashFileInstalledL()
|
sl@0
|
293 |
{
|
sl@0
|
294 |
test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-1922 "));
|
sl@0
|
295 |
__UHEAP_MARK;
|
sl@0
|
296 |
|
sl@0
|
297 |
// Test ListImplementations()
|
sl@0
|
298 |
CopyPlugins();
|
sl@0
|
299 |
TBool implListed = IsImplementationListedL();
|
sl@0
|
300 |
|
sl@0
|
301 |
// Check implementation
|
sl@0
|
302 |
// On the emulator RLibrary::GetInfo() always returns KErrNotFound for DLL's
|
sl@0
|
303 |
// on the X drive. Because of this the implementation will not be listed.
|
sl@0
|
304 |
//
|
sl@0
|
305 |
// On hardware ECOM uses RLoader::CheckLibraryHash() to determine if the hash
|
sl@0
|
306 |
// is available for the DLL. In this case there is no hash so the implementation is
|
sl@0
|
307 |
// not listed.
|
sl@0
|
308 |
test(!implListed);
|
sl@0
|
309 |
|
sl@0
|
310 |
// Test CreateImplementation()
|
sl@0
|
311 |
TInt implCreated = IsImplementationCreatedL();
|
sl@0
|
312 |
|
sl@0
|
313 |
// Check implementation
|
sl@0
|
314 |
// On the emulator RLibrary::GetInfo() always returns KErrNotFound for DLL's
|
sl@0
|
315 |
// on the X drive. Because of this the implementation will not be created.
|
sl@0
|
316 |
//
|
sl@0
|
317 |
// On hardware ECOM uses RLoader::CheckLibraryHash() to determine if the hash
|
sl@0
|
318 |
// is available for the DLL. In this case there is no hash so the implementation is
|
sl@0
|
319 |
// not created.
|
sl@0
|
320 |
test(implCreated == KErrNotFound);
|
sl@0
|
321 |
|
sl@0
|
322 |
DeletePlugins();
|
sl@0
|
323 |
__UHEAP_MARKEND;
|
sl@0
|
324 |
}
|
sl@0
|
325 |
|
sl@0
|
326 |
/**
|
sl@0
|
327 |
@SYMTestCaseID SYSLIB-ECOM-CT-1923
|
sl@0
|
328 |
@SYMTestCaseDesc Test that implementation on removable drive is available
|
sl@0
|
329 |
when a Pre Install occurs exists.
|
sl@0
|
330 |
@SYMTestPriority High
|
sl@0
|
331 |
@SYMTestActions Copy plugins to removable drive.
|
sl@0
|
332 |
Call ListImplementations() and CreateImplementation()
|
sl@0
|
333 |
Check implementation is unavailable.
|
sl@0
|
334 |
Emulate pre-install.
|
sl@0
|
335 |
Call ListImplementations() and CreateImplementation()
|
sl@0
|
336 |
Check implementation is available.
|
sl@0
|
337 |
Emulate uninstall.
|
sl@0
|
338 |
Call ListImplementations() and CreateImplementation()
|
sl@0
|
339 |
Check implementation is unavailable.
|
sl@0
|
340 |
@SYMTestExpectedResults The test must not fail.
|
sl@0
|
341 |
@SYMDEF PDEF090578
|
sl@0
|
342 |
*/
|
sl@0
|
343 |
LOCAL_C void TestPreInstallL()
|
sl@0
|
344 |
{
|
sl@0
|
345 |
test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-1923 "));
|
sl@0
|
346 |
__UHEAP_MARK;
|
sl@0
|
347 |
|
sl@0
|
348 |
// Only copy plugins - during pre-install plugins exists before the install occurs
|
sl@0
|
349 |
CopyPlugins();
|
sl@0
|
350 |
|
sl@0
|
351 |
// Test ListImplementations()
|
sl@0
|
352 |
TBool implListed = IsImplementationListedL();
|
sl@0
|
353 |
|
sl@0
|
354 |
// Check implementation
|
sl@0
|
355 |
// On the emulator RLibrary::GetInfo() always returns KErrNotFound for DLL's
|
sl@0
|
356 |
// on the X drive. Because of this the implementation will not be listed.
|
sl@0
|
357 |
//
|
sl@0
|
358 |
// On hardware ECOM uses RLoader::CheckLibraryHash() to determine if the hash
|
sl@0
|
359 |
// is available for the DLL. In this case there is no hash because install has not occurred
|
sl@0
|
360 |
// so the implementation is not listed.
|
sl@0
|
361 |
test(!implListed);
|
sl@0
|
362 |
|
sl@0
|
363 |
// Test CreateImplementation()
|
sl@0
|
364 |
// No hash so no implementation should be created.
|
sl@0
|
365 |
TInt implCreated = IsImplementationCreatedL();
|
sl@0
|
366 |
|
sl@0
|
367 |
// Check implementation
|
sl@0
|
368 |
// On the emulator RLibrary::GetInfo() always returns KErrNotFound for DLL's
|
sl@0
|
369 |
// on the X drive. Because of this the implementation will not be created.
|
sl@0
|
370 |
//
|
sl@0
|
371 |
// On hardware ECOM uses RLoader::CheckLibraryHash() to determine if the hash
|
sl@0
|
372 |
// is available for the DLL. In this case there is no hash because install has not occurred
|
sl@0
|
373 |
// so the implementation is not created.
|
sl@0
|
374 |
test(implCreated == KErrNotFound);
|
sl@0
|
375 |
|
sl@0
|
376 |
// Do install
|
sl@0
|
377 |
DoPreInstall();
|
sl@0
|
378 |
|
sl@0
|
379 |
// Test ListImplementations()
|
sl@0
|
380 |
implListed = IsImplementationListedL();
|
sl@0
|
381 |
|
sl@0
|
382 |
_LIT(KMessage3,"Pre-Install 3: List = %d");
|
sl@0
|
383 |
RDebug::Print(KMessage3, implListed);
|
sl@0
|
384 |
// Check implementation
|
sl@0
|
385 |
#if defined(__WINSCW__)
|
sl@0
|
386 |
// On the emulator RLibrary::GetInfo() always returns KErrNotFound for DLL's
|
sl@0
|
387 |
// on the X drive. Because of this the implementation will not be listed.
|
sl@0
|
388 |
//
|
sl@0
|
389 |
test(!implListed);
|
sl@0
|
390 |
#else
|
sl@0
|
391 |
// On hardware ECOM uses RLoader::CheckLibraryHash() to determine if the hash
|
sl@0
|
392 |
// is available for the DLL. In this case there is a hash so the implementation is
|
sl@0
|
393 |
// listed.
|
sl@0
|
394 |
test(implListed);
|
sl@0
|
395 |
#endif
|
sl@0
|
396 |
|
sl@0
|
397 |
// Test CreateImplementation()
|
sl@0
|
398 |
implCreated = IsImplementationCreatedL();
|
sl@0
|
399 |
|
sl@0
|
400 |
// Check implementation was created
|
sl@0
|
401 |
#if defined(__WINSCW__)
|
sl@0
|
402 |
// On the emulator RLibrary::GetInfo() always returns KErrNotFound for DLL's
|
sl@0
|
403 |
// on the X drive. Because of this the implementation will not be created.
|
sl@0
|
404 |
//
|
sl@0
|
405 |
test(implCreated == KErrNotFound);
|
sl@0
|
406 |
#else
|
sl@0
|
407 |
// On hardware ECOM uses RLoader::CheckLibraryHash() to determine if the hash
|
sl@0
|
408 |
// is available for the DLL. In this case there is a hash so the implementation is
|
sl@0
|
409 |
// created.
|
sl@0
|
410 |
test(implCreated == KErrNone);
|
sl@0
|
411 |
#endif
|
sl@0
|
412 |
|
sl@0
|
413 |
__UHEAP_MARKEND;
|
sl@0
|
414 |
}
|
sl@0
|
415 |
|
sl@0
|
416 |
/**
|
sl@0
|
417 |
@SYMTestCaseID SYSLIB-ECOM-CT-1924
|
sl@0
|
418 |
@SYMTestCaseDesc Test that implementation on removable drive is unavailable
|
sl@0
|
419 |
after an uninstall occurs.
|
sl@0
|
420 |
@SYMTestPriority High
|
sl@0
|
421 |
@SYMTestActions Emulate uninstall.
|
sl@0
|
422 |
Call ListImplementations() and CreateImplementation()
|
sl@0
|
423 |
Check implementation is unavailable.
|
sl@0
|
424 |
@SYMTestExpectedResults The test must not fail.
|
sl@0
|
425 |
@SYMDEF PDEF090578
|
sl@0
|
426 |
*/
|
sl@0
|
427 |
LOCAL_C void TestPreUninstallL()
|
sl@0
|
428 |
{
|
sl@0
|
429 |
test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-1924 "));
|
sl@0
|
430 |
__UHEAP_MARK;
|
sl@0
|
431 |
|
sl@0
|
432 |
// Do uninstall
|
sl@0
|
433 |
DoPreUninstall();
|
sl@0
|
434 |
|
sl@0
|
435 |
// Test ListImplementations()
|
sl@0
|
436 |
TBool implListed = IsImplementationListedL();
|
sl@0
|
437 |
|
sl@0
|
438 |
// Check implementation
|
sl@0
|
439 |
// On the emulator RLibrary::GetInfo() always returns KErrNotFound for DLL's
|
sl@0
|
440 |
// on the X drive. Because of this the implementation will not be listed.
|
sl@0
|
441 |
//
|
sl@0
|
442 |
// On hardware ECOM uses RLoader::CheckLibraryHash() to determine if the hash
|
sl@0
|
443 |
// is available for the DLL. In this case there is no hash so the implementation is
|
sl@0
|
444 |
// not listed.
|
sl@0
|
445 |
test(!implListed);
|
sl@0
|
446 |
|
sl@0
|
447 |
// Test CreateImplementation()
|
sl@0
|
448 |
TInt implCreated = IsImplementationCreatedL();
|
sl@0
|
449 |
|
sl@0
|
450 |
// Check implementation
|
sl@0
|
451 |
// On the emulator RLibrary::GetInfo() always returns KErrNotFound for DLL's
|
sl@0
|
452 |
// on the X drive. Because of this the implementation will not be created.
|
sl@0
|
453 |
//
|
sl@0
|
454 |
// On hardware ECOM uses RLoader::CheckLibraryHash() to determine if the hash
|
sl@0
|
455 |
// is available for the DLL. In this case there is no hash so the implementation is
|
sl@0
|
456 |
// not created.
|
sl@0
|
457 |
test(implCreated == KErrNotFound);
|
sl@0
|
458 |
|
sl@0
|
459 |
DeletePlugins();
|
sl@0
|
460 |
__UHEAP_MARKEND;
|
sl@0
|
461 |
}
|
sl@0
|
462 |
|
sl@0
|
463 |
/**
|
sl@0
|
464 |
@SYMTestCaseID SYSLIB-ECOM-CT-1925
|
sl@0
|
465 |
@SYMTestCaseDesc Test that implementation on removable drive is unavailable
|
sl@0
|
466 |
if the hash is corrupted for the DLL.
|
sl@0
|
467 |
@SYMTestPriority High
|
sl@0
|
468 |
@SYMTestActions Emulate pre-install with a corrupted hash file.
|
sl@0
|
469 |
Call ListImplementations() and CreateImplementation()
|
sl@0
|
470 |
Check implementation is unavailable.
|
sl@0
|
471 |
@SYMTestExpectedResults The test must not fail.
|
sl@0
|
472 |
@SYMDEF PDEF090578
|
sl@0
|
473 |
*/
|
sl@0
|
474 |
LOCAL_C void TestCorruptHashL()
|
sl@0
|
475 |
{
|
sl@0
|
476 |
test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-1925 "));
|
sl@0
|
477 |
__UHEAP_MARK;
|
sl@0
|
478 |
|
sl@0
|
479 |
// Only copy plugins - during pre-install plugins exists before the install occurs
|
sl@0
|
480 |
CopyPlugins();
|
sl@0
|
481 |
|
sl@0
|
482 |
// Do pre install
|
sl@0
|
483 |
DoCorruptPreInstall();
|
sl@0
|
484 |
|
sl@0
|
485 |
// Test ListImplementations()
|
sl@0
|
486 |
TBool implListed = IsImplementationListedL();
|
sl@0
|
487 |
|
sl@0
|
488 |
// Check implementation
|
sl@0
|
489 |
// On the emulator RLibrary::GetInfo() always returns KErrNotFound for DLL's
|
sl@0
|
490 |
// on the X drive. Because of this the implementation will not be listed.
|
sl@0
|
491 |
//
|
sl@0
|
492 |
// On hardware ECOM uses RLoader::CheckLibraryHash() to determine if the hash
|
sl@0
|
493 |
// is available for the DLL. In this case the hash file is corrupted so the implementation is
|
sl@0
|
494 |
// not listed.
|
sl@0
|
495 |
test(!implListed);
|
sl@0
|
496 |
|
sl@0
|
497 |
// Test CreateImplementation()
|
sl@0
|
498 |
TInt implCreated = IsImplementationCreatedL();
|
sl@0
|
499 |
|
sl@0
|
500 |
// Check implementation
|
sl@0
|
501 |
// On the emulator RLibrary::GetInfo() always returns KErrNotFound for DLL's
|
sl@0
|
502 |
// on the X drive. Because of this the implementation will not be created.
|
sl@0
|
503 |
//
|
sl@0
|
504 |
// On hardware ECOM uses RLoader::CheckLibraryHash() to determine if the hash
|
sl@0
|
505 |
// is available for the DLL. In this case the hash file is corrupted so the implementation is
|
sl@0
|
506 |
// not created.
|
sl@0
|
507 |
test(implCreated == KErrNotFound);
|
sl@0
|
508 |
|
sl@0
|
509 |
DeletePlugins();
|
sl@0
|
510 |
DeleteHashFile();
|
sl@0
|
511 |
__UHEAP_MARKEND;
|
sl@0
|
512 |
}
|
sl@0
|
513 |
|
sl@0
|
514 |
/**
|
sl@0
|
515 |
@SYMTestCaseID SYSLIB-ECOM-CT-1926
|
sl@0
|
516 |
@SYMTestCaseDesc Test that implementation on removable drive is available
|
sl@0
|
517 |
when a full Install occurs exists.
|
sl@0
|
518 |
@SYMTestPriority High
|
sl@0
|
519 |
@SYMTestActions Copy plugins to removable drive.
|
sl@0
|
520 |
Emulate pre-install.
|
sl@0
|
521 |
Call ListImplementations() and CreateImplementation()
|
sl@0
|
522 |
Check implementation is available.
|
sl@0
|
523 |
@SYMTestExpectedResults The test must not fail.
|
sl@0
|
524 |
@SYMDEF PDEF090578
|
sl@0
|
525 |
*/
|
sl@0
|
526 |
LOCAL_C void TestFullInstallL()
|
sl@0
|
527 |
{
|
sl@0
|
528 |
test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-1926 "));
|
sl@0
|
529 |
__UHEAP_MARK;
|
sl@0
|
530 |
|
sl@0
|
531 |
// Only copy plugins - during pre-install plugins exists before the install occurs
|
sl@0
|
532 |
CopyPlugins();
|
sl@0
|
533 |
// Do install
|
sl@0
|
534 |
DoPreInstall();
|
sl@0
|
535 |
|
sl@0
|
536 |
// Test ListImplementations()
|
sl@0
|
537 |
TBool implListed = IsImplementationListedL();
|
sl@0
|
538 |
|
sl@0
|
539 |
// Test CreateImplementation()
|
sl@0
|
540 |
TInt implCreated = IsImplementationCreatedL();
|
sl@0
|
541 |
|
sl@0
|
542 |
#if defined(__WINSCW__)
|
sl@0
|
543 |
// On the emulator RLibrary::GetInfo() always returns KErrNotFound for DLL's
|
sl@0
|
544 |
// on the X drive. Because of this the implementation will not be listed and
|
sl@0
|
545 |
// the implementation will not be created.
|
sl@0
|
546 |
test(!implListed);
|
sl@0
|
547 |
test(implCreated == KErrNotFound);
|
sl@0
|
548 |
#else
|
sl@0
|
549 |
// On hardware ECOM uses RLoader::CheckLibraryHash() to determine if the hash
|
sl@0
|
550 |
// is available for the DLL. In this case there is a valid hash so the implementation is
|
sl@0
|
551 |
// listed and created.
|
sl@0
|
552 |
test(implListed);
|
sl@0
|
553 |
test(implCreated == KErrNone);
|
sl@0
|
554 |
#endif
|
sl@0
|
555 |
|
sl@0
|
556 |
__UHEAP_MARKEND;
|
sl@0
|
557 |
}
|
sl@0
|
558 |
/**
|
sl@0
|
559 |
@SYMTestCaseID SYSLIB-ECOM-CT-1927
|
sl@0
|
560 |
@SYMTestCaseDesc Test that implementation on removable drive is unavailable
|
sl@0
|
561 |
after an uninstall occurs.
|
sl@0
|
562 |
@SYMTestPriority High
|
sl@0
|
563 |
@SYMTestActions Emulate uninstall.
|
sl@0
|
564 |
Call ListImplementations() and CreateImplementation()
|
sl@0
|
565 |
Check implementation is unavailable.
|
sl@0
|
566 |
@SYMTestExpectedResults The test must not fail.
|
sl@0
|
567 |
@SYMDEF PDEF09057
|
sl@0
|
568 |
*/
|
sl@0
|
569 |
LOCAL_C void TestFullUninstallL()
|
sl@0
|
570 |
{
|
sl@0
|
571 |
test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-1927 "));
|
sl@0
|
572 |
__UHEAP_MARK;
|
sl@0
|
573 |
|
sl@0
|
574 |
//Clean up DLL on remove drive
|
sl@0
|
575 |
DeletePlugins();
|
sl@0
|
576 |
|
sl@0
|
577 |
//Clean up the hash file related the DLL
|
sl@0
|
578 |
DoPreUninstall();
|
sl@0
|
579 |
|
sl@0
|
580 |
// Test ListImplementations()
|
sl@0
|
581 |
TBool implListed = IsImplementationListedL();
|
sl@0
|
582 |
|
sl@0
|
583 |
// Check implementation
|
sl@0
|
584 |
// On the emulator RLibrary::GetInfo() always returns KErrNotFound for DLL's
|
sl@0
|
585 |
// on the X drive. Because of this the implementation will not be listed.
|
sl@0
|
586 |
//
|
sl@0
|
587 |
// On hardware ECOM uses RLoader::CheckLibraryHash() to determine if the hash
|
sl@0
|
588 |
// is available for the DLL. In this case there is no plugin and no hash so the implementation
|
sl@0
|
589 |
// is not listed.
|
sl@0
|
590 |
test(!implListed);
|
sl@0
|
591 |
|
sl@0
|
592 |
// Test CreateImplementation()
|
sl@0
|
593 |
TInt implCreated = IsImplementationCreatedL();
|
sl@0
|
594 |
// Check implementation
|
sl@0
|
595 |
// On the emulator RLibrary::GetInfo() always returns KErrNotFound for DLL's
|
sl@0
|
596 |
// on the X drive. Because of this the implementation will not be created.
|
sl@0
|
597 |
//
|
sl@0
|
598 |
// On hardware ECOM uses RLoader::CheckLibraryHash() to determine if the hash
|
sl@0
|
599 |
// is available for the DLL. In this case there is no plugins and no hash file so the
|
sl@0
|
600 |
// implementation is not created.
|
sl@0
|
601 |
test(implCreated == KErrNotFound);
|
sl@0
|
602 |
|
sl@0
|
603 |
__UHEAP_MARKEND;
|
sl@0
|
604 |
}
|
sl@0
|
605 |
|
sl@0
|
606 |
typedef void (*ClassFuncPtrL) (void);
|
sl@0
|
607 |
|
sl@0
|
608 |
/**
|
sl@0
|
609 |
Wrapper function to call all test functions
|
sl@0
|
610 |
|
sl@0
|
611 |
@param testFuncL pointer to test function
|
sl@0
|
612 |
@param aTestDesc test function name
|
sl@0
|
613 |
*/
|
sl@0
|
614 |
LOCAL_C void DoBasicTestL(ClassFuncPtrL testFuncL, const TDesC& aTestDesc)
|
sl@0
|
615 |
{
|
sl@0
|
616 |
test.Next(aTestDesc);
|
sl@0
|
617 |
|
sl@0
|
618 |
__UHEAP_MARK;
|
sl@0
|
619 |
// find out the number of open handles
|
sl@0
|
620 |
TInt startProcessHandleCount;
|
sl@0
|
621 |
TInt startThreadHandleCount;
|
sl@0
|
622 |
RThread().HandleCount(startProcessHandleCount, startThreadHandleCount);
|
sl@0
|
623 |
|
sl@0
|
624 |
//Call the test function
|
sl@0
|
625 |
(*testFuncL)();
|
sl@0
|
626 |
|
sl@0
|
627 |
// check that no handles have leaked
|
sl@0
|
628 |
TInt endProcessHandleCount;
|
sl@0
|
629 |
TInt endThreadHandleCount;
|
sl@0
|
630 |
RThread().HandleCount(endProcessHandleCount, endThreadHandleCount);
|
sl@0
|
631 |
|
sl@0
|
632 |
test(startThreadHandleCount == endThreadHandleCount);
|
sl@0
|
633 |
|
sl@0
|
634 |
__UHEAP_MARKEND;
|
sl@0
|
635 |
}
|
sl@0
|
636 |
|
sl@0
|
637 |
LOCAL_C void DoTestsL()
|
sl@0
|
638 |
{
|
sl@0
|
639 |
__UHEAP_MARK;
|
sl@0
|
640 |
|
sl@0
|
641 |
//If it is hardware and E: drive deosn't exist, don't run the test.
|
sl@0
|
642 |
#if (!defined(__WINSCW__))
|
sl@0
|
643 |
if(!TheFs.IsValidDrive(EDriveE))
|
sl@0
|
644 |
{
|
sl@0
|
645 |
test.Printf(_L("E: drive doesn't exist, the test won't be able to run \n"));
|
sl@0
|
646 |
return;
|
sl@0
|
647 |
}
|
sl@0
|
648 |
#endif
|
sl@0
|
649 |
|
sl@0
|
650 |
// Basic tests
|
sl@0
|
651 |
test.Next(_L("Basic Test Suite"));
|
sl@0
|
652 |
test.Start(_L("Basic Test Suite"));
|
sl@0
|
653 |
DoBasicTestL(&TestPreInstallL, _L("TestPreInstallL"));
|
sl@0
|
654 |
DoBasicTestL(&TestPreUninstallL, _L("TestPreUninstallL"));
|
sl@0
|
655 |
|
sl@0
|
656 |
DoBasicTestL(&TestFullInstallL, _L("TestFullInstallL"));
|
sl@0
|
657 |
DoBasicTestL(&TestFullUninstallL, _L("TestFullUninstallL"));
|
sl@0
|
658 |
|
sl@0
|
659 |
DoBasicTestL(&TestNoHashFileInstalledL, _L("TestNoHashFileInstalledL"));
|
sl@0
|
660 |
DoBasicTestL(&TestCorruptHashL, _L("TestCorruptHashL"));
|
sl@0
|
661 |
test.End();
|
sl@0
|
662 |
|
sl@0
|
663 |
__UHEAP_MARKEND;
|
sl@0
|
664 |
}
|
sl@0
|
665 |
|
sl@0
|
666 |
|
sl@0
|
667 |
//Initialise the Active Scheduler
|
sl@0
|
668 |
//
|
sl@0
|
669 |
LOCAL_C void SetupL()
|
sl@0
|
670 |
{
|
sl@0
|
671 |
// Construct and install the Active Scheduler. The Active Schedular is needed
|
sl@0
|
672 |
// by components used by this test as they are ActiveObjects.
|
sl@0
|
673 |
TheActiveScheduler = new(ELeave)CActiveScheduler;
|
sl@0
|
674 |
CActiveScheduler::Install(TheActiveScheduler);
|
sl@0
|
675 |
|
sl@0
|
676 |
// create hash files
|
sl@0
|
677 |
CreateTempHashFileL();
|
sl@0
|
678 |
CreateTempCorruptHashFileL();
|
sl@0
|
679 |
|
sl@0
|
680 |
//Define swinstall property
|
sl@0
|
681 |
PropertyManager::DefineProperty(KUidSystemCategory, KSAUidSoftwareInstallKeyValue,RProperty::EInt);
|
sl@0
|
682 |
|
sl@0
|
683 |
// Initialise swinstall property
|
sl@0
|
684 |
PropertyManager::SetProperty(KUidSystemCategory, KSAUidSoftwareInstallKeyValue, ESASwisNone);
|
sl@0
|
685 |
}
|
sl@0
|
686 |
|
sl@0
|
687 |
GLDEF_C TInt E32Main()
|
sl@0
|
688 |
{
|
sl@0
|
689 |
__UHEAP_MARK;
|
sl@0
|
690 |
|
sl@0
|
691 |
test.Printf(_L("\n"));
|
sl@0
|
692 |
test.Title();
|
sl@0
|
693 |
test.Start(_L("Hash Tests"));
|
sl@0
|
694 |
|
sl@0
|
695 |
TheTrapCleanup = CTrapCleanup::New();
|
sl@0
|
696 |
|
sl@0
|
697 |
//Delete swinstall property if it already exists
|
sl@0
|
698 |
PropertyManager::DeleteProperty(KUidSystemCategory, KSAUidSoftwareInstallKeyValue);
|
sl@0
|
699 |
|
sl@0
|
700 |
TInt err = TheFs.Connect();
|
sl@0
|
701 |
test(err == KErrNone);
|
sl@0
|
702 |
TRAP(err, SetupL());
|
sl@0
|
703 |
test(err == KErrNone);
|
sl@0
|
704 |
|
sl@0
|
705 |
|
sl@0
|
706 |
// Perform tests.
|
sl@0
|
707 |
TRAP(err,DoTestsL());
|
sl@0
|
708 |
test(err==KErrNone);
|
sl@0
|
709 |
|
sl@0
|
710 |
DeleteTempHashFileL();
|
sl@0
|
711 |
DeleteTempCorruptHashFileL();
|
sl@0
|
712 |
|
sl@0
|
713 |
//Delete swinstall property
|
sl@0
|
714 |
PropertyManager::DeleteProperty(KUidSystemCategory, KSAUidSoftwareInstallKeyValue);
|
sl@0
|
715 |
|
sl@0
|
716 |
#if !defined(__WINSCW__)
|
sl@0
|
717 |
DeleteRSCFolderOnDrive(EDriveE);
|
sl@0
|
718 |
#endif
|
sl@0
|
719 |
|
sl@0
|
720 |
delete TheActiveScheduler;
|
sl@0
|
721 |
TheFs.Close();
|
sl@0
|
722 |
delete TheTrapCleanup;
|
sl@0
|
723 |
|
sl@0
|
724 |
test.End();
|
sl@0
|
725 |
test.Close();
|
sl@0
|
726 |
|
sl@0
|
727 |
__UHEAP_MARKEND;
|
sl@0
|
728 |
return (KErrNone);
|
sl@0
|
729 |
}
|