os/persistentdata/persistentstorage/store/TSTOR/t_stordictfs.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 // Copyright (c) 1998-2009 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 <e32test.h>
    17 #include <s32file.h>
    18 
    19 const TInt KTestCleanupStack=0x40;
    20 
    21 _LIT(KTitle,"t_stordictfs");
    22 LOCAL_D RTest test(KTitle);
    23 LOCAL_D CTrapCleanup* TheTrapCleanup;
    24 LOCAL_D RFs TheFs;
    25 
    26 // These are path specifications and should not be used as is
    27 _LIT(KDicFilePath,"Z:\\stor-tst\\dicfile.ini");
    28 const TUid dicFileUid={19445};
    29 _LIT(KSystemIniFile,"Z:\\System\\System.ini");
    30 _LIT(KBackupSystemIniFile,"Z:\\System\\System.backup");
    31 _LIT(KTestIniFile,"Z:\\stor-tst\\Test.ini");
    32 _LIT(KThreadTestPath, "Z:\\stor-tst\\Thread Test %d.ini");
    33 
    34 const TInt KNumThreads=20;
    35 const TInt KThreadStack=0x2000;
    36 const TInt KThreadHeap=0x1000;
    37 const TInt KThreadHeapMax=0x100000;
    38 
    39 // some uid's to use for testing
    40 const TUid testUid1={1};
    41 const TUid testUid2={57};
    42 const TUid testUid3={99999};
    43 const TUid testUid4={98765};
    44 const TUid KTestUid={0xf0000000};
    45 //
    46 // some data values for testing
    47 const TInt value1=42;
    48 const TInt value2=147;
    49 const TInt value3=6547;
    50 
    51 /**
    52 @SYMTestCaseID          SYSLIB-STORE-CT-1183
    53 @SYMTestCaseDesc	    Tests for CDictionaryFileStore::IsPresentL(),CDictionaryFileStore::Remove() functions
    54 @SYMTestPriority 	    High
    55 @SYMTestActions  	    Tests for writing an entry and commit it.
    56                         Tests for reading the entry back.
    57 						Tests for rewriting and reading back using LC functions.
    58 						Tests for adding one more entry and check for the content.
    59 @SYMTestExpectedResults Test must not fail
    60 @SYMREQ                 REQ0000
    61 */
    62 LOCAL_C void Test1L(CDictionaryFileStore* aDict)
    63 	{
    64 	// write an entry and commit it
    65 	test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1183 "));
    66 	RDictionaryWriteStream writeStream;
    67 	TRAPD(ret, writeStream.AssignL(*aDict,testUid1));
    68 		test(ret==KErrNone);
    69 	TRAP(ret, writeStream.WriteInt32L(value1));
    70 		test(ret==KErrNone);
    71 	TRAP(ret, writeStream.CommitL());
    72 		test(ret==KErrNone);
    73 	writeStream.Close();
    74 	// read that entry back
    75 	RDictionaryReadStream readStream;
    76 	TRAP(ret, readStream.OpenL(*aDict,testUid1));
    77 		test(ret==KErrNone);
    78 	TInt val=0;
    79 	TRAP(ret, val = readStream.ReadInt32L());
    80 		test(ret==KErrNone);
    81 		test(val==value1);
    82 	readStream.Close();
    83 	//
    84 	test.Next(_L("Test the stream LC methods"));
    85 	// read that entry back using the LC method
    86 	readStream.OpenLC(*aDict,testUid1);
    87 	TRAP(ret, val = readStream.ReadInt32L());
    88 		test(ret==KErrNone);
    89 		test(val==value1);
    90 	//readStream.Close();
    91 	CleanupStack::PopAndDestroy(); // readStream
    92 	//
    93 	// rewrite that entry using the LC method
    94 	writeStream.AssignLC(*aDict,testUid1);
    95 	
    96 	//do some rading
    97 	MStreamBuf* sbuf = writeStream.Sink();
    98 	HBufC8* buffer = HBufC8::NewLC(400);
    99 	TUint8* buffptr = const_cast<TUint8*>(buffer->Ptr());
   100 	sbuf->ReadL(buffptr, 100);
   101 	TPtr8 buffDes(buffer->Des());
   102 	TRequestStatus rstatus;
   103 	sbuf->ReadL(buffDes, 100, rstatus);
   104 	User::WaitForRequest(rstatus);
   105 	CleanupStack::PopAndDestroy(); //buffer
   106 	
   107 	TRAP(ret, writeStream.WriteInt32L(value1));
   108 		test(ret==KErrNone);
   109 	TRAP(ret, writeStream.CommitL());
   110 		test(ret==KErrNone);
   111 	//writeStream.Close();
   112 	CleanupStack::PopAndDestroy(); // writestream
   113 	//
   114 	test.Next(_L("Test reverting the store"));
   115 	// commit the store
   116 	TRAP(ret, aDict->CommitL());
   117 		test(ret==KErrNone);
   118 	// replace the 1st entry, commit it, then revert the store
   119 	TRAP(ret, writeStream.AssignL(*aDict,testUid1));
   120 		test(ret==KErrNone);
   121 	TRAP(ret, writeStream.WriteInt32L(value2));
   122 		test(ret==KErrNone);
   123 	TRAP(ret, writeStream.CommitL());
   124 		test(ret==KErrNone);
   125 	writeStream.Close();
   126 	TRAP(ret, aDict->RevertL());
   127 		test(ret==KErrNone);
   128 	// check the value of the entry
   129 	TRAP(ret, readStream.OpenL(*aDict,testUid1));
   130 		test(ret==KErrNone);
   131 	TRAP(ret, val = readStream.ReadInt32L());
   132 		test(ret==KErrNone);
   133 		test(val==value1);
   134 	readStream.Close();
   135 	
   136 	test.Next(_L("Test reverting the store using alternative Revert method"));
   137 	// replace the 1st entry, commit it, then revert the store
   138 	TRAP(ret, writeStream.AssignL(*aDict,testUid1));
   139 		test(ret==KErrNone);
   140 	TRAP(ret, writeStream.WriteInt32L(value2));
   141 		test(ret==KErrNone);
   142 	TRAP(ret, writeStream.CommitL());
   143 		test(ret==KErrNone);
   144 	writeStream.Close();
   145 	aDict->Revert();
   146 	// check the value of the entry
   147 	TRAP(ret, readStream.OpenL(*aDict,testUid1));
   148 		test(ret==KErrNone);
   149 	TRAP(ret, val = readStream.ReadInt32L());
   150 		test(ret==KErrNone);
   151 		test(val==value1);
   152 	readStream.Close();
   153 	//
   154 	//
   155 	test.Next(_L("Test IsPresentL() and Remove()"));
   156 	// add another entry
   157 	TRAP(ret, writeStream.AssignL(*aDict,testUid2));
   158 		test(ret==KErrNone);
   159 	TRAP(ret, writeStream.WriteInt32L(value2));
   160 		test(ret==KErrNone);
   161 	test(!aDict->IsPresentL(testUid2));
   162 	TRAP(ret, writeStream.CommitL());
   163 		test(ret==KErrNone);
   164 	writeStream.Close();
   165 	// test IsPresentL()
   166 	test(aDict->IsPresentL(testUid1));
   167 	test(aDict->IsPresentL(testUid2));
   168 	test(!aDict->IsPresentL(testUid3));
   169 	// test Remove()
   170 	TRAP(ret, aDict->RemoveL(testUid1));
   171 		test(!aDict->IsPresentL(testUid1));
   172 	//
   173 	//
   174 	test.Next(_L("Close the store and re-open it"));
   175 	// commit the store and close it
   176 	TRAP(ret, aDict->CommitL());
   177 		test(ret==KErrNone);
   178 	//
   179 	delete aDict;
   180 	}
   181 
   182 /**
   183 @SYMTestCaseID          SYSLIB-STORE-CT-1184
   184 @SYMTestCaseDesc	    Tests for CDictionaryFileStore::IsPresentL() function
   185 @SYMTestPriority 	    High
   186 @SYMTestActions  	    Tests for the specified UID's has an associated stream within the dictionary store.
   187 						Tests for KErrNone error flag while opening a dictionary file for read,test the value read from the file.
   188 @SYMTestExpectedResults Test must not fail
   189 @SYMREQ                 REQ0000
   190 */
   191 LOCAL_C void Test2L(CDictionaryFileStore* aDict)
   192 	{
   193 	test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1184 "));
   194 	test(!aDict->IsPresentL(testUid1));
   195 	test(aDict->IsPresentL(testUid2));
   196 	test(!aDict->IsPresentL(testUid3));
   197 	RDictionaryReadStream readStream;
   198 	TRAPD(ret, readStream.OpenL(*aDict,testUid2));
   199 		test(ret==KErrNone);
   200 	TInt val=0;
   201 	TRAP(ret, val = readStream.ReadInt32L());
   202 		test(ret==KErrNone);
   203 		test(val==value2);
   204 	readStream.Close();
   205 	//
   206 	//
   207 	test.Next(_L("Close the store without commiting"));
   208 	// add a stream, close the store (no commit)
   209 	RDictionaryWriteStream writeStream;
   210 	TRAP(ret, writeStream.AssignL(*aDict,testUid3));
   211 		test(ret==KErrNone);
   212 	TRAP(ret, writeStream.WriteInt32L(value3));
   213 		test(ret==KErrNone);
   214 	TRAP(ret, writeStream.CommitL());
   215 		test(ret==KErrNone);
   216 	writeStream.Close();
   217 	delete aDict;
   218 	}
   219 
   220 /**
   221 @SYMTestCaseID          SYSLIB-STORE-CT-1185
   222 @SYMTestCaseDesc	    Reading from a dictionary file test
   223 @SYMTestPriority 	    High
   224 @SYMTestActions  	    Tests for the specified UID's has an associated stream within the dictionary store.
   225                         Tests for KErrNone error flag,while opening a dictionary file for read operation
   226 @SYMTestExpectedResults Test must not fail
   227 @SYMREQ                 REQ0000
   228 */
   229 LOCAL_C void Test3L(CDictionaryFileStore* aDict)
   230 	{
   231 	test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1185 "));
   232 	test(!aDict->IsPresentL(testUid1));
   233 	test(aDict->IsPresentL(testUid2));
   234 	test(!aDict->IsPresentL(testUid3));
   235 	RDictionaryReadStream readStream;
   236 	TRAPD(ret, readStream.OpenL(*aDict,testUid2));
   237 	test(ret==KErrNone);
   238 	
   239 	TInt val=0;
   240 	TRAP(ret, val = readStream.ReadInt32L());
   241 	test(ret==KErrNone);
   242 	test(val==value2);
   243 	
   244 	readStream.Close();
   245 	delete aDict;
   246 	}
   247 /**
   248 @SYMTestCaseID          PDS-STORE-CT-4022
   249 @SYMTestCaseDesc	    Validate IsNUll() API
   250 @SYMTestPriority 	    High
   251 @SYMTestActions  	    Test that the specified DictionaryStore is not present
   252 @SYMTestExpectedResults Test must not fail
   253 @SYMDEF                 DEF135804
   254 */
   255 LOCAL_C void Test4L(CDictionaryFileStore* aDict)
   256 	{
   257 	test.Next(_L(" @SYMTestCaseID:PDS-STORE-CT-4022 "));
   258 	test(aDict->IsNullL());
   259 	}
   260 
   261 /**
   262 @SYMTestCaseID          PDS-STORE-CT-4023
   263 @SYMTestCaseDesc	    Validate IsNUll() API
   264 @SYMTestPriority 	    High
   265 @SYMTestActions  	    Test that the specified DictionaryStore is  present
   266 @SYMTestExpectedResults Test must not fail
   267 @SYMDEF                 DEF135804
   268 */
   269 LOCAL_C void Test5L(CDictionaryFileStore* aDict)
   270 	{
   271 	test.Next(_L(" @SYMTestCaseID:PDS-STORE-CT-4023 "));
   272 	test(!aDict->IsNullL());
   273 	delete aDict;
   274 	}
   275 
   276 /**
   277 @SYMTestCaseID          PDS-STORE-CT-4024
   278 @SYMTestCaseDesc	    Validate Remove() API
   279 @SYMTestPriority 	    High
   280 @SYMTestActions  	    Test that the specified UID is  present
   281                         Remove Stream and test that UID is not present
   282 @SYMTestExpectedResults Test must not fail
   283 @SYMDEF                 DEF135804
   284 */
   285 LOCAL_C void Test6L(CDictionaryFileStore* aDict)
   286 	{
   287 	test.Next(_L(" @SYMTestCaseID:PDS-STORE-CT-4024 "));
   288 	test(aDict->IsPresentL(testUid2));
   289 	aDict->Remove(testUid2);
   290 	test(!aDict->IsPresentL(testUid2));
   291 	delete aDict;
   292 	}
   293 
   294 
   295 /**
   296 Test the System ini file
   297 
   298 @SYMTestCaseID          SYSLIB-STORE-CT-1186
   299 @SYMTestCaseDesc	    Tests for CDictionaryFileStore::SystemL() function
   300 @SYMTestPriority 	    High
   301 @SYMTestActions  	    Tests for creation of system file.Tests for basic operations on the file
   302 @SYMTestExpectedResults Test must not fail
   303 @SYMREQ                 REQ0000
   304 */
   305 LOCAL_C void systemTestL()
   306 	{
   307 	TDriveUnit drive(static_cast<TUint>(RFs::GetSystemDrive()));	
   308 	TParse systemIniFile;
   309 	TParse backupSystemIniFile;
   310 	systemIniFile.Set(drive.Name(), &KSystemIniFile, NULL);
   311 	backupSystemIniFile.Set(drive.Name(), &KBackupSystemIniFile, NULL);
   312 
   313 	TheFs.Rename(systemIniFile.FullName(),backupSystemIniFile.FullName());
   314 	TParse parse;
   315 	parse.Set(systemIniFile.FullName(),NULL,NULL);
   316 	TheFs.RmDir(parse.DriveAndPath());
   317 //
   318 	test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1186 Create system file "));
   319 	CDictionaryFileStore* dicFile=NULL;
   320 	TRAPD(ret, dicFile = CDictionaryFileStore::SystemL(TheFs));
   321 	test(ret==KErrNone);
   322 	TEntry entry;
   323 	TInt err = TheFs.Entry(systemIniFile.FullName(),entry);
   324 	test (err==KErrNone);
   325 	Test1L(dicFile);
   326 	test.Next(_L("Opening system file"));
   327 	TRAP(ret, dicFile = CDictionaryFileStore::SystemL(TheFs));
   328 		test(ret==KErrNone);
   329 	Test2L(dicFile);
   330 	TRAP(ret, dicFile = CDictionaryFileStore::SystemL(TheFs));
   331 		test(ret==KErrNone);
   332 	Test3L(dicFile);
   333 	
   334 	TRAP(ret, dicFile = CDictionaryFileStore::SystemL(TheFs));
   335 	test(ret==KErrNone);
   336 	Test6L(dicFile);
   337 	
   338 	TheFs.Delete(systemIniFile.FullName());
   339 	TheFs.Rename(backupSystemIniFile.FullName(),systemIniFile.FullName());
   340 	}
   341 
   342 /**
   343 @SYMTestCaseID          SYSLIB-STORE-CT-1187
   344 @SYMTestCaseDesc	    Tests for creating a new file and adding an entry into it
   345 @SYMTestPriority 	    High
   346 @SYMTestActions  	    Execute tests for create,open and check the contents and reopening
   347                         Check for ErrNone flag during the open operation.
   348 @SYMTestExpectedResults Test must not fail
   349 @SYMREQ                 REQ0000
   350 */
   351 LOCAL_C void generalTestsL()
   352 	{
   353 	// set things up...
   354 	TDriveUnit drive(static_cast<TUint>(RFs::GetSystemDrive()));	
   355 	TParse dicFilePath;
   356 	dicFilePath.Set(drive.Name(), &KDicFilePath, NULL);
   357 	
   358 	TInt ret = TheFs.MkDirAll(dicFilePath.FullName());
   359 	test((ret==KErrNone)||(ret==KErrAlreadyExists));
   360 	TheFs.Delete(dicFilePath.FullName()); // delete the file if it already exists
   361 	//
   362 	//
   363 	test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1187 Create a new file and put an entry in it "));
   364 	// create a new dictionary file
   365 	CDictionaryFileStore* dicFile=NULL;
   366 	TRAP(ret, dicFile = CDictionaryFileStore::OpenL(TheFs,dicFilePath.FullName(),dicFileUid));
   367 	test(ret==KErrNone);
   368 	//Check that file is NULL
   369 	Test4L(dicFile);
   370 	Test1L(dicFile);
   371 	// open it and check the contents
   372 	TRAP(ret, dicFile = CDictionaryFileStore::OpenL(TheFs,dicFilePath.FullName(),dicFileUid));
   373 	test(ret==KErrNone);
   374 	Test2L(dicFile);
   375 	// open it again and check the contents
   376 	TRAP(ret, dicFile = CDictionaryFileStore::OpenL(TheFs,dicFilePath.FullName(),dicFileUid));
   377 	test(ret==KErrNone);
   378 	Test3L(dicFile);
   379 	//open it again and check that contents is not NUll
   380 	TRAP(ret, dicFile = CDictionaryFileStore::OpenL(TheFs,dicFilePath.FullName(),dicFileUid));
   381 	test(ret==KErrNone);
   382 	Test5L(dicFile);
   383 	
   384 	}
   385 
   386 /**
   387 @SYMTestCaseID          SYSLIB-STORE-CT-1188
   388 @SYMTestCaseDesc	    Creation of empty files test
   389 @SYMTestPriority 	    High
   390 @SYMTestActions  	    Tests by opening empty dictionary file and interrogate it.
   391                         Tests for opening a stream that does not exist.Tests for reading from the empty file
   392 @SYMTestExpectedResults Test must not fail
   393 @SYMREQ                 REQ0000
   394 */
   395 LOCAL_C void emptyFileTestsL()
   396 	{
   397 	// set things up...
   398 	TDriveUnit drive(static_cast<TUint>(RFs::GetSystemDrive()));	
   399 	TParse dicFilePath;
   400 	dicFilePath.Set(drive.Name(), &KDicFilePath, NULL);
   401 	
   402 	TInt ret = TheFs.MkDirAll(dicFilePath.DriveAndPath());
   403 		test((ret==KErrNone)||(ret==KErrAlreadyExists));
   404 	TheFs.Delete(dicFilePath.FullName()); // delete the file if it already exists
   405 	//
   406 	//
   407 	test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1188 Create a new file, close it while still empty, then open it again "));
   408 	// create a new dictionary file and close it immediately
   409 	CDictionaryFileStore* dicFile=NULL;
   410 	TRAP(ret, dicFile = CDictionaryFileStore::OpenL(TheFs,dicFilePath.FullName(),dicFileUid));
   411 		test(ret==KErrNone);
   412 	TRAP(ret, dicFile->CommitL());
   413 		test(ret==KErrNone);
   414 	delete dicFile;
   415 	dicFile = NULL;
   416 	//
   417 	// open the empty dic file and interogate it
   418 	TRAP(ret, dicFile = CDictionaryFileStore::OpenL(TheFs,dicFilePath.FullName(),dicFileUid));
   419 		test(ret==KErrNone);
   420 	test(!dicFile->IsPresentL(testUid1));
   421 	test(!dicFile->IsPresentL(testUid2));
   422 	test(!dicFile->IsPresentL(testUid3));
   423 	//
   424 	//
   425 	test.Next(_L("Open a stream that doesn't exist"));
   426 	// open a stream that does not exist - should get an empty one
   427 	RDictionaryReadStream readStream;
   428 	TRAP(ret, readStream.OpenL(*dicFile,testUid1));
   429 		test(ret==KErrNone);
   430 	// try to read from it to check that it's empty
   431 	TUint8 b;
   432 	test(readStream.Source()->ReadL(&b,1)==0);
   433 	readStream.Close();
   434 	//
   435 	//
   436 	// tidy up
   437 	delete dicFile;
   438 	
   439 	}
   440 
   441 /**
   442 @SYMTestCaseID          SYSLIB-STORE-CT-1189
   443 @SYMTestCaseDesc	    Repeatedly opening a dictionary file test
   444 @SYMTestPriority 	    High
   445 @SYMTestActions  	    Attempt for creating a new dictionary file,write an entry an commit it.
   446                         Attempt for repeatedly opening the dictionary file,interogate it,and delete it without commiting
   447                         Attempt for repeatedly opening the dictionary file and interogate it,commit the file after each read
   448 						Attempt for repeatedly opening the dictionary file and re-write a stream, commiting the file after each write
   449 @SYMTestExpectedResults Test must not fail
   450 @SYMREQ                 REQ0000
   451 */
   452 LOCAL_C void repeatedUseTestsL()
   453 	{
   454 	// set things up...
   455 	test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1189 "));
   456 
   457 	TDriveUnit drive(static_cast<TUint>(RFs::GetSystemDrive()));	
   458 	TParse dicFilePath;
   459 	dicFilePath.Set(drive.Name(), &KDicFilePath, NULL);
   460 	
   461 	TInt ret = TheFs.MkDirAll(dicFilePath.DriveAndPath());
   462 		test((ret==KErrNone)||(ret==KErrAlreadyExists));
   463 	TheFs.Delete(dicFilePath.FullName()); // delete the file if it already exists
   464 	//
   465 	// create a new dictionary file
   466 	CDictionaryFileStore* dicFile=NULL;
   467 	TRAP(ret, dicFile = CDictionaryFileStore::OpenL(TheFs,dicFilePath.FullName(),dicFileUid));
   468 		test(ret==KErrNone);
   469 	// write an entry and commit it
   470 	RDictionaryWriteStream writeStream;
   471 	TRAP(ret, writeStream.AssignL(*dicFile,testUid1));
   472 		test(ret==KErrNone);
   473 	TRAP(ret, writeStream.WriteInt32L(value1));
   474 		test(ret==KErrNone);
   475 	TRAP(ret, writeStream.CommitL());
   476 		test(ret==KErrNone);
   477 	writeStream.Close();
   478 	// close the file
   479 	TRAP(ret, dicFile->CommitL());
   480 		test(ret==KErrNone);
   481 	delete dicFile;
   482 	dicFile = NULL;
   483 	//
   484 	//
   485 	test.Next(_L("Repeatedly open a file and interogate it without commiting"));
   486 	// repeatedly open the dic file, interogate it, and delete it without commiting
   487 	TEntry fileEntry;
   488 	ret = TheFs.Entry(dicFilePath.FullName(),fileEntry);
   489 		test(ret==KErrNone);
   490 	TInt sizeBefore=fileEntry.iSize;
   491 	//
   492 	TInt i;
   493 	for (i=0 ; i<10 ; i++)
   494 		{
   495 		TRAP(ret, dicFile = CDictionaryFileStore::OpenL(TheFs,dicFilePath.FullName(),dicFileUid));
   496 			test(ret==KErrNone);
   497 		RDictionaryReadStream readStream;
   498 		TRAP(ret, readStream.OpenL(*dicFile,testUid1));
   499 			test(ret==KErrNone);
   500 		readStream.Close();
   501 		delete dicFile;
   502 		dicFile = NULL;
   503 		}
   504 	//
   505 	ret = TheFs.Entry(dicFilePath.FullName(),fileEntry);
   506 		test(ret==KErrNone);
   507 	TInt sizeAfter=fileEntry.iSize;
   508 		test(sizeAfter==sizeBefore);
   509 	//
   510 	//
   511 	test.Next(_L("Repeatedly open a file, commiting after each read"));
   512 	// repeatedly open the dic file and interogate it, commiting the file after each read
   513 	ret = TheFs.Entry(dicFilePath.FullName(),fileEntry);
   514 		test(ret==KErrNone);
   515 	sizeBefore=fileEntry.iSize;
   516 	//
   517 	for (i=0 ; i<10 ; i++)
   518 		{
   519 		TRAP(ret, dicFile = CDictionaryFileStore::OpenL(TheFs,dicFilePath.FullName(),dicFileUid));
   520 			test(ret==KErrNone);
   521 		RDictionaryReadStream readStream;
   522 		TRAP(ret, readStream.OpenL(*dicFile,testUid1));
   523 			test(ret==KErrNone);
   524 		readStream.Close();
   525 		TRAP(ret, dicFile->CommitL());
   526 			test(ret==KErrNone);
   527 		delete dicFile;
   528 		dicFile = NULL;
   529 		}
   530 	//
   531 	ret = TheFs.Entry(dicFilePath.FullName(),fileEntry);
   532 		test(ret==KErrNone);
   533 	sizeAfter=fileEntry.iSize;
   534 		test(sizeAfter==sizeBefore);
   535 	//
   536 	//
   537 	test.Next(_L("Repeatedly open a file and re-write a stream"));
   538 	// repeatedly open the dic file and re-write a stream, commiting the file after each write
   539 	ret = TheFs.Entry(dicFilePath.FullName(),fileEntry);
   540 		test(ret==KErrNone);
   541 	sizeBefore=fileEntry.iSize;
   542 	//
   543 	for (i=0 ; i<10 ; i++)
   544 		{
   545 		TRAP(ret, dicFile = CDictionaryFileStore::OpenL(TheFs,dicFilePath.FullName(),dicFileUid));
   546 			test(ret==KErrNone);
   547 		// write an entry and commit it
   548 		RDictionaryWriteStream writeStream;
   549 		TRAP(ret, writeStream.AssignL(*dicFile,testUid1));
   550 			test(ret==KErrNone);
   551 		TRAP(ret, writeStream.WriteInt32L(i));
   552 			test(ret==KErrNone);
   553 		TRAP(ret, writeStream.CommitL());
   554 			test(ret==KErrNone);
   555 		writeStream.Close();
   556 		// close the file
   557 		TRAP(ret, dicFile->CommitL());
   558 			test(ret==KErrNone);
   559 		delete dicFile;
   560 		dicFile = NULL;
   561 		}
   562 	//
   563 	ret = TheFs.Entry(dicFilePath.FullName(),fileEntry);
   564 		test(ret==KErrNone);
   565 	sizeAfter=fileEntry.iSize;
   566 		test.Printf(_L("  Size before: %d\n  Size after:  %d\n"),sizeBefore,sizeAfter);
   567 	//
   568 	//
   569 	// tidy up
   570 	}
   571 
   572 LOCAL_C void AddEntryL()
   573 	{
   574 	TDriveUnit drive(static_cast<TUint>(RFs::GetSystemDrive()));	
   575 	TParse dicFilePath;
   576 	dicFilePath.Set(drive.Name(), &KDicFilePath, NULL);
   577 	
   578 	CDictionaryStore* dictionary=CDictionaryFileStore::OpenLC(TheFs,dicFilePath.FullName(),dicFileUid);
   579 	RDictionaryWriteStream s;
   580 	s.AssignLC(*dictionary,testUid4);
   581 	s.WriteInt32L(value1);
   582 	s.CommitL();
   583 	CleanupStack::PopAndDestroy();	// s
   584    	TInt err = dictionary->Commit(); // changed from CommitL to ensure api coverage
   585 	User::LeaveIfError(err);
   586 	CleanupStack::PopAndDestroy();	// dictionary
   587 	}
   588 
   589 LOCAL_C TBool CheckEntryL()
   590 	{
   591 	TDriveUnit drive(static_cast<TUint>(RFs::GetSystemDrive()));	
   592 	TParse dicFilePath;
   593 	dicFilePath.Set(drive.Name(), &KDicFilePath, NULL);
   594 	
   595 	CDictionaryStore* dictionary=CDictionaryFileStore::OpenLC(TheFs,dicFilePath.FullName(),dicFileUid);
   596 	TBool isPresent=dictionary->IsPresentL(testUid4);
   597 	if (isPresent)
   598 		{
   599 		RDictionaryReadStream s;
   600 		s.OpenLC(*dictionary,testUid4);
   601 		test (s.ReadInt32L()==value1);
   602 		CleanupStack::PopAndDestroy();	// s
   603 		}
   604 	CleanupStack::PopAndDestroy();	// dictionary
   605 	return isPresent;
   606 	}
   607 
   608 /**
   609 Test CDictionaryFileStore construction, forcing a leave error at each
   610 possible stage of the process.
   611 
   612 @SYMTestCaseID          SYSLIB-STORE-CT-1190
   613 @SYMTestCaseDesc	    Tests for CDictionaryFileStore construction under low memory conditions.
   614 @SYMTestPriority 	    High
   615 @SYMTestActions  	    Attempt for construction under low memory conditions.
   616 @SYMTestExpectedResults Test must not fail
   617 @SYMREQ                 REQ0000
   618 */
   619 LOCAL_C void TestOOML()
   620 	{
   621 	test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1190 Construction under low memory conditions "));
   622 
   623 	TDriveUnit drive(static_cast<TUint>(RFs::GetSystemDrive()));	
   624 	TParse dicFilePath;
   625 	dicFilePath.Set(drive.Name(), &KDicFilePath, NULL);
   626 	
   627 	TheFs.Delete(dicFilePath.FullName()); // delete the file
   628 	TInt failRate=0;
   629 
   630 	for (failRate=1;;failRate++)
   631 		{
   632 		__UHEAP_SETFAIL(RHeap::EDeterministic,failRate);
   633 		__UHEAP_MARK;
   634 		TRAPD(ret, AddEntryL());
   635 		__UHEAP_MARKEND;
   636 		if (ret==KErrNone)
   637 			break;
   638 		test (ret==KErrNoMemory);
   639 		__UHEAP_RESET;
   640 		test (!CheckEntryL());
   641 		}
   642 	__UHEAP_RESET;
   643 	test (CheckEntryL());
   644 	test.Printf(_L("  #allocs for update: %d\n"),failRate-1);
   645 	//
   646 	// tidy up
   647 	}
   648 
   649 
   650 // Thread contention tests
   651 
   652 
   653 class TIniData
   654 	{
   655 public:
   656 	void LoadL(CDictionaryStore& aStore);
   657 	void SaveL(CDictionaryStore& aStore) const;
   658 	TStreamId StoreL(CStreamStore& aStore) const;
   659 	void RestoreL(CStreamStore& aStore,TStreamId anId);
   660 	void InternalizeL(RReadStream& aStream);
   661 	void ExternalizeL(RWriteStream& aStream) const;
   662 	};
   663 
   664 void TIniData::LoadL(CDictionaryStore& aStore)
   665 	{
   666 	if (aStore.IsPresentL(KTestUid))
   667 		{
   668 		RDictionaryReadStream stream;
   669 		stream.OpenL(aStore,KTestUid);
   670 		CEmbeddedStore* store=CEmbeddedStore::FromLC(stream);
   671 		RestoreL(*store,store->Root());
   672 		CleanupStack::PopAndDestroy();
   673 		}
   674 	}
   675 
   676 void TIniData::SaveL(CDictionaryStore& aStore) const
   677 	{
   678 	RDictionaryWriteStream stream;
   679 	stream.AssignL(aStore,KTestUid);
   680 	CEmbeddedStore* store=CEmbeddedStore::NewLC(stream);
   681 	store->SetRootL(StoreL(*store));
   682 	store->CommitL();
   683 	CleanupStack::PopAndDestroy();
   684 	}
   685 
   686 void TIniData::RestoreL(CStreamStore& aStore,TStreamId anId)
   687 	{
   688 	RStoreReadStream stream;
   689 	stream.OpenLC(aStore,anId);
   690 	TStreamId id1,id2;
   691 	stream >> id1 >> id2;
   692 	CleanupStack::PopAndDestroy();
   693 	stream.OpenLC(aStore,id1);
   694 	stream >> *this;
   695 	CleanupStack::PopAndDestroy();
   696 	{
   697 	TReal x=0.501;
   698 	for (TInt ii=0;ii<200;++ii)
   699 		x=4.0*x*(1.0-x);
   700 	}
   701 	stream.OpenLC(aStore,id2);
   702 	stream >> *this;
   703 	CleanupStack::PopAndDestroy();
   704 	}
   705 
   706 TStreamId TIniData::StoreL(CStreamStore& aStore) const
   707 	{
   708 	RStoreWriteStream stream;
   709 	TStreamId id2=stream.CreateLC(aStore);
   710 	stream << *this;
   711 	stream.CommitL();
   712 	CleanupStack::PopAndDestroy();
   713 	TStreamId id1=stream.CreateLC(aStore);
   714 	stream << *this;
   715 	stream.CommitL();
   716 	CleanupStack::PopAndDestroy();
   717 	TStreamId id3=stream.CreateLC(aStore);
   718 	stream << id1 << id2;
   719 	stream.CommitL();
   720 	CleanupStack::PopAndDestroy();
   721 	return id3;
   722 	}
   723 
   724 void TIniData::InternalizeL(RReadStream& aStream)
   725 	{
   726 	for (TInt ii=0;ii<150;++ii)
   727 		aStream.ReadUint32L();
   728 	}
   729 
   730 void TIniData::ExternalizeL(RWriteStream& aStream) const
   731 	{
   732 	for (TInt ii=0;ii<150;++ii)
   733 		aStream.WriteUint32L(0);
   734 	}
   735 
   736 //
   737 
   738 void ThreadTestL(TInt aThread)
   739 	{
   740 	RFs fs;
   741 	User::LeaveIfError(fs.Connect());
   742 	CleanupClosePushL(fs);
   743 
   744 	TDriveUnit drive(static_cast<TUint>(RFs::GetSystemDrive()));	
   745 	TParse testIniFile;
   746 	testIniFile.Set(drive.Name(), &KTestIniFile, NULL);
   747 	
   748 	TIniData data;
   749 	CDictionaryStore* dict=CDictionaryFileStore::OpenLC(fs,testIniFile.FullName(),KTestUid);
   750 	data.LoadL(*dict);
   751 	CleanupStack::PopAndDestroy(); // dict
   752 
   753 	TParse threadTestPath;
   754 	threadTestPath.Set(drive.Name(), &KThreadTestPath, NULL);
   755 	
   756 	TFileName name;
   757 	name.Format(threadTestPath.FullName(),aThread);
   758 	dict=CDictionaryFileStore::OpenLC(fs,name,KTestUid);
   759 	data.SaveL(*dict);
   760 	dict->CommitL();
   761 	CleanupStack::PopAndDestroy();
   762 	TReal x=0.501;
   763 	for (TInt ii=0;ii<1000;++ii)
   764 		x=4.0*x*(1.0-x);
   765 	dict=CDictionaryFileStore::OpenLC(fs,name,KTestUid);
   766 	data.LoadL(*dict);
   767 	CleanupStack::PopAndDestroy();	// dict
   768 	fs.Delete(name);
   769 	CleanupStack::PopAndDestroy();	// fs
   770 	}
   771 
   772 TInt ThreadTest(TAny* aPtr)
   773 	{
   774 	CTrapCleanup* cleanup=CTrapCleanup::New();
   775 	if (!cleanup)
   776 		return KErrNoMemory;
   777 	TRAPD(error,ThreadTestL(TInt(aPtr)));
   778 	delete cleanup;
   779 	return error;
   780 	}
   781 
   782 /**
   783 @SYMTestCaseID          SYSLIB-STORE-CT-1191
   784 @SYMTestCaseDesc	    Lock out of dictionary files test
   785 @SYMTestPriority 	    High
   786 @SYMTestActions  	    Attempt for opening of same dictionary file.Tests for file in use error
   787 @SYMTestExpectedResults Test must not fail
   788 @SYMREQ                 REQ0000
   789 */
   790 void ContentionTestL()
   791 	{
   792 	test.Start(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1191 Contention tests "));
   793 	
   794 	TDriveUnit drive(static_cast<TUint>(RFs::GetSystemDrive()));	
   795 	TParse testIniFile;
   796 	testIniFile.Set(drive.Name(), &KTestIniFile, NULL);
   797 	
   798 	CDictionaryStore* dict=CDictionaryFileStore::OpenLC(TheFs,testIniFile.FullName(),KTestUid);
   799 	TIniData data;
   800 	data.SaveL(*dict);
   801 	CleanupStack::PopAndDestroy(); // dict
   802 
   803 	test.Next(_L("Lock-out test"));
   804 	CDictionaryFileStore::OpenLC(TheFs,testIniFile.FullName(),KTestUid);
   805 	TUint tick=User::TickCount();
   806 	TRAPD(r,CDictionaryFileStore::OpenL(TheFs,testIniFile.FullName(),KTestUid));
   807 	tick=User::TickCount()-tick;
   808 	test (r==KErrInUse);
   809 	test.Printf(_L("Lock-out discovered: %d ticks\r\n"),tick);
   810 	CleanupStack::PopAndDestroy();
   811 
   812 	test.Next(_L("Creating threads"));
   813 	RThread threads[KNumThreads];
   814 	TRequestStatus status[KNumThreads];
   815 	TInt ii;
   816 	for (ii=0;ii<KNumThreads;++ii)
   817 		{
   818 		TName name;
   819 		name.Format(_L("Test_%d"),ii);
   820 		test (threads[ii].Create(name,ThreadTest,KThreadStack,KThreadHeap,KThreadHeapMax,(TAny*)ii,EOwnerThread)==KErrNone);
   821 		threads[ii].SetPriority(EPriorityLess);
   822 		threads[ii].Logon(status[ii]);
   823 		test (status[ii]==KRequestPending);
   824 		}
   825 
   826 	for (ii=0;ii<KNumThreads;++ii)
   827 		threads[ii].Resume();
   828 
   829 	test.Next(_L("Waiting for completion"));
   830 	for (ii=0;ii<KNumThreads;++ii)
   831 		User::WaitForAnyRequest();
   832 	TInt success=0;
   833 	for (ii=0;ii<KNumThreads;++ii)
   834 		{
   835 		test (status[ii]!=KRequestPending);
   836 		if (status[ii].Int()==KErrNone)
   837 			++success;
   838 		}
   839 	test.Printf(_L("Thread success: %d of %d\r\n"),success,KNumThreads);
   840 	test.End();
   841 	}
   842 //
   843 
   844 //
   845 // Initialise the cleanup stack.
   846 //
   847 LOCAL_C void setupCleanup()
   848     {
   849 	TheTrapCleanup=CTrapCleanup::New();
   850 	TRAPD(r,\
   851 		{\
   852 		for (TInt i=KTestCleanupStack;i>0;i--)\
   853 			CleanupStack::PushL((TAny*)1);\
   854 		test(r==KErrNone);\
   855 		CleanupStack::Pop(KTestCleanupStack);\
   856 		});
   857 	}
   858 
   859 GLDEF_C TInt E32Main()
   860 	{
   861 	setupCleanup();
   862 	//
   863 	test.Title();
   864 	test.Start(_L("Testing CDictionaryFileStore et al..."));
   865 	test (TheFs.Connect()==KErrNone);
   866 	//
   867 	// run the testcode (inside an alloc heaven harness)
   868 	__UHEAP_MARK;
   869 
   870 	TRAPD(r,systemTestL());
   871 	test(r==KErrNone);
   872 
   873 	TRAP(r,generalTestsL());
   874 	test(r==KErrNone);
   875 
   876 	TRAP(r,emptyFileTestsL());
   877 	test(r==KErrNone);
   878 
   879 	TRAP(r,repeatedUseTestsL());
   880 	test(r==KErrNone);
   881 
   882 	TRAP(r,TestOOML());
   883 	test(r==KErrNone);
   884 
   885 	TRAP(r,ContentionTestL());
   886 	test(r==KErrNone);
   887 	
   888 	__UHEAP_MARKEND;
   889 
   890 	TheFs.Close();
   891  	test.End();
   892 	test.Close();
   893 
   894 	delete TheTrapCleanup;
   895 	return KErrNone;
   896 	}
   897 
   898 
   899