Update contrib.
1 // Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
18 #include <barsread2.h>
21 #include "BaArchiveImpl.h"
24 LOCAL_D RTest TheTest(_L("T_RSCARCHIVE"));
28 _LIT(KXipSpiFile,"z:\\system\\data\\Spi_ECom.SPI");
29 _LIT(KNonXipSpiFile, "c:\\system\\data\\Spi_ECom.SPI");
32 //----------------------UTILITY FUNCTIONS----------------------------------
33 LOCAL_C void CopyFileL(const TDesC& aFrom,const TDesC& aTo)
36 CFileMan* man=CFileMan::NewL(TheFs);
37 TInt r=man->Copy(aFrom,aTo, CFileMan::ERecurse);
39 User::LeaveIfError(r);
40 User::LeaveIfError(TheFs.SetAtt(aTo,0,KEntryAttReadOnly)); // clear RO
43 LOCAL_C void DeleteFile(const TDesC& aFileName)
45 // make sure the file is read/write
46 TInt err = TheFs.SetAtt(aFileName, 0, KEntryAttReadOnly);
49 RDebug::Print(_L("error changing attributes file = %d"),err);
52 err = BaflUtils::DeleteFile(TheFs, aFileName);
55 RDebug::Print(_L("error deleting file = %d"),err);
59 LOCAL_C void DeleteTestFile()
61 DeleteFile(KNonXipSpiFile);
63 DeleteFile(_L("c:\\system\\data\\spi_ecom-0-0.spi"));
64 DeleteFile(_L("c:\\system\\data\\spi_ecom-1-0.spi"));
66 DeleteFile(_L("c:\\system\\data\\ecom-1-0.spi"));
67 DeleteFile(_L("c:\\system\\data\\ecom-1-0.s02"));
68 DeleteFile(_L("c:\\system\\data\\ecom-2-0.spi"));
69 DeleteFile(_L("c:\\system\\data\\ecom-2-0.s02"));
71 DeleteFile(_L("c:\\system\\data\\cecom-0-0.spi"));
72 DeleteFile(_L("c:\\system\\data\\cecom-1-0.spi"));
74 DeleteFile(_L("c:\\system\\data\\spi_ecom_case-0-0.spi"));
75 DeleteFile(_L("c:\\system\\data\\spi_ecom_case-1-0.spi"));
78 LOCAL_C void CopyTestFile()
80 CopyFileL(KXipSpiFile,KNonXipSpiFile);
82 CopyFileL(_L("z:\\system\\data\\spi_ecom-0-0.spi"),_L("c:\\system\\data\\spi_ecom-0-0.spi"));
83 CopyFileL(_L("z:\\system\\data\\spi_ecom-1-0.spi"),_L("c:\\system\\data\\spi_ecom-1-0.spi"));
85 CopyFileL(_L("z:\\system\\data\\ecom-1-0.spi"),_L("c:\\system\\data\\ecom-1-0.spi"));
86 CopyFileL(_L("z:\\system\\data\\ecom-1-0.s02"),_L("c:\\system\\data\\ecom-1-0.s02"));
87 CopyFileL(_L("z:\\system\\data\\ecom-2-0.spi"),_L("c:\\system\\data\\ecom-2-0.spi"));
88 CopyFileL(_L("z:\\system\\data\\ecom-2-0.s02"),_L("c:\\system\\data\\ecom-2-0.s02"));
90 CopyFileL(_L("z:\\system\\data\\cecom-0-0.spi"),_L("c:\\system\\data\\cecom-0-0.spi"));
91 CopyFileL(_L("z:\\system\\data\\cecom-1-0.spi"),_L("c:\\system\\data\\cecom-1-0.spi"));
93 CopyFileL(_L("z:\\system\\data\\spi_ecom_case-0-0.spi"),_L("c:\\system\\data\\spi_ecom_case-0-0.spi"));
94 CopyFileL(_L("z:\\system\\data\\spi_ecom_case-1-0.spi"),_L("c:\\system\\data\\spi_ecom_case-1-0.spi"));
97 //Test macroses and functions
98 LOCAL_C void Check(TInt aValue, TInt aLine)
103 TheTest(EFalse, aLine);
107 #define TEST(arg) ::Check((arg), __LINE__)
109 //---------------------TEST CASE for RResoureArchive------------------
110 class RStaticPluginInfoTest
113 static void TestCase1L(const TDesC& aPath);
114 static void TestCase2L(const TDesC& aPath);
115 static void TestCase3L(const TDesC& aPath);
116 static void TestCase4L(const TDesC& aPath);
117 static void TestCase5L(const TDesC& aPath);
120 typedef void (*FunctionPtr)(const TDesC&);
122 static void DoBasicTestingL(FunctionPtr aFunctionPtr,const TDesC& aPath,const TDesC& aDescription)
124 TheTest.Next(aDescription);
126 TInt startProcessHandleCount;
127 TInt startThreadHandleCount;
128 RThread().HandleCount(startProcessHandleCount, startThreadHandleCount);
132 TInt endProcessHandleCount;
133 TInt endThreadHandleCount;
134 RThread().HandleCount(endProcessHandleCount, endThreadHandleCount);
136 TEST(startProcessHandleCount == endProcessHandleCount);
137 TEST(startThreadHandleCount == endThreadHandleCount);
143 static void DoOOMTestingL(FunctionPtr aFunctionPtr,const TDesC& aPath,const TDesC& aDescription)
145 TheTest.Next(aDescription);
151 // find out the number of open handles
152 TInt startProcessHandleCount;
153 TInt startThreadHandleCount;
154 RThread().HandleCount(startProcessHandleCount, startThreadHandleCount);
155 __UHEAP_SETFAIL(RHeap::EDeterministic, ++tryCount);
157 TRAP(err,aFunctionPtr(aPath));
159 __UHEAP_SETFAIL(RHeap::ENone, 0);
161 //Add ReleaseLanguage for Test4
162 BaflUtils::ReleaseIdealLanguage();
164 // check that no handles have leaked
165 TInt endProcessHandleCount;
166 TInt endThreadHandleCount;
167 RThread().HandleCount(endProcessHandleCount, endThreadHandleCount);
169 TEST(startProcessHandleCount == endProcessHandleCount);
170 TEST(startThreadHandleCount == endThreadHandleCount);
172 } while(err == KErrNoMemory);
173 RDebug::Print(_L("Success at count=%d\n"),tryCount);
177 @SYMTestCaseID SYSLIB-BAFL-UT-1698
178 @SYMTestCaseDesc Test for creating and deleting newly added constructor for CResourceArchiveImpl
179 @SYMTestPriority High
181 -create and delete CResourceArchiveImpl
182 -check for the resource file entry from multiple spi files
183 -and test for the replacing/hiding feature
185 -----------------------------------------------------------
186 spi_ecom-0-0.spi | spi_ecom-1-0.spi | Visible resources
187 -----------------------------------------------------------
188 Spi_EComRsc1 | hide Spi_EComRsc1 | Spi_EComRsc2(id=1)
189 Spi_EComRsc2 | Spi_EComRsc2 | Spi_EComRsc3(id=0)
190 Spi_EComRsc3 | Spi_EComRsc4 | Spi_EComRsc4(id=1)
191 @SYMTestExpectedResults The test must not fail.
194 void RStaticPluginInfoTest::TestCase1L(const TDesC& aPath)
196 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-UT-1698 "));
198 CResourceArchiveImpl* impl=CResourceArchiveImpl::NewL(TheFs,aPath,_L("Spi_ECom"));
201 //check and read resource entry
202 impl=CResourceArchiveImpl::NewL(TheFs,aPath,_L("Spi_ECom"));
203 CleanupStack::PushL(impl);
205 CResourceFile* rscFile=NULL;
207 while (impl->NextResourceExist())
209 TFileName expectedFile;
210 expectedFile.Append(aPath);
211 //test the rsc entry file association
212 if (count==0 || count==2)
214 expectedFile.Append(_L("spi_ecom-1-0.spi"));
215 TEST(impl->iRscList[count].iFileNamePtr.Compare(expectedFile)==0);
219 expectedFile.Append(_L("spi_ecom-0-0.spi"));
220 TEST(impl->iRscList[count].iFileNamePtr.Compare(expectedFile)==0);
223 rscFile=impl->NextL(rscName);
228 buf.AppendFormat(_L("Spi_EComRsc%d"),temp);
229 TEST(rscName->Compare(buf)==0);
238 TEST(!impl->NextResourceExist());
240 TEST(impl->NextResourceExist());
243 const TUid KEcomSpiFileTypeUid = {0x10205C2C};
244 TEST(impl->Type()==KEcomSpiFileTypeUid);
246 CleanupStack::PopAndDestroy();
251 @SYMTestCaseID SYSLIB-BAFL-CT-1695
252 @SYMTestCaseDesc Test that loading of multiple localised spis return a correct list
254 @SYMTestPriority High
255 @SYMTestActions Set different language downgrade path before using CResourceArchiveImpl
256 to open a path containing a mix of spi files. Check that the list returned when
257 calling NextL contains the expected resource files.
258 -------------------------------------------------------------------------------
259 Ecom-1-0.spi | Ecom-1-0.s02 | Ecom-2-0.spi | Ecom-2-0.s02 |DGP(1) | DGP(2-1)
260 ROFS(1) | (ROFS1) | (ROFS2) | (ROFS2) |
261 -------------------------------------------------------------------------------
262 A.RSC | A.R02 | B.RSC | Hide D.R02 |A.RSC(1) | A.R02(1)
263 B.RSC | D.R02 | | C.R02 |B.RSC(2) | B.RSC(2)
264 C.RSC | | | |C.RSC(1) | C.R02(2)
265 -------------------------------------------------------------------------------
266 @SYMTestExpectedResults The test must not fail.
269 void RStaticPluginInfoTest::TestCase2L(const TDesC& aPath)
271 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-1695 "));
272 //Language DownGradePath(1)
273 CResourceArchiveImpl* impl=CResourceArchiveImpl::NewL(TheFs,aPath,_L("ECom"));
274 CleanupStack::PushL(impl);
276 CResourceFile* rscFile=NULL;
278 while (impl->NextResourceExist())
280 TFileName expectedFile;
281 expectedFile.Append(aPath);
282 rscFile=impl->NextL(rscName);
285 TEST(rscName->Compare(_L("Spi_EComRscA"))==0);
286 //also testing the spi file association of the resource entry
287 expectedFile.Append(_L("ecom-1-0.spi"));
288 TEST(impl->iRscList[count].iFileNamePtr.Compare(expectedFile)==0);
292 TEST(rscName->Compare(_L("Spi_EComRscB"))==0);
293 expectedFile.Append(_L("ecom-2-0.spi"));
294 TEST(impl->iRscList[count].iFileNamePtr.Compare(expectedFile)==0);
298 TEST(rscName->Compare(_L("Spi_EComRscC"))==0);
299 expectedFile.Append(_L("ecom-1-0.spi"));
300 TEST(impl->iRscList[count].iFileNamePtr.Compare(expectedFile)==0);
309 CleanupStack::PopAndDestroy();
311 //Language DownGradePath(2-1)
312 User::LeaveIfError(BaflUtils::SetIdealLanguage(ELangFrench));
313 impl=CResourceArchiveImpl::NewL(TheFs,aPath,_L("ECom"));
314 CleanupStack::PushL(impl);
318 while (impl->NextResourceExist())
320 TFileName expectedFile;
321 expectedFile.Append(aPath);
322 rscFile=impl->NextL(rscName);
325 TEST(rscName->Compare(_L("Spi_EComRscA"))==0);
326 //also testing the spi file association of the resource entry
327 expectedFile.Append(_L("ecom-1-0.s02"));
328 TEST(impl->iRscList[count].iFileNamePtr.Compare(expectedFile)==0);
332 TEST(rscName->Compare(_L("Spi_EComRscB"))==0);
333 expectedFile.Append(_L("ecom-2-0.spi"));
334 TEST(impl->iRscList[count].iFileNamePtr.Compare(expectedFile)==0);
338 TEST(rscName->Compare(_L("Spi_EComRscC"))==0);
339 expectedFile.Append(_L("ecom-2-0.s02"));
340 TEST(impl->iRscList[count].iFileNamePtr.Compare(expectedFile)==0);
349 CleanupStack::PopAndDestroy();
351 BaflUtils::ReleaseIdealLanguage();
355 @SYMTestCaseID SYSLIB-BAFL-CT-1696
356 @SYMTestCaseDesc Test opening corrupt file and an inconsistent list of spi files
357 @SYMTestPriority High
358 @SYMTestActions Try to open an invalid/corrupt spi file. Try to open a list
359 of spi files where one of them has a different spi type, expect this to leave
361 @SYMTestExpectedResults The test must not fail.
364 //negative testing using cecom-0-0.spi(Corrupt) and cecom-1-0.spi(OK)
365 void RStaticPluginInfoTest::TestCase3L(const TDesC& aPath)
367 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-1696 "));
369 CResourceArchiveImpl* impl=NULL;
370 //Testing opening single corrupt spi file
372 filename.Append(aPath);
373 filename.Append(_L("cecom-0-0.spi"));
374 TRAP(err,impl=CResourceArchiveImpl::NewL(TheFs,filename));
375 if (err==KErrNoMemory)
376 User::LeaveNoMemory();
377 TEST(err==KErrCorrupt);
380 //Testing opening spi files where one is not a valid spi file
381 TRAP(err,impl=CResourceArchiveImpl::NewL(TheFs,aPath,_L("CECom")));
382 if (err==KErrNoMemory)
383 User::LeaveNoMemory();
384 TEST(err==KErrCorrupt);
389 @SYMTestCaseID SYSLIB-BAFL-CT-1697
390 @SYMTestCaseDesc Test opening file which does not exist
391 @SYMTestPriority High
392 @SYMTestActions Try to open spi files in a specified path but there
393 is no file that matches the specified pattern to look for.
394 @SYMTestExpectedResults The test must not fail.
397 void RStaticPluginInfoTest::TestCase4L(const TDesC& aPath)
399 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-1697 "));
401 TRAP(err,CResourceArchiveImpl* impl=CResourceArchiveImpl::NewL(TheFs,aPath,_L("SpiECom")));
402 if (err==KErrNoMemory)
403 User::LeaveNoMemory();
404 TEST(err==KErrNotFound);
408 @SYMTestCaseID SYSLIB-BAFL-UT-3473
409 @SYMTestCaseDesc Test that resource selection is case insensitive
410 @SYMTestPriority High
412 -create a CResourceArchiveImpl
413 -check the correct resource file entry is chosen from multiple spi files
414 ------------------------------------------------------------------
415 Spi_ECom_Case-0-0.spi | Spi_ECom_Case-1-0.spi | Visible resources
416 ------------------------------------------------------------------
417 Spi_EComRsc1 | Spi_ECOMRSC1 | Spi_ECOMRSC1(id=1)
418 Spi_ECOMRSC2 | Spi_EComRsc2 | Spi_EComRsc2(id=1)
419 ------------------------------------------------------------------
420 @SYMTestExpectedResults The overridden resource is chosen regardless of case.
422 @SYMUnit CResourceArchiveImpl::ProcessEntryL()
424 void RStaticPluginInfoTest::TestCase5L(const TDesC& aPath)
426 //check and read resource entry
427 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-UT-3473 "));
428 CResourceArchiveImpl* impl=CResourceArchiveImpl::NewL(TheFs,aPath,_L("Spi_ECom_Case"));
429 CleanupStack::PushL(impl);
431 CResourceFile* rscFile=NULL;
433 while (impl->NextResourceExist())
435 TFileName expectedFile;
436 expectedFile.Append(aPath);
437 //test that the overridden resource is always chosen
438 expectedFile.Append(_L("spi_ecom_case-1-0.spi"));
439 TEST(impl->iRscList[count].iFileNamePtr.CompareF(expectedFile)==0);
442 rscFile=impl->NextL(rscName);
453 CleanupStack::PopAndDestroy();
456 LOCAL_C void DoAllTestsL()
458 CleanupClosePushL(TheFs);
459 User::LeaveIfError(TheFs.Connect());
461 TheTest.Printf(_L("Copying SPI files to RAM\r\n"));
463 //Copying test spi file and individual rsc files that are included inside spi
467 DoBasicTestingL(RStaticPluginInfoTest::TestCase1L,_L("z:\\system\\data\\"),_L("Test Case 1 Basic Xip"));
468 DoBasicTestingL(RStaticPluginInfoTest::TestCase1L,_L("c:\\system\\data\\"),_L("Test Case 1 Basic Non-Xip"));
469 DoBasicTestingL(RStaticPluginInfoTest::TestCase2L,_L("z:\\system\\data\\"),_L("Test Case 2 Basic Xip"));
470 DoBasicTestingL(RStaticPluginInfoTest::TestCase2L,_L("c:\\system\\data\\"),_L("Test Case 2 Basic Non-Xip"));
471 DoBasicTestingL(RStaticPluginInfoTest::TestCase3L,_L("z:\\system\\data\\"),_L("Test Case 3 Basic Xip"));
472 DoBasicTestingL(RStaticPluginInfoTest::TestCase3L,_L("c:\\system\\data\\"),_L("Test Case 3 Basic Non-Xip"));
473 DoBasicTestingL(RStaticPluginInfoTest::TestCase4L,_L("z:\\system\\data\\"),_L("Test Case 4 Basic Xip"));
474 DoBasicTestingL(RStaticPluginInfoTest::TestCase4L,_L("c:\\system\\data\\"),_L("Test Case 4 Basic Non-Xip"));
475 DoBasicTestingL(RStaticPluginInfoTest::TestCase5L,_L("z:\\system\\data\\"),_L("Test Case 5 Basic Xip"));
476 DoBasicTestingL(RStaticPluginInfoTest::TestCase5L,_L("c:\\system\\data\\"),_L("Test Case 5 Basic Non-Xip"));
479 DoOOMTestingL(RStaticPluginInfoTest::TestCase1L,_L("z:\\system\\data\\"),_L("Test Case 1 OOM Xip"));
480 DoOOMTestingL(RStaticPluginInfoTest::TestCase1L,_L("c:\\system\\data\\"),_L("Test Case 1 OOM Non-Xip"));
481 DoOOMTestingL(RStaticPluginInfoTest::TestCase2L,_L("z:\\system\\data\\"),_L("Test Case 2 OOM Xip"));
482 DoOOMTestingL(RStaticPluginInfoTest::TestCase2L,_L("c:\\system\\data\\"),_L("Test Case 2 OOM Non-Xip"));
483 DoOOMTestingL(RStaticPluginInfoTest::TestCase3L,_L("z:\\system\\data\\"),_L("Test Case 3 OOM Xip"));
484 DoOOMTestingL(RStaticPluginInfoTest::TestCase3L,_L("c:\\system\\data\\"),_L("Test Case 3 OOM Non-Xip"));
485 DoOOMTestingL(RStaticPluginInfoTest::TestCase4L,_L("z:\\system\\data\\"),_L("Test Case 4 OOM Xip"));
486 DoOOMTestingL(RStaticPluginInfoTest::TestCase4L,_L("c:\\system\\data\\"),_L("Test Case 4 OOM Non-Xip"));
487 DoOOMTestingL(RStaticPluginInfoTest::TestCase5L,_L("z:\\system\\data\\"),_L("Test Case 5 OOM Xip"));
488 DoOOMTestingL(RStaticPluginInfoTest::TestCase5L,_L("c:\\system\\data\\"),_L("Test Case 5 OOM Non-Xip"));
490 //Clearing all the test files we have copied to C
493 CleanupStack::PopAndDestroy(1, &TheFs);
496 GLDEF_C TInt E32Main()
499 CTrapCleanup *cleanup=CTrapCleanup::New();
501 TheTest.Start(_L("Testing RResourceArchive internal class"));
502 TRAPD(err,DoAllTestsL());
503 TheTest.Printf(_L("Error code is %d\n"),err);