First public contribution.
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;
20 const TUint8* KTestData=_S8("0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ");
21 const TInt KTestLength=36;
22 const TInt KTestTotal=KTestLength*(KTestLength+1);
23 const TPtrC8 KTestDes(KTestData,KTestLength);
24 const TInt KTestExpandSize=0x20;
25 const TInt KTestCopyExpandSize=17;
27 LOCAL_D CTrapCleanup *TheTrapCleanup;
28 LOCAL_D RTest test(_L("t_stormemstrm"));
29 LOCAL_D TUint8 TheBuf[KTestTotal+1];
32 // Test writing to a stream.
34 LOCAL_C void testWriteL(RWriteStream& aStream)
36 test.Next(_L("Writing..."));
37 for (TInt i=0;i<=KTestLength;++i)
39 aStream.WriteL(KTestDes,i);
40 aStream.WriteL(&KTestData[i],KTestLength-i);
45 // Test reading from a stream.
47 LOCAL_C void testReadL(RReadStream& aStream)
49 test.Next(_L("Reading..."));
50 for (TInt i=KTestLength;i>=0;--i)
52 TBuf8<KTestLength+1> buf;
54 test(buf.Length()==i);
56 aStream.ReadL(&buf[i],KTestLength-i);
57 buf.SetLength(KTestLength);
63 // Test skipping data on a stream.
65 LOCAL_C void testSkipL(RReadStream& aStream)
67 test.Next(_L("Skipping..."));
68 for (TInt i=0;i<=KTestLength;++i)
71 aStream.ReadL(KTestLength-i);
76 // Test a stream is at end-of-file.
78 LOCAL_C void testEofL(RReadStream& aStream)
80 test.Next(_L("At end"));
82 test(aStream.Source()->ReadL(&b,1)==0);
86 // Test copying from one stream to another.
88 LOCAL_C void testCopyL(RWriteStream& aWriteStream,RReadStream& aReadStream)
90 test.Next(_L("Copying"));
91 for (TInt i=KTestLength;i>=0;--i)
93 aWriteStream.WriteL(aReadStream,i);
94 aReadStream.ReadL(aWriteStream,KTestLength-i);
99 // Test writing to a memory stream.
101 LOCAL_C void testWriteL(TAny* aPtr)
103 test.Next(_L("Writing to constructed stream"));
104 RMemWriteStream out(aPtr,KTestTotal);
108 test.Next(_L("Writing one byte too many"));
109 TRAPD(r,out.WriteUint8L(0));
110 test(r==KErrOverflow);
113 test.Next(_L("Over-writing massively"));
114 out.Open(aPtr,KTestLength);
115 TRAP(r,testWriteL(out));
116 test(r==KErrOverflow);
117 out.Open((TUint8*)aPtr+KTestLength,KTestTotal-KTestLength);
118 TRAP(r,testWriteL(out));
119 test(r==KErrOverflow);
121 test.Next(_L("Writing to opened stream"));
122 out.Open(aPtr,KTestTotal);
127 // Test reading from a memory stream.
129 LOCAL_C void testReadL(const TAny* aPtr)
131 test.Next(_L("Reading from constructed stream"));
132 RMemReadStream in(KTestData,KTestLength);
133 TRAPD(r,testReadL(in));
138 test.Next(_L("Reading from opened stream"));
139 in.Open(aPtr,KTestTotal);
145 // Test skipping on a memory stream.
147 LOCAL_C void testSkipL(const TAny* aPtr)
149 test.Next(_L("Skipping using small transfers"));
150 RMemReadStream in(aPtr,KTestTotal);
155 test.Next(_L("Skipping using a single big transfer"));
156 in.Open(aPtr,KTestTotal);
157 in.ReadL(KTestTotal);
162 // Test copying memory streams.
164 LOCAL_C void testCopyL(TAny* aPtr)
166 test.Next(_L("Copying using small transfers"));
167 TUint8 buf[KTestTotal];
168 RMemReadStream in(KTestData,KTestLength);
169 RMemWriteStream out(buf,KTestTotal);
170 TRAPD(r,testCopyL(out,in));
173 in.Open(aPtr,KTestTotal);
174 TRAP(r,testCopyL(out,in));
175 test(r==KErrOverflow);
176 in.Open(buf,KTestTotal);
179 in.Open(buf,KTestTotal);
180 out.Open(aPtr,KTestTotal);
185 in.Open(aPtr,KTestTotal);
190 test.Next(_L("Copying using a single big transfer"));
191 Mem::FillZ(buf,KTestTotal);
192 in.Open(KTestData,KTestLength);
193 out.Open(buf,KTestTotal);
194 TRAP(r,in.ReadL(out,KTestTotal));
197 in.Open(aPtr,KTestTotal);
198 TRAP(r,out.WriteL(in,KTestTotal));
199 test(r==KErrOverflow);
200 in.Open(buf,KTestTotal);
203 in.Open(buf,KTestTotal);
204 out.Open(aPtr,KTestTotal);
205 in.ReadL(out,KTestTotal);
209 in.Open(aPtr,KTestTotal);
214 test.Next(_L("Copying until end of file"));
215 Mem::FillZ(buf,KTestTotal);
216 in.Open(KTestData,KTestLength);
217 out.Open(buf,KTestTotal);
220 in.Open(aPtr,KTestTotal);
221 TRAP(r,in.ReadL(out));
222 test(r==KErrOverflow);
223 in.Open(buf,KTestTotal);
226 in.Open(buf,KTestTotal);
227 out.Open(aPtr,KTestTotal);
233 in.Open(aPtr,KTestTotal);
240 // Test writing to a descriptor stream.
242 LOCAL_C void testWriteL(TDes8& aDes)
244 test.Next(_L("Writing to constructed stream"));
245 RDesWriteStream out(aDes);
248 test.Next(_L("Writing one byte too many"));
249 TRAPD(r,out.WriteUint8L(0));
250 test(r==KErrOverflow);
253 test.Next(_L("Over-writing massively"));
254 TPtr8 ptr((TUint8*)aDes.Ptr(),KTestLength);
256 TRAP(r,testWriteL(out));
257 test(r==KErrOverflow);
258 ptr.Set((TUint8*)aDes.Ptr()+KTestLength,KTestLength,KTestTotal-KTestLength);
260 TRAP(r,testWriteL(out));
261 test(r==KErrOverflow);
263 test.Next(_L("Writing to opened stream"));
270 // Test reading from a descriptor stream.
272 LOCAL_C void testReadL(const TDesC8& aDes)
274 test.Next(_L("Reading from constructed stream"));
275 RDesReadStream in(KTestDes);
276 TRAPD(r,testReadL(in));
281 test.Next(_L("Reading from opened stream"));
288 // Test skipping on a descriptor stream.
290 LOCAL_C void testSkipL(const TDesC8& aDes)
292 test.Next(_L("Skipping using small transfers"));
293 RDesReadStream in(aDes);
298 test.Next(_L("Skipping using a single big transfer"));
300 in.ReadL(KTestTotal);
305 // Test copying descriptor streams.
307 LOCAL_C void testCopyL(TDes8& aDes)
309 test.Next(_L("Copying using small transfers"));
310 TBuf8<KTestTotal> buf;
311 RDesReadStream in(KTestDes);
312 RDesWriteStream out(buf);
313 TRAPD(r,testCopyL(out,in));
317 TRAP(r,testCopyL(out,in));
318 test(r==KErrOverflow);
335 test.Next(_L("Copying using a single big transfer"));
339 TRAP(r,in.ReadL(out,KTestTotal));
343 TRAP(r,out.WriteL(in,KTestTotal));
344 test(r==KErrOverflow);
351 in.ReadL(out,KTestTotal);
360 test.Next(_L("Copying until end of file"));
367 TRAP(r,in.ReadL(out));
368 test(r==KErrOverflow);
387 // Test writing to a buffer stream.
389 LOCAL_C void testWriteL(CBufBase& aBuf)
391 test.Next(_L("Writing to constructed stream"));
392 RBufWriteStream out(aBuf);
396 test.Next(_L("Writing to opened stream"));
397 out.Open(aBuf,KTestLength);
400 test.Next(_L("Writing to inserting stream"));
401 out.Insert(aBuf,KTestLength);
407 test.Next(_L("Writing to appending stream"));
411 test.Next(_L("Writing to truncating stream"));
412 out.Truncate(aBuf,KTestLength);
421 // Test reading from a buffer stream.
423 LOCAL_C void testReadL(const CBufBase& aBuf)
425 test.Next(_L("Reading from constructed stream"));
426 RBufReadStream in(aBuf,KTestLength);
427 TRAPD(r,testReadL(in));
432 test.Next(_L("Reading from opened stream"));
439 // Test skipping on a buffer stream.
441 LOCAL_C void testSkipL(const CBufBase& aBuf)
443 test.Next(_L("Skipping using small transfers"));
444 RBufReadStream in(aBuf);
449 test.Next(_L("Skipping using a single big transfer"));
451 in.ReadL(KTestTotal);
457 // Test copying buffer streams.
459 LOCAL_C void testCopyL(CBufBase& aBuf)
461 test.Next(_L("Copying using small transfers"));
463 TRAPD(r,buf=CBufFlat::NewL(KTestCopyExpandSize));
465 test.Panic(_L("Allocating buffer"));
466 RBufReadStream in(aBuf);
467 RBufWriteStream out(*buf);
468 TRAP(r,testCopyL(out,in));
471 in.Open(aBuf,KTestTotal-2*KTestLength);
472 TRAP(r,testCopyL(out,in));
485 TRAP(r,buf=CBufSeg::NewL(KTestCopyExpandSize));
487 test.Panic(_L("Allocating buffer"));
504 test.Next(_L("Copying using a single big transfer"));
506 out.Truncate(*buf,KTestLength);
507 TRAP(r,in.ReadL(out,KTestTotal+KTestLength));
510 in.Open(aBuf,KTestTotal);
511 TRAP(r,out.WriteL(in,KTestTotal));
517 in.ReadL(KTestLength);
520 TRAP(r,buf=CBufFlat::NewL(KTestExpandSize));
522 test.Panic(_L("Allocating buffer"));
530 in.ReadL(out,KTestTotal);
539 test.Next(_L("Copying until end of file"));
540 in.Open(aBuf,KTestLength);
544 in.Open(aBuf,KTestTotal-KTestLength);
552 TRAP(r,buf=CBufSeg::NewL(KTestExpandSize));
554 test.Panic(_L("Allocating buffer"));
574 @SYMTestCaseID SYSLIB-STORE-CT-1173
575 @SYMTestCaseDesc Tests for defect number FER56EJNS
576 @SYMTestPriority High
577 @SYMTestActions Tests for MStreamBuf::SizeL() function returning zero length.
578 @SYMTestExpectedResults Test must not fail
581 LOCAL_C void test_defect_FER_56EJNS()
584 test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1173 "));
585 // don't replace p with TPtrC8() because gcc interprets it as a function declaration.
588 TRAPD(r,sz=s.Source()->SizeL());
594 @SYMTestCaseID SYSLIB-STORE-CT-1174
595 @SYMTestCaseDesc Memory streams test
596 @SYMTestPriority High
597 @SYMTestActions Tests for writing,reading,skipping and copying on memory streams operations
598 @SYMTestExpectedResults Test must not fail
601 LOCAL_C void testMemL()
603 test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1174 Test memory streams "));
604 Mem::Fill(TheBuf,KTestTotal,'|');
605 TheBuf[KTestTotal]=KMaxTUint8;
610 test(TheBuf[KTestTotal]==KMaxTUint8);
614 @SYMTestCaseID SYSLIB-STORE-CT-1175
615 @SYMTestCaseDesc Tests for read,write,copy operations on descriptor streams buffer
616 @SYMTestPriority High
617 @SYMTestActions Test for writing,reading,skipping and copying on descriptor streams operations
618 @SYMTestExpectedResults Test must not fail
621 LOCAL_C void testDesL()
623 test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1175 Test descriptor streams "));
624 Mem::Fill(TheBuf,KTestTotal,'|');
625 TheBuf[KTestTotal]=KMaxTUint8;
626 TPtr8 des(TheBuf,KTestTotal);
628 test(des.Length()==KTestTotal);
631 des.SetLength(KTestTotal-KTestLength+1);
633 test(des.Length()==KTestTotal);
634 test(TheBuf[KTestTotal]==KMaxTUint8);
638 @SYMTestCaseID SYSLIB-STORE-CT-1176
639 @SYMTestCaseDesc Buffer streaming test
640 @SYMTestPriority High
641 @SYMTestActions Tests by writing,reading,skipping and copying on buffer streams
642 Tests for panic during creation of a new buffer
643 @SYMTestExpectedResults Test must not fail
646 LOCAL_C void testBufL()
648 test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1176 Test buffer streams "));
650 TRAPD(r,buf=CBufFlat::NewL(KTestExpandSize));
652 test.Panic(_L("Allocating buffer"));
654 test(buf->Size()==KTestTotal);
657 buf->ResizeL(KTestTotal-KTestLength);
659 test(buf->Size()==KTestTotal);
662 TRAP(r,buf=CBufSeg::NewL(KTestExpandSize));
664 test.Panic(_L("Allocating buffer"));
666 test(buf->Size()==KTestTotal);
669 buf->ResizeL(KTestTotal-KTestLength);
671 test(buf->Size()==KTestTotal);
676 DEF038720 - RBufReadStream Close/Re-Open doesn't return to initial open state
678 @SYMTestCaseID SYSLIB-STORE-CT-1177
679 @SYMTestCaseDesc Tests for defect number DEF038720
680 RBufReadStream Close/Re-Open doesn't return to initial open state
681 @SYMTestPriority High
682 @SYMTestActions Write to buffer stream and read back,asserts if any problem while reading the buffer
683 @SYMTestExpectedResults Test must not fail
686 LOCAL_C void test_DEF038720L()
688 test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1177 "));
689 CBufFlat* buf = CBufFlat::NewL(0x20);
690 CleanupStack::PushL(buf);
691 buf->ExpandL(0, 0x20);
693 RBufWriteStream writeStream(*buf);
695 writeStream.WriteInt32L(1);
696 CleanupStack::PopAndDestroy(&writeStream);
699 RBufReadStream readStream;
700 for(TInt i=0; i<2; i++)
702 readStream.Open(*buf);
704 temp = readStream.ReadInt32L();
705 __ASSERT_ALWAYS(temp==1, User::Invariant()); //Fails here 2nd time, if the defect is not fixed
706 CleanupStack::PopAndDestroy(&readStream);
709 CleanupStack::PopAndDestroy(buf);
713 // Initialise the cleanup stack.
715 LOCAL_C void setupCleanup()
717 TheTrapCleanup=CTrapCleanup::New();
718 test(TheTrapCleanup!=NULL);
721 for (TInt i=KTestCleanupStack;i>0;i--)\
722 CleanupStack::PushL((TAny*)1);\
724 CleanupStack::Pop(KTestCleanupStack);\
730 // Test memory-based streams.
732 GLDEF_C TInt E32Main()
738 test.Start(_L("Test memory-based streams"));
746 test.Next(_L("Test defect fixes"));
747 test_defect_FER_56EJNS();
748 TRAP(r,::test_DEF038720L());
753 delete TheTrapCleanup;