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