os/persistentdata/persistentstorage/store/TSTOR/t_storembed.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 <e32test.h>
    18 
    19 const TInt KTestCleanupStack=0x20;
    20 
    21 
    22 // This is a path specification and should not be used as is
    23 _LIT(KFileLocationSpec, "Z:\\STOR-TST\\T_EMBED.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_storembed"));
    31 LOCAL_D RFs TheFs;
    32 LOCAL_D TStreamId TheTempId;
    33 LOCAL_D TBuf8<KTestLength+1> TheBuf;
    34 
    35 /**
    36 @SYMTestCaseID          SYSLIB-STORE-CT-1192
    37 @SYMTestCaseDesc	    Writing to a store test
    38 @SYMTestPriority 	    High
    39 @SYMTestActions  	    Write a test data to a stream.
    40 @SYMTestExpectedResults Test must not fail
    41 @SYMREQ                 REQ0000
    42 */
    43 LOCAL_C void testWriteL(CPersistentStore& aStore)
    44 	{
    45 	test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1192 Writing... "));
    46 	RStoreWriteStream out;
    47 	TStreamId id=out.CreateLC(aStore);
    48 	for (TInt i=0;i<=KTestLength;++i)
    49 		{
    50 		out.WriteL(KTestDes,i);
    51 		out.WriteL(&KTestData[i],KTestLength-i);
    52 		}
    53 	out.CommitL();
    54 	out.Close();
    55 	aStore.SetRootL(out.CreateL(aStore));
    56 	out<<KTestDes;
    57 	out<<id;
    58 	out.CommitL();
    59 	CleanupStack::PopAndDestroy();
    60 	}
    61 
    62 /**
    63 @SYMTestCaseID          SYSLIB-STORE-CT-1193
    64 @SYMTestCaseDesc	    Reading from a stream test
    65 @SYMTestPriority 	    High
    66 @SYMTestActions  	    Attempt for reading from stream for a specific length of data
    67 @SYMTestExpectedResults Test must not fail
    68 @SYMREQ                 REQ0000
    69 */
    70 LOCAL_C void testReadL(RReadStream& aStream)
    71 	{
    72 	test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1193 "));
    73 	for (TInt i=KTestLength;i>=0;--i)
    74 		{
    75 		aStream.ReadL(TheBuf,i);
    76 		test(TheBuf.Length()==i);
    77 		TheBuf.SetMax();
    78 		aStream.ReadL(&TheBuf[i],KTestLength-i);
    79 		TheBuf.SetLength(KTestLength);
    80 		test(TheBuf==KTestDes);
    81 		}
    82 	}
    83 
    84 /**
    85 @SYMTestCaseID          SYSLIB-STORE-CT-1194
    86 @SYMTestCaseDesc	    Reading from a persistent store test
    87 @SYMTestPriority 	    High
    88 @SYMTestActions  	    Tests for reading from a stream
    89 @SYMTestExpectedResults Test must not fail
    90 @SYMREQ                 REQ0000
    91 */
    92 LOCAL_C void testReadL(const CPersistentStore& aStore)
    93 	{
    94 	test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1194 Reading... "));
    95 	RStoreReadStream in;
    96 	in.OpenLC(aStore,aStore.Root());
    97 	in>>TheBuf;
    98 	TStreamId id;
    99 	in>>id;
   100 	in.Close();
   101 	in.OpenL(aStore,id);
   102 	testReadL(in);
   103 	CleanupStack::PopAndDestroy();
   104 	}
   105 
   106 /**
   107 @SYMTestCaseID          SYSLIB-STORE-CT-1195
   108 @SYMTestCaseDesc	    Copying from one stream to another stream test
   109 @SYMTestPriority 	    High
   110 @SYMTestActions  	    Attempt for copying two streams
   111 @SYMTestExpectedResults Test must not fail
   112 @SYMREQ                 REQ0000
   113 */
   114 LOCAL_C void testCopyL(RWriteStream& aWriteStream,RReadStream& aReadStream)
   115 	{
   116 	test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1195 Copying "));
   117 	for (TInt i=KTestLength;i>=0;--i)
   118 		{
   119 		aWriteStream.WriteL(aReadStream,i);
   120 		aReadStream.ReadL(aWriteStream,KTestLength-i);
   121 		}
   122 	}
   123 
   124 /**
   125 @SYMTestCaseID          SYSLIB-STORE-CT-1196
   126 @SYMTestCaseDesc	    Writing to a write once file store created using CEmbeddedStore test
   127 @SYMTestPriority 	    High
   128 @SYMTestActions  	    Attempt for writing to a newly created store and a temporary store.
   129 @SYMTestExpectedResults Test must not fail
   130 @SYMREQ                 REQ0000
   131 */
   132 LOCAL_C void testWriteL()
   133 	{
   134 	test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1196 Replacing host file "));
   135 	TParsePtrC parse(KFileLocationSpec);
   136 	
   137 	CFileStore* file=CPermanentFileStore::ReplaceLC(TheFs,parse.NameAndExt(),EFileWrite);
   138 	file->SetTypeL(file->Layout());
   139 //
   140 	test.Next(_L("Writing root store"));
   141 	RStoreWriteStream stream;
   142 	TStreamId root=stream.CreateLC(*file);
   143 	stream.WriteL(_L8(" root"));
   144 	CleanupStack::Pop();
   145 	CEmbeddedStore* store=CEmbeddedStore::NewL(stream);
   146 	CleanupStack::PushL(store);
   147 	testWriteL(*store);
   148 	store->CommitL();
   149 	CleanupStack::PopAndDestroy();
   150 	file->SetRootL(root);
   151 //
   152 	test.Next(_L("Writing temp store"));
   153 	TheTempId=stream.CreateLC(*file);
   154 	stream.WriteL(_L8(" temp"));
   155 	CleanupStack::Pop();
   156 	store=CEmbeddedStore::NewLC(stream);
   157 	testWriteL(*store);
   158 	store->CommitL();
   159 	CleanupStack::PopAndDestroy();
   160 //
   161 	file->CommitL();
   162 	CleanupStack::PopAndDestroy();
   163 	}
   164 
   165 /**
   166 @SYMTestCaseID          SYSLIB-STORE-CT-1197
   167 @SYMTestCaseDesc	    Reading from a file buffer test
   168 @SYMTestPriority 	    High
   169 @SYMTestActions  	    Tests for reading from root and temporary store.
   170 @SYMTestExpectedResults Test must not fail
   171 @SYMREQ                 REQ0000
   172 */
   173 LOCAL_C void testReadL()
   174 	{
   175 	test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1197 Opening host file "));
   176 	TParsePtrC parse(KFileLocationSpec);
   177 	
   178 	CFileStore* file=CFileStore::OpenLC(TheFs,parse.NameAndExt(),EFileRead);
   179 //
   180 	test.Next(_L("Reading from root store"));
   181 	TStreamId root=file->Root();
   182 	
   183 	RStoreReadStream stream;
   184 	stream.OpenLC(*file,root);
   185 	TBuf8<5> b;
   186 	stream.ReadL(b);
   187 	test(b==_L8(" root"));
   188 	CleanupStack::Pop(&stream);
   189 	CEmbeddedStore* store=CEmbeddedStore::FromL(stream);
   190 	CleanupStack::PushL(store);
   191 	testReadL(*store);
   192 	CleanupStack::PopAndDestroy(store);
   193 	
   194 	stream.OpenLC(*file,root);
   195 	stream.ReadL(b);
   196 	test(b==_L8(" root"));
   197 	CleanupStack::Pop(&stream);
   198 	store=CEmbeddedStore::FromLC(stream);
   199 	testReadL(*store);
   200 	CleanupStack::PopAndDestroy();
   201 //
   202 	test.Next(_L("Reading from temp store"));
   203 	stream.OpenLC(*file,TheTempId);
   204 	stream.ReadL(b);
   205 	test(b==_L8(" temp"));
   206 	CleanupStack::Pop();
   207 	store=CEmbeddedStore::FromLC(stream);
   208 	testReadL(*store);
   209 //
   210 	CleanupStack::PopAndDestroy(2);
   211 	}
   212 
   213 /**
   214 @SYMTestCaseID          SYSLIB-STORE-CT-1198
   215 @SYMTestCaseDesc	    Copying in a single file store test.
   216 @SYMTestPriority 	    High
   217 @SYMTestActions  	    Tests for copying using different buffer sizes
   218 @SYMTestExpectedResults Test must not fail
   219 @SYMREQ                 REQ0000
   220 */
   221 LOCAL_C void testCopyL()
   222 	{
   223 	test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1198 Opening host file "));
   224 	TParsePtrC parse(KFileLocationSpec);
   225 	
   226 	CFileStore* file=CFileStore::OpenLC(TheFs,parse.NameAndExt(),EFileRead|EFileWrite);
   227 //
   228 	test.Next(_L("Opening source (root) store"));
   229 	TStreamId root=file->Root();
   230 	RStoreReadStream src;
   231 	src.OpenLC(*file,root);
   232 	TBuf8<5> b;
   233 	src.ReadL(b);
   234 	test(b==_L8(" root"));
   235 	CleanupStack::Pop();
   236 	CEmbeddedStore* source=CEmbeddedStore::FromLC(src);
   237 //
   238 	test.Next(_L("Duplicating source store"));
   239 	RStoreWriteStream trg;
   240 	trg.CreateLC(*file);
   241 	MStreamBuf* host=source->Host();
   242 	TStreamPos pos=CEmbeddedStore::Position(source->Root());
   243 	host->SeekL(host->ERead,EStreamBeginning);
   244 	RReadStream stream(host);
   245 	trg.WriteL(stream,pos.Offset());
   246 	stream>>TheBuf;
   247 	TStreamId id;
   248 	stream>>id;
   249 	test(host->TellL(host->ERead).Offset()==host->SizeL());
   250 	trg<<TheBuf;
   251 	trg<<id;
   252 	trg.CommitL();
   253 	source->Detach();
   254 	host->Release();
   255 	source->Reattach(trg.Sink());
   256 	CleanupStack::Pop();
   257 	testReadL(*source);
   258 //
   259 	test.Next(_L("Creating target store"));
   260 	trg.CreateLC(*file);
   261 	trg.WriteL(_L8(" target"));
   262 	CleanupStack::Pop();
   263 	CEmbeddedStore* target=CEmbeddedStore::NewLC(trg);
   264 //
   265 	test.Next(_L("Copying using small transfers"));
   266 	RStoreReadStream in;
   267 	in.OpenL(*source,source->Root());
   268 	in>>TheBuf;
   269 	TStreamId copyId;
   270 	in>>copyId;
   271 	in.Close();
   272 	in.OpenL(*source,copyId);
   273 	RStoreWriteStream out;
   274 	id=out.CreateL(*target);
   275 	testCopyL(out,in);
   276 	out.CommitL();
   277 	out.Close();
   278 	in.Close();
   279 	in.OpenL(*target,id);
   280 	testReadL(in);
   281 	in.Close();
   282 //
   283 	test.Next(_L("Copying using a single big transfer"));
   284 	in.OpenL(*source,copyId);
   285 	id=out.CreateL(*target);
   286 	in.ReadL(out,KTestTotal);
   287 	out.CommitL();
   288 	out.Close();
   289 	in.Close();
   290 	in.OpenL(*target,id);
   291 	testReadL(in);
   292 	in.Close();
   293 	in.OpenL(*source,copyId);
   294 	id=out.CreateL(*target);
   295 	out.WriteL(in,KTestTotal);
   296 	out.CommitL();
   297 	out.Close();
   298 	in.Close();
   299 	in.OpenL(*target,id);
   300 	testReadL(in);
   301 	in.Close();
   302 //
   303 	CleanupStack::PopAndDestroy(3);
   304 	}
   305 
   306 //
   307 // Prepare the test directory.
   308 //
   309 LOCAL_C void setupTestDirectory()
   310     {
   311 	TInt r=TheFs.Connect();
   312 	test(r==KErrNone);
   313 //
   314 	TDriveUnit drive(static_cast<TUint>(RFs::GetSystemDrive()));	
   315 	TParse parse;
   316 	parse.Set(drive.Name(), &KFileLocationSpec, NULL);
   317 	
   318 	r=TheFs.MkDir(parse.DriveAndPath());
   319 	test(r==KErrNone||r==KErrAlreadyExists);
   320 	r=TheFs.SetSessionPath(parse.DriveAndPath());
   321 	test(r==KErrNone);
   322 	}
   323 
   324 //
   325 // Initialise the cleanup stack.
   326 //
   327 LOCAL_C void setupCleanup()
   328     {
   329 	TheTrapCleanup=CTrapCleanup::New();
   330 	test(TheTrapCleanup!=NULL);
   331 	TRAPD(r,\
   332 		{\
   333 		for (TInt i=KTestCleanupStack;i>0;i--)\
   334 			CleanupStack::PushL((TAny*)0);\
   335 		CleanupStack::Pop(KTestCleanupStack);\
   336 		});
   337 	test(r==KErrNone);
   338 	}
   339 
   340 LOCAL_C void DeleteDataFile(const TDesC& aFullName)
   341 	{
   342 	RFs fsSession;
   343 	TInt err = fsSession.Connect();
   344 	if(err == KErrNone)
   345 		{
   346 		TEntry entry;
   347 		if(fsSession.Entry(aFullName, entry) == KErrNone)
   348 			{
   349 			RDebug::Print(_L("Deleting \"%S\" file.\n"), &aFullName);
   350 			err = fsSession.SetAtt(aFullName, 0, KEntryAttReadOnly);
   351 			if(err != KErrNone)
   352 				{
   353 				RDebug::Print(_L("Error %d changing \"%S\" file attributes.\n"), err, &aFullName);
   354 				}
   355 			err = fsSession.Delete(aFullName);
   356 			if(err != KErrNone)
   357 				{
   358 				RDebug::Print(_L("Error %d deleting \"%S\" file.\n"), err, &aFullName);
   359 				}
   360 			}
   361 		fsSession.Close();
   362 		}
   363 	else
   364 		{
   365 		RDebug::Print(_L("Error %d connecting file session. File: %S.\n"), err, &aFullName);
   366 		}
   367 	}
   368 
   369 //
   370 // Test streaming conversions.
   371 //
   372 GLDEF_C TInt E32Main()
   373     {
   374 	test.Title();
   375 	setupTestDirectory();
   376 	setupCleanup();
   377 	__UHEAP_MARK;
   378 //
   379 	test.Start(_L("Test direct file store"));
   380 	TRAPD(r,testWriteL());
   381 	test(r==KErrNone);
   382 	TRAP(r,testReadL());
   383 	test(r==KErrNone);
   384 	TRAP(r,testCopyL());
   385 	test(r==KErrNone);
   386 
   387 	//deletion of data files must be before call to .End() - DEF047652
   388 	TDriveUnit drive(static_cast<TUint>(RFs::GetSystemDrive()));	
   389 	TParse parse;
   390 	parse.Set(drive.Name(), &KFileLocationSpec, NULL);
   391 	::DeleteDataFile(parse.FullName());
   392 		
   393 	test.End();
   394 //
   395 	__UHEAP_MARKEND;
   396 
   397 	delete TheTrapCleanup;
   398 	TheFs.Close();
   399 	test.Close();
   400 	return 0;
   401     }
   402