Update contrib.
1 // Copyright (c) 1998-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.
19 const TInt KTestCleanupStack=0x20;
21 // This is a path specification and should not be used as is
22 _LIT(KFileLocationSpec, "Z:\\STOR-TST\\T_FBUF.DAT");
23 const TUint8* KTestData=_S8("0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ");
24 const TUint8* KTestDataLong=_S8("0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ0");
25 const TUint8* KTestData10Chars = _S8("0123456789");
27 const TInt KTestLength=36;
28 const TInt KTestTotal=KTestLength*(KTestLength+1);
29 const TPtrC8 KTestDes(KTestData,KTestLength);
30 const TPtrC8 KTestDesLong(KTestDataLong,KTestLength+1);
31 const TInt KTestFileBufSize=7;
32 const TInt KTestWriteBufSize=5;
33 const TInt KTestReadBufSize=3;
34 const TInt KTestSkipBufSize=2;
35 const TInt KTestCopyBufSize=1;
37 LOCAL_D CTrapCleanup* TheTrapCleanup;
38 LOCAL_D RTest test(_L("t_storfbuf"));
40 LOCAL_D TFileName TheTempFile;
43 @SYMTestCaseID SYSLIB-STORE-CT-1136
44 @SYMTestCaseDesc Writing to a stream buffer test
46 @SYMTestActions Tests for RWriteStream::WriteL() function
47 @SYMTestExpectedResults Test must not fail
50 LOCAL_C void testWriteL(RWriteStream& aStream)
52 test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1136 Writing... "));
53 for (TInt i=0;i<=KTestLength;++i)
55 aStream.WriteL(KTestDes,i);
56 aStream.WriteL(&KTestData[i],KTestLength-i);
61 @SYMTestCaseID SYSLIB-STORE-CT-1137
62 @SYMTestCaseDesc Reading from a stream buffer test
64 @SYMTestActions Tests for RReadStream::ReadL() function
65 @SYMTestExpectedResults Test must not fail
68 LOCAL_C void testReadL(RReadStream& aStream)
70 test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1137 Reading... "));
71 for (TInt i=KTestLength;i>=0;--i)
73 TBuf8<KTestLength+1> buf;
75 test(buf.Length()==i);
77 aStream.ReadL(&buf[i],KTestLength-i);
78 buf.SetLength(KTestLength);
84 @SYMTestCaseID SYSLIB-STORE-CT-1138
85 @SYMTestCaseDesc Skipping data on a stream buffer test.
87 @SYMTestActions Tests skipping data while reading from a stream
88 @SYMTestExpectedResults Test must not fail
91 LOCAL_C void testSkipL(RReadStream& aStream)
93 test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1138 Skipping... "));
94 for (TInt i=0;i<=KTestLength;++i)
97 aStream.ReadL(KTestLength-i);
102 @SYMTestCaseID SYSLIB-STORE-CT-1139
103 @SYMTestCaseDesc Tests a stream buffer is at end-of-file.
104 @SYMTestPriority High
105 @SYMTestActions Tests for end of file while reading from a stream buffer
106 @SYMTestExpectedResults Test must not fail
109 LOCAL_C void testEofL(RReadStream& aStream)
111 test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1139 At end "));
113 test(aStream.Source()->ReadL(&b,1)==0);
117 // Test copying from one stream to another.
119 LOCAL_C void testCopyL(RWriteStream& aWriteStream,RReadStream& aReadStream)
121 test.Next(_L("Copying"));
122 for (TInt i=KTestLength;i>=0;--i)
124 aWriteStream.WriteL(aReadStream,i);
125 aReadStream.ReadL(aWriteStream,KTestLength-i);
130 // Test writing to a stream buffer.
132 LOCAL_C void testWriteL(MStreamBuf& aBuf)
134 RWriteStream stream(&aBuf);
139 // Test reading from a stream buffer.
141 LOCAL_C void testReadL(MStreamBuf& aBuf)
143 RReadStream stream(&aBuf);
148 // Test skipping data on a stream buffer.
150 LOCAL_C void testSkipL(MStreamBuf& aBuf)
152 RReadStream stream(&aBuf);
157 // Test a stream buffer is at end-of-file.
159 LOCAL_C void testEofL(MStreamBuf& aBuf)
161 RReadStream stream(&aBuf);
166 // Test copying from one stream buffer to another.
168 LOCAL_C void testCopyL(MStreamBuf& aSink,MStreamBuf& aSource)
170 RWriteStream out(&aSink);
171 RReadStream in(&aSource);
175 @SYMTestCaseID PDS-STORE-CT-4027
176 @SYMTestCaseDesc Writing to a stream buffer test
177 @SYMTestPriority High
178 @SYMTestActions Validate the MStreamBuf Write API
179 @SYMTestExpectedResults Test must not fail
182 LOCAL_C void testStreamBufWriteL(MStreamBuf& aBuf)
184 test.Next(_L(" @SYMTestCaseID:PDS-STORE-CT-4027 Writing... "));
185 TRequestStatus status;
186 aBuf.Write(KTestDes,status);
187 User::WaitForRequest(status);
189 aBuf.SeekL(aBuf.EWrite,EStreamBeginning,0);
190 aBuf.WriteL(KTestDes,status);
191 User::WaitForRequest(status);
196 @SYMTestCaseID PDS-STORE-CT-4026
197 @SYMTestCaseDesc Reading from a stream buffer test
198 @SYMTestPriority High
199 @SYMTestActions Validate the MStreamBuf Read API
200 @SYMTestExpectedResults Test must not fail
203 LOCAL_C void testStreamBufReadL(MStreamBuf& aBuf)
205 test.Next(_L(" @SYMTestCaseID:PDS-STORE-CT-4026 Reading... "));
206 TRequestStatus status;
208 TBuf8<KTestLength+1> buf;
209 aBuf.Read(buf, KTestLength, status);
210 User::WaitForRequest(status);
211 test(buf.Length()==KTestLength);
214 aBuf.SeekL(aBuf.ERead,EStreamBeginning,0);
215 aBuf.ReadL(buf, status);
216 User::WaitForRequest(status);
217 test(buf.Length()== KTestLength+1);
218 test(buf==KTestDesLong);
220 aBuf.SeekL(aBuf.ERead,EStreamBeginning,0);
221 aBuf.Read(buf, status);
222 User::WaitForRequest(status);
223 test(buf.Length()== KTestLength+1);
224 test(buf==KTestDesLong);
228 @SYMTestCaseID SYSLIB-STORE-CT-1140
229 @SYMTestCaseDesc Write to a file buffer test.
230 @SYMTestPriority High
231 @SYMTestActions Tests for writing to an attached file,a replaced file,a temporary file,an opened file
232 Tests for replacing an existing file,test for deleting a file.
233 Tests for writing to a new file buffer after the deletion of old file.
234 @SYMTestExpectedResults Test must not fail
237 LOCAL_C void testWriteL()
239 test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1140 Writing to attached file "));
242 TDriveUnit drive(static_cast<TUint>(RFs::GetSystemDrive()));
244 parse.Set(drive.Name(), &KFileLocationSpec, NULL);
249 if (file.Replace(TheFs,parse.NameAndExt(),EFileWrite)!=KErrNone)
250 test.Panic(_L("Replacing file"));
251 RFileBuf rbuf(KTestWriteBufSize);
252 RFile file2 = file;//Keep a copy in file2, because Attach() will clear the passed RFile parameter
255 rbuf.Reattach(file2);
256 testStreamBufWriteL(rbuf);
259 if (TheFs.Delete(parse.NameAndExt())!=KErrNone)
260 test.Panic(_L("Deleting file"));
262 if (file.Replace(TheFs,parse.NameAndExt(),EFileWrite)!=KErrNone)
263 test.Panic(_L("Replacing file"));
264 RFileBuf buf(KTestWriteBufSize);
268 buf.Reset(KTestFileBufSize);
269 test(buf.SizeL()==KTestTotal);
270 test(buf.SeekL(buf.EWrite,EStreamBeginning,KTestTotal/2)==KStreamBeginning+KTestTotal/2);
274 test.Next(_L("Writing to replaced file"));
275 test(buf.Replace(TheFs,parse.NameAndExt(),EFileWrite)==KErrNone);
281 test.Next(_L("Writing to temp file"));
282 test(buf.Temp(TheFs,parse.DriveAndPath(),TheTempFile,EFileWrite)==KErrNone);
288 test.Next(_L("Writing to opened file"));
289 test(buf.Open(TheFs,parse.NameAndExt(),EFileRead|EFileWrite)==KErrNone);
292 test.Next(_L("Failing to create existing file"));
293 test(buf.Create(TheFs,TheTempFile,EFileWrite)==KErrAlreadyExists);
295 test.Next(_L("Write overtaking read mark"));
296 test(buf.SeekL(buf.ERead,KTestLength)==KStreamBeginning+KTestLength);
297 RReadStream in(&buf);
299 test(buf.TellL(buf.ERead)==KStreamBeginning+KTestLength+1);
300 test(buf.SeekL(buf.EWrite,EStreamBeginning)==KStreamBeginning);
303 if (TheFs.Delete(parse.NameAndExt())!=KErrNone)
304 test.Panic(_L("Deleting file"));
306 test.Next(_L("Writing to created file"));
307 test(buf.Create(TheFs,parse.NameAndExt(),EFileWrite)==KErrNone);
315 @SYMTestCaseID SYSLIB-STORE-CT-1141
316 @SYMTestCaseDesc Reading from a file buffer test.
317 @SYMTestPriority High
318 @SYMTestActions Tests for reading from a file buffer.Tests for panic while opening a file.
319 Tests for reading from opened file,and a temporary file.
320 @SYMTestExpectedResults Test must not fail
323 LOCAL_C void testReadL()
325 test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1141 Reading from attached file "));
327 TParsePtrC parse(KFileLocationSpec);
330 if (file.Open(TheFs,parse.NameAndExt(),EFileRead)!=KErrNone)
331 test.Panic(_L("Opening file"));
332 RFileBuf buf(KTestReadBufSize);
334 test(buf.SeekL(buf.ERead,EStreamBeginning,KTestTotal)==KStreamBeginning+KTestTotal);
336 test(buf.SeekL(buf.ERead,EStreamBeginning)==KStreamBeginning);
340 buf.Reset(KTestFileBufSize);
341 buf.SeekL(buf.ERead|buf.EWrite,KStreamBeginning);
345 buf.Reset(KTestFileBufSize);
346 buf.SeekL(buf.ERead|buf.EWrite,KStreamBeginning);
347 testStreamBufReadL(buf);
351 test.Next(_L("Reading from opened file"));
352 test(buf.Open(TheFs,parse.NameAndExt(),EFileRead|EFileWrite)==KErrNone);
353 test(buf.SeekL(buf.ERead,EStreamEnd)==KStreamBeginning+KTestTotal);
355 test(buf.SeekL(buf.ERead,EStreamEnd,-KTestTotal)==KStreamBeginning);
359 test.Next(_L("Read overtaking write mark"));
360 test(buf.SeekL(buf.EWrite,KTestLength)==KStreamBeginning+KTestLength);
361 RWriteStream out(&buf);
362 out.WriteL(KTestData,1);
363 test(buf.TellL(buf.EWrite)==KStreamBeginning+KTestLength+1);
364 test(buf.SeekL(buf.ERead,EStreamBeginning)==KStreamBeginning);
369 test.Next(_L("Reading from temp file"));
370 test(buf.Open(TheFs,TheTempFile,EFileRead)==KErrNone);
371 test(buf.SeekL(buf.ERead,EStreamMark,KTestTotal)==KStreamBeginning+KTestTotal);
373 test(buf.SeekL(buf.ERead,-KTestTotal)==KStreamBeginning);
379 @SYMTestCaseID SYSLIB-STORE-CT-1142
380 @SYMTestCaseDesc Tests for skipping on a file buffer.
381 @SYMTestPriority High
382 @SYMTestActions Tests for skipping data while reading.Test for end of file error
383 @SYMTestExpectedResults Test must not fail
386 LOCAL_C void testSkipL()
388 test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1142 Skipping using small transfers "));
390 TParsePtrC parse(KFileLocationSpec);
392 RFileBuf buf(KTestSkipBufSize);
393 test(buf.Open(TheFs,parse.NameAndExt(),EFileRead)==KErrNone);
397 buf.Reset(KTestFileBufSize);
398 buf.SeekL(buf.ERead|buf.EWrite,KStreamBeginning);
403 test.Next(_L("Skipping using a single big transfer"));
404 test(buf.Open(TheFs,parse.NameAndExt(),EFileRead)==KErrNone);
405 RReadStream in(&buf);
406 in.ReadL(KTestTotal);
411 @SYMTestCaseID SYSLIB-STORE-CT-1143
412 @SYMTestCaseDesc Tests for copying within a single file buffer
413 @SYMTestPriority High
414 @SYMTestActions Tests for copying using a different buffer sizes.
415 @SYMTestExpectedResults Test must not fail
418 LOCAL_C void testCopyL()
420 test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1143 Copying using small transfers "));
422 TParsePtrC parse(KFileLocationSpec);
424 RFileBuf buf(KTestCopyBufSize);
425 test(buf.Open(TheFs,TheTempFile,EFileRead|EFileWrite)==KErrNone);
429 buf.Reset(KTestFileBufSize);
430 buf.SeekL(buf.ERead,KStreamBeginning);
432 buf.SeekL(buf.ERead,KStreamBeginning);
438 test.Next(_L("Copying using a single big transfer"));
439 test(buf.Open(TheFs,parse.NameAndExt(),EFileRead|EFileWrite)==KErrNone);
440 RWriteStream out(&buf);
441 RReadStream in(&buf);
442 in.ReadL(out,KTestTotal);
444 buf.SeekL(buf.ERead|buf.EWrite,KStreamBeginning);
445 out.WriteL(in,KTestTotal);
447 buf.SeekL(buf.ERead|buf.EWrite,KStreamBeginning);
452 test.Next(_L("Copying until end of file"));
453 test(buf.Open(TheFs,parse.NameAndExt(),EFileRead|EFileWrite)==KErrNone);
456 buf.SeekL(buf.ERead|buf.EWrite,KStreamBeginning);
459 buf.SeekL(buf.ERead|buf.EWrite,KStreamBeginning);
466 @SYMTestCaseID SYSLIB-STORE-UT-4005
467 @SYMTestCaseDesc DEF118202 - STORE component, RFileBuf, truncate, file position set incorrectly.
468 The test creates an RFileBuf object and writes 30 bytes to the underlying file then
469 commits. The file size is checked and should be 30 bytes.
470 Then the test writes to the file another 20 bytes, commits and sets the file size to
471 be 30 bytes. Then the test checks that the file size is really 30 bytes using
472 the RFielBuf::SizeL() function.
473 @SYMTestPriority High
474 @SYMTestActions DEF118202 - STORE component, RFileBuf, truncate, file position set incorrectly.
475 @SYMTestExpectedResults Test must not fail
478 LOCAL_C void DEF118202L()
480 test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-UT-4005 DEF118202 - STORE component, RFileBuf, truncate, file position set incorrectly "));
482 TParsePtrC parse(KFileLocationSpec);
485 CleanupClosePushL(buf);
486 if(buf.Replace(TheFs, parse.NameAndExt(), EFileWrite) != KErrNone)
487 test.Panic(_L("Replacing file"));
488 TInt size0 = buf.SizeL();
491 buf.WriteL(KTestData10Chars, 10);
492 buf.WriteL(KTestData10Chars, 10);
493 buf.WriteL(KTestData10Chars, 10);
495 TInt size1 = buf.SizeL();
497 buf.WriteL(KTestData10Chars, 10);
498 buf.WriteL(KTestData10Chars, 10);
503 TInt size2 = buf.SizeL();
505 CleanupStack::PopAndDestroy(&buf);
506 if (TheFs.Delete(parse.NameAndExt()) != KErrNone)
507 test.Panic(_L("Deleting file"));
509 test(size1 == size2);
513 @SYMTestCaseID PDS-STORE-CT-4017
514 @SYMTestCaseDesc Operation read / write
515 @SYMTestPriority High
516 @SYMTestActions Reading and writing RFileBuf using protected API.
517 @SYMTestExpectedResults Data written must equal data read.
521 class RFileBufNext: public RFileBuf
524 TInt DoReadL(TDes8& aDes,TInt aMaxLength,TRequestStatus& aStatus)
526 return RFileBuf::DoReadL(aDes,aMaxLength,aStatus);
528 TInt DoWriteL(const TDesC8& aDes,TInt aMaxLength,TRequestStatus& aStatus)
530 return RFileBuf::DoWriteL(aDes,aMaxLength,aStatus);
532 TInt Avail(TArea anArea) const
534 return TStreamBuf::Avail(anArea);
536 TUint8* End(TArea anArea) const
538 return TStreamBuf::End(anArea);
540 void SetEnd(TArea anArea,TUint8* anEnd)
542 TStreamBuf::SetEnd(anArea, anEnd);
546 LOCAL_C void testReadWriteL()
548 test.Next(_L("@SYMTestCaseID PDS-STORE-CT-4017"));
549 _LIT(KFileStore2, "c:\\STOR-TST\\T_FILESTORE.DAT");
550 _LIT8(KTestTextBuf, "Ala ma kota, Ola ma psa a osa lata.");
553 test( fs.Connect() == KErrNone );
554 fs.Delete(KFileStore2);
555 test( fbuf.Create(fs, KFileStore2, EFileWrite ) == KErrNone );
556 TRequestStatus status;
557 TRAPD(err, fbuf.DoWriteL(KTestTextBuf(),KTestTextBuf().Length(),status) );
558 test(err == KErrNone);
559 User::WaitForRequest(status);
560 TRAP(err, fbuf.SeekL(MStreamBuf::ERead|MStreamBuf::EWrite, 0) );
561 test(err == KErrNone);
563 fbuf.DoReadL(temp,temp.MaxLength(),status);
564 User::WaitForRequest(status);
565 test(temp.Compare(KTestTextBuf)==0);
567 TInt av = fbuf.Avail(MStreamBuf::ERead);
568 av = fbuf.Avail(MStreamBuf::EWrite);
569 TUint8* end = fbuf.End(MStreamBuf::ERead);
570 fbuf.SetEnd(MStreamBuf::ERead, end-1);
571 end = fbuf.End(MStreamBuf::EWrite);
572 fbuf.SetEnd(MStreamBuf::EWrite, end-1);
575 fs.Delete(KFileStore2);
580 // Prepare the test directory.
582 LOCAL_C void setupTestDirectory()
584 TInt r=TheFs.Connect();
587 TDriveUnit drive(static_cast<TUint>(RFs::GetSystemDrive()));
589 parse.Set(drive.Name(), &KFileLocationSpec, NULL);
591 r=TheFs.MkDir(parse.DriveAndPath());
592 test(r==KErrNone||r==KErrAlreadyExists);
593 r=TheFs.SetSessionPath(parse.DriveAndPath());
598 // Initialise the cleanup stack.
600 LOCAL_C void setupCleanup()
602 TheTrapCleanup=CTrapCleanup::New();
603 test(TheTrapCleanup!=NULL);
606 for (TInt i=KTestCleanupStack;i>0;i--)\
607 CleanupStack::PushL((TAny*)1);\
609 CleanupStack::Pop(KTestCleanupStack);\
614 LOCAL_C void DeleteDataFile(const TDesC& aFullName)
617 TInt err = fsSession.Connect();
621 if(fsSession.Entry(aFullName, entry) == KErrNone)
623 RDebug::Print(_L("Deleting \"%S\" file.\n"), &aFullName);
624 err = fsSession.SetAtt(aFullName, 0, KEntryAttReadOnly);
627 RDebug::Print(_L("Error %d changing \"%S\" file attributes.\n"), err, &aFullName);
629 err = fsSession.Delete(aFullName);
632 RDebug::Print(_L("Error %d deleting \"%S\" file.\n"), err, &aFullName);
639 RDebug::Print(_L("Error %d connecting file session. File: %S.\n"), err, &aFullName);
644 // Test file-based stream buffer.
646 GLDEF_C TInt E32Main()
649 setupTestDirectory();
653 test.Start(_L("Test file-based stream buffer"));
654 TRAPD(r,testWriteL());
662 TRAP(r, DEF118202L());
664 TRAP(r, testReadWriteL());
668 //deletion of data files must be before call to .End() - DEF047652
669 TDriveUnit drive(static_cast<TUint>(RFs::GetSystemDrive()));
671 parse.Set(drive.Name(), &KFileLocationSpec, NULL);
672 ::DeleteDataFile(parse.FullName());
678 delete TheTrapCleanup;
679 if (TheFs.Delete(TheTempFile)!=KErrNone)
680 test.Panic(_L("Deleting temp file"));