os/persistentdata/persistentstorage/store/TSTRM/t_storconv.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
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".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 // 
    15 
    16 #include <s32mem.h>
    17 #include <e32test.h>
    18 #include <s32btree.h>
    19 #include "UB_STD.H"
    20 
    21 const TInt KTestCleanupStack=0x20;
    22 const TInt KTestExpandSize=0x20;
    23 const TInt KTestGranularity=0x02;
    24 
    25 const TUint8 KMidTUint8=KMaxTUint8/2;
    26 const TUint16 KMidTUint16=KMaxTUint16/2;
    27 const TUint32 KMidTUint32=KMaxTUint32/2;
    28 
    29 LOCAL_D CTrapCleanup* TheTrapCleanup;
    30 LOCAL_D RTest test(_L("t_storconv"));
    31 
    32 
    33 template <class T1,class T2>
    34 void testCopyL(T1& aCopy,const T2& anOriginal)
    35 	{
    36 	CBufSeg* buf=0;
    37 	TRAPD(r,buf=CBufSeg::NewL(KTestExpandSize));
    38 	if (r!=KErrNone)
    39 		test.Panic(_L("Allocating buffer"));
    40 //
    41 // Write anOriginal out to the buffer.
    42 //
    43 	RBufWriteStream out;
    44 	out.Append(*buf);
    45 	TRAP(r,out<<anOriginal);
    46 	test(r==KErrNone);
    47 	TRAP(r,out.CommitL());
    48 	if (r!=KErrNone)
    49 		test.Panic(_L("Committing write stream"));
    50 //
    51 // Read anOriginal in from the buffer.
    52 //
    53 	RBufReadStream in(*buf);
    54 	TRAP(r,in>>aCopy);
    55 	test(r==KErrNone);
    56 //
    57 // See if it's consumed the lot.
    58 //
    59 	TUint8 b;
    60 	test(in.Source()->ReadL(&b,1)==0);
    61 //
    62 	delete buf;
    63 	}
    64 
    65 //
    66 // Clone aDes using memory-based streams.
    67 //
    68 template <class T>
    69 HBufC8* testClone_HBufC8L(const T& aDes,TInt aMaxLength)
    70 	{
    71 	CBufSeg* buf=0;
    72 	TRAPD(r,buf=CBufSeg::NewL(KTestExpandSize));
    73 	if (r!=KErrNone)
    74 		test.Panic(_L("Allocating buffer"));
    75 //
    76 // Write anOriginal out to the buffer.
    77 //
    78 	RBufWriteStream out;
    79 	out.Append(*buf);
    80 	TRAP(r,out<<aDes);
    81 	test(r==KErrNone);
    82 	TRAP(r,out.CommitL());
    83 	if (r!=KErrNone)
    84 		test.Panic(_L("Committing write stream"));
    85 //
    86 // Read anOriginal in from the buffer.
    87 //
    88 	RBufReadStream in(*buf);
    89 	HBufC8* clone=NULL;
    90 	TRAP(r,clone=HBufC8::NewL(in,aMaxLength));
    91 	if (aMaxLength<aDes.Length())
    92 		test(r==KErrOverflow);
    93 	else
    94 		{
    95 		test(r==KErrNone);
    96 		test(clone!=NULL);
    97 //
    98 // See if it's consumed the lot.
    99 //
   100 		TUint8 b;
   101 		test(in.Source()->ReadL(&b,1)==0);
   102 		}
   103 //
   104 	delete buf;
   105 	return clone;
   106 	}
   107 
   108 //
   109 // Clone aDes using memory-based streams.
   110 //
   111 template <class T>
   112 HBufC16* testClone_HBufC16L(const T& aDes,TInt aMaxLength)
   113 	{
   114 	CBufSeg* buf=0;
   115 	TRAPD(r,buf=CBufSeg::NewL(KTestExpandSize));
   116 	if (r!=KErrNone)
   117 		test.Panic(_L("Allocating buffer"));
   118 //
   119 // Write anOriginal out to the buffer.
   120 //
   121 	RBufWriteStream out;
   122 	out.Append(*buf);
   123 	TRAP(r,out<<aDes);
   124 	test(r==KErrNone);
   125 	TRAP(r,out.CommitL());
   126 	if (r!=KErrNone)
   127 		test.Panic(_L("Committing write stream"));
   128 //
   129 // Read anOriginal in from the buffer.
   130 //
   131 	RBufReadStream in(*buf);
   132 	HBufC16* clone=NULL;
   133 	TRAP(r,clone=HBufC16::NewL(in,aMaxLength));
   134 	if (aMaxLength<aDes.Length())
   135 		test(r==KErrOverflow);
   136 	else
   137 		{
   138 		test(r==KErrNone);
   139 		test(clone!=NULL);
   140 //
   141 // See if it's consumed the lot.
   142 //
   143 		TUint8 b;
   144 		test(in.Source()->ReadL(&b,1)==0);
   145 		}
   146 //
   147 	delete buf;
   148 	return clone;
   149 	}
   150 
   151 //
   152 // Clone aDes exactly using memory-based streams.
   153 //
   154 template <class T>
   155 HBufC8* testClone_HBufC8L(const T& aDes)
   156 	{
   157 	return testClone_HBufC8L(aDes,aDes.Length());
   158 	}
   159 
   160 //
   161 // Clone aDes exactly using memory-based streams.
   162 //
   163 template <class T>
   164 HBufC16* testClone_HBufC16L(const T& aDes)
   165 	{
   166 	return testClone_HBufC16L(aDes,aDes.Length());
   167 	}
   168 
   169 /**
   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
   175 @SYMREQ                 REQ0000
   176 */
   177 LOCAL_C void testIntL()
   178 	{
   179 	test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1207 Streaming TInt8 "));
   180 	TInt8 int8=0;
   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));
   186 	test(int8==-2);
   187 	testCopyL(int8,TInt8(-1));
   188 	test(int8==-1);
   189 	testCopyL(int8,TInt8(0));
   190 	test(int8==0);
   191 	testCopyL(int8,TInt8(1));
   192 	test(int8==1);
   193 	testCopyL(int8,TInt8(2));
   194 	test(int8==2);
   195 	testCopyL(int8,TInt8(KMaxTInt8-1));
   196 	test(int8==KMaxTInt8-1);
   197 	testCopyL(int8,TInt8(KMaxTInt8));
   198 	test(int8==KMaxTInt8);
   199 //
   200 	test.Next(_L("Streaming TInt16"));
   201 	TInt16 int16=0;
   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));
   207 	test(int16==-2);
   208 	testCopyL(int16,TInt16(-1));
   209 	test(int16==-1);
   210 	testCopyL(int16,TInt16(0));
   211 	test(int16==0);
   212 	testCopyL(int16,TInt16(1));
   213 	test(int16==1);
   214 	testCopyL(int16,TInt16(2));
   215 	test(int16==2);
   216 	testCopyL(int16,TInt16(KMaxTInt16-1));
   217 	test(int16==KMaxTInt16-1);
   218 	testCopyL(int16,TInt16(KMaxTInt16));
   219 	test(int16==KMaxTInt16);
   220 //
   221 	test.Next(_L("Streaming TInt32"));
   222 	TInt32 int32=0;
   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));
   228 	test(int32==-2);
   229 	testCopyL(int32,TInt32(-1));
   230 	test(int32==-1);
   231 	testCopyL(int32,TInt32(0));
   232 	test(int32==0);
   233 	testCopyL(int32,TInt32(1));
   234 	test(int32==1);
   235 	testCopyL(int32,TInt32(2));
   236 	test(int32==2);
   237 	testCopyL(int32,TInt32(KMaxTInt32-1));
   238 	test(int32==KMaxTInt32-1);
   239 	testCopyL(int32,TInt32(KMaxTInt32));
   240 	test(int32==KMaxTInt32);
   241 //
   242 	test.Next(_L("Streaming TInt64"));
   243 	TInt64 int64=0;
   244 	testCopyL(int64,KMinTInt64);
   245 	test(int64==KMinTInt64);
   246 	testCopyL(int64,KMinTInt64+1);
   247 	test(int64==KMinTInt64+1);
   248 	testCopyL(int64,TInt64(-2));
   249 	test(int64==-2);
   250 	testCopyL(int64,TInt64(-1));
   251 	test(int64==-1);
   252 	testCopyL(int64,TInt64(0));
   253 	test(int64==0);
   254 	testCopyL(int64,TInt64(1));
   255 	test(int64==1);
   256 	testCopyL(int64,TInt64(2));
   257 	test(int64==2);
   258 	testCopyL(int64,KMaxTInt64-1);
   259 	test(int64==KMaxTInt64-1);
   260 	testCopyL(int64,KMaxTInt64);
   261 	test(int64==KMaxTInt64);
   262 	}
   263 
   264 /**
   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
   270 @SYMREQ                 REQ0000
   271 */
   272 LOCAL_C void testUintL()
   273 	{
   274 	test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1208 Streaming TUint8 "));
   275    	TUint8 uint8=KMidTUint8;
   276 	testCopyL(uint8,TUint8(0));
   277 	test(uint8==0);
   278 	testCopyL(uint8,TUint8(1));
   279 	test(uint8==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);
   294 //
   295 	test.Next(_L("Streaming TUint16"));
   296    	TUint16 uint16=KMidTUint16;
   297 	testCopyL(uint16,TUint16(0));
   298 	test(uint16==0);
   299 	testCopyL(uint16,TUint16(1));
   300 	test(uint16==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);
   315 //
   316 	test.Next(_L("Streaming TUint32"));
   317    	TUint32 uint32=KMidTUint32;
   318 	testCopyL(uint32,TUint32(0));
   319 	test(uint32==0);
   320 	testCopyL(uint32,TUint32(1));
   321 	test(uint32==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);
   336 	}
   337 
   338 /**
   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
   344 @SYMREQ                 REQ0000
   345 */
   346 LOCAL_C void testRealL()
   347 	{
   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));
   360 //
   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));
   373 	}
   374 
   375 /**
   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
   381 @SYMREQ                 REQ0000
   382 */
   383 LOCAL_C void testPointL()
   384 	{
   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));
   399 	}
   400 
   401 /**
   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
   407 @SYMREQ                 REQ0000
   408 */
   409 LOCAL_C void testSizeL()
   410 	{
   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));
   425 	}
   426 
   427 /**
   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
   433 @SYMREQ                 REQ0000
   434 */
   435 LOCAL_C void testRectL()
   436 	{
   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));
   449 	}
   450 
   451 /**
   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
   457 @SYMREQ                 REQ0000
   458 */
   459 LOCAL_C void testDesL()
   460 	{
   461 	test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1213 Streaming TDes8 "));
   462   	TBuf8<0x100> des8,copy8;
   463 	des8=_L8("test1");
   464 	testCopyL(copy8,des8);
   465 	test(copy8==des8);
   466 	des8.Append(_L8(" add some more text"));
   467 	testCopyL(copy8,des8);
   468 	test(copy8==des8);
   469 	des8.SetMax();
   470 	des8.Fill('?');
   471 	testCopyL(copy8,des8);
   472 	test(copy8==des8);
   473 	des8.Zero();
   474 	testCopyL(copy8,des8);
   475 	test(copy8==des8);
   476 //
   477  	test.Next(_L("Streaming TDes16"));
   478   	TBuf16<0x100> des16,copy16;
   479 	des16=_L16("test1");
   480 	testCopyL(copy16,des16);
   481 	test(copy16==des16);
   482 	des16.Append(_L16(" add some more text"));
   483 	testCopyL(copy16,des16);
   484 	test(copy16==des16);
   485 	des16.SetMax();
   486 	des16.Fill('?');
   487 	testCopyL(copy16,des16);
   488 	test(copy16==des16);
   489 	des16.Zero();
   490 	testCopyL(copy16,des16);
   491 	test(copy16==des16);
   492 //
   493 	test.Next(_L("Streaming out TDes8 and streaming in TDes16"));
   494 	des8=_L8("test1");
   495 	testCopyL(copy16,des8);
   496 	copy8.Copy(copy16);
   497 	test(copy8==des8);
   498 	des8.Append(_L8(" add some more text"));
   499 	testCopyL(copy16,des8);
   500 	copy8.Copy(copy16);
   501 	test(copy8==des8);
   502 	des8.SetMax();
   503 	des8.Fill('?');
   504 	testCopyL(copy16,des8);
   505 	copy8.Copy(copy16);
   506 	test(copy8==des8);
   507 	des8.Zero();
   508 	testCopyL(copy16,des8);
   509 	copy8.Copy(copy16);
   510 	test(copy8==des8);
   511 //
   512 	test.Next(_L("Streaming out TDes16 and streaming in TDes8"));
   513 	des16=_L16("test1");
   514 	testCopyL(copy8,des16);
   515 	copy16.Copy(copy8);
   516 	test(copy16==des16);
   517 	des16.Append(_L16(" add some more text"));
   518 	testCopyL(copy8,des16);
   519 	copy16.Copy(copy8);
   520 	test(copy16==des16);
   521 	des16.SetMax();
   522 	des16.Fill('?');
   523 	testCopyL(copy8,des16);
   524 	copy16.Copy(copy8);
   525 	test(copy16==des16);
   526 	des16.Zero();
   527 	testCopyL(copy8,des16);
   528 	copy16.Copy(copy8);
   529 	test(copy16==des16);
   530 	}
   531 
   532 /**
   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
   538 @SYMREQ                 REQ0000
   539 */
   540 LOCAL_C void testHBufCL()
   541 	{
   542 	test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1214 Streaming HBufC8 "));
   543   	TBuf8<0x100> des8,copy8;
   544   	HBufC8* buf8;
   545 	des8=_L8("test1");
   546 	buf8=testClone_HBufC8L(des8);
   547 	test(*buf8==des8);
   548 	User::Free(buf8);
   549 	des8.Append(_L8(" add some more text"));
   550 	buf8=testClone_HBufC8L(des8);
   551 	test(*buf8==des8);
   552 	User::Free(buf8);
   553 	des8.SetMax();
   554 	des8.Fill('?');
   555 	buf8=testClone_HBufC8L(des8);
   556 	test(*buf8==des8);
   557 	User::Free(buf8);
   558 	des8.Zero();
   559 	buf8=testClone_HBufC8L(des8);
   560 	test(*buf8==des8);
   561 	User::Free(buf8);
   562 //
   563  	test.Next(_L("Streaming HBufC16"));
   564   	TBuf16<0x100> des16,copy16;
   565   	HBufC16* buf16;
   566 	des16=_L16("test1");
   567 	buf16=testClone_HBufC16L(des16);
   568 	test(*buf16==des16);
   569 	User::Free(buf16);
   570 	des16.Append(_L16(" add some more text"));
   571 	buf16=testClone_HBufC16L(des16);
   572 	test(*buf16==des16);
   573 	User::Free(buf16);
   574 	des16.SetMax();
   575 	des16.Fill('?');
   576 	buf16=testClone_HBufC16L(des16);
   577 	test(*buf16==des16);
   578 	User::Free(buf16);
   579 	des16.Zero();
   580 	buf16=testClone_HBufC16L(des16);
   581 	test(*buf16==des16);
   582 	User::Free(buf16);
   583 //
   584 	test.Next(_L("Streaming out TDes8 and streaming in HBufC16"));
   585 	des8=_L8("test1");
   586 	buf16=testClone_HBufC16L(des8);
   587 	copy8.Copy(*buf16);
   588 	test(copy8==des8);
   589 	User::Free(buf16);
   590 	des8.Append(_L8(" add some more text"));
   591 	buf16=testClone_HBufC16L(des8);
   592 	copy8.Copy(*buf16);
   593 	test(copy8==des8);
   594 	User::Free(buf16);
   595 	des8.SetMax();
   596 	des8.Fill('?');
   597 	buf16=testClone_HBufC16L(des8);
   598 	copy8.Copy(*buf16);
   599 	test(copy8==des8);
   600 	User::Free(buf16);
   601 	des8.Zero();
   602 	buf16=testClone_HBufC16L(des8);
   603 	copy8.Copy(*buf16);
   604 	test(copy8==des8);
   605 	User::Free(buf16);
   606 //
   607 	test.Next(_L("Streaming out TDes16 and streaming in HBufC8"));
   608 	des16=_L16("test1");
   609 	buf8=testClone_HBufC8L(des16);
   610 	copy16.Copy(*buf8);
   611 	test(copy16==des16);
   612 	User::Free(buf8);
   613 	des16.Append(_L16(" add some more text"));
   614 	buf8=testClone_HBufC8L(des16);
   615 	copy16.Copy(*buf8);
   616 	test(copy16==des16);
   617 	User::Free(buf8);
   618 	des16.SetMax();
   619 	des16.Fill('?');
   620 	buf8=testClone_HBufC8L(des16);
   621 	copy16.Copy(*buf8);
   622 	test(copy16==des16);
   623 	User::Free(buf8);
   624 	des16.Zero();
   625 	buf8=testClone_HBufC8L(des16);
   626 	copy16.Copy(*buf8);
   627 	test(copy16==des16);
   628 	User::Free(buf8);
   629 //
   630 	test.Next(_L("Overflowing and over-allocating HBufC8"));
   631 	des8.SetMax();
   632 	buf8=testClone_HBufC8L(des8,0x80);
   633 	test(buf8==NULL);
   634 	buf8=testClone_HBufC8L(des8,0x200);
   635 	test(buf8!=NULL);
   636 	test(User::AllocLen(buf8)==sizeof(TBufC8<0x100>));
   637 	User::Free(buf8);
   638 //
   639 	test.Next(_L("Overflowing and over-allocating HBufC16"));
   640 	des16.SetMax();
   641 	buf16=testClone_HBufC16L(des16,0x80);
   642 	test(buf16==NULL);
   643 	buf16=testClone_HBufC16L(des16,0x200);
   644 	test(buf16!=NULL);
   645 	test(User::AllocLen(buf16)==sizeof(TBufC16<0x100>));
   646 	User::Free(buf16);
   647 }
   648 
   649 //
   650 // Compare two buffers.
   651 //
   652 TBool operator==(const CBufBase& aBuf,const CBufBase& anotherBuf)
   653 	{
   654 	TInt s=aBuf.Size();
   655 	if (s!=anotherBuf.Size())
   656 		return EFalse;
   657 //
   658 	for (TInt i=0;i<s;)
   659 		{
   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)
   664 			return EFalse;
   665 //
   666 		i+=n;
   667 		}
   668 	return ETrue;
   669 	}
   670 
   671 /**
   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
   677 @SYMREQ                 REQ0000
   678 */
   679 LOCAL_C void testBufL()
   680 	{
   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);
   689 	test(*buf==*bufOrg);
   690 	buf->Delete(0,10);
   691 	testCopyL(*buf,*bufOrg);
   692 	test(*buf==*bufOrg);
   693 	buf->Delete(0,10);
   694 	buf->InsertL(26,data,10);
   695 	testCopyL(*buf,*bufOrg);
   696 	test(*buf==*bufOrg);
   697 	buf->InsertL(0,data+10,26);
   698 	testCopyL(*buf,*bufOrg);
   699 	test(*buf==*bufOrg);
   700 	CleanupStack::PopAndDestroy(2);
   701 //
   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);
   709 	test(*buf==*bufOrg);
   710 	buf->Delete(0,10);
   711 	testCopyL(*buf,*bufOrg);
   712 	test(*buf==*bufOrg);
   713 	buf->Delete(0,10);
   714 	buf->InsertL(26,data,10);
   715 	testCopyL(*buf,*bufOrg);
   716 	test(*buf==*bufOrg);
   717 	testCopyL(*buf,*bufOrg);
   718 	test(*buf==*bufOrg);
   719 	CleanupStack::PopAndDestroy(2);
   720 	}
   721 
   722 template <class T>
   723 TBool operator==(const CArrayFix<T>& anArray,const CArrayFix<T>& anotherArray);
   724 #if defined(__GCC32__)
   725 template <class T>
   726 inline TBool operator==(const CArrayFixFlat<T>& anArray,const CArrayFixFlat<T>& anotherArray)
   727 	{return (const CArrayFix<T>&)anArray==(const CArrayFix<T>&)anotherArray;}
   728 #endif
   729 
   730 //
   731 // Compare two arrays.
   732 //
   733 template <class T>
   734 TBool operator==(const CArrayFix<T>& anArray,const CArrayFix<T>& anotherArray)
   735 	{
   736 	TInt n=anArray.Count();
   737 	if (n!=anotherArray.Count())
   738 		return EFalse;
   739 //
   740 	for (TInt i=0;i<n;i++)
   741 		{
   742 		if (anArray[i]!=anotherArray[i])
   743 			return EFalse;
   744 		}
   745 	return ETrue;
   746 	}
   747 
   748 /**
   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
   754 @SYMREQ                 REQ0000
   755 */
   756 LOCAL_C void testArrayFixL()
   757 	{
   758 //*	test.Next(_L("Streaming CArrayFix<TUint32>"));
   759 //#pragma message ( __FILE__ " : 'testArrayFix()' not entirely implemented")
   760 //
   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);
   774 	}
   775 
   776 /**
   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. 
   783 @SYMDEF                 DEF135804
   784 */
   785 LOCAL_C void testFileL()
   786 	{
   787 
   788 	_LIT8(KTestString, "Test String test");
   789 	test.Next(_L("PDS-STORE-CT-4011 testUS_SHARE_FileL"));
   790 	
   791 	HBufC8* rwbuf = HBufC8::NewLC(1024*10);
   792 	HBufC8* buf = HBufC8::NewLC(1024);
   793 	TPtr8 des = buf->Des();
   794 	TDesBuf tdb;
   795 	TPtr8 des2 = rwbuf->Des();
   796 	tdb.Set( des2 );
   797 	
   798 	TStreamExchange se(&tdb);
   799 	
   800 	RShareWriteStream wstream(se);
   801 	wstream.WriteL(KTestString);
   802 	wstream.CommitL();
   803 	wstream.Close();
   804 	
   805 	RShareReadStream rstream(se);
   806 	rstream.ReadL(des, buf->Length());
   807 	rstream.Close();
   808 	
   809 	test( des.Compare(KTestString) );
   810 
   811 	RShareWriteStream wstream2;
   812 	wstream2.Open(se);
   813 	wstream2.WriteL(KTestString);
   814 	wstream2.CommitL();
   815 	wstream2.Close();
   816 
   817 	RShareReadStream rstream2;
   818 	rstream2.Open(se);
   819 	rstream2.ReadL(des, buf->Length());
   820 	rstream2.Close();
   821 
   822 	test(des.Compare(KTestString));
   823 	
   824 	CleanupStack::PopAndDestroy(2, rwbuf);
   825 	
   826 	}
   827 
   828 /**
   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.
   835 @SYMDEF                 DEF135804
   836 */
   837 class RShareBufTest : public RShareBuf
   838 	{
   839 	public:
   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);}
   847 	};
   848 
   849 LOCAL_C void testFileRShareBufL()
   850 {
   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);
   854 	TDesBuf tdb;
   855 	TPtr8 des2 = rwbuf->Des();
   856 	tdb.Set( des2 );
   857 	
   858 	TStreamExchange se(&tdb);
   859 	
   860 	test.Next(_L("PDS-STORE-CT-4012 RShareBuf tests"));
   861 	RShareBufTest rsb;
   862 	rsb.Release();
   863 	rsb.Open(se, RShareBuf::ERead|RShareBuf::EWrite);
   864 	rsb.WriteL(KTestString().Ptr(), KTestString().Length());
   865 	TInt dupa = rsb.SizeL();
   866 	
   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 );
   873 	
   874 	TUint8* tempBuf = new TUint8[1024];
   875 	CleanupStack::PushL(tempBuf);
   876 	test(tempBuf != NULL);
   877 	for(TInt i=0;i<1024;i++)
   878 		tempBuf[i]=0;
   879 	
   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);
   886 	
   887 	spos = rsb.DoSeekL(RShareBuf::EWrite, EStreamBeginning, 0);
   888 	test(spos.Offset() == 0);
   889 	
   890 	TRequestStatus status;
   891 	rsb.DoWriteL(KTestString(), KTestString().Length(), status);
   892 	User::WaitForRequest(status);
   893 	test(status == KErrNone);
   894 	
   895 	buf->Des().Zero();
   896 	TPtr8 pbuf2 = buf->Des();
   897 	
   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);
   905 	
   906 	/**
   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
   912 	 */
   913 	
   914 	rsb.Close();
   915 	CleanupStack::PopAndDestroy(3, rwbuf);
   916 }
   917 
   918 /**
   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.
   924 @SYMDEF                 DEF135804
   925 */
   926 LOCAL_C void testTStreamExchangeAndMarkL()
   927 {
   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);
   932 	TDesBuf tdb;
   933 	TPtr8 des2 = rwbuf->Des();
   934 	tdb.Set( des2 );
   935 	TStreamExchange se(&tdb);
   936 	RShareBufTest rsb;
   937 	rsb.Open(se, RShareBuf::ERead|RShareBuf::EWrite);
   938 	test( se.HostL() == &tdb );
   939 	
   940 	TStreamMark sm(0);
   941 	TInt bytesprocessed;
   942 	sm.WriteL(se, KTestString().Ptr(),KTestString().Length() );
   943 	TRequestStatus rstatus;
   944 	
   945 	TStreamMark sm2(0);
   946 	bytesprocessed = sm2.WriteL(se, KTestString(), KTestString().Length(), rstatus);
   947 	test (bytesprocessed == KTestString().Length());
   948 	User::WaitForRequest(rstatus);
   949 	test(rstatus == KErrNone);
   950 	
   951 	TBool rc = sm == sm2;
   952 	test(!rc);
   953 	rc = sm == (const TStreamMark*)&sm2;
   954 	test(!rc);
   955 	
   956 	rc = sm != sm2;
   957 	test(rc);
   958 	rc = sm != (const TStreamMark*)&sm2;
   959 	test(rc);
   960 	
   961 	rc = sm.IsWith(se);
   962 	test(!rc);
   963 	rc = sm2.IsWith(se);
   964 	test(rc);
   965 	
   966 	TStreamMark sm3(0);
   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);
   973 	
   974 	TStreamMark sm4(0);
   975 	buf->Des().Zero();
   976 	des.Set(buf->Des());
   977 	bytesprocessed = sm4.ReadL(se, des, rstatus);
   978 	RDebug::Printf("Written: %d, Length: %d",bytesprocessed,des.MaxLength());
   979 	test (bytesprocessed == des.MaxLength());
   980 	sm4.ExtractL(se);
   981 	User::WaitForRequest(rstatus);
   982 	test(rstatus == KErrNone);
   983 	
   984 	TStreamMark sm5(0);
   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);
   990 	sm5.ExtractL(se);
   991 	
   992 	rsb.Close();
   993 	CleanupStack::PopAndDestroy(2, rwbuf);
   994 }
   995 
   996 const TInt KMinTestHeapSize = 0x10000;
   997 const TInt KMaxTestHeapSize = 0x100000;
   998 
   999 /**
  1000  * Helper function for PDS-STORE-CT-4014
  1001  */
  1002 LOCAL_C void DoTBtreeKeyPanicL(TInt aCase)
  1003 	{
  1004 	//those will panic, and should be tested if they will panic
  1005 	switch(aCase)
  1006 		{
  1007 		case 0:
  1008 			{
  1009 			TBtreeKey key27(0,ECmpTUint);
  1010 			}
  1011 		case 1:
  1012 			{
  1013 			TBtreeKey key23(0,ECmpTInt);
  1014 			}
  1015 		case 2:
  1016 			{
  1017 			TBtreeKey key9(0,ECmpCollated);
  1018 			}
  1019 		case 3:
  1020 			{
  1021 			TBtreeKey key6(0,ECmpFolded);
  1022 			}
  1023 		case 4:
  1024 			{
  1025 			TBtreeKey key3(0,ECmpNormal);
  1026 			}
  1027 		case 5:
  1028 			{
  1029 			TBtreeKey key91(0,ECmpCollated,10);
  1030 			}
  1031 		case 6:
  1032 			{
  1033 			TBtreeKey key61(0,ECmpFolded,10);
  1034 			}
  1035 		case 7:
  1036 			{
  1037 			TBtreeKey key31(0,ECmpNormal,10);
  1038 			}
  1039 		}
  1040 	}
  1041 /**
  1042  * Helper function for PDS-STORE-CT-4014
  1043  */
  1044 LOCAL_C TInt DoPanicingThread(TAny* aTestCase)
  1045 	{
  1046 	User::SetJustInTime(EFalse);	// disable debugger panic handling
  1047 	TInt tcase = *((TInt*)aTestCase);
  1048 	TRAP_IGNORE(DoTBtreeKeyPanicL(tcase));		
  1049 	return 0;
  1050 	}
  1051 
  1052 /**
  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.
  1060 @SYMDEF                 DEF135804
  1061 */
  1062 LOCAL_C void testMBtreeKeyL()
  1063 {
  1064 	test.Next(_L("PDS-STORE-CT-4014 MBtreeKey Constructors"));
  1065 	TBtreeKey key;
  1066 	TBtreeKey key_1(0);
  1067 	TBtreeKey key2(0, ECmpTInt16);
  1068 	//cmp text
  1069 
  1070 	for(TInt i=0;i<8;i++)
  1071 		{
  1072 		RThread thread;
  1073 		TInt tcase = i;
  1074 		TRequestStatus rst;
  1075 		TFileName name;
  1076 		name.Copy(_L("MyPanic "));
  1077 		name.AppendNum(i);
  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);
  1083 		thread.Resume();
  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);
  1089 		}
  1090 	
  1091 	test.Next(_L("MBtreeKey Comparators"));
  1092 	//prepare 8bit descriptor
  1093 	TBuf8<50> textKey1;
  1094 	TBuf8<50> textKey2;
  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();
  1101 	
  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();
  1111 
  1112 	
  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);
  1117 	
  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);
  1122 
  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);
  1127 	
  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);
  1132 
  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);
  1137 	
  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);
  1142 	
  1143 	//cmp numeric
  1144 	TInt8 int8_1 = 123;
  1145 	TInt8 int8_2 = 123;
  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;
  1152 	
  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);
  1159 
  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);
  1168 	
  1169 	//one is bigger
  1170 	int32_1+=4;
  1171 	int64_1+=54;
  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);
  1178 	
  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();
  1183 	
  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();
  1188 	
  1189 	//testing Between function
  1190 	TBtreePivot pivot;
  1191 	
  1192 	test.Next(_L("MBtreeKey Between function, not fully implemented. See comments."));
  1193 	/**
  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
  1198 	 */
  1199 	
  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);
  1204 	
  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);
  1209 	
  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);
  1214 		
  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);
  1219 		
  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);
  1224 	
  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);
  1229 	
  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);
  1236 
  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);
  1245 	
  1246 }
  1247 
  1248 //
  1249 // Initialise the cleanup stack.
  1250 //
  1251 LOCAL_C void setupCleanup()
  1252     {
  1253 	TheTrapCleanup=CTrapCleanup::New();
  1254 	test(TheTrapCleanup!=NULL);
  1255 	TRAPD(r,\
  1256 		{\
  1257 		for (TInt i=KTestCleanupStack;i>0;i--)\
  1258 			CleanupStack::PushL((TAny*)1);\
  1259 		test(r==KErrNone);\
  1260 		CleanupStack::Pop(KTestCleanupStack);\
  1261 		});
  1262 	test(r==KErrNone);
  1263 	}
  1264 
  1265 //
  1266 // Test streaming conversions.
  1267 //
  1268 GLDEF_C TInt E32Main()
  1269     {
  1270 	test.Title();
  1271 	setupCleanup();
  1272 	__UHEAP_MARK;
  1273 //
  1274 	test.Start(_L("Test streaming conversions"));
  1275 	TRAPD(r,testIntL());
  1276 	test(r==KErrNone);
  1277 	TRAP(r,testUintL());
  1278 	test(r==KErrNone);
  1279 	TRAP(r,testRealL());
  1280 	test(r==KErrNone);
  1281 	TRAP(r,testDesL());
  1282 	test(r==KErrNone);
  1283 	TRAP(r,testHBufCL());
  1284 	test(r==KErrNone);
  1285 	TRAP(r,testBufL());
  1286 	test(r==KErrNone);
  1287 	TRAP(r,testArrayFixL());
  1288 	test(r==KErrNone);
  1289 	TRAP(r,testPointL());
  1290 	test(r==KErrNone);
  1291 	TRAP(r,testSizeL());
  1292 	test(r==KErrNone);
  1293 	TRAP(r,testRectL());
  1294 	test(r==KErrNone);
  1295 	//
  1296 	TRAP(r,testFileL());
  1297 	test(r==KErrNone);
  1298 	TRAP(r,testFileRShareBufL());
  1299 	test(r==KErrNone);	
  1300 	TRAP(r,testTStreamExchangeAndMarkL());
  1301 	test(r==KErrNone);	
  1302 	TRAP(r,testMBtreeKeyL());
  1303 	test(r==KErrNone);	
  1304 	test.End();
  1305 //
  1306 	__UHEAP_MARKEND;
  1307 	delete TheTrapCleanup;
  1308 	test.Close();
  1309 	return 0;
  1310     }
  1311