Update contrib.
1 // Copyright (c) 1998-2010 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.
21 const TInt KTestCleanupStack=0x20;
22 const TInt KTestExpandSize=0x20;
23 const TInt KTestGranularity=0x02;
25 const TUint8 KMidTUint8=KMaxTUint8/2;
26 const TUint16 KMidTUint16=KMaxTUint16/2;
27 const TUint32 KMidTUint32=KMaxTUint32/2;
29 LOCAL_D CTrapCleanup* TheTrapCleanup;
30 LOCAL_D RTest test(_L("t_storconv"));
33 template <class T1,class T2>
34 void testCopyL(T1& aCopy,const T2& anOriginal)
37 TRAPD(r,buf=CBufSeg::NewL(KTestExpandSize));
39 test.Panic(_L("Allocating buffer"));
41 // Write anOriginal out to the buffer.
45 TRAP(r,out<<anOriginal);
47 TRAP(r,out.CommitL());
49 test.Panic(_L("Committing write stream"));
51 // Read anOriginal in from the buffer.
53 RBufReadStream in(*buf);
57 // See if it's consumed the lot.
60 test(in.Source()->ReadL(&b,1)==0);
66 // Clone aDes using memory-based streams.
69 HBufC8* testClone_HBufC8L(const T& aDes,TInt aMaxLength)
72 TRAPD(r,buf=CBufSeg::NewL(KTestExpandSize));
74 test.Panic(_L("Allocating buffer"));
76 // Write anOriginal out to the buffer.
82 TRAP(r,out.CommitL());
84 test.Panic(_L("Committing write stream"));
86 // Read anOriginal in from the buffer.
88 RBufReadStream in(*buf);
90 TRAP(r,clone=HBufC8::NewL(in,aMaxLength));
91 if (aMaxLength<aDes.Length())
92 test(r==KErrOverflow);
98 // See if it's consumed the lot.
101 test(in.Source()->ReadL(&b,1)==0);
109 // Clone aDes using memory-based streams.
112 HBufC16* testClone_HBufC16L(const T& aDes,TInt aMaxLength)
115 TRAPD(r,buf=CBufSeg::NewL(KTestExpandSize));
117 test.Panic(_L("Allocating buffer"));
119 // Write anOriginal out to the buffer.
125 TRAP(r,out.CommitL());
127 test.Panic(_L("Committing write stream"));
129 // Read anOriginal in from the buffer.
131 RBufReadStream in(*buf);
133 TRAP(r,clone=HBufC16::NewL(in,aMaxLength));
134 if (aMaxLength<aDes.Length())
135 test(r==KErrOverflow);
141 // See if it's consumed the lot.
144 test(in.Source()->ReadL(&b,1)==0);
152 // Clone aDes exactly using memory-based streams.
155 HBufC8* testClone_HBufC8L(const T& aDes)
157 return testClone_HBufC8L(aDes,aDes.Length());
161 // Clone aDes exactly using memory-based streams.
164 HBufC16* testClone_HBufC16L(const T& aDes)
166 return testClone_HBufC16L(aDes,aDes.Length());
170 @SYMTestCaseID SYSLIB-STORE-CT-1207
171 @SYMTestCaseDesc Streaming signed integers test
172 @SYMTestPriority High
173 @SYMTestActions Tests for streaming 8,16,32,64 bit signed integers.
174 @SYMTestExpectedResults Test must not fail
177 LOCAL_C void testIntL()
179 test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1207 Streaming TInt8 "));
181 testCopyL(int8,TInt8(KMinTInt8));
182 test(int8==KMinTInt8);
183 testCopyL(int8,TInt8(KMinTInt8+1));
184 test(int8==KMinTInt8+1);
185 testCopyL(int8,TInt8(-2));
187 testCopyL(int8,TInt8(-1));
189 testCopyL(int8,TInt8(0));
191 testCopyL(int8,TInt8(1));
193 testCopyL(int8,TInt8(2));
195 testCopyL(int8,TInt8(KMaxTInt8-1));
196 test(int8==KMaxTInt8-1);
197 testCopyL(int8,TInt8(KMaxTInt8));
198 test(int8==KMaxTInt8);
200 test.Next(_L("Streaming TInt16"));
202 testCopyL(int16,TInt16(KMinTInt16));
203 test(int16==KMinTInt16);
204 testCopyL(int16,TInt16(KMinTInt16+1));
205 test(int16==KMinTInt16+1);
206 testCopyL(int16,TInt16(-2));
208 testCopyL(int16,TInt16(-1));
210 testCopyL(int16,TInt16(0));
212 testCopyL(int16,TInt16(1));
214 testCopyL(int16,TInt16(2));
216 testCopyL(int16,TInt16(KMaxTInt16-1));
217 test(int16==KMaxTInt16-1);
218 testCopyL(int16,TInt16(KMaxTInt16));
219 test(int16==KMaxTInt16);
221 test.Next(_L("Streaming TInt32"));
223 testCopyL(int32,TInt32(KMinTInt32));
224 test(int32==KMinTInt32);
225 testCopyL(int32,TInt32(KMinTInt32+1));
226 test(int32==KMinTInt32+1);
227 testCopyL(int32,TInt32(-2));
229 testCopyL(int32,TInt32(-1));
231 testCopyL(int32,TInt32(0));
233 testCopyL(int32,TInt32(1));
235 testCopyL(int32,TInt32(2));
237 testCopyL(int32,TInt32(KMaxTInt32-1));
238 test(int32==KMaxTInt32-1);
239 testCopyL(int32,TInt32(KMaxTInt32));
240 test(int32==KMaxTInt32);
242 test.Next(_L("Streaming TInt64"));
244 testCopyL(int64,KMinTInt64);
245 test(int64==KMinTInt64);
246 testCopyL(int64,KMinTInt64+1);
247 test(int64==KMinTInt64+1);
248 testCopyL(int64,TInt64(-2));
250 testCopyL(int64,TInt64(-1));
252 testCopyL(int64,TInt64(0));
254 testCopyL(int64,TInt64(1));
256 testCopyL(int64,TInt64(2));
258 testCopyL(int64,KMaxTInt64-1);
259 test(int64==KMaxTInt64-1);
260 testCopyL(int64,KMaxTInt64);
261 test(int64==KMaxTInt64);
265 @SYMTestCaseID SYSLIB-STORE-CT-1208
266 @SYMTestCaseDesc Streaming unsigned integers test
267 @SYMTestPriority High
268 @SYMTestActions Tests for streaming 8,16,32 bit unsigned integers.
269 @SYMTestExpectedResults Test must not fail
272 LOCAL_C void testUintL()
274 test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1208 Streaming TUint8 "));
275 TUint8 uint8=KMidTUint8;
276 testCopyL(uint8,TUint8(0));
278 testCopyL(uint8,TUint8(1));
280 testCopyL(uint8,TUint8(KMidTUint8-2));
281 test(uint8==KMidTUint8-2);
282 testCopyL(uint8,TUint8(KMidTUint8-1));
283 test(uint8==KMidTUint8-1);
284 testCopyL(uint8,TUint8(KMidTUint8));
285 test(uint8==KMidTUint8);
286 testCopyL(uint8,TUint8(KMidTUint8+1));
287 test(uint8==KMidTUint8+1);
288 testCopyL(uint8,TUint8(KMidTUint8+2));
289 test(uint8==KMidTUint8+2);
290 testCopyL(uint8,TUint8(KMaxTUint8-1));
291 test(uint8==KMaxTUint8-1);
292 testCopyL(uint8,TUint8(KMaxTUint8));
293 test(uint8==KMaxTUint8);
295 test.Next(_L("Streaming TUint16"));
296 TUint16 uint16=KMidTUint16;
297 testCopyL(uint16,TUint16(0));
299 testCopyL(uint16,TUint16(1));
301 testCopyL(uint16,TUint16(KMidTUint16-2));
302 test(uint16==KMidTUint16-2);
303 testCopyL(uint16,TUint16(KMidTUint16-1));
304 test(uint16==KMidTUint16-1);
305 testCopyL(uint16,TUint16(KMidTUint16));
306 test(uint16==KMidTUint16);
307 testCopyL(uint16,TUint16(KMidTUint16+1));
308 test(uint16==KMidTUint16+1);
309 testCopyL(uint16,TUint16(KMidTUint16+2));
310 test(uint16==KMidTUint16+2);
311 testCopyL(uint16,TUint16(KMaxTUint16-1));
312 test(uint16==KMaxTUint16-1);
313 testCopyL(uint16,TUint16(KMaxTUint16));
314 test(uint16==KMaxTUint16);
316 test.Next(_L("Streaming TUint32"));
317 TUint32 uint32=KMidTUint32;
318 testCopyL(uint32,TUint32(0));
320 testCopyL(uint32,TUint32(1));
322 testCopyL(uint32,TUint32(KMidTUint32-2));
323 test(uint32==KMidTUint32-2);
324 testCopyL(uint32,TUint32(KMidTUint32-1));
325 test(uint32==KMidTUint32-1);
326 testCopyL(uint32,TUint32(KMidTUint32));
327 test(uint32==KMidTUint32);
328 testCopyL(uint32,TUint32(KMidTUint32+1));
329 test(uint32==KMidTUint32+1);
330 testCopyL(uint32,TUint32(KMidTUint32+2));
331 test(uint32==KMidTUint32+2);
332 testCopyL(uint32,TUint32(KMaxTUint32-1));
333 test(uint32==KMaxTUint32-1);
334 testCopyL(uint32,TUint32(KMaxTUint32));
335 test(uint32==KMaxTUint32);
339 @SYMTestCaseID SYSLIB-STORE-CT-1209
340 @SYMTestCaseDesc Streaming Real numbers test
341 @SYMTestPriority High
342 @SYMTestActions Tests for streaming TReal32,TReal64 bit unsigned integers.
343 @SYMTestExpectedResults Test must not fail
346 LOCAL_C void testRealL()
348 test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1209 Streaming TReal32 "));
349 TReal32 real32=TReal32(0);
350 testCopyL(real32,TReal32(-31416.3));
351 test(real32==TReal32(-31416.3));
352 testCopyL(real32,TReal32(-0.0001));
353 test(real32==TReal32(-0.0001));
354 testCopyL(real32,TReal32(0));
355 test(real32==TReal32(0));
356 testCopyL(real32,TReal32(0.0001));
357 test(real32==TReal32(0.0001));
358 testCopyL(real32,TReal32(31416.3));
359 test(real32==TReal32(31416.3));
361 test.Next(_L("Streaming TReal64"));
362 TReal64 real64=TReal64(0);
363 testCopyL(real64,TReal64(-31416.3));
364 test(real64==TReal64(-31416.3));
365 testCopyL(real64,TReal64(-0.0001));
366 test(real64==TReal64(-0.0001));
367 testCopyL(real64,TReal64(0));
368 test(real64==TReal64(0));
369 testCopyL(real64,TReal64(0.0001));
370 test(real64==TReal64(0.0001));
371 testCopyL(real64,TReal64(31416.3));
372 test(real64==TReal64(31416.3));
376 @SYMTestCaseID SYSLIB-STORE-CT-1210
377 @SYMTestCaseDesc Streaming TPoint test
378 @SYMTestPriority High
379 @SYMTestActions Tests for copying two TPoint objects and test for integrity of copied object
380 @SYMTestExpectedResults Test must not fail
383 LOCAL_C void testPointL()
385 test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1210 Streaming TPoint "));
386 TPoint point=TPoint(0,0);
387 testCopyL(point,TPoint(13,65));
388 test(point==TPoint(13,65));
389 testCopyL(point,TPoint(1,-1));
390 test(point==TPoint(1,-1));
391 testCopyL(point,TPoint(0,0));
392 test(point==TPoint(0,0));
393 testCopyL(point,TPoint(7,-666));
394 test(point==TPoint(7,-666));
395 testCopyL(point,TPoint(-13,-13));
396 test(point==TPoint(-13,-13));
397 testCopyL(point,TPoint(KMinTInt,KMaxTInt));
398 test(point==TPoint(KMinTInt,KMaxTInt));
402 @SYMTestCaseID SYSLIB-STORE-CT-1211
403 @SYMTestCaseDesc Streaming TSize objects test
404 @SYMTestPriority High
405 @SYMTestActions Tests for copying two TSize objects and test for integrity of copied object
406 @SYMTestExpectedResults Test must not fail
409 LOCAL_C void testSizeL()
411 test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1211 Streaming TSize "));
412 TSize point=TSize(0,0);
413 testCopyL(point,TSize(13,65));
414 test(point==TSize(13,65));
415 testCopyL(point,TSize(1,-1));
416 test(point==TSize(1,-1));
417 testCopyL(point,TSize(0,0));
418 test(point==TSize(0,0));
419 testCopyL(point,TSize(7,-666));
420 test(point==TSize(7,-666));
421 testCopyL(point,TSize(-13,-13));
422 test(point==TSize(-13,-13));
423 testCopyL(point,TSize(KMinTInt,KMaxTInt));
424 test(point==TSize(KMinTInt,KMaxTInt));
428 @SYMTestCaseID SYSLIB-STORE-CT-1212
429 @SYMTestCaseDesc Streaming TRect objects test
430 @SYMTestPriority High
431 @SYMTestActions Tests for copying two TRect objects and test for integrity of copied object
432 @SYMTestExpectedResults Test must not fail
435 LOCAL_C void testRectL()
437 test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1212 Streaming TRect"));
438 TRect point=TRect(0,0,0,0);
439 testCopyL(point,TRect(13,65,84,72));
440 test(point==TRect(13,65,84,72));
441 testCopyL(point,TRect(-13,-65,84,72));
442 test(point==TRect(-13,-65,84,72));
443 testCopyL(point,TRect(0,0,0,0));
444 test(point==TRect(0,0,0,0));
445 testCopyL(point,TRect(-1,1,1,-1));
446 test(point==TRect(-1,1,1,-1));
447 testCopyL(point,TRect(KMinTInt,KMinTInt,KMaxTInt,KMaxTInt));
448 test(point==TRect(KMinTInt,KMinTInt,KMaxTInt,KMaxTInt));
452 @SYMTestCaseID SYSLIB-STORE-CT-1213
453 @SYMTestCaseDesc Streaming descriptors tests
454 @SYMTestPriority High
455 @SYMTestActions Tests for copying TDes8,TDes16 descriptors
456 @SYMTestExpectedResults Test must not fail
459 LOCAL_C void testDesL()
461 test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1213 Streaming TDes8 "));
462 TBuf8<0x100> des8,copy8;
464 testCopyL(copy8,des8);
466 des8.Append(_L8(" add some more text"));
467 testCopyL(copy8,des8);
471 testCopyL(copy8,des8);
474 testCopyL(copy8,des8);
477 test.Next(_L("Streaming TDes16"));
478 TBuf16<0x100> des16,copy16;
480 testCopyL(copy16,des16);
482 des16.Append(_L16(" add some more text"));
483 testCopyL(copy16,des16);
487 testCopyL(copy16,des16);
490 testCopyL(copy16,des16);
493 test.Next(_L("Streaming out TDes8 and streaming in TDes16"));
495 testCopyL(copy16,des8);
498 des8.Append(_L8(" add some more text"));
499 testCopyL(copy16,des8);
504 testCopyL(copy16,des8);
508 testCopyL(copy16,des8);
512 test.Next(_L("Streaming out TDes16 and streaming in TDes8"));
514 testCopyL(copy8,des16);
517 des16.Append(_L16(" add some more text"));
518 testCopyL(copy8,des16);
523 testCopyL(copy8,des16);
527 testCopyL(copy8,des16);
533 @SYMTestCaseID SYSLIB-STORE-CT-1214
534 @SYMTestCaseDesc Streaming HBufC test
535 @SYMTestPriority High
536 @SYMTestActions Tests by cloning and check for the integrity of the cloned object.
537 @SYMTestExpectedResults Test must not fail
540 LOCAL_C void testHBufCL()
542 test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1214 Streaming HBufC8 "));
543 TBuf8<0x100> des8,copy8;
546 buf8=testClone_HBufC8L(des8);
549 des8.Append(_L8(" add some more text"));
550 buf8=testClone_HBufC8L(des8);
555 buf8=testClone_HBufC8L(des8);
559 buf8=testClone_HBufC8L(des8);
563 test.Next(_L("Streaming HBufC16"));
564 TBuf16<0x100> des16,copy16;
567 buf16=testClone_HBufC16L(des16);
570 des16.Append(_L16(" add some more text"));
571 buf16=testClone_HBufC16L(des16);
576 buf16=testClone_HBufC16L(des16);
580 buf16=testClone_HBufC16L(des16);
584 test.Next(_L("Streaming out TDes8 and streaming in HBufC16"));
586 buf16=testClone_HBufC16L(des8);
590 des8.Append(_L8(" add some more text"));
591 buf16=testClone_HBufC16L(des8);
597 buf16=testClone_HBufC16L(des8);
602 buf16=testClone_HBufC16L(des8);
607 test.Next(_L("Streaming out TDes16 and streaming in HBufC8"));
609 buf8=testClone_HBufC8L(des16);
613 des16.Append(_L16(" add some more text"));
614 buf8=testClone_HBufC8L(des16);
620 buf8=testClone_HBufC8L(des16);
625 buf8=testClone_HBufC8L(des16);
630 test.Next(_L("Overflowing and over-allocating HBufC8"));
632 buf8=testClone_HBufC8L(des8,0x80);
634 buf8=testClone_HBufC8L(des8,0x200);
636 test(User::AllocLen(buf8)==sizeof(TBufC8<0x100>));
639 test.Next(_L("Overflowing and over-allocating HBufC16"));
641 buf16=testClone_HBufC16L(des16,0x80);
643 buf16=testClone_HBufC16L(des16,0x200);
645 test(User::AllocLen(buf16)==sizeof(TBufC16<0x100>));
650 // Compare two buffers.
652 TBool operator==(const CBufBase& aBuf,const CBufBase& anotherBuf)
655 if (s!=anotherBuf.Size())
660 TPtr8 p1=((CBufBase&)aBuf).Ptr(i);
661 TPtr8 p2=((CBufBase&)anotherBuf).Ptr(i);
662 TInt n=Min(p1.Size(),p2.Size());
663 if (Mem::Compare(p1.Ptr(),n,p2.Ptr(),n)!=0)
672 @SYMTestCaseID SYSLIB-STORE-CT-1215
673 @SYMTestCaseDesc Streaming CBufFlat,CBufSeg buffers test
674 @SYMTestPriority High
675 @SYMTestActions Attempt for copying two buffer objects
676 @SYMTestExpectedResults Test must not fail
679 LOCAL_C void testBufL()
681 test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1215 Streaming CBufFlat "));
682 const TText8* data=_S8("0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ");
683 CBufBase* bufOrg=CBufFlat::NewL(36);
684 CleanupStack::PushL(bufOrg);
685 CBufBase* buf=CBufFlat::NewL(36);
686 CleanupStack::PushL(buf);
687 bufOrg->InsertL(0,data,36);
688 testCopyL(*buf,*bufOrg);
691 testCopyL(*buf,*bufOrg);
694 buf->InsertL(26,data,10);
695 testCopyL(*buf,*bufOrg);
697 buf->InsertL(0,data+10,26);
698 testCopyL(*buf,*bufOrg);
700 CleanupStack::PopAndDestroy(2);
702 test.Next(_L("Streaming CBufSeg"));
703 bufOrg=CBufSeg::NewL(7);
704 CleanupStack::PushL(bufOrg);
705 buf=CBufSeg::NewL(11);
706 CleanupStack::PushL(buf);
707 bufOrg->InsertL(0,data,36);
708 testCopyL(*buf,*bufOrg);
711 testCopyL(*buf,*bufOrg);
714 buf->InsertL(26,data,10);
715 testCopyL(*buf,*bufOrg);
717 testCopyL(*buf,*bufOrg);
719 CleanupStack::PopAndDestroy(2);
723 TBool operator==(const CArrayFix<T>& anArray,const CArrayFix<T>& anotherArray);
724 #if defined(__GCC32__)
726 inline TBool operator==(const CArrayFixFlat<T>& anArray,const CArrayFixFlat<T>& anotherArray)
727 {return (const CArrayFix<T>&)anArray==(const CArrayFix<T>&)anotherArray;}
731 // Compare two arrays.
734 TBool operator==(const CArrayFix<T>& anArray,const CArrayFix<T>& anotherArray)
736 TInt n=anArray.Count();
737 if (n!=anotherArray.Count())
740 for (TInt i=0;i<n;i++)
742 if (anArray[i]!=anotherArray[i])
749 @SYMTestCaseID SYSLIB-STORE-CT-1216
750 @SYMTestCaseDesc Streaming fixed arrays test
751 @SYMTestPriority High
752 @SYMTestActions Tests by copying two fixed array objects.Tests for the integrity of the data.
753 @SYMTestExpectedResults Test must not fail
756 LOCAL_C void testArrayFixL()
758 //* test.Next(_L("Streaming CArrayFix<TUint32>"));
759 //#pragma message ( __FILE__ " : 'testArrayFix()' not entirely implemented")
761 test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1216 Streaming CArrayFix<TDes> "));
762 TBuf<16> des[]={_L("aa"),_L("bbbb"),_L("cccccc")};
763 CArrayFixFlat< TBuf<16> >* fixDesOrg=new(ELeave) CArrayFixFlat< TBuf<16> >(KTestGranularity);
764 CleanupStack::PushL(fixDesOrg);
765 CArrayFixFlat< TBuf<16> >* fixDes=new(ELeave) CArrayFixFlat< TBuf<16> >(KTestGranularity);
766 CleanupStack::PushL(fixDes);
767 fixDesOrg->AppendL(des+1,2);
768 testCopyL(*fixDes,*fixDesOrg);
769 test(*fixDes==*fixDesOrg);
770 fixDesOrg->InsertL(0,des[0]);
771 testCopyL(*fixDes,*fixDesOrg);
772 test(*fixDes==*fixDesOrg);
773 CleanupStack::PopAndDestroy(2);
777 @SYMTestCaseID PDS-STORE-CT-4011
778 @SYMTestCaseDesc Test for US_SHARE.CPP file. RShareReadStream.
779 @SYMTestPriority High
780 @SYMTestActions Test for creating and opening, read, write functions in RShareReadStream.
781 @SYMTestExpectedResults Creation and opening must not fail.
782 Written data, and read data should be equal.
785 LOCAL_C void testFileL()
788 _LIT8(KTestString, "Test String test");
789 test.Next(_L("PDS-STORE-CT-4011 testUS_SHARE_FileL"));
791 HBufC8* rwbuf = HBufC8::NewLC(1024*10);
792 HBufC8* buf = HBufC8::NewLC(1024);
793 TPtr8 des = buf->Des();
795 TPtr8 des2 = rwbuf->Des();
798 TStreamExchange se(&tdb);
800 RShareWriteStream wstream(se);
801 wstream.WriteL(KTestString);
805 RShareReadStream rstream(se);
806 rstream.ReadL(des, buf->Length());
809 test( des.Compare(KTestString) );
811 RShareWriteStream wstream2;
813 wstream2.WriteL(KTestString);
817 RShareReadStream rstream2;
819 rstream2.ReadL(des, buf->Length());
822 test(des.Compare(KTestString));
824 CleanupStack::PopAndDestroy(2, rwbuf);
829 @SYMTestCaseID PDS-STORE-CT-4012
830 @SYMTestCaseDesc Test for US_SHARE.CPP file. RShareBuf.
831 @SYMTestPriority High
832 @SYMTestActions Writing, reading and seeking in RShareBuf
833 @SYMTestExpectedResults Written data and read data (after seek to the beggining of the bufer)
834 should equal. Read, write and seek operation must not fail.
837 class RShareBufTest : public RShareBuf
840 TInt DoReadL(TAny* aPtr,TInt aMaxLength){return RShareBuf::DoReadL(aPtr, aMaxLength);}
841 TInt DoReadL(TDes8& aDes,TInt aMaxLength,TRequestStatus& aStatus){return RShareBuf::DoReadL(aDes, aMaxLength, aStatus);}
842 TStreamTransfer DoReadL(MStreamInput& anInput,TStreamTransfer aTransfer){return RShareBuf::DoReadL(anInput, aTransfer);}
843 void DoWriteL(const TAny* aPtr,TInt aLength){RShareBuf::DoWriteL(aPtr, aLength);}
844 TInt DoWriteL(const TDesC8& aDes,TInt aMaxLength,TRequestStatus& aStatus){return RShareBuf::DoWriteL(aDes,aMaxLength, aStatus);}
845 TStreamTransfer DoWriteL(MStreamOutput& anOutput,TStreamTransfer aTransfer){return RShareBuf::DoWriteL(anOutput, aTransfer);}
846 TStreamPos DoSeekL(TMark aMark,TStreamLocation aLocation,TInt anOffset){return RShareBuf::DoSeekL(aMark,aLocation,anOffset);}
849 LOCAL_C void testFileRShareBufL()
851 _LIT8(KTestString, "Test String test very long to have something to seek for");
852 HBufC8* rwbuf = HBufC8::NewLC(1024*10);
853 HBufC8* buf = HBufC8::NewLC(1024);
855 TPtr8 des2 = rwbuf->Des();
858 TStreamExchange se(&tdb);
860 test.Next(_L("PDS-STORE-CT-4012 RShareBuf tests"));
863 rsb.Open(se, RShareBuf::ERead|RShareBuf::EWrite);
864 rsb.WriteL(KTestString().Ptr(), KTestString().Length());
865 TInt dupa = rsb.SizeL();
867 TStreamPos spos = rsb.DoSeekL(RShareBuf::ERead, EStreamBeginning, 20);
868 test(spos.Offset() == 20);
869 spos = rsb.DoSeekL(RShareBuf::ERead, EStreamMark, 5);
870 test(spos.Offset()== 25);
871 spos = rsb.DoSeekL(RShareBuf::EWrite, EStreamEnd, -5);
872 test(spos.Offset()==rsb.SizeL()-5 );
874 TUint8* tempBuf = new TUint8[1024];
875 CleanupStack::PushL(tempBuf);
876 test(tempBuf != NULL);
877 for(TInt i=0;i<1024;i++)
880 spos = rsb.DoSeekL(RShareBuf::ERead, EStreamBeginning, 0);
881 test(spos.Offset() == 0);
882 TInt bytesread = rsb.DoReadL((void*)tempBuf, rsb.SizeL());
883 test(bytesread == rsb.SizeL());
884 buf->Des().Copy(tempBuf);
885 test(buf->Des().Compare(KTestString)==0);
887 spos = rsb.DoSeekL(RShareBuf::EWrite, EStreamBeginning, 0);
888 test(spos.Offset() == 0);
890 TRequestStatus status;
891 rsb.DoWriteL(KTestString(), KTestString().Length(), status);
892 User::WaitForRequest(status);
893 test(status == KErrNone);
896 TPtr8 pbuf2 = buf->Des();
898 spos = rsb.DoSeekL(RShareBuf::ERead, EStreamBeginning, 0);
899 test(spos.Offset() == 0);
900 bytesread = rsb.ReadL(pbuf2, buf->Des().MaxLength(), status);
901 test(bytesread == buf->Des().MaxLength());
902 User::WaitForRequest(status);
903 test(status == KErrNone);
904 test(buf->Des().Compare(KTestString)==0);
907 * Unable to test those functions:
908 * TStreamTransfer DoWriteL(MStreamOutput& anOutput,TStreamTransfer aTransfer)
909 * TStreamTransfer DoReadL(MStreamInput& anInput,TStreamTransfer aTransfer);
910 * because all MStreamOutput/MStreamInput derived class are not exported
911 * thus it can't be used outside theis DLL
915 CleanupStack::PopAndDestroy(3, rwbuf);
919 @SYMTestCaseID PDS-STORE-CT-4013
920 @SYMTestCaseDesc Test for US_HOST.CPP file. TStreamExchange and TStreamMark.
921 @SYMTestPriority High
922 @SYMTestActions Read and write on TStreamExchange. Reading and writing on TStreamMark.
923 @SYMTestExpectedResults Read and write operation should not leave.
926 LOCAL_C void testTStreamExchangeAndMarkL()
928 test.Next(_L("PDS-STORE-CT-4013 testTStreamExchangeAndMarkL"));
929 _LIT8(KTestString, "Test String test very long to have something to seek for");
930 HBufC8* rwbuf = HBufC8::NewLC(1024*10);
931 HBufC8* buf = HBufC8::NewLC(1024);
933 TPtr8 des2 = rwbuf->Des();
935 TStreamExchange se(&tdb);
937 rsb.Open(se, RShareBuf::ERead|RShareBuf::EWrite);
938 test( se.HostL() == &tdb );
942 sm.WriteL(se, KTestString().Ptr(),KTestString().Length() );
943 TRequestStatus rstatus;
946 bytesprocessed = sm2.WriteL(se, KTestString(), KTestString().Length(), rstatus);
947 test (bytesprocessed == KTestString().Length());
948 User::WaitForRequest(rstatus);
949 test(rstatus == KErrNone);
951 TBool rc = sm == sm2;
953 rc = sm == (const TStreamMark*)&sm2;
958 rc = sm != (const TStreamMark*)&sm2;
967 TPtr8 des = buf->Des();
968 bytesprocessed = sm3.ReadL(se, des, des.MaxLength(), rstatus);
969 RDebug::Printf("Written: %d, Length: %d",bytesprocessed,des.MaxLength());
970 test (bytesprocessed == des.MaxLength());
971 User::WaitForRequest(rstatus);
972 test(rstatus == KErrNone);
977 bytesprocessed = sm4.ReadL(se, des, rstatus);
978 RDebug::Printf("Written: %d, Length: %d",bytesprocessed,des.MaxLength());
979 test (bytesprocessed == des.MaxLength());
981 User::WaitForRequest(rstatus);
982 test(rstatus == KErrNone);
985 bytesprocessed = sm5.WriteL(se, KTestString(), rstatus);
986 RDebug::Printf("Written: %d, Length: %d",bytesprocessed,KTestString().Length());
987 test (bytesprocessed == KTestString().Length());
988 User::WaitForRequest(rstatus);
989 test(rstatus == KErrNone);
993 CleanupStack::PopAndDestroy(2, rwbuf);
996 const TInt KMinTestHeapSize = 0x10000;
997 const TInt KMaxTestHeapSize = 0x100000;
1000 * Helper function for PDS-STORE-CT-4014
1002 LOCAL_C void DoTBtreeKeyPanicL(TInt aCase)
1004 //those will panic, and should be tested if they will panic
1009 TBtreeKey key27(0,ECmpTUint);
1013 TBtreeKey key23(0,ECmpTInt);
1017 TBtreeKey key9(0,ECmpCollated);
1021 TBtreeKey key6(0,ECmpFolded);
1025 TBtreeKey key3(0,ECmpNormal);
1029 TBtreeKey key91(0,ECmpCollated,10);
1033 TBtreeKey key61(0,ECmpFolded,10);
1037 TBtreeKey key31(0,ECmpNormal,10);
1042 * Helper function for PDS-STORE-CT-4014
1044 LOCAL_C TInt DoPanicingThread(TAny* aTestCase)
1046 User::SetJustInTime(EFalse); // disable debugger panic handling
1047 TInt tcase = *((TInt*)aTestCase);
1048 TRAP_IGNORE(DoTBtreeKeyPanicL(tcase));
1053 @SYMTestCaseID PDS-STORE-CT-4014
1054 @SYMTestCaseDesc Test for UB_KEY.CPP file. TBtreeKey constructors, comparators, function Between().
1055 @SYMTestPriority High
1056 @SYMTestActions Create instance of TBtreeKey using all available constructors with
1057 all possible parameters. Run comparation and between functions.
1058 @SYMTestExpectedResults Objects must be created properly. Comparators must return proper values.
1059 MBtreeKey Between function, not fully implemented. See comments inside test.
1062 LOCAL_C void testMBtreeKeyL()
1064 test.Next(_L("PDS-STORE-CT-4014 MBtreeKey Constructors"));
1067 TBtreeKey key2(0, ECmpTInt16);
1070 for(TInt i=0;i<8;i++)
1076 name.Copy(_L("MyPanic "));
1078 TInt err = thread.Create(name, DoPanicingThread, KDefaultStackSize, KMinTestHeapSize, KMaxTestHeapSize, &tcase, EOwnerThread);
1079 test(err == KErrNone);
1080 TRequestStatus status;
1081 thread.Logon(status);
1082 test(status.Int() == KRequestPending);
1084 User::WaitForRequest(status);
1085 User::SetJustInTime(ETrue); // enable debugger panic handling
1086 test(thread.ExitType() == EExitPanic);
1087 test(thread.ExitReason() == EInvalidKeyComparison );
1088 RDebug::Printf("Thread %d paniced as design with correct panic code", i);
1091 test.Next(_L("MBtreeKey Comparators"));
1092 //prepare 8bit descriptor
1095 textKey1.Copy(_L(" Ala ma kota"));
1096 textKey2.Copy(_L(" Ala ma kota"));
1097 TUint8* ptr = const_cast<TUint8*>(textKey1.PtrZ());
1098 *ptr = textKey1.Length();
1099 ptr = const_cast<TUint8*>(textKey2.PtrZ());
1100 *ptr = textKey2.Length();
1102 //prepare 16bit descriptor
1103 TBuf16<50> text16Key1;
1104 TBuf16<50> text16Key2;
1105 text16Key1.Copy(_L(" Ala ma kota"));
1106 text16Key2.Copy(_L(" Ala ma kota"));
1107 TUint16* ptr16 = const_cast<TUint16*>(text16Key1.PtrZ());
1108 *ptr16 = text16Key1.Length();
1109 ptr16 = const_cast<TUint16*>(text16Key2.PtrZ());
1110 *ptr16 = text16Key2.Length();
1113 TBtreeKey key4(0,ECmpNormal8);
1114 test(key4.Compare(textKey1.PtrZ(),textKey2.PtrZ()) == 0);
1115 TBtreeKey key4_1(0,ECmpNormal8,13);
1116 test(key4_1.Compare(textKey1.PtrZ(),textKey2.PtrZ()) == 0);
1118 TBtreeKey key5(0,ECmpNormal16);
1119 test(key5.Compare(text16Key1.PtrZ(),text16Key2.PtrZ()) == 0);
1120 TBtreeKey key5_1(0,ECmpNormal16,13);
1121 test(key5_1.Compare(text16Key1.PtrZ(),text16Key2.PtrZ()) == 0);
1123 TBtreeKey key7(0,ECmpFolded8);
1124 test(key7.Compare(textKey1.PtrZ(),textKey2.PtrZ()) == 0);
1125 TBtreeKey key7_1(0,ECmpFolded8,13);
1126 test(key7_1.Compare(textKey1.PtrZ(),textKey2.PtrZ()) == 0);
1128 TBtreeKey key8(0,ECmpFolded16);
1129 test(key8.Compare(text16Key1.PtrZ(),text16Key2.PtrZ()) == 0);
1130 TBtreeKey key8_1(0,ECmpFolded16,13);
1131 test(key8_1.Compare(text16Key1.PtrZ(),text16Key2.PtrZ()) == 0);
1133 TBtreeKey key10(0,ECmpCollated8);
1134 test(key10.Compare(textKey1.PtrZ(),textKey2.PtrZ()) == 0);
1135 TBtreeKey key10_1(0,ECmpCollated8,13);
1136 test(key10_1.Compare(textKey1.PtrZ(),textKey2.PtrZ()) == 0);
1138 TBtreeKey key11(0,ECmpCollated16);
1139 test(key11.Compare(text16Key1.PtrZ(),text16Key2.PtrZ()) == 0);
1140 TBtreeKey key11_1(0,ECmpCollated16,13);
1141 test(key11_1.Compare(text16Key1.PtrZ(),text16Key2.PtrZ()) == 0);
1146 TInt16 int16_1 = 32000;
1147 TInt16 int16_2 = 32000;
1148 TInt32 int32_1 = 2147480000;
1149 TInt32 int32_2 = 2147480000;
1150 TInt64 int64_1 = 9223372036854770000;
1151 TInt64 int64_2 = 9223372036854770000;
1153 TBtreeKey key20(0,ECmpTInt8);
1154 test( key20.Compare(&int8_1, &int8_2)==0);
1155 TBtreeKey key21(0,ECmpTInt16);
1156 test( key21.Compare(&int16_1, &int16_2)==0);
1157 TBtreeKey key22(0,ECmpTInt32);
1158 test( key22.Compare(&int32_1, &int32_2)==0);
1160 TBtreeKey key24(0,ECmpTUint8);
1161 test( key24.Compare(&int8_1, &int8_2)==0);
1162 TBtreeKey key25(0,ECmpTUint16);
1163 test( key25.Compare(&int16_1, &int16_2)==0);
1164 TBtreeKey key26(0,ECmpTUint32);
1165 test( key26.Compare(&int32_1, &int32_2)==0);
1166 TBtreeKey key28(0,ECmpTInt64);
1167 test( key28.Compare(&int64_1, &int64_2)==0);
1172 test( key22.Compare(&int32_1, &int32_2)==1);
1173 test( key22.Compare(&int32_2, &int32_1)==-1);
1174 test( key26.Compare(&int32_1, &int32_2)==1);
1175 test( key26.Compare(&int32_2, &int32_1)==-1);
1176 test( key28.Compare(&int64_1, &int64_2)==1);
1177 test( key28.Compare(&int64_2, &int64_1)==-1);
1179 //prepare second 16bit descriptor to be greater than first one
1180 text16Key2.Copy(_L(" Ala mb kotb"));
1181 ptr16 = const_cast<TUint16*>(text16Key2.PtrZ());
1182 *ptr16 = text16Key2.Length();
1184 //prepare second 8bit descriptor to be greater than first one
1185 textKey2.Copy(_L(" Ala mb kotb"));
1186 ptr = const_cast<TUint8*>(textKey2.PtrZ());
1187 *ptr = textKey2.Length();
1189 //testing Between function
1192 test.Next(_L("MBtreeKey Between function, not fully implemented. See comments."));
1194 * For all tests bellow we should made tests if
1195 * pivot > textKey1 && pivot < textKey2
1196 * but function between is not properly implemented yet
1197 * then we don't check result
1200 //TBtreeKey key4(0,ECmpNormal8);
1201 key4.Between(textKey1.PtrZ(),textKey2.PtrZ(),pivot);
1202 //TBtreeKey key4_1(0,ECmpNormal8,13);
1203 key4_1.Between(textKey1.PtrZ(),textKey2.PtrZ(),pivot);
1205 //TBtreeKey key5(0,ECmpNormal16);
1206 key5.Between(text16Key1.PtrZ(),text16Key2.PtrZ(),pivot);
1207 //TBtreeKey key5_1(0,ECmpNormal16,13);
1208 key5_1.Between(text16Key1.PtrZ(),text16Key2.PtrZ(),pivot);
1210 //TBtreeKey key7(0,ECmpFolded8);
1211 key7.Between(textKey1.PtrZ(),textKey2.PtrZ(),pivot);
1212 //TBtreeKey key7_1(0,ECmpFolded8,13);
1213 key7_1.Between(textKey1.PtrZ(),textKey2.PtrZ(),pivot);
1215 //TBtreeKey key8(0,ECmpFolded16);
1216 key8.Between(text16Key1.PtrZ(),text16Key2.PtrZ(),pivot);
1217 //TBtreeKey key8_1(0,ECmpFolded16,13);
1218 key8_1.Between(text16Key1.PtrZ(),text16Key2.PtrZ(),pivot);
1220 //TBtreeKey key10(0,ECmpCollated8);
1221 key10.Between(textKey1.PtrZ(),textKey2.PtrZ(),pivot);
1222 //TBtreeKey key10_1(0,ECmpCollated8,13);
1223 key10_1.Between(textKey1.PtrZ(),textKey2.PtrZ(),pivot);
1225 //TBtreeKey key11(0,ECmpCollated16);
1226 key11.Between(text16Key1.PtrZ(),text16Key2.PtrZ(),pivot);
1227 //TBtreeKey key11_1(0,ECmpCollated16,13);
1228 key11_1.Between(text16Key1.PtrZ(),text16Key2.PtrZ(),pivot);
1230 //TBtreeKey key20(0,ECmpTInt8);
1231 key20.Between(&int8_1, &int8_2,pivot);
1232 //TBtreeKey key21(0,ECmpTInt16);
1233 key21.Between(&int16_1, &int16_2,pivot);
1234 //TBtreeKey key22(0,ECmpTInt32);
1235 key22.Between(&int32_1, &int32_2,pivot);
1237 //TBtreeKey key24(0,ECmpTUint8);
1238 key24.Between(&int8_1, &int8_2,pivot);
1239 //TBtreeKey key25(0,ECmpTUint16);
1240 key25.Between(&int16_1, &int16_2,pivot);
1241 //TBtreeKey key26(0,ECmpTUint32);
1242 key26.Between(&int32_1, &int32_2,pivot);
1243 //TBtreeKey key28(0,ECmpTInt64);
1244 key28.Between(&int64_1, &int64_2,pivot);
1249 // Initialise the cleanup stack.
1251 LOCAL_C void setupCleanup()
1253 TheTrapCleanup=CTrapCleanup::New();
1254 test(TheTrapCleanup!=NULL);
1257 for (TInt i=KTestCleanupStack;i>0;i--)\
1258 CleanupStack::PushL((TAny*)1);\
1260 CleanupStack::Pop(KTestCleanupStack);\
1266 // Test streaming conversions.
1268 GLDEF_C TInt E32Main()
1274 test.Start(_L("Test streaming conversions"));
1275 TRAPD(r,testIntL());
1277 TRAP(r,testUintL());
1279 TRAP(r,testRealL());
1283 TRAP(r,testHBufCL());
1287 TRAP(r,testArrayFixL());
1289 TRAP(r,testPointL());
1291 TRAP(r,testSizeL());
1293 TRAP(r,testRectL());
1296 TRAP(r,testFileL());
1298 TRAP(r,testFileRShareBufL());
1300 TRAP(r,testTStreamExchangeAndMarkL());
1302 TRAP(r,testMBtreeKeyL());
1307 delete TheTrapCleanup;