os/persistentdata/persistentstorage/store/TFILE/t_storfbuf.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
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 <s32file.h>
sl@0
    17
#include <e32test.h>
sl@0
    18
sl@0
    19
const TInt KTestCleanupStack=0x20;
sl@0
    20
sl@0
    21
// This is a path specification and should not be used as is
sl@0
    22
_LIT(KFileLocationSpec, "Z:\\STOR-TST\\T_FBUF.DAT");
sl@0
    23
const TUint8* KTestData=_S8("0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ");
sl@0
    24
const TUint8* KTestDataLong=_S8("0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ0");
sl@0
    25
const TUint8* KTestData10Chars = _S8("0123456789");
sl@0
    26
sl@0
    27
const TInt KTestLength=36;
sl@0
    28
const TInt KTestTotal=KTestLength*(KTestLength+1);
sl@0
    29
const TPtrC8 KTestDes(KTestData,KTestLength);
sl@0
    30
const TPtrC8 KTestDesLong(KTestDataLong,KTestLength+1);
sl@0
    31
const TInt KTestFileBufSize=7;
sl@0
    32
const TInt KTestWriteBufSize=5;
sl@0
    33
const TInt KTestReadBufSize=3;
sl@0
    34
const TInt KTestSkipBufSize=2;
sl@0
    35
const TInt KTestCopyBufSize=1;
sl@0
    36
sl@0
    37
LOCAL_D CTrapCleanup* TheTrapCleanup;
sl@0
    38
LOCAL_D RTest test(_L("t_storfbuf"));
sl@0
    39
LOCAL_D RFs TheFs;
sl@0
    40
LOCAL_D TFileName TheTempFile;
sl@0
    41
sl@0
    42
/**
sl@0
    43
@SYMTestCaseID          SYSLIB-STORE-CT-1136
sl@0
    44
@SYMTestCaseDesc	    Writing to a stream buffer test
sl@0
    45
@SYMTestPriority 	    High
sl@0
    46
@SYMTestActions  	    Tests for RWriteStream::WriteL() function
sl@0
    47
@SYMTestExpectedResults Test must not fail
sl@0
    48
@SYMREQ                 REQ0000
sl@0
    49
*/
sl@0
    50
LOCAL_C void testWriteL(RWriteStream& aStream)
sl@0
    51
	{
sl@0
    52
	test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1136 Writing... "));
sl@0
    53
	for (TInt i=0;i<=KTestLength;++i)
sl@0
    54
		{
sl@0
    55
		aStream.WriteL(KTestDes,i);
sl@0
    56
		aStream.WriteL(&KTestData[i],KTestLength-i);
sl@0
    57
		}
sl@0
    58
	}
sl@0
    59
sl@0
    60
/**
sl@0
    61
@SYMTestCaseID          SYSLIB-STORE-CT-1137
sl@0
    62
@SYMTestCaseDesc	    Reading from a stream buffer test
sl@0
    63
@SYMTestPriority 	    High
sl@0
    64
@SYMTestActions  	    Tests for RReadStream::ReadL() function
sl@0
    65
@SYMTestExpectedResults Test must not fail
sl@0
    66
@SYMREQ                 REQ0000
sl@0
    67
*/
sl@0
    68
LOCAL_C void testReadL(RReadStream& aStream)
sl@0
    69
	{
sl@0
    70
	test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1137 Reading... "));
sl@0
    71
	for (TInt i=KTestLength;i>=0;--i)
sl@0
    72
		{
sl@0
    73
		TBuf8<KTestLength+1> buf;
sl@0
    74
		aStream.ReadL(buf,i);
sl@0
    75
		test(buf.Length()==i);
sl@0
    76
		buf.SetMax();
sl@0
    77
		aStream.ReadL(&buf[i],KTestLength-i);
sl@0
    78
		buf.SetLength(KTestLength);
sl@0
    79
		test(buf==KTestDes);
sl@0
    80
		}
sl@0
    81
	}
sl@0
    82
sl@0
    83
/**
sl@0
    84
@SYMTestCaseID          SYSLIB-STORE-CT-1138
sl@0
    85
@SYMTestCaseDesc	    Skipping data on a stream buffer test.
sl@0
    86
@SYMTestPriority 	    High
sl@0
    87
@SYMTestActions  	    Tests skipping data while reading from a stream
sl@0
    88
@SYMTestExpectedResults Test must not fail
sl@0
    89
@SYMREQ                 REQ0000
sl@0
    90
*/
sl@0
    91
LOCAL_C void testSkipL(RReadStream& aStream)
sl@0
    92
	{
sl@0
    93
	test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1138 Skipping... "));
sl@0
    94
	for (TInt i=0;i<=KTestLength;++i)
sl@0
    95
		{
sl@0
    96
		aStream.ReadL(i);
sl@0
    97
		aStream.ReadL(KTestLength-i);
sl@0
    98
		}
sl@0
    99
	}
sl@0
   100
sl@0
   101
/**
sl@0
   102
@SYMTestCaseID          SYSLIB-STORE-CT-1139
sl@0
   103
@SYMTestCaseDesc	    Tests a stream buffer is at end-of-file.
sl@0
   104
@SYMTestPriority 	    High
sl@0
   105
@SYMTestActions  	    Tests for end of file while reading from a stream buffer
sl@0
   106
@SYMTestExpectedResults Test must not fail
sl@0
   107
@SYMREQ                 REQ0000
sl@0
   108
*/
sl@0
   109
LOCAL_C void testEofL(RReadStream& aStream)
sl@0
   110
	{
sl@0
   111
	test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1139 At end "));
sl@0
   112
	TUint8 b;
sl@0
   113
	test(aStream.Source()->ReadL(&b,1)==0);
sl@0
   114
	}
sl@0
   115
sl@0
   116
//
sl@0
   117
// Test copying from one stream to another.
sl@0
   118
//
sl@0
   119
LOCAL_C void testCopyL(RWriteStream& aWriteStream,RReadStream& aReadStream)
sl@0
   120
	{
sl@0
   121
	test.Next(_L("Copying"));
sl@0
   122
	for (TInt i=KTestLength;i>=0;--i)
sl@0
   123
		{
sl@0
   124
		aWriteStream.WriteL(aReadStream,i);
sl@0
   125
		aReadStream.ReadL(aWriteStream,KTestLength-i);
sl@0
   126
		}
sl@0
   127
	}
sl@0
   128
sl@0
   129
//
sl@0
   130
// Test writing to a stream buffer.
sl@0
   131
//
sl@0
   132
LOCAL_C void testWriteL(MStreamBuf& aBuf)
sl@0
   133
	{
sl@0
   134
	RWriteStream stream(&aBuf);
sl@0
   135
	testWriteL(stream);
sl@0
   136
	}
sl@0
   137
sl@0
   138
//
sl@0
   139
// Test reading from a stream buffer.
sl@0
   140
//
sl@0
   141
LOCAL_C void testReadL(MStreamBuf& aBuf)
sl@0
   142
	{
sl@0
   143
	RReadStream stream(&aBuf);
sl@0
   144
	testReadL(stream);
sl@0
   145
	}
sl@0
   146
sl@0
   147
//
sl@0
   148
// Test skipping data on a stream buffer.
sl@0
   149
//
sl@0
   150
LOCAL_C void testSkipL(MStreamBuf& aBuf)
sl@0
   151
	{
sl@0
   152
	RReadStream stream(&aBuf);
sl@0
   153
	testSkipL(stream);
sl@0
   154
	}
sl@0
   155
sl@0
   156
//
sl@0
   157
// Test a stream buffer is at end-of-file.
sl@0
   158
//
sl@0
   159
LOCAL_C void testEofL(MStreamBuf& aBuf)
sl@0
   160
	{
sl@0
   161
	RReadStream stream(&aBuf);
sl@0
   162
	testEofL(stream);
sl@0
   163
	}
sl@0
   164
sl@0
   165
//
sl@0
   166
// Test copying from one stream buffer to another.
sl@0
   167
//
sl@0
   168
LOCAL_C void testCopyL(MStreamBuf& aSink,MStreamBuf& aSource)
sl@0
   169
	{
sl@0
   170
	RWriteStream out(&aSink);
sl@0
   171
	RReadStream in(&aSource);
sl@0
   172
	testCopyL(out,in);
sl@0
   173
	}
sl@0
   174
/**
sl@0
   175
@SYMTestCaseID          PDS-STORE-CT-4027
sl@0
   176
@SYMTestCaseDesc	    Writing to a stream buffer test
sl@0
   177
@SYMTestPriority 	    High
sl@0
   178
@SYMTestActions  	    Validate the MStreamBuf Write API
sl@0
   179
@SYMTestExpectedResults Test must not fail
sl@0
   180
@SYMDEF                 DEF135804
sl@0
   181
*/
sl@0
   182
LOCAL_C void testStreamBufWriteL(MStreamBuf& aBuf)
sl@0
   183
	{
sl@0
   184
	test.Next(_L(" @SYMTestCaseID:PDS-STORE-CT-4027 Writing... "));
sl@0
   185
	TRequestStatus status;
sl@0
   186
	aBuf.Write(KTestDes,status);
sl@0
   187
	User::WaitForRequest(status);
sl@0
   188
	
sl@0
   189
	aBuf.SeekL(aBuf.EWrite,EStreamBeginning,0);
sl@0
   190
	aBuf.WriteL(KTestDes,status);
sl@0
   191
	User::WaitForRequest(status);
sl@0
   192
	
sl@0
   193
	}
sl@0
   194
sl@0
   195
/**
sl@0
   196
@SYMTestCaseID          PDS-STORE-CT-4026
sl@0
   197
@SYMTestCaseDesc	    Reading from a stream buffer test
sl@0
   198
@SYMTestPriority 	    High
sl@0
   199
@SYMTestActions  	    Validate the MStreamBuf Read API
sl@0
   200
@SYMTestExpectedResults Test must not fail
sl@0
   201
@SYMDEF                 DEF135804
sl@0
   202
*/
sl@0
   203
LOCAL_C void testStreamBufReadL(MStreamBuf& aBuf)
sl@0
   204
	{
sl@0
   205
	test.Next(_L(" @SYMTestCaseID:PDS-STORE-CT-4026 Reading... "));
sl@0
   206
	TRequestStatus status;
sl@0
   207
	
sl@0
   208
	TBuf8<KTestLength+1> buf;
sl@0
   209
	aBuf.Read(buf, KTestLength, status);
sl@0
   210
	User::WaitForRequest(status);
sl@0
   211
	test(buf.Length()==KTestLength);
sl@0
   212
	test(buf==KTestDes);
sl@0
   213
	
sl@0
   214
	aBuf.SeekL(aBuf.ERead,EStreamBeginning,0);
sl@0
   215
	aBuf.ReadL(buf, status);
sl@0
   216
	User::WaitForRequest(status);
sl@0
   217
	test(buf.Length()== KTestLength+1);
sl@0
   218
	test(buf==KTestDesLong);
sl@0
   219
sl@0
   220
	aBuf.SeekL(aBuf.ERead,EStreamBeginning,0);
sl@0
   221
	aBuf.Read(buf, status);
sl@0
   222
	User::WaitForRequest(status);
sl@0
   223
	test(buf.Length()== KTestLength+1);
sl@0
   224
	test(buf==KTestDesLong);
sl@0
   225
sl@0
   226
	}
sl@0
   227
/**
sl@0
   228
@SYMTestCaseID          SYSLIB-STORE-CT-1140
sl@0
   229
@SYMTestCaseDesc	    Write to a file buffer test.
sl@0
   230
@SYMTestPriority 	    High
sl@0
   231
@SYMTestActions  	    Tests for writing to an attached file,a replaced file,a temporary file,an opened file
sl@0
   232
						Tests for replacing an existing file,test for deleting a file.
sl@0
   233
						Tests for writing to a new file buffer after the deletion of old file.
sl@0
   234
@SYMTestExpectedResults Test must not fail
sl@0
   235
@SYMREQ                 REQ0000
sl@0
   236
*/
sl@0
   237
LOCAL_C void testWriteL()
sl@0
   238
	{
sl@0
   239
	test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1140 Writing to attached file "));
sl@0
   240
sl@0
   241
	
sl@0
   242
	TDriveUnit drive(static_cast<TUint>(RFs::GetSystemDrive()));	
sl@0
   243
	TParse parse;
sl@0
   244
	parse.Set(drive.Name(), &KFileLocationSpec, NULL);
sl@0
   245
	
sl@0
   246
	
sl@0
   247
	
sl@0
   248
	RFile file;
sl@0
   249
	if (file.Replace(TheFs,parse.NameAndExt(),EFileWrite)!=KErrNone)
sl@0
   250
		test.Panic(_L("Replacing file"));
sl@0
   251
	RFileBuf rbuf(KTestWriteBufSize);
sl@0
   252
	RFile file2 = file;//Keep a copy in file2, because Attach() will clear the passed RFile parameter
sl@0
   253
	rbuf.Attach(file);
sl@0
   254
	rbuf.Detach();
sl@0
   255
	rbuf.Reattach(file2);
sl@0
   256
	testStreamBufWriteL(rbuf);
sl@0
   257
	rbuf.SynchL();
sl@0
   258
	rbuf.Close();
sl@0
   259
	if (TheFs.Delete(parse.NameAndExt())!=KErrNone)
sl@0
   260
			test.Panic(_L("Deleting file"));
sl@0
   261
sl@0
   262
	if (file.Replace(TheFs,parse.NameAndExt(),EFileWrite)!=KErrNone)
sl@0
   263
			test.Panic(_L("Replacing file"));
sl@0
   264
	RFileBuf buf(KTestWriteBufSize);
sl@0
   265
	buf.Attach(file);
sl@0
   266
	testWriteL(buf);
sl@0
   267
	buf.SynchL();
sl@0
   268
	buf.Reset(KTestFileBufSize);
sl@0
   269
	test(buf.SizeL()==KTestTotal);
sl@0
   270
	test(buf.SeekL(buf.EWrite,EStreamBeginning,KTestTotal/2)==KStreamBeginning+KTestTotal/2);
sl@0
   271
	testWriteL(buf);
sl@0
   272
	buf.Close();
sl@0
   273
//
sl@0
   274
	test.Next(_L("Writing to replaced file"));
sl@0
   275
	test(buf.Replace(TheFs,parse.NameAndExt(),EFileWrite)==KErrNone);
sl@0
   276
	testWriteL(buf);
sl@0
   277
	buf.SynchL();
sl@0
   278
	buf.File().Close();
sl@0
   279
	buf.Detach();
sl@0
   280
//
sl@0
   281
	test.Next(_L("Writing to temp file"));
sl@0
   282
	test(buf.Temp(TheFs,parse.DriveAndPath(),TheTempFile,EFileWrite)==KErrNone);
sl@0
   283
	testWriteL(buf);
sl@0
   284
	buf.SynchL();
sl@0
   285
	buf.File().Close();
sl@0
   286
	buf.Close();
sl@0
   287
//
sl@0
   288
	test.Next(_L("Writing to opened file"));
sl@0
   289
	test(buf.Open(TheFs,parse.NameAndExt(),EFileRead|EFileWrite)==KErrNone);
sl@0
   290
	testWriteL(buf);
sl@0
   291
//
sl@0
   292
	test.Next(_L("Failing to create existing file"));
sl@0
   293
	test(buf.Create(TheFs,TheTempFile,EFileWrite)==KErrAlreadyExists);
sl@0
   294
//
sl@0
   295
	test.Next(_L("Write overtaking read mark"));
sl@0
   296
	test(buf.SeekL(buf.ERead,KTestLength)==KStreamBeginning+KTestLength);
sl@0
   297
	RReadStream in(&buf);
sl@0
   298
	in.ReadL(1);
sl@0
   299
	test(buf.TellL(buf.ERead)==KStreamBeginning+KTestLength+1);
sl@0
   300
	test(buf.SeekL(buf.EWrite,EStreamBeginning)==KStreamBeginning);
sl@0
   301
	testWriteL(buf);
sl@0
   302
	buf.Close();
sl@0
   303
	if (TheFs.Delete(parse.NameAndExt())!=KErrNone)
sl@0
   304
		test.Panic(_L("Deleting file"));
sl@0
   305
//
sl@0
   306
	test.Next(_L("Writing to created file"));
sl@0
   307
	test(buf.Create(TheFs,parse.NameAndExt(),EFileWrite)==KErrNone);
sl@0
   308
	testWriteL(buf);
sl@0
   309
	buf.SynchL();
sl@0
   310
	buf.Close();
sl@0
   311
	
sl@0
   312
sl@0
   313
	}
sl@0
   314
/**
sl@0
   315
@SYMTestCaseID          SYSLIB-STORE-CT-1141
sl@0
   316
@SYMTestCaseDesc	    Reading from a file buffer test.
sl@0
   317
@SYMTestPriority 	    High
sl@0
   318
@SYMTestActions  	    Tests for reading from a file buffer.Tests for panic while opening a file.
sl@0
   319
                        Tests for reading from opened file,and a temporary file.
sl@0
   320
@SYMTestExpectedResults Test must not fail
sl@0
   321
@SYMREQ                 REQ0000
sl@0
   322
*/
sl@0
   323
LOCAL_C void testReadL()
sl@0
   324
	{
sl@0
   325
	test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1141 Reading from attached file "));
sl@0
   326
sl@0
   327
	TParsePtrC parse(KFileLocationSpec);
sl@0
   328
	
sl@0
   329
	RFile file;
sl@0
   330
	if (file.Open(TheFs,parse.NameAndExt(),EFileRead)!=KErrNone)
sl@0
   331
		test.Panic(_L("Opening file"));
sl@0
   332
	RFileBuf buf(KTestReadBufSize);
sl@0
   333
	buf.Attach(file);
sl@0
   334
	test(buf.SeekL(buf.ERead,EStreamBeginning,KTestTotal)==KStreamBeginning+KTestTotal);
sl@0
   335
	testEofL(buf);
sl@0
   336
	test(buf.SeekL(buf.ERead,EStreamBeginning)==KStreamBeginning);
sl@0
   337
	testReadL(buf);
sl@0
   338
	testEofL(buf);
sl@0
   339
	buf.SynchL();
sl@0
   340
	buf.Reset(KTestFileBufSize);
sl@0
   341
	buf.SeekL(buf.ERead|buf.EWrite,KStreamBeginning);
sl@0
   342
	testReadL(buf);
sl@0
   343
	testEofL(buf);
sl@0
   344
	buf.SynchL();
sl@0
   345
	buf.Reset(KTestFileBufSize);
sl@0
   346
	buf.SeekL(buf.ERead|buf.EWrite,KStreamBeginning);
sl@0
   347
	testStreamBufReadL(buf);
sl@0
   348
	buf.Close();
sl@0
   349
	buf.Close();
sl@0
   350
//
sl@0
   351
	test.Next(_L("Reading from opened file"));
sl@0
   352
	test(buf.Open(TheFs,parse.NameAndExt(),EFileRead|EFileWrite)==KErrNone);
sl@0
   353
	test(buf.SeekL(buf.ERead,EStreamEnd)==KStreamBeginning+KTestTotal);
sl@0
   354
	testEofL(buf);
sl@0
   355
	test(buf.SeekL(buf.ERead,EStreamEnd,-KTestTotal)==KStreamBeginning);
sl@0
   356
	testReadL(buf);
sl@0
   357
	testEofL(buf);
sl@0
   358
//
sl@0
   359
	test.Next(_L("Read overtaking write mark"));
sl@0
   360
	test(buf.SeekL(buf.EWrite,KTestLength)==KStreamBeginning+KTestLength);
sl@0
   361
	RWriteStream out(&buf);
sl@0
   362
	out.WriteL(KTestData,1);
sl@0
   363
	test(buf.TellL(buf.EWrite)==KStreamBeginning+KTestLength+1);
sl@0
   364
	test(buf.SeekL(buf.ERead,EStreamBeginning)==KStreamBeginning);
sl@0
   365
	testReadL(buf);
sl@0
   366
	testEofL(buf);
sl@0
   367
	buf.Close();
sl@0
   368
//
sl@0
   369
	test.Next(_L("Reading from temp file"));
sl@0
   370
	test(buf.Open(TheFs,TheTempFile,EFileRead)==KErrNone);
sl@0
   371
	test(buf.SeekL(buf.ERead,EStreamMark,KTestTotal)==KStreamBeginning+KTestTotal);
sl@0
   372
	testEofL(buf);
sl@0
   373
	test(buf.SeekL(buf.ERead,-KTestTotal)==KStreamBeginning);
sl@0
   374
	testReadL(buf);
sl@0
   375
	testEofL(buf);
sl@0
   376
	buf.Close();
sl@0
   377
	}
sl@0
   378
/**
sl@0
   379
@SYMTestCaseID          SYSLIB-STORE-CT-1142
sl@0
   380
@SYMTestCaseDesc	    Tests for skipping on a file buffer.
sl@0
   381
@SYMTestPriority 	    High
sl@0
   382
@SYMTestActions  	    Tests for skipping data while reading.Test for end of file error
sl@0
   383
@SYMTestExpectedResults Test must not fail
sl@0
   384
@SYMREQ                 REQ0000
sl@0
   385
*/
sl@0
   386
LOCAL_C void testSkipL()
sl@0
   387
	{
sl@0
   388
	test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1142 Skipping using small transfers "));
sl@0
   389
sl@0
   390
	TParsePtrC parse(KFileLocationSpec);
sl@0
   391
	
sl@0
   392
	RFileBuf buf(KTestSkipBufSize);
sl@0
   393
	test(buf.Open(TheFs,parse.NameAndExt(),EFileRead)==KErrNone);
sl@0
   394
	testSkipL(buf);
sl@0
   395
	testEofL(buf);
sl@0
   396
	buf.SynchL();
sl@0
   397
	buf.Reset(KTestFileBufSize);
sl@0
   398
	buf.SeekL(buf.ERead|buf.EWrite,KStreamBeginning);
sl@0
   399
	testSkipL(buf);
sl@0
   400
	testEofL(buf);
sl@0
   401
	buf.Close();
sl@0
   402
//
sl@0
   403
	test.Next(_L("Skipping using a single big transfer"));
sl@0
   404
	test(buf.Open(TheFs,parse.NameAndExt(),EFileRead)==KErrNone);
sl@0
   405
	RReadStream in(&buf);
sl@0
   406
	in.ReadL(KTestTotal);
sl@0
   407
	testEofL(buf);
sl@0
   408
	buf.Close();
sl@0
   409
	}
sl@0
   410
/**
sl@0
   411
@SYMTestCaseID          SYSLIB-STORE-CT-1143
sl@0
   412
@SYMTestCaseDesc	    Tests for copying within a single file buffer
sl@0
   413
@SYMTestPriority 	    High
sl@0
   414
@SYMTestActions  	    Tests for copying using a different buffer sizes.
sl@0
   415
@SYMTestExpectedResults Test must not fail
sl@0
   416
@SYMREQ                 REQ0000
sl@0
   417
*/
sl@0
   418
LOCAL_C void testCopyL()
sl@0
   419
	{
sl@0
   420
	test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1143 Copying using small transfers "));
sl@0
   421
sl@0
   422
	TParsePtrC parse(KFileLocationSpec);
sl@0
   423
	
sl@0
   424
	RFileBuf buf(KTestCopyBufSize);
sl@0
   425
	test(buf.Open(TheFs,TheTempFile,EFileRead|EFileWrite)==KErrNone);
sl@0
   426
	testCopyL(buf,buf);
sl@0
   427
	testEofL(buf);
sl@0
   428
	buf.SynchL();
sl@0
   429
	buf.Reset(KTestFileBufSize);
sl@0
   430
	buf.SeekL(buf.ERead,KStreamBeginning);
sl@0
   431
	testCopyL(buf,buf);
sl@0
   432
	buf.SeekL(buf.ERead,KStreamBeginning);
sl@0
   433
	testReadL(buf);
sl@0
   434
	testReadL(buf);
sl@0
   435
	testEofL(buf);
sl@0
   436
	buf.Close();
sl@0
   437
//
sl@0
   438
	test.Next(_L("Copying using a single big transfer"));
sl@0
   439
	test(buf.Open(TheFs,parse.NameAndExt(),EFileRead|EFileWrite)==KErrNone);
sl@0
   440
	RWriteStream out(&buf);
sl@0
   441
	RReadStream in(&buf);
sl@0
   442
	in.ReadL(out,KTestTotal);
sl@0
   443
	testEofL(buf);
sl@0
   444
	buf.SeekL(buf.ERead|buf.EWrite,KStreamBeginning);
sl@0
   445
	out.WriteL(in,KTestTotal);
sl@0
   446
	testEofL(buf);
sl@0
   447
	buf.SeekL(buf.ERead|buf.EWrite,KStreamBeginning);
sl@0
   448
	testReadL(buf);
sl@0
   449
	testEofL(buf);
sl@0
   450
	buf.Close();
sl@0
   451
//
sl@0
   452
	test.Next(_L("Copying until end of file"));
sl@0
   453
	test(buf.Open(TheFs,parse.NameAndExt(),EFileRead|EFileWrite)==KErrNone);
sl@0
   454
	in.ReadL(out);
sl@0
   455
	testEofL(buf);
sl@0
   456
	buf.SeekL(buf.ERead|buf.EWrite,KStreamBeginning);
sl@0
   457
	out.WriteL(in);
sl@0
   458
	testEofL(buf);
sl@0
   459
	buf.SeekL(buf.ERead|buf.EWrite,KStreamBeginning);
sl@0
   460
	testReadL(buf);
sl@0
   461
	testEofL(buf);
sl@0
   462
	buf.Close();
sl@0
   463
	}
sl@0
   464
sl@0
   465
/**
sl@0
   466
@SYMTestCaseID          SYSLIB-STORE-UT-4005
sl@0
   467
@SYMTestCaseDesc	    DEF118202 - STORE component, RFileBuf, truncate, file position set incorrectly.
sl@0
   468
						The test creates an RFileBuf object and writes 30 bytes to the underlying file then
sl@0
   469
						commits. The file size is checked and should be 30 bytes.
sl@0
   470
						Then the test writes to the file another 20 bytes, commits and sets the file size to
sl@0
   471
						be 30 bytes. Then the test checks that the file size is really 30 bytes using
sl@0
   472
						the RFielBuf::SizeL() function.
sl@0
   473
@SYMTestPriority 	    High
sl@0
   474
@SYMTestActions  	    DEF118202 - STORE component, RFileBuf, truncate, file position set incorrectly.
sl@0
   475
@SYMTestExpectedResults Test must not fail
sl@0
   476
@SYMDEF                 DEF118202
sl@0
   477
*/
sl@0
   478
LOCAL_C void DEF118202L()
sl@0
   479
	{ 
sl@0
   480
	test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-UT-4005 DEF118202 - STORE component, RFileBuf, truncate, file position set incorrectly "));
sl@0
   481
sl@0
   482
	TParsePtrC parse(KFileLocationSpec);
sl@0
   483
	
sl@0
   484
	RFileBuf buf;
sl@0
   485
	CleanupClosePushL(buf);
sl@0
   486
	if(buf.Replace(TheFs, parse.NameAndExt(), EFileWrite) != KErrNone)
sl@0
   487
	     test.Panic(_L("Replacing file"));
sl@0
   488
	TInt size0 = buf.SizeL();
sl@0
   489
	test(size0 == 0);
sl@0
   490
sl@0
   491
	buf.WriteL(KTestData10Chars, 10);
sl@0
   492
	buf.WriteL(KTestData10Chars, 10);
sl@0
   493
	buf.WriteL(KTestData10Chars, 10);
sl@0
   494
	buf.SynchL();
sl@0
   495
	TInt size1 = buf.SizeL();
sl@0
   496
sl@0
   497
	buf.WriteL(KTestData10Chars, 10);
sl@0
   498
	buf.WriteL(KTestData10Chars, 10);
sl@0
   499
	buf.SynchL();
sl@0
   500
sl@0
   501
	buf.SetSizeL(30);
sl@0
   502
	buf.SynchL();
sl@0
   503
	TInt size2 = buf.SizeL();
sl@0
   504
sl@0
   505
	CleanupStack::PopAndDestroy(&buf);
sl@0
   506
	if (TheFs.Delete(parse.NameAndExt()) != KErrNone)
sl@0
   507
		test.Panic(_L("Deleting file"));
sl@0
   508
sl@0
   509
	test(size1 == size2);
sl@0
   510
	}
sl@0
   511
sl@0
   512
/**
sl@0
   513
@SYMTestCaseID          PDS-STORE-CT-4017
sl@0
   514
@SYMTestCaseDesc	    Operation read / write
sl@0
   515
@SYMTestPriority 	    High
sl@0
   516
@SYMTestActions  	    Reading and writing RFileBuf using protected API.
sl@0
   517
@SYMTestExpectedResults Data written must equal data read.
sl@0
   518
@SYMDEF                 DEF135804
sl@0
   519
*/
sl@0
   520
sl@0
   521
class RFileBufNext: public RFileBuf
sl@0
   522
	{
sl@0
   523
	public:
sl@0
   524
		TInt DoReadL(TDes8& aDes,TInt aMaxLength,TRequestStatus& aStatus)
sl@0
   525
			{
sl@0
   526
			return RFileBuf::DoReadL(aDes,aMaxLength,aStatus);
sl@0
   527
			}
sl@0
   528
		TInt DoWriteL(const TDesC8& aDes,TInt aMaxLength,TRequestStatus& aStatus)
sl@0
   529
			{
sl@0
   530
			return RFileBuf::DoWriteL(aDes,aMaxLength,aStatus);
sl@0
   531
			}
sl@0
   532
		TInt Avail(TArea anArea) const
sl@0
   533
			{
sl@0
   534
			return TStreamBuf::Avail(anArea);
sl@0
   535
			}
sl@0
   536
		TUint8* End(TArea anArea) const
sl@0
   537
			{
sl@0
   538
			return TStreamBuf::End(anArea);
sl@0
   539
			}
sl@0
   540
		void SetEnd(TArea anArea,TUint8* anEnd)
sl@0
   541
			{
sl@0
   542
			TStreamBuf::SetEnd(anArea, anEnd);
sl@0
   543
			}
sl@0
   544
	};
sl@0
   545
sl@0
   546
LOCAL_C void testReadWriteL()
sl@0
   547
	{
sl@0
   548
	test.Next(_L("@SYMTestCaseID PDS-STORE-CT-4017"));
sl@0
   549
	_LIT(KFileStore2, "c:\\STOR-TST\\T_FILESTORE.DAT");
sl@0
   550
	_LIT8(KTestTextBuf, "Ala ma kota, Ola ma psa a osa lata.");
sl@0
   551
	RFileBufNext fbuf;
sl@0
   552
	RFs fs;
sl@0
   553
	test( fs.Connect() == KErrNone );
sl@0
   554
	fs.Delete(KFileStore2);
sl@0
   555
	test( fbuf.Create(fs, KFileStore2, EFileWrite ) == KErrNone );
sl@0
   556
	TRequestStatus status;
sl@0
   557
	TRAPD(err, fbuf.DoWriteL(KTestTextBuf(),KTestTextBuf().Length(),status) );
sl@0
   558
	test(err == KErrNone);
sl@0
   559
	User::WaitForRequest(status);
sl@0
   560
	TRAP(err, fbuf.SeekL(MStreamBuf::ERead|MStreamBuf::EWrite, 0) );
sl@0
   561
	test(err == KErrNone);
sl@0
   562
	TBuf8<250> temp;
sl@0
   563
	fbuf.DoReadL(temp,temp.MaxLength(),status);
sl@0
   564
	User::WaitForRequest(status);
sl@0
   565
	test(temp.Compare(KTestTextBuf)==0);
sl@0
   566
	
sl@0
   567
	TInt av = fbuf.Avail(MStreamBuf::ERead);
sl@0
   568
	av = fbuf.Avail(MStreamBuf::EWrite);
sl@0
   569
	TUint8* end = fbuf.End(MStreamBuf::ERead);
sl@0
   570
	fbuf.SetEnd(MStreamBuf::ERead, end-1);
sl@0
   571
	end = fbuf.End(MStreamBuf::EWrite);
sl@0
   572
	fbuf.SetEnd(MStreamBuf::EWrite, end-1);
sl@0
   573
	
sl@0
   574
	fbuf.Close();
sl@0
   575
	fs.Delete(KFileStore2);
sl@0
   576
	fs.Close();
sl@0
   577
	}
sl@0
   578
sl@0
   579
//
sl@0
   580
// Prepare the test directory.
sl@0
   581
//
sl@0
   582
LOCAL_C void setupTestDirectory()
sl@0
   583
    {
sl@0
   584
	TInt r=TheFs.Connect();
sl@0
   585
	test(r==KErrNone);
sl@0
   586
//
sl@0
   587
	TDriveUnit drive(static_cast<TUint>(RFs::GetSystemDrive()));	
sl@0
   588
	TParse parse;
sl@0
   589
	parse.Set(drive.Name(), &KFileLocationSpec, NULL);
sl@0
   590
	
sl@0
   591
	r=TheFs.MkDir(parse.DriveAndPath());
sl@0
   592
	test(r==KErrNone||r==KErrAlreadyExists);
sl@0
   593
	r=TheFs.SetSessionPath(parse.DriveAndPath());
sl@0
   594
	test(r==KErrNone);
sl@0
   595
	}
sl@0
   596
sl@0
   597
//
sl@0
   598
// Initialise the cleanup stack.
sl@0
   599
//
sl@0
   600
LOCAL_C void setupCleanup()
sl@0
   601
    {
sl@0
   602
	TheTrapCleanup=CTrapCleanup::New();
sl@0
   603
	test(TheTrapCleanup!=NULL);
sl@0
   604
	TRAPD(r,\
sl@0
   605
		{\
sl@0
   606
		for (TInt i=KTestCleanupStack;i>0;i--)\
sl@0
   607
			CleanupStack::PushL((TAny*)1);\
sl@0
   608
		test(r==KErrNone);\
sl@0
   609
		CleanupStack::Pop(KTestCleanupStack);\
sl@0
   610
		});
sl@0
   611
	test(r==KErrNone);
sl@0
   612
	}
sl@0
   613
sl@0
   614
LOCAL_C void DeleteDataFile(const TDesC& aFullName)
sl@0
   615
	{
sl@0
   616
	RFs fsSession;
sl@0
   617
	TInt err = fsSession.Connect();
sl@0
   618
	if(err == KErrNone)
sl@0
   619
		{
sl@0
   620
		TEntry entry;
sl@0
   621
		if(fsSession.Entry(aFullName, entry) == KErrNone)
sl@0
   622
			{
sl@0
   623
			RDebug::Print(_L("Deleting \"%S\" file.\n"), &aFullName);
sl@0
   624
			err = fsSession.SetAtt(aFullName, 0, KEntryAttReadOnly);
sl@0
   625
			if(err != KErrNone)
sl@0
   626
				{
sl@0
   627
				RDebug::Print(_L("Error %d changing \"%S\" file attributes.\n"), err, &aFullName);
sl@0
   628
				}
sl@0
   629
			err = fsSession.Delete(aFullName);
sl@0
   630
			if(err != KErrNone)
sl@0
   631
				{
sl@0
   632
				RDebug::Print(_L("Error %d deleting \"%S\" file.\n"), err, &aFullName);
sl@0
   633
				}
sl@0
   634
			}
sl@0
   635
		fsSession.Close();
sl@0
   636
		}
sl@0
   637
	else
sl@0
   638
		{
sl@0
   639
		RDebug::Print(_L("Error %d connecting file session. File: %S.\n"), err, &aFullName);
sl@0
   640
		}
sl@0
   641
	}
sl@0
   642
sl@0
   643
//
sl@0
   644
// Test file-based stream buffer.
sl@0
   645
//
sl@0
   646
GLDEF_C TInt E32Main()
sl@0
   647
    {
sl@0
   648
	test.Title();
sl@0
   649
	setupTestDirectory();
sl@0
   650
	setupCleanup();
sl@0
   651
	__UHEAP_MARK;
sl@0
   652
sl@0
   653
	test.Start(_L("Test file-based stream buffer"));
sl@0
   654
	TRAPD(r,testWriteL());
sl@0
   655
	test(r==KErrNone);
sl@0
   656
	TRAP(r,testReadL());
sl@0
   657
	test(r==KErrNone);
sl@0
   658
	TRAP(r,testSkipL());
sl@0
   659
	test(r==KErrNone);
sl@0
   660
	TRAP(r,testCopyL());
sl@0
   661
	test(r==KErrNone);
sl@0
   662
	TRAP(r, DEF118202L());
sl@0
   663
	test(r==KErrNone);
sl@0
   664
	TRAP(r, testReadWriteL());
sl@0
   665
	test(r==KErrNone);
sl@0
   666
	
sl@0
   667
	
sl@0
   668
	//deletion of data files must be before call to .End() - DEF047652
sl@0
   669
	TDriveUnit drive(static_cast<TUint>(RFs::GetSystemDrive()));	
sl@0
   670
	TParse parse;
sl@0
   671
	parse.Set(drive.Name(), &KFileLocationSpec, NULL);
sl@0
   672
	::DeleteDataFile(parse.FullName());
sl@0
   673
sl@0
   674
	test.End(); 
sl@0
   675
	
sl@0
   676
	__UHEAP_MARKEND;
sl@0
   677
sl@0
   678
	delete TheTrapCleanup;
sl@0
   679
	if (TheFs.Delete(TheTempFile)!=KErrNone)
sl@0
   680
		test.Panic(_L("Deleting temp file"));
sl@0
   681
	TheFs.Close();
sl@0
   682
	test.Close();
sl@0
   683
	return 0;
sl@0
   684
    }
sl@0
   685