os/persistentdata/persistentstorage/store/TMEM/t_stormemstrm.cpp
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
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".
     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 
    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;
    26 
    27 LOCAL_D CTrapCleanup *TheTrapCleanup;
    28 LOCAL_D RTest test(_L("t_stormemstrm"));
    29 LOCAL_D TUint8 TheBuf[KTestTotal+1];
    30 
    31 //
    32 // Test writing to a stream.
    33 //
    34 LOCAL_C void testWriteL(RWriteStream& aStream)
    35 	{
    36 	test.Next(_L("Writing..."));
    37 	for (TInt i=0;i<=KTestLength;++i)
    38 		{
    39 		aStream.WriteL(KTestDes,i);
    40 		aStream.WriteL(&KTestData[i],KTestLength-i);
    41 		}
    42 	}
    43 
    44 //
    45 // Test reading from a stream.
    46 //
    47 LOCAL_C void testReadL(RReadStream& aStream)
    48 	{
    49 	test.Next(_L("Reading..."));
    50 	for (TInt i=KTestLength;i>=0;--i)
    51 		{
    52 		TBuf8<KTestLength+1> buf;
    53 		aStream.ReadL(buf,i);
    54 		test(buf.Length()==i);
    55 		buf.SetMax();
    56 		aStream.ReadL(&buf[i],KTestLength-i);
    57 		buf.SetLength(KTestLength);
    58 		test(buf==KTestDes);
    59 		}
    60 	}
    61 
    62 //
    63 // Test skipping data on a stream.
    64 //
    65 LOCAL_C void testSkipL(RReadStream& aStream)
    66 	{
    67 	test.Next(_L("Skipping..."));
    68 	for (TInt i=0;i<=KTestLength;++i)
    69 		{
    70 		aStream.ReadL(i);
    71 		aStream.ReadL(KTestLength-i);
    72 		}
    73 	}
    74 
    75 //
    76 // Test a stream is at end-of-file.
    77 //
    78 LOCAL_C void testEofL(RReadStream& aStream)
    79 	{
    80 	test.Next(_L("At end"));
    81 	TUint8 b;
    82 	test(aStream.Source()->ReadL(&b,1)==0);
    83 	}
    84 
    85 //
    86 // Test copying from one stream to another.
    87 //
    88 LOCAL_C void testCopyL(RWriteStream& aWriteStream,RReadStream& aReadStream)
    89 	{
    90 	test.Next(_L("Copying"));
    91 	for (TInt i=KTestLength;i>=0;--i)
    92 		{
    93 		aWriteStream.WriteL(aReadStream,i);
    94 		aReadStream.ReadL(aWriteStream,KTestLength-i);
    95 		}
    96 	}
    97 
    98 //
    99 // Test writing to a memory stream.
   100 //
   101 LOCAL_C void testWriteL(TAny* aPtr)
   102 	{
   103 	test.Next(_L("Writing to constructed stream"));
   104 	RMemWriteStream out(aPtr,KTestTotal);
   105 	testWriteL(out);
   106 	out.CommitL();
   107 //
   108 	test.Next(_L("Writing one byte too many"));
   109 	TRAPD(r,out.WriteUint8L(0));
   110 	test(r==KErrOverflow);
   111 	out.Close();
   112 //
   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);
   120 //
   121 	test.Next(_L("Writing to opened stream"));
   122 	out.Open(aPtr,KTestTotal);
   123 	testWriteL(out);
   124 	}
   125 
   126 //
   127 // Test reading from a memory stream.
   128 //
   129 LOCAL_C void testReadL(const TAny* aPtr)
   130 	{
   131 	test.Next(_L("Reading from constructed stream"));
   132 	RMemReadStream in(KTestData,KTestLength);
   133 	TRAPD(r,testReadL(in));
   134 	test(r==KErrEof);
   135 	testEofL(in);
   136 	in.Close();
   137 //
   138 	test.Next(_L("Reading from opened stream"));
   139 	in.Open(aPtr,KTestTotal);
   140 	testReadL(in);
   141 	testEofL(in);
   142 	}
   143 
   144 //
   145 // Test skipping on a memory stream.
   146 //
   147 LOCAL_C void testSkipL(const TAny* aPtr)
   148 	{
   149 	test.Next(_L("Skipping using small transfers"));
   150 	RMemReadStream in(aPtr,KTestTotal);
   151 	testSkipL(in);
   152 	testEofL(in);
   153 	in.Close();
   154 //
   155 	test.Next(_L("Skipping using a single big transfer"));
   156 	in.Open(aPtr,KTestTotal);
   157 	in.ReadL(KTestTotal);
   158 	testEofL(in);
   159 	}
   160 
   161 //
   162 // Test copying memory streams.
   163 //
   164 LOCAL_C void testCopyL(TAny* aPtr)
   165 	{
   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));
   171 	test(r==KErrEof);
   172 	testEofL(in);
   173 	in.Open(aPtr,KTestTotal);
   174 	TRAP(r,testCopyL(out,in));
   175 	test(r==KErrOverflow);
   176 	in.Open(buf,KTestTotal);
   177 	testReadL(in);
   178 	testEofL(in);
   179 	in.Open(buf,KTestTotal);
   180 	out.Open(aPtr,KTestTotal);
   181 	testCopyL(out,in);
   182 	testEofL(in);
   183 	out.Close();
   184 	in.Close();
   185 	in.Open(aPtr,KTestTotal);
   186 	testReadL(in);
   187 	testEofL(in);
   188 	in.Close();
   189 //
   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));
   195 	test(r==KErrEof);
   196 	testEofL(in);
   197 	in.Open(aPtr,KTestTotal);
   198 	TRAP(r,out.WriteL(in,KTestTotal));
   199 	test(r==KErrOverflow);
   200 	in.Open(buf,KTestTotal);
   201 	testReadL(in);
   202 	testEofL(in);
   203 	in.Open(buf,KTestTotal);
   204 	out.Open(aPtr,KTestTotal);
   205 	in.ReadL(out,KTestTotal);
   206 	testEofL(in);
   207 	out.Close();
   208 	in.Close();
   209 	in.Open(aPtr,KTestTotal);
   210 	testReadL(in);
   211 	testEofL(in);
   212 	in.Close();
   213 //
   214 	test.Next(_L("Copying until end of file"));
   215 	Mem::FillZ(buf,KTestTotal);
   216 	in.Open(KTestData,KTestLength);
   217 	out.Open(buf,KTestTotal);
   218 	out.WriteL(in);
   219 	testEofL(in);
   220 	in.Open(aPtr,KTestTotal);
   221 	TRAP(r,in.ReadL(out));
   222 	test(r==KErrOverflow);
   223 	in.Open(buf,KTestTotal);
   224 	testReadL(in);
   225 	testEofL(in);
   226 	in.Open(buf,KTestTotal);
   227 	out.Open(aPtr,KTestTotal);
   228 	out.WriteL(in);
   229 	testEofL(in);
   230 	out.CommitL();
   231 	out.Close();
   232 	in.Close();
   233 	in.Open(aPtr,KTestTotal);
   234 	testReadL(in);
   235 	testEofL(in);
   236 	in.Close();
   237 	}
   238 
   239 //
   240 // Test writing to a descriptor stream.
   241 //
   242 LOCAL_C void testWriteL(TDes8& aDes)
   243 	{
   244 	test.Next(_L("Writing to constructed stream"));
   245 	RDesWriteStream out(aDes);
   246 	testWriteL(out);
   247 //
   248 	test.Next(_L("Writing one byte too many"));
   249 	TRAPD(r,out.WriteUint8L(0));
   250 	test(r==KErrOverflow);
   251 	out.Close();
   252 //
   253 	test.Next(_L("Over-writing massively"));
   254 	TPtr8 ptr((TUint8*)aDes.Ptr(),KTestLength);
   255 	out.Open(ptr);
   256 	TRAP(r,testWriteL(out));
   257 	test(r==KErrOverflow);
   258 	ptr.Set((TUint8*)aDes.Ptr()+KTestLength,KTestLength,KTestTotal-KTestLength);
   259 	out.Open(ptr);
   260 	TRAP(r,testWriteL(out));
   261 	test(r==KErrOverflow);
   262 //
   263 	test.Next(_L("Writing to opened stream"));
   264 	out.Open(aDes);
   265 	testWriteL(out);
   266 	out.CommitL();
   267 	}
   268 
   269 //
   270 // Test reading from a descriptor stream.
   271 //
   272 LOCAL_C void testReadL(const TDesC8& aDes)
   273 	{
   274 	test.Next(_L("Reading from constructed stream"));
   275 	RDesReadStream in(KTestDes);
   276 	TRAPD(r,testReadL(in));
   277 	test(r==KErrEof);
   278 	testEofL(in);
   279 	in.Close();
   280 //
   281 	test.Next(_L("Reading from opened stream"));
   282 	in.Open(aDes);
   283 	testReadL(in);
   284 	testEofL(in);
   285 	}
   286 
   287 //
   288 // Test skipping on a descriptor stream.
   289 //
   290 LOCAL_C void testSkipL(const TDesC8& aDes)
   291 	{
   292 	test.Next(_L("Skipping using small transfers"));
   293 	RDesReadStream in(aDes);
   294 	testSkipL(in);
   295 	testEofL(in);
   296 	in.Close();
   297 //
   298 	test.Next(_L("Skipping using a single big transfer"));
   299 	in.Open(aDes);
   300 	in.ReadL(KTestTotal);
   301 	testEofL(in);
   302 	}
   303 
   304 //
   305 // Test copying descriptor streams.
   306 //
   307 LOCAL_C void testCopyL(TDes8& aDes)
   308 	{
   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));
   314 	test(r==KErrEof);
   315 	testEofL(in);
   316 	in.Open(aDes);
   317 	TRAP(r,testCopyL(out,in));
   318 	test(r==KErrOverflow);
   319 	out.CommitL();
   320 	testEofL(in);
   321 	in.Open(buf);
   322 	testReadL(in);
   323 	testEofL(in);
   324 	in.Open(buf);
   325 	out.Open(aDes);
   326 	testCopyL(out,in);
   327 	testEofL(in);
   328 	out.Close();
   329 	in.Close();
   330 	in.Open(aDes);
   331 	testReadL(in);
   332 	testEofL(in);
   333 	in.Close();
   334 //
   335 	test.Next(_L("Copying using a single big transfer"));
   336 	buf.FillZ();
   337 	in.Open(KTestDes);
   338 	out.Open(buf);
   339 	TRAP(r,in.ReadL(out,KTestTotal));
   340 	test(r==KErrEof);
   341 	testEofL(in);
   342 	in.Open(aDes);
   343 	TRAP(r,out.WriteL(in,KTestTotal));
   344 	test(r==KErrOverflow);
   345 	out.CommitL();
   346 	in.Open(buf);
   347 	testReadL(in);
   348 	testEofL(in);
   349 	in.Open(buf);
   350 	out.Open(aDes);
   351 	in.ReadL(out,KTestTotal);
   352 	testEofL(in);
   353 	out.Close();
   354 	in.Close();
   355 	in.Open(aDes);
   356 	testReadL(in);
   357 	testEofL(in);
   358 	in.Close();
   359 //
   360 	test.Next(_L("Copying until end of file"));
   361 	buf.FillZ();
   362 	in.Open(KTestDes);
   363 	out.Open(buf);
   364 	out.WriteL(in);
   365 	testEofL(in);
   366 	in.Open(aDes);
   367 	TRAP(r,in.ReadL(out));
   368 	test(r==KErrOverflow);
   369 	out.CommitL();
   370 	in.Open(buf);
   371 	testReadL(in);
   372 	testEofL(in);
   373 	in.Open(buf);
   374 	out.Open(aDes);
   375 	out.WriteL(in);
   376 	testEofL(in);
   377 	out.CommitL();
   378 	out.Close();
   379 	in.Close();
   380 	in.Open(aDes);
   381 	testReadL(in);
   382 	testEofL(in);
   383 	in.Close();
   384 	}
   385 
   386 //
   387 // Test writing to a buffer stream.
   388 //
   389 LOCAL_C void testWriteL(CBufBase& aBuf)
   390 	{
   391 	test.Next(_L("Writing to constructed stream"));
   392 	RBufWriteStream out(aBuf);
   393 	testWriteL(out);
   394 	out.CommitL();
   395 //
   396 	test.Next(_L("Writing to opened stream"));
   397 	out.Open(aBuf,KTestLength);
   398 	testWriteL(out);
   399 //
   400 	test.Next(_L("Writing to inserting stream"));
   401 	out.Insert(aBuf,KTestLength);
   402 	testWriteL(out);
   403 	out.Close();
   404 	out.Insert(aBuf,0);
   405 	testWriteL(out);
   406 //
   407 	test.Next(_L("Writing to appending stream"));
   408 	out.Append(aBuf);
   409 	testWriteL(out);
   410 //
   411 	test.Next(_L("Writing to truncating stream"));
   412 	out.Truncate(aBuf,KTestLength);
   413 	testWriteL(out);
   414 	out.Close();
   415 	out.Truncate(aBuf);
   416 	testWriteL(out);
   417 	out.CommitL();
   418 	}
   419 
   420 //
   421 // Test reading from a buffer stream.
   422 //
   423 LOCAL_C void testReadL(const CBufBase& aBuf)
   424 	{
   425 	test.Next(_L("Reading from constructed stream"));
   426 	RBufReadStream in(aBuf,KTestLength);
   427 	TRAPD(r,testReadL(in));
   428 	test(r==KErrEof);
   429 	testEofL(in);
   430 	in.Close();
   431 //
   432 	test.Next(_L("Reading from opened stream"));
   433 	in.Open(aBuf);
   434 	testReadL(in);
   435 	testEofL(in);
   436 	}
   437 
   438 //
   439 // Test skipping on a buffer stream.
   440 //
   441 LOCAL_C void testSkipL(const CBufBase& aBuf)
   442 	{
   443 	test.Next(_L("Skipping using small transfers"));
   444 	RBufReadStream in(aBuf);
   445 	testSkipL(in);
   446 	testEofL(in);
   447 	in.Close();
   448 //
   449 	test.Next(_L("Skipping using a single big transfer"));
   450 	in.Open(aBuf);
   451 	in.ReadL(KTestTotal);
   452 	testEofL(in);
   453 	in.Close();
   454 	}
   455 
   456 //
   457 // Test copying buffer streams.
   458 //
   459 LOCAL_C void testCopyL(CBufBase& aBuf)
   460 	{
   461 	test.Next(_L("Copying using small transfers"));
   462 	CBufBase* buf=0;
   463 	TRAPD(r,buf=CBufFlat::NewL(KTestCopyExpandSize));
   464 	if (r!=KErrNone)
   465 		test.Panic(_L("Allocating buffer"));
   466 	RBufReadStream in(aBuf);
   467 	RBufWriteStream out(*buf);
   468 	TRAP(r,testCopyL(out,in));
   469 	test(r==KErrEof);
   470 	testEofL(in);
   471 	in.Open(aBuf,KTestTotal-2*KTestLength);
   472 	TRAP(r,testCopyL(out,in));
   473 	test(r==KErrEof);
   474 	out.Close();
   475 	testEofL(in);
   476 	in.Open(*buf);
   477 	out.Open(aBuf);
   478 	testCopyL(out,in);
   479 	testEofL(in);
   480 	out.CommitL();
   481 	in.Open(aBuf);
   482 	testReadL(in);
   483 	testEofL(in);
   484 	delete buf;
   485 	TRAP(r,buf=CBufSeg::NewL(KTestCopyExpandSize));
   486 	if (r!=KErrNone)
   487 		test.Panic(_L("Allocating buffer"));
   488 	in.Open(aBuf);
   489 	out.Open(*buf);
   490 	testCopyL(out,in);
   491 	testEofL(in);
   492 	out.CommitL();
   493 	in.Open(*buf);
   494 	out.Open(aBuf);
   495 	testCopyL(out,in);
   496 	testEofL(in);
   497 	out.Close();
   498 	in.Close();
   499 	in.Open(aBuf);
   500 	testReadL(in);
   501 	testEofL(in);
   502 	in.Close();
   503 //
   504 	test.Next(_L("Copying using a single big transfer"));
   505 	in.Open(aBuf);
   506 	out.Truncate(*buf,KTestLength);
   507 	TRAP(r,in.ReadL(out,KTestTotal+KTestLength));
   508 	test(r==KErrEof);
   509 	testEofL(in);
   510 	in.Open(aBuf,KTestTotal);
   511 	TRAP(r,out.WriteL(in,KTestTotal));
   512 	test(r==KErrEof);
   513 	out.CommitL();
   514 	testEofL(in);
   515 	in.Open(*buf);
   516 	testReadL(in);
   517 	in.ReadL(KTestLength);
   518 	testEofL(in);
   519 	delete buf;
   520 	TRAP(r,buf=CBufFlat::NewL(KTestExpandSize));
   521 	if (r!=KErrNone)
   522 		test.Panic(_L("Allocating buffer"));
   523 	in.Open(aBuf);
   524 	out.Open(*buf);
   525 	testCopyL(out,in);
   526 	testEofL(in);
   527 	out.CommitL();
   528 	in.Open(*buf);
   529 	out.Open(aBuf);
   530 	in.ReadL(out,KTestTotal);
   531 	testEofL(in);
   532 	out.Close();
   533 	in.Close();
   534 	in.Open(aBuf);
   535 	testReadL(in);
   536 	testEofL(in);
   537 	in.Close();
   538 //
   539 	test.Next(_L("Copying until end of file"));
   540 	in.Open(aBuf,KTestLength);
   541 	out.Truncate(*buf);
   542 	out.WriteL(in);
   543 	testEofL(in);
   544 	in.Open(aBuf,KTestTotal-KTestLength);
   545 	in.ReadL(out);
   546 	out.CommitL();
   547 	testEofL(in);
   548 	in.Open(*buf);
   549 	testReadL(in);
   550 	testEofL(in);
   551 	delete buf;
   552 	TRAP(r,buf=CBufSeg::NewL(KTestExpandSize));
   553 	if (r!=KErrNone)
   554 		test.Panic(_L("Allocating buffer"));
   555 	in.Open(aBuf);
   556 	out.Open(*buf);
   557 	testCopyL(out,in);
   558 	testEofL(in);
   559 	out.CommitL();
   560 	in.Open(*buf);
   561 	out.Open(aBuf);
   562 	out.WriteL(in);
   563 	testEofL(in);
   564 	out.Close();
   565 	in.Close();
   566 	in.Open(aBuf);
   567 	testReadL(in);
   568 	testEofL(in);
   569 	in.Close();
   570 	delete buf;
   571 	}
   572 
   573 /**
   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
   579 @SYMREQ                 REQ0000
   580 */
   581 LOCAL_C void test_defect_FER_56EJNS()
   582 	{
   583 	const TPtrC8 p;
   584 	test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1173 "));
   585 	// don't replace p with TPtrC8() because gcc interprets it as a function declaration.
   586 	RDesReadStream s(p);
   587 	TInt sz=-1;
   588 	TRAPD(r,sz=s.Source()->SizeL());
   589 	test (r==KErrNone);
   590 	test (sz==0);
   591 	}
   592 
   593 /**
   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
   599 @SYMREQ                 REQ0000
   600 */
   601 LOCAL_C void testMemL()
   602 	{
   603 	test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1174 Test memory streams "));
   604 	Mem::Fill(TheBuf,KTestTotal,'|');
   605 	TheBuf[KTestTotal]=KMaxTUint8;
   606 	testWriteL(TheBuf);
   607 	testReadL(TheBuf);
   608 	testSkipL(TheBuf);
   609 	testCopyL(TheBuf);
   610 	test(TheBuf[KTestTotal]==KMaxTUint8);
   611 	}
   612 
   613 /**
   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
   619 @SYMREQ                 REQ0000
   620 */
   621 LOCAL_C void testDesL()
   622 	{
   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);
   627 	testWriteL(des);
   628 	test(des.Length()==KTestTotal);
   629 	testReadL(des);
   630 	testSkipL(des);
   631 	des.SetLength(KTestTotal-KTestLength+1);
   632 	testCopyL(des);
   633 	test(des.Length()==KTestTotal);
   634 	test(TheBuf[KTestTotal]==KMaxTUint8);
   635 	}
   636 
   637 /**
   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
   644 @SYMREQ                 REQ0000
   645 */
   646 LOCAL_C void testBufL()
   647 	{
   648 	test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1176 Test buffer streams "));
   649 	CBufBase* buf=0;
   650 	TRAPD(r,buf=CBufFlat::NewL(KTestExpandSize));
   651 	if (r!=KErrNone)
   652 		test.Panic(_L("Allocating buffer"));
   653 	testWriteL(*buf);
   654 	test(buf->Size()==KTestTotal);
   655 	testReadL(*buf);
   656 	testSkipL(*buf);
   657 	buf->ResizeL(KTestTotal-KTestLength);
   658 	testCopyL(*buf);
   659 	test(buf->Size()==KTestTotal);
   660 	delete buf;
   661 //
   662 	TRAP(r,buf=CBufSeg::NewL(KTestExpandSize));
   663 	if (r!=KErrNone)
   664 		test.Panic(_L("Allocating buffer"));
   665 	testWriteL(*buf);
   666 	test(buf->Size()==KTestTotal);
   667 	testReadL(*buf);
   668 	testSkipL(*buf);
   669 	buf->ResizeL(KTestTotal-KTestLength);
   670 	testCopyL(*buf);
   671 	test(buf->Size()==KTestTotal);
   672 	delete buf;
   673 	}
   674 
   675 /**
   676 DEF038720 - RBufReadStream Close/Re-Open doesn't return to initial open state
   677 
   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
   684 @SYMREQ                 REQ0000
   685 */
   686 LOCAL_C void test_DEF038720L()
   687 	{
   688 	test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1177 "));
   689 	CBufFlat* buf = CBufFlat::NewL(0x20);
   690 	CleanupStack::PushL(buf);
   691 	buf->ExpandL(0, 0x20);
   692 
   693 	RBufWriteStream writeStream(*buf);
   694 	writeStream.PushL();
   695 	writeStream.WriteInt32L(1);
   696 	CleanupStack::PopAndDestroy(&writeStream);
   697 
   698 	TInt temp;
   699 	RBufReadStream readStream;
   700 	for(TInt i=0; i<2; i++)
   701 		{
   702 		readStream.Open(*buf);
   703 		readStream.PushL();
   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);
   707 		}
   708 
   709 	CleanupStack::PopAndDestroy(buf);
   710 	}
   711 
   712 //
   713 // Initialise the cleanup stack.
   714 //
   715 LOCAL_C void setupCleanup()
   716     {
   717 	TheTrapCleanup=CTrapCleanup::New();
   718 	test(TheTrapCleanup!=NULL);
   719 	TRAPD(r,\
   720 		{\
   721 		for (TInt i=KTestCleanupStack;i>0;i--)\
   722 			CleanupStack::PushL((TAny*)1);\
   723 		test(r==KErrNone);\
   724 		CleanupStack::Pop(KTestCleanupStack);\
   725 		});
   726 	test(r==KErrNone);
   727 	}
   728 
   729 //
   730 // Test memory-based streams.
   731 //
   732 GLDEF_C TInt E32Main()
   733     {
   734 	test.Title();
   735 	setupCleanup();
   736 	__UHEAP_MARK;
   737 //
   738 	test.Start(_L("Test memory-based streams"));
   739 	TRAPD(r,testMemL());
   740 	test(r==KErrNone);
   741 	TRAP(r,testDesL());
   742 	test(r==KErrNone);
   743 	TRAP(r,testBufL());
   744 	test(r==KErrNone);
   745 //
   746 	test.Next(_L("Test defect fixes"));
   747 	test_defect_FER_56EJNS();
   748 	TRAP(r,::test_DEF038720L());
   749 	test(r==KErrNone);
   750 	test.End();
   751 //
   752 	__UHEAP_MARKEND;
   753 	delete TheTrapCleanup;
   754 	test.Close();
   755 	return 0;
   756     }
   757