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.
14 // Tests RResourceFile/CResourceFile classes - panic/leave tests
22 #include <barsread2.h>
24 LOCAL_D RTest test(_L("T_RSCPANIC"));
26 _LIT8(KRscFileHeaderData, "0123456789ABCDEF");
27 _LIT(KPanicThread,"panicThread");
29 LOCAL_C void DeleteDataFile(const TDesC& aFullName)
31 // make sure the file is read/write
32 TInt err = TheFs.SetAtt(aFullName, 0, KEntryAttReadOnly);
35 RDebug::Print(_L("error changing attributes file = %d"),err);
38 err = BaflUtils::DeleteFile(TheFs, aFullName);
41 RDebug::Print(_L("error deleting file = %d"),err);
45 LOCAL_C TInt FileSizeL(const TDesC& aFileName)
48 User::LeaveIfError(file.Open(TheFs, aFileName, EFileRead));
49 CleanupClosePushL(file);
51 User::LeaveIfError(file.Size(size));
52 CleanupStack::PopAndDestroy(&file);
56 LOCAL_C void CreateFileFromL(const TDesC& aDestFileName, const TDesC& aSrcFileName)
61 CleanupClosePushL(destFile);
62 CleanupClosePushL(srcFile);
64 BaflUtils::DeleteFile(TheFs, aDestFileName);
65 User::LeaveIfError(destFile.Create(TheFs, aDestFileName, EFileRead | EFileWrite));
67 User::LeaveIfError(srcFile.Open(TheFs, aSrcFileName, EFileRead));
69 User::LeaveIfError(srcFile.Size(size));
70 HBufC8* buf = HBufC8::NewMaxLC(size);
71 TPtr8 ptr = buf->Des();
74 destFile.Write(KRscFileHeaderData);
77 CleanupStack::PopAndDestroy(buf);
78 CleanupStack::PopAndDestroy(&srcFile);
79 CleanupStack::PopAndDestroy(&destFile);
85 void TestOpenReadL(const TDesC &aTitle, const TDesC &aFileName, TUint aFileOffset, TUint aFileSize);
87 void TestReadL(CResourceFile* aRscFile);
90 void TestRsc::TestOpenReadL(const TDesC &aTitle, const TDesC &aFileName, TUint aFileOffset, TUint aFileSize)
93 CResourceFile* rsc = CResourceFile::NewL(TheFs, aFileName, aFileOffset, aFileSize);
94 CleanupStack::PushL(rsc);
96 CleanupStack::PopAndDestroy(rsc);
99 void TestRsc::TestReadL(CResourceFile* aRscFile)
101 RResourceReader resourceReader;
102 const TInt rsc_index[] = {2, 3, 4, 5, 6, 7, 8, 9};
103 for(TInt i=0;i<TInt(sizeof(rsc_index)/sizeof(rsc_index[0]));i++)
105 const TInt max_size = 10;
106 for(TInt j=0;j<max_size;j++)
108 resourceReader.OpenLC(aRscFile, rsc_index[i]);
109 TUint8 temp[max_size + 1];
110 resourceReader.ReadL(temp, j);
111 CleanupStack::PopAndDestroy(1, &resourceReader);
117 @SYMTestCaseID SYSLIB-BAFL-CT-0482
118 @SYMTestCaseDesc RResourceReader class test
119 @SYMTestPriority High
120 @SYMTestActions Tests for the opening of a file,should panic on invalid file
121 @SYMTestExpectedResults Tests must not fail
124 LOCAL_C TInt DoTestL(const TDesC& aFileName, TUint aFileOffset = 0, TUint aFileSize = 0)
126 test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0482 "));
129 buf.Format(_L("Testing with invalid file,C class,file=%S"), &aFileName);
130 TRAPD(err, t2.TestOpenReadL(buf, aFileName, aFileOffset, aFileSize));
134 TInt ThreadFunc(TAny*)
136 CTrapCleanup* cleanup=CTrapCleanup::New();
138 CResourceFile* rsc=NULL;
139 TRAPD(err,panicObj.TestReadL(rsc))//calls RResourceReader::OpenLC, with NULL as argument, hence panics
145 @SYMTestCaseID SYSLIB-BAFL-UT-1790
146 @SYMTestCaseDesc Testing panics on RResourceReader class(JustInTimeDebug is disabled)
148 @SYMTestActions Test that panics, when the condition inside __ASSERT is made false,by passing a NULL value to RResourceReader::OpenLC()
149 @SYMTestExpectedResults Tests must panic
154 test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-UT-1790 "));
155 TRequestStatus threadStatus;
159 jit = User::JustInTime();
160 User::SetJustInTime(EFalse);
162 rc = thread.Create(KPanicThread, ThreadFunc,
163 KDefaultStackSize, KMinHeapSize, KMinHeapSize*4,NULL);
164 test(KErrNone == rc);
166 thread.Logon(threadStatus);
168 User::WaitForRequest(threadStatus);
169 User::SetJustInTime(jit);
171 test(thread.ExitType() == EExitPanic);
176 @SYMTestCaseID SYSLIB-BAFL-CT-0483
177 @SYMTestCaseDesc Tests for the functionality of RResourceFile/CResourceFile
178 @SYMTestPriority High
179 @SYMTestActions Tests for creation,deleting,opening of a resource file,
180 should panic on invalid file.
181 @SYMTestExpectedResults Tests must not fail
184 LOCAL_C void DoTestsL()
186 test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0483 "));
187 CleanupClosePushL(TheFs);
188 User::LeaveIfError(TheFs.Connect());
190 const TPtrC inv_rsc_files[] =
192 _L("TRsc_Inv1.rsc") //Zero sized file
193 , _L("TRsc_Inv2.rsc")
194 , _L("TRsc_Inv3.rsc")
195 , _L("TRsc_Inv4.rsc")
196 , _L("TRsc_Inv5.rsc")
197 , _L("TRsc_Inv6.rsc")
198 , _L("TRsc_Inv7.rsc")
199 , _L("TRsc_Inv8.rsc")
200 , _L("TRsc_Inv9.rsc")
201 , _L("TRscCalypso_Inv10.RSC")
202 , _L("TRscCalypso_Inv11.RSC")
203 , _L("TRscCalypso_Inv12.RSC")
204 , _L("TRscComprU_Inv13.RSC")
205 , _L("TRscComprU_Inv14.RSC")
206 , _L("TRscComprU_Inv15.RSC")
207 , _L("TRscCalypso_Inv16.RSC")
208 , _L("TRscCalypso_Inv17.RSC")
209 , _L("TRscNotExist.RSC") //This file doesn't exist
213 TInt array_size = TInt(sizeof(inv_rsc_files)/sizeof(inv_rsc_files[0]));
216 _LIT(KZDir, "z:\\system\\data\\");
217 for(i=0;i<array_size;i++)
221 path += inv_rsc_files[i];
222 TInt err = DoTestL(path);
223 test(err != KErrNone);
228 for(i=0;i<array_size;i++)
232 src_path += inv_rsc_files[i];
236 dest_path += inv_rsc_files[i];
238 //Copy the file to C drive except the last which doesn't exist.
239 //Zero sized file doesn't exist on the assabet/lubbock platforms.
241 if(i > 0 && i < (array_size - 1))
243 err = BaflUtils::CopyFile(TheFs, src_path, dest_path);
244 test(err == KErrNone || err == KErrAlreadyExists);
247 err = DoTestL(dest_path);
248 DeleteDataFile(dest_path);
249 test(err != KErrNone);
252 //C drive - new rsc file format
253 for(i=1;i<(array_size-1);i++)
259 dest_path += _L("N_");
260 dest_path += inv_rsc_files[i];
263 src_path += inv_rsc_files[i];
265 CreateFileFromL(dest_path, src_path);
267 TInt err = DoTestL(dest_path, KRscFileHeaderData().Length(), FileSizeL(src_path));
268 DeleteDataFile(dest_path);
269 test(err != KErrNone);
272 //Tests that Raise panics
275 CleanupStack::PopAndDestroy(1, &TheFs);
278 GLDEF_C TInt E32Main()
281 CTrapCleanup* cleanup = CTrapCleanup::New();
283 test.Start(_L("Testing RResourceFile & CResourceFile panics/leaves"));
284 TRAPD(err, DoTestsL());
285 test.Printf(_L("Error code is %d\n"), err);
286 test(err == KErrNone);