os/persistentdata/persistentstorage/store/TFILE/t_storfstrm.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-2010 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 <s32mem.h>
sl@0
    18
#include <e32test.h>
sl@0
    19
sl@0
    20
const TInt KTestCleanupStack=0x20;
sl@0
    21
sl@0
    22
// This is a path specification and should not be used as is
sl@0
    23
_LIT(KFileLocationSpec, "Z:\\STOR-TST\\T_FSTRM.DAT");
sl@0
    24
const TUint8* KTestData=_S8("0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ");
sl@0
    25
const TInt KTestLength=36;
sl@0
    26
const TInt KTestTotal=KTestLength*(KTestLength+1);
sl@0
    27
const TPtrC8 KTestDes(KTestData,KTestLength);
sl@0
    28
sl@0
    29
LOCAL_D CTrapCleanup* TheTrapCleanup;
sl@0
    30
LOCAL_D RTest test(_L("t_storfstrm"));
sl@0
    31
LOCAL_D RFs TheFs;
sl@0
    32
LOCAL_D TFileName TheTempFile;
sl@0
    33
/**
sl@0
    34
@SYMTestCaseID          SYSLIB-STORE-CT-1162
sl@0
    35
@SYMTestCaseDesc	    Tests for writing to a stream.
sl@0
    36
@SYMTestPriority 	    High
sl@0
    37
@SYMTestActions  	    Attempt for writing to a stream
sl@0
    38
@SYMTestExpectedResults Test must not fail
sl@0
    39
@SYMREQ                 REQ0000
sl@0
    40
*/
sl@0
    41
LOCAL_C void testWriteL(RWriteStream& aStream)
sl@0
    42
	{
sl@0
    43
	test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1162 Writing... "));
sl@0
    44
	for (TInt i=0;i<=KTestLength;++i)
sl@0
    45
		{
sl@0
    46
		aStream.WriteL(KTestDes,i);
sl@0
    47
		aStream.WriteL(&KTestData[i],KTestLength-i);
sl@0
    48
		}
sl@0
    49
	}
sl@0
    50
/**
sl@0
    51
@SYMTestCaseID          SYSLIB-STORE-CT-1163
sl@0
    52
@SYMTestCaseDesc	    Tests for reading from a stream.
sl@0
    53
@SYMTestPriority 	    High
sl@0
    54
@SYMTestActions  	    Attempt for reading from a stream
sl@0
    55
@SYMTestExpectedResults Test must not fail
sl@0
    56
@SYMREQ                 REQ0000
sl@0
    57
*/
sl@0
    58
LOCAL_C void testReadL(RReadStream& aStream)
sl@0
    59
	{
sl@0
    60
	test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1163 Reading... "));
sl@0
    61
	for (TInt i=KTestLength;i>=0;--i)
sl@0
    62
		{
sl@0
    63
		TBuf8<KTestLength+1> buf;
sl@0
    64
		aStream.ReadL(buf,i);
sl@0
    65
		test(buf.Length()==i);
sl@0
    66
		buf.SetMax();
sl@0
    67
		aStream.ReadL(&buf[i],KTestLength-i);
sl@0
    68
		buf.SetLength(KTestLength);
sl@0
    69
		test(buf==KTestDes);
sl@0
    70
		}
sl@0
    71
	}
sl@0
    72
/**
sl@0
    73
@SYMTestCaseID          SYSLIB-STORE-CT-1164
sl@0
    74
@SYMTestCaseDesc	    Tests for skipping data on a stream.
sl@0
    75
@SYMTestPriority 	    High
sl@0
    76
@SYMTestActions  	    Tests for skipping data while reading from a stream
sl@0
    77
@SYMTestExpectedResults Test must not fail
sl@0
    78
@SYMREQ                 REQ0000
sl@0
    79
*/
sl@0
    80
LOCAL_C void testSkipL(RReadStream& aStream)
sl@0
    81
	{
sl@0
    82
	test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1164 Skipping... "));
sl@0
    83
	for (TInt i=0;i<=KTestLength;++i)
sl@0
    84
		{
sl@0
    85
		aStream.ReadL(i);
sl@0
    86
		aStream.ReadL(KTestLength-i);
sl@0
    87
		}
sl@0
    88
	}
sl@0
    89
/**
sl@0
    90
@SYMTestCaseID          SYSLIB-STORE-CT-1165
sl@0
    91
@SYMTestCaseDesc	    Tests a stream is at end-of-file.
sl@0
    92
@SYMTestPriority 	    High
sl@0
    93
@SYMTestActions  	    Tests for end of file while reading from a stream
sl@0
    94
@SYMTestExpectedResults Test must not fail
sl@0
    95
@SYMREQ                 REQ0000
sl@0
    96
*/
sl@0
    97
LOCAL_C void testEofL(RReadStream& aStream)
sl@0
    98
	{
sl@0
    99
	test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1165 At end "));
sl@0
   100
	TUint8 b;
sl@0
   101
	test(aStream.Source()->ReadL(&b,1)==0);
sl@0
   102
	}
sl@0
   103
sl@0
   104
//
sl@0
   105
// Test copying from one stream to another.
sl@0
   106
//
sl@0
   107
LOCAL_C void testCopyL(RWriteStream& aWriteStream,RReadStream& aReadStream)
sl@0
   108
	{
sl@0
   109
	test.Next(_L("Copying"));
sl@0
   110
	for (TInt i=KTestLength;i>=0;--i)
sl@0
   111
		{
sl@0
   112
		aWriteStream.WriteL(aReadStream,i);
sl@0
   113
		aReadStream.ReadL(aWriteStream,KTestLength-i);
sl@0
   114
		}
sl@0
   115
	}
sl@0
   116
/**
sl@0
   117
@SYMTestCaseID          SYSLIB-STORE-CT-1166
sl@0
   118
@SYMTestCaseDesc	    Tests for writing to a file stream.
sl@0
   119
						Tests RFileWriteStream::WriteL() function
sl@0
   120
@SYMTestPriority 	    High
sl@0
   121
@SYMTestActions  	    Tests for writing to replaced,temporary,opened,created file.
sl@0
   122
						Tests for creating an already existing file.
sl@0
   123
						Tests for panic while deleting a file.
sl@0
   124
@SYMTestExpectedResults Test must not fail
sl@0
   125
@SYMREQ                 REQ0000
sl@0
   126
*/
sl@0
   127
LOCAL_C void testWriteL()
sl@0
   128
	{
sl@0
   129
	test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1166 Writing to attached file "));
sl@0
   130
sl@0
   131
	
sl@0
   132
	TDriveUnit drive(static_cast<TUint>(RFs::GetSystemDrive()));	
sl@0
   133
	TParse parse;
sl@0
   134
	parse.Set(drive.Name(), &KFileLocationSpec, NULL);
sl@0
   135
	RFile file;
sl@0
   136
	if (file.Replace(TheFs,parse.NameAndExt(),EFileWrite)!=KErrNone)
sl@0
   137
		test.Panic(_L("Replacing file"));
sl@0
   138
	RFile f=file;
sl@0
   139
	RFileWriteStream out(f);
sl@0
   140
	testWriteL(out);
sl@0
   141
	out.CommitL();
sl@0
   142
	out.Attach(file);
sl@0
   143
	testWriteL(out);
sl@0
   144
	out.Close();
sl@0
   145
//
sl@0
   146
	test.Next(_L("Writing to replaced file"));
sl@0
   147
	test(out.Replace(TheFs,parse.NameAndExt(),EFileWrite)==KErrNone);
sl@0
   148
	testWriteL(out);
sl@0
   149
	out.Close();
sl@0
   150
//
sl@0
   151
	test.Next(_L("Writing to temp file"));
sl@0
   152
	test(out.Temp(TheFs,parse.DriveAndPath(),TheTempFile,EFileWrite)==KErrNone);
sl@0
   153
	testWriteL(out);
sl@0
   154
	out.CommitL();
sl@0
   155
	out.Close();
sl@0
   156
//
sl@0
   157
	test.Next(_L("Writing to opened file"));
sl@0
   158
	test(out.Open(TheFs,parse.NameAndExt(),EFileWrite)==KErrNone);
sl@0
   159
	testWriteL(out);
sl@0
   160
//
sl@0
   161
	test.Next(_L("Failing to create existing file"));
sl@0
   162
	test(out.Create(TheFs,TheTempFile,EFileWrite)==KErrAlreadyExists);
sl@0
   163
	testWriteL(out);
sl@0
   164
	out.Close();
sl@0
   165
	if (TheFs.Delete(parse.NameAndExt())!=KErrNone)
sl@0
   166
		test.Panic(_L("Deleting file"));
sl@0
   167
//
sl@0
   168
	test.Next(_L("Writing to created file"));
sl@0
   169
	test(out.Create(TheFs,parse.NameAndExt(),EFileWrite)==KErrNone);
sl@0
   170
	testWriteL(out);
sl@0
   171
	out.CommitL();
sl@0
   172
	out.Close();
sl@0
   173
	}
sl@0
   174
/**
sl@0
   175
@SYMTestCaseID          SYSLIB-STORE-CT-1167
sl@0
   176
@SYMTestCaseDesc	    Tests reading from a file stream.
sl@0
   177
@SYMTestPriority 	    High
sl@0
   178
@SYMTestActions  	    Attempt for reading from an attached file
sl@0
   179
						Attempt for reading from opened file
sl@0
   180
						Attempt for reading from temp file.Test for end of file error
sl@0
   181
@SYMTestExpectedResults Test must not fail
sl@0
   182
@SYMREQ                 REQ0000
sl@0
   183
*/
sl@0
   184
LOCAL_C void testReadL()
sl@0
   185
	{
sl@0
   186
	test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1167 Reading from attached file "));
sl@0
   187
sl@0
   188
	TParsePtrC parse(KFileLocationSpec);
sl@0
   189
	
sl@0
   190
	RFile file;
sl@0
   191
	if (file.Open(TheFs,parse.NameAndExt(),EFileRead)!=KErrNone)
sl@0
   192
		test.Panic(_L("Opening file"));
sl@0
   193
	RFile f=file;
sl@0
   194
	RFileReadStream in(f);
sl@0
   195
	testReadL(in);
sl@0
   196
	testEofL(in);
sl@0
   197
	in.Attach(file);
sl@0
   198
	testReadL(in);
sl@0
   199
	testEofL(in);
sl@0
   200
	in.Close();
sl@0
   201
//
sl@0
   202
	test.Next(_L("Reading from opened file"));
sl@0
   203
	test(in.Open(TheFs,parse.NameAndExt(),EFileRead)==KErrNone);
sl@0
   204
	testReadL(in);
sl@0
   205
	testEofL(in);
sl@0
   206
	in.Close();
sl@0
   207
//
sl@0
   208
	test.Next(_L("Reading from temp file"));
sl@0
   209
	test(in.Open(TheFs,TheTempFile,EFileRead)==KErrNone);
sl@0
   210
	testReadL(in);
sl@0
   211
	testEofL(in);
sl@0
   212
	in.Close();
sl@0
   213
	}
sl@0
   214
/**
sl@0
   215
@SYMTestCaseID          SYSLIB-STORE-CT-1168
sl@0
   216
@SYMTestCaseDesc	    Skipping on a file stream test
sl@0
   217
@SYMTestPriority 	    High
sl@0
   218
@SYMTestActions  	    Attempt for skipping data while reading from a stream
sl@0
   219
@SYMTestExpectedResults Test must not fail
sl@0
   220
@SYMREQ                 REQ0000
sl@0
   221
*/
sl@0
   222
LOCAL_C void testSkipL()
sl@0
   223
	{
sl@0
   224
	test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1168 Skipping using small transfers "));
sl@0
   225
sl@0
   226
	TParsePtrC parse(KFileLocationSpec);
sl@0
   227
	
sl@0
   228
	RFileReadStream in;
sl@0
   229
	test(in.Open(TheFs,parse.NameAndExt(),EFileRead)==KErrNone);
sl@0
   230
	testSkipL(in);
sl@0
   231
	testEofL(in);
sl@0
   232
	in.Close();
sl@0
   233
//
sl@0
   234
	test.Next(_L("Skipping using a single big transfer"));
sl@0
   235
	test(in.Open(TheFs,parse.NameAndExt(),EFileRead)==KErrNone);
sl@0
   236
	in.ReadL(KTestTotal);
sl@0
   237
	testEofL(in);
sl@0
   238
	in.Close();
sl@0
   239
	}
sl@0
   240
/**
sl@0
   241
@SYMTestCaseID          SYSLIB-STORE-CT-1169
sl@0
   242
@SYMTestCaseDesc	    Copying from one file stream to another test
sl@0
   243
@SYMTestPriority 	    High
sl@0
   244
@SYMTestActions  	    Attempt for copying using small transfers.
sl@0
   245
                        Attempt for copying until end of file.
sl@0
   246
						Attempt for end of file error
sl@0
   247
@SYMTestExpectedResults Test must not fail
sl@0
   248
@SYMREQ                 REQ0000
sl@0
   249
*/
sl@0
   250
LOCAL_C void testCopyL()
sl@0
   251
	{
sl@0
   252
	test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1169 Copying using small transfers "));
sl@0
   253
sl@0
   254
	TParsePtrC parse(KFileLocationSpec);
sl@0
   255
	
sl@0
   256
	RFileReadStream in;
sl@0
   257
	RFileWriteStream out;
sl@0
   258
	test(in.Open(TheFs,parse.NameAndExt(),EFileRead)==KErrNone);
sl@0
   259
	test(out.Replace(TheFs,TheTempFile,EFileWrite)==KErrNone);
sl@0
   260
	testCopyL(out,in);
sl@0
   261
	testEofL(in);
sl@0
   262
	out.CommitL();
sl@0
   263
	out.Close();
sl@0
   264
	in.Close();
sl@0
   265
	test(in.Open(TheFs,TheTempFile,EFileRead)==KErrNone);
sl@0
   266
	testReadL(in);
sl@0
   267
	testEofL(in);
sl@0
   268
	in.Close();
sl@0
   269
//
sl@0
   270
	test.Next(_L("Copying using a single big transfer"));
sl@0
   271
	test(out.Replace(TheFs,TheTempFile,EFileWrite)==KErrNone);
sl@0
   272
	test(in.Open(TheFs,parse.NameAndExt(),EFileRead)==KErrNone);
sl@0
   273
	in.ReadL(out,KTestTotal);
sl@0
   274
	testEofL(in);
sl@0
   275
	in.Close();
sl@0
   276
	test(in.Open(TheFs,parse.NameAndExt(),EFileRead)==KErrNone);
sl@0
   277
	out.WriteL(in,KTestTotal);
sl@0
   278
	testEofL(in);
sl@0
   279
	in.Close();
sl@0
   280
	out.CommitL();
sl@0
   281
	out.Close();
sl@0
   282
	test(in.Open(TheFs,TheTempFile,EFileRead)==KErrNone);
sl@0
   283
	testReadL(in);
sl@0
   284
	testReadL(in);
sl@0
   285
	testEofL(in);
sl@0
   286
	in.Close();
sl@0
   287
//
sl@0
   288
	test.Next(_L("Copying until end of file"));
sl@0
   289
	test(out.Replace(TheFs,TheTempFile,EFileWrite)==KErrNone);
sl@0
   290
	test(in.Open(TheFs,parse.NameAndExt(),EFileRead)==KErrNone);
sl@0
   291
	in.ReadL(out);
sl@0
   292
	testEofL(in);
sl@0
   293
	in.Close();
sl@0
   294
	test(in.Open(TheFs,parse.NameAndExt(),EFileRead)==KErrNone);
sl@0
   295
	out.WriteL(in);
sl@0
   296
	testEofL(in);
sl@0
   297
	in.Close();
sl@0
   298
	out.CommitL();
sl@0
   299
	out.Close();
sl@0
   300
	test(in.Open(TheFs,TheTempFile,EFileRead)==KErrNone);
sl@0
   301
	testReadL(in);
sl@0
   302
	testReadL(in);
sl@0
   303
	testEofL(in);
sl@0
   304
	in.Close();
sl@0
   305
	}
sl@0
   306
sl@0
   307
//
sl@0
   308
// Prepare the test directory.
sl@0
   309
//
sl@0
   310
LOCAL_C void setupTestDirectory()
sl@0
   311
    {
sl@0
   312
	TInt r=TheFs.Connect();
sl@0
   313
	test(r==KErrNone);
sl@0
   314
//
sl@0
   315
	TDriveUnit drive(static_cast<TUint>(RFs::GetSystemDrive()));	
sl@0
   316
	TParse parse;
sl@0
   317
	parse.Set(drive.Name(), &KFileLocationSpec, NULL);
sl@0
   318
	
sl@0
   319
	r=TheFs.MkDir(parse.DriveAndPath());
sl@0
   320
	test(r==KErrNone||r==KErrAlreadyExists);
sl@0
   321
	r=TheFs.SetSessionPath(parse.DriveAndPath());
sl@0
   322
	test(r==KErrNone);
sl@0
   323
	}
sl@0
   324
sl@0
   325
//
sl@0
   326
// Initialise the cleanup stack.
sl@0
   327
//
sl@0
   328
LOCAL_C void setupCleanup()
sl@0
   329
    {
sl@0
   330
	TheTrapCleanup=CTrapCleanup::New();
sl@0
   331
	test(TheTrapCleanup!=NULL);
sl@0
   332
	TRAPD(r,\
sl@0
   333
		{\
sl@0
   334
		for (TInt i=KTestCleanupStack;i>0;i--)\
sl@0
   335
			CleanupStack::PushL((TAny*)1);\
sl@0
   336
		test(r==KErrNone);\
sl@0
   337
		CleanupStack::Pop(KTestCleanupStack);\
sl@0
   338
		});
sl@0
   339
	test(r==KErrNone);
sl@0
   340
	}
sl@0
   341
sl@0
   342
LOCAL_C void DeleteDataFile(const TDesC& aFullName)
sl@0
   343
	{
sl@0
   344
	RFs fsSession;
sl@0
   345
	TInt err = fsSession.Connect();
sl@0
   346
	if(err == KErrNone)
sl@0
   347
		{
sl@0
   348
		TEntry entry;
sl@0
   349
		if(fsSession.Entry(aFullName, entry) == KErrNone)
sl@0
   350
			{
sl@0
   351
			RDebug::Print(_L("Deleting \"%S\" file.\n"), &aFullName);
sl@0
   352
			err = fsSession.SetAtt(aFullName, 0, KEntryAttReadOnly);
sl@0
   353
			if(err != KErrNone)
sl@0
   354
				{
sl@0
   355
				RDebug::Print(_L("Error %d changing \"%S\" file attributes.\n"), err, &aFullName);
sl@0
   356
				}
sl@0
   357
			err = fsSession.Delete(aFullName);
sl@0
   358
			if(err != KErrNone)
sl@0
   359
				{
sl@0
   360
				RDebug::Print(_L("Error %d deleting \"%S\" file.\n"), err, &aFullName);
sl@0
   361
				}
sl@0
   362
			}
sl@0
   363
		fsSession.Close();
sl@0
   364
		}
sl@0
   365
	else
sl@0
   366
		{
sl@0
   367
		RDebug::Print(_L("Error %d connecting file session. File: %S.\n"), err, &aFullName);
sl@0
   368
		}
sl@0
   369
	}
sl@0
   370
sl@0
   371
class RTestReadStream : public RReadStream
sl@0
   372
	{
sl@0
   373
public:
sl@0
   374
	RTestReadStream(MStreamBuf* aSource) :
sl@0
   375
		RReadStream(aSource)
sl@0
   376
		{
sl@0
   377
		}
sl@0
   378
	void Attach(MStreamBuf* aSource)
sl@0
   379
		{
sl@0
   380
		RReadStream::Attach(aSource);
sl@0
   381
		}
sl@0
   382
	void Detach()
sl@0
   383
		{
sl@0
   384
		RReadStream::Detach();
sl@0
   385
		}
sl@0
   386
	};
sl@0
   387
sl@0
   388
class RTestWriteStream : public RWriteStream
sl@0
   389
	{
sl@0
   390
public:
sl@0
   391
	RTestWriteStream(MStreamBuf* aSink) :
sl@0
   392
		RWriteStream(aSink)
sl@0
   393
		{
sl@0
   394
		}
sl@0
   395
	void Attach(MStreamBuf* aSink)
sl@0
   396
		{
sl@0
   397
		RWriteStream::Attach(aSink);
sl@0
   398
		}
sl@0
   399
	void Detach()
sl@0
   400
		{
sl@0
   401
		RWriteStream::Detach();
sl@0
   402
		}
sl@0
   403
	};
sl@0
   404
sl@0
   405
/**
sl@0
   406
@SYMTestCaseID          PDS-STORE-CT-4064
sl@0
   407
@SYMTestCaseDesc        RReadStream, RWriteStream, Pop() and Detach() test.
sl@0
   408
@SYMTestActions			The test calls Pop() and Detach() methods of RReadStream and RWriteStream classes.         
sl@0
   409
@SYMTestPriority        High
sl@0
   410
@SYMTestExpectedResults Test must not fail
sl@0
   411
*/
sl@0
   412
void StreamDetachTestL()
sl@0
   413
	{
sl@0
   414
	test.Next(_L("@SYMTestCaseID:PDS-STORE-CT-4064: RReadStream, RWriteStream, Pop() and Detach() test"));
sl@0
   415
	
sl@0
   416
	TBuf8<100> buf;
sl@0
   417
	TDesBuf desBuf;
sl@0
   418
	desBuf.Set(buf);
sl@0
   419
	MStreamBuf* mbuf = &desBuf; 
sl@0
   420
	
sl@0
   421
	_LIT8(KStr, "1234567890");
sl@0
   422
	
sl@0
   423
	RTestWriteStream wstrm(mbuf);
sl@0
   424
	wstrm.PushL();
sl@0
   425
	wstrm.Detach();
sl@0
   426
	wstrm.Attach(mbuf);
sl@0
   427
	TRAPD(err, wstrm.WriteL(KStr));
sl@0
   428
	test(err == KErrNone);
sl@0
   429
	TRAP(err, wstrm.CommitL());
sl@0
   430
	test(err == KErrNone);
sl@0
   431
	wstrm.Pop();
sl@0
   432
	wstrm.Close();
sl@0
   433
sl@0
   434
	RTestReadStream rstrm(mbuf);
sl@0
   435
	rstrm.PushL();
sl@0
   436
	rstrm.Detach();
sl@0
   437
	rstrm.Attach(mbuf);
sl@0
   438
	TBuf8<100> buf2;
sl@0
   439
	TRAP(err, rstrm.ReadL(buf2, KStr().Length()));
sl@0
   440
	test(err == KErrNone);
sl@0
   441
	rstrm.Pop();
sl@0
   442
	rstrm.Close();
sl@0
   443
	
sl@0
   444
	test(KStr() == buf2);
sl@0
   445
	}
sl@0
   446
sl@0
   447
//
sl@0
   448
// Test file-based streams.
sl@0
   449
//
sl@0
   450
GLDEF_C TInt E32Main()
sl@0
   451
    {
sl@0
   452
	test.Title();
sl@0
   453
	setupTestDirectory();
sl@0
   454
	setupCleanup();
sl@0
   455
	__UHEAP_MARK;
sl@0
   456
//
sl@0
   457
	test.Start(_L("Test file-based streams"));
sl@0
   458
	TRAPD(r,testWriteL());
sl@0
   459
	test(r==KErrNone);
sl@0
   460
	TRAP(r,testReadL());
sl@0
   461
	test(r==KErrNone);
sl@0
   462
	TRAP(r,testSkipL());
sl@0
   463
	test(r==KErrNone);
sl@0
   464
	TRAP(r,testCopyL());
sl@0
   465
	test(r==KErrNone);
sl@0
   466
	TRAP(r, StreamDetachTestL());
sl@0
   467
	test(r==KErrNone);
sl@0
   468
sl@0
   469
	//deletion of data files must be before call to .End() - DEF047652
sl@0
   470
	TDriveUnit drive(static_cast<TUint>(RFs::GetSystemDrive()));	
sl@0
   471
	TParse parse;
sl@0
   472
	parse.Set(drive.Name(), &KFileLocationSpec, NULL);
sl@0
   473
	::DeleteDataFile(parse.FullName());
sl@0
   474
sl@0
   475
	test.End();
sl@0
   476
//
sl@0
   477
	__UHEAP_MARKEND;
sl@0
   478
sl@0
   479
	delete TheTrapCleanup;
sl@0
   480
	if (TheFs.Delete(TheTempFile)!=KErrNone)
sl@0
   481
		test.Panic(_L("Deleting temp file"));
sl@0
   482
	TheFs.Close();
sl@0
   483
	test.Close();
sl@0
   484
	return 0;
sl@0
   485
    }
sl@0
   486