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