os/persistentdata/persistentstorage/dbms/tdbms/t_dbood.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 // Copyright (c) 2004-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 // Testing new RDbs methods, which handle "Out of disk space" situations.
    15 // 
    16 //
    17 
    18 #include <e32test.h>
    19 #include <f32file.h>
    20 #include <d32dbms.h>
    21 
    22 /////////////////////////////////////////////////////////////////
    23 //Globals
    24 
    25 //If you change KTestDrive, don't forget to change KTestDatabase too!!!
    26 
    27 #if  defined __WINSCW__ || defined __WINS__
    28 
    29 	//The C: drive may be too big and may be used concurently by other applications. 
    30 	//The T: drive is more suitable for the test if running on the emulator
    31 	const TInt				KTestDrive = EDriveT;
    32 	_LIT(					KTestDatabase, "T:\\DBMS-TST\\T_DbmsOOD.DB");
    33 	
    34 #elif defined __X86GCC__
    35 
    36 	const TInt				KTestDrive = EDriveG;
    37 	_LIT(					KTestDatabase, "G:\\DBMS-TST\\T_DbmsOOD.DB");
    38 	
    39 #else
    40 
    41 	const TInt				KTestDrive = EDriveE;
    42 	_LIT(					KTestDatabase, "E:\\DBMS-TST\\T_DbmsOOD.DB");
    43 	
    44 #endif
    45 
    46 const TInt				KReservedSpaceSize = 0; //The aSpace parameter of RDbs::ReserveDriveSpace()
    47                                                 //is not used at the moment and shall be set to 0.
    48 
    49 static RTest			TheTest(_L("t_dbood - \"Out of Disk space\" test"));
    50 static RFs				TheFs;
    51 static RDbNamedDatabase TheDb;
    52 static RDbs				TheDbSession;
    53 
    54 //Test table defs
    55 _LIT(KTestTableName, "TABLE1");
    56 
    57 const TInt KTestRecordsCount = 350;
    58 
    59 struct TColDef
    60 	{
    61 	const TText*	iName;
    62 	TDbColType		iType;
    63 	TInt			iAttributes;
    64 	};
    65 static TColDef const KColDefs[]=
    66 	{
    67 		{_S("ID"), EDbColUint32, TDbCol::EAutoIncrement},
    68 		{_S("DATA"), EDbColBinary, TDbCol::ENotNull},
    69 		{0}
    70 	};
    71 
    72 //One or more files with KLargeFileName name and ".<n>" extension, where n is
    73 //000, 001, 002, 003...
    74 //will be created and they will occupy almost all available disk space.
    75 //The idea is to perform after that "delete"
    76 //transaction, which has to fail, because of "out of disk space" condition.
    77 #if  defined __WINSCW__ || defined __WINS__
    78 
    79 	_LIT(KLargeFileName, "T:\\DBMS-TST\\DeleteMe");
    80 
    81 #elif defined  __X86GCC__
    82 
    83 	_LIT(KLargeFileName, "G:\\DBMS-TST\\DeleteMe");
    84 
    85 #else
    86 
    87 	_LIT(KLargeFileName, "E:\\DBMS-TST\\DeleteMe");
    88 
    89 #endif
    90 
    91 static void AssembleLargeFileName(const TDesC& aFileName, TInt aFileNumber, TDes& aResultPath)
    92 	{
    93 	_LIT(KFormatStr, "%S.%03d");
    94 	aResultPath.Format(KFormatStr, &aFileName, aFileNumber);
    95 	}
    96 
    97 ///////////////////////////////////////////////////////////////////////////////////////
    98 ///////////////////////////////////////////////////////////////////////////////////////
    99 //Create/Destroy test environment - global functions
   100 
   101 //Deletes "aFullName" file.
   102 static TInt DeleteDataFile(const TDesC& aFullName)
   103 	{
   104 	RFs fsSession;
   105 	TInt err = fsSession.Connect();
   106 	if(err == KErrNone)
   107 		{
   108 		TEntry entry;
   109 		err = fsSession.Entry(aFullName, entry);
   110 		if(err == KErrNone)
   111 			{
   112 			RDebug::Print(_L("Deleting \"%S\" file.\n"), &aFullName);
   113 			err = fsSession.SetAtt(aFullName, 0, KEntryAttReadOnly);
   114 			if(err != KErrNone)
   115 				{
   116 				RDebug::Print(_L("Error %d changing \"%S\" file attributes.\n"), err, &aFullName);
   117 				}
   118 			err = fsSession.Delete(aFullName);
   119 			if(err != KErrNone)
   120 				{
   121 				RDebug::Print(_L("Error %d deleting \"%S\" file.\n"), err, &aFullName);
   122 				}
   123 			}
   124 		fsSession.Close();
   125 		}
   126 	else
   127 		{
   128 		RDebug::Print(_L("Error %d connecting file session. File: %S.\n"), err, &aFullName);
   129 		}
   130 	return err;
   131 	}
   132 
   133 //Deletes large data files only
   134 static void DeleteLargeDataFiles()
   135 	{
   136 	for(TInt i=0;i<1000;++i)
   137 		{
   138 		TBuf<KMaxFileName> filePath;
   139 		AssembleLargeFileName(KLargeFileName, i, filePath);
   140 		if(DeleteDataFile(filePath) != KErrNone)
   141 			{
   142 			break;
   143 			}
   144 		}
   145 	}
   146 
   147 //Deletes data files used by the test
   148 static void DeleteDataFiles()
   149 	{
   150 	if(TheDbSession.Handle())
   151 		{
   152 		TheDb.Close();
   153 		}
   154 	TheDbSession.Close();
   155 	DeleteDataFile(KTestDatabase);
   156 	DeleteLargeDataFiles();
   157 	}
   158 
   159 ///////////////////////////////////////////////////////////////////////////////////////
   160 ///////////////////////////////////////////////////////////////////////////////////////
   161 //Tests macros and functions.
   162 //If (!aValue) then the test will be panicked, the test data files will be deleted.
   163 static void Check(TInt aValue, TInt aLine)
   164 	{
   165 	if(!aValue)
   166 		{
   167 		DeleteDataFiles();
   168 		TheTest(EFalse, aLine);
   169 		}
   170 	}
   171 //If (aValue != aExpected) then the test will be panicked, the test data files will be deleted.
   172 static void Check(TInt aValue, TInt aExpected, TInt aLine)
   173 	{
   174 	if(aValue != aExpected)
   175 		{
   176 		RDebug::Print(_L("*** Expected error: %d, got: %d\r\n"), aExpected, aValue);
   177 		DeleteDataFiles();
   178 		TheTest(EFalse, aLine);
   179 		}
   180 	}
   181 //Use these to test conditions.
   182 #define TEST(arg) Check((arg), __LINE__)
   183 #define TEST2(aValue, aExpected) Check(aValue, aExpected, __LINE__)
   184 
   185 ///////////////////////////////////////////////////////////////////////////////////////
   186 ///////////////////////////////////////////////////////////////////////////////////////
   187 //Global functions
   188 
   189 //Prepares the test directory.
   190 //TheFs.Connect() has to be called already.
   191 static void SetupTestDirectory()
   192     {
   193 	TInt err = TheFs.MkDir(KTestDatabase);
   194 	if(err != KErrNone)
   195 	    {
   196 	    RDebug::Print(_L("*** SetupTestDirectory(), RFs::MkDir(), err=%d\r\n"), err);
   197 	    }
   198 	TEST(err == KErrNone || err == KErrAlreadyExists);
   199 	}
   200 
   201 //Leaves with info message printed out
   202 static void LeaveL(TInt aError, TInt aLine)
   203 	{
   204 	RDebug::Print(_L("*** Leave. Error: %d, Line: %d\r\n"), aError, aLine);
   205 	User::Leave(aError);
   206 	}
   207 
   208 //Leaves if aError < 0 with info message printed out
   209 static void LeaveIfErrorL(TInt aError, TInt aLine)
   210 	{
   211 	if(aError < KErrNone)
   212 		{
   213 		LeaveL(aError, aLine);
   214 		}
   215 	}
   216 
   217 //Use LEAVE() macro instead of User::Leave() and LEAVE_IF_ERROR() macro instead of
   218 //User::LeaveIfError(). They will print the line number, where the "leave" was called.
   219 #define LEAVE(aError) LeaveL(aError, __LINE__)
   220 #define LEAVE_IF_ERROR(aError) LeaveIfErrorL(aError, __LINE__)
   221 
   222 //Creates one or more large files with the total size near to the size of the available disk space.
   223 //The idea is to cause  an "out of disk space" condition.
   224 static void FillLargeDataFileL(RFile& aFile, TInt aSize)
   225 	{
   226     TInt err = KErrDiskFull;
   227     while(err == KErrDiskFull)
   228         {
   229         err = aFile.SetSize(aSize);
   230         aSize -= 100;
   231         if(aSize <= 0)
   232             {
   233             break;
   234             }
   235         }
   236     TEST(err == KErrNone || err == KErrDiskFull);
   237 	}
   238 
   239 //Gets the available space of the tested drive.
   240 static TInt64 FreeDiskSpaceL()
   241 	{
   242 	TVolumeInfo volInfoBefore;
   243 	LEAVE_IF_ERROR(TheFs.Volume(volInfoBefore, KTestDrive));
   244 	return volInfoBefore.iFree;
   245 	}
   246 
   247 //Creates large data file with aSize size (in bytes).
   248 static void DoCreateLargeFileL(const TDesC& aPath, TInt aSize)
   249 	{
   250 	RFile file;
   251 	CleanupClosePushL(file);
   252 	LEAVE_IF_ERROR(file.Replace(TheFs, aPath, EFileRead | EFileWrite));
   253 	FillLargeDataFileL(file, aSize);
   254 	LEAVE_IF_ERROR(file.Flush());
   255 	CleanupStack::PopAndDestroy(&file);
   256 	}
   257 
   258 //Creates enough number of large data files to fill the available disk space.
   259 //It will change FilesCount global variable's value.
   260 static void CreateLargeFileL()
   261 	{
   262 	TInt fileNo = 0;
   263 	const TInt KLargeFileSize = 1000000000;
   264 	TInt64 diskSpace = FreeDiskSpaceL();
   265 	RDebug::Print(_L("CreateLargeFileL: free space before = %ld\n"), diskSpace);
   266 	TBuf<KMaxFileName> filePath;
   267     const TInt64 KMinDiskSpace = 200;
   268 	//Reserve almost all disk space, except a small amount - 200 bytes.
   269 	while(diskSpace > KMinDiskSpace)
   270 		{
   271 		AssembleLargeFileName(KLargeFileName, fileNo++, filePath);
   272 		TInt fileSize = KLargeFileSize;
   273         if(diskSpace < (TInt64)KLargeFileSize)
   274             {
   275 		    TInt64 lastFileSize = diskSpace - KMinDiskSpace;
   276             fileSize = I64LOW(lastFileSize);
   277             }
   278 		DoCreateLargeFileL(filePath, fileSize);
   279 		diskSpace = FreeDiskSpaceL();
   280 		RDebug::Print(_L("----CreateLargeFileL, step %d, free space = %ld\n"), fileNo, diskSpace);
   281 		}
   282 	diskSpace = FreeDiskSpaceL();
   283 	RDebug::Print(_L("CreateLargeFileL: free space after = %ld\n"), diskSpace);
   284 	}
   285 
   286 //Reserves disk space for TheDbSession instance.
   287 //TheDbSession instance has to be connected already.
   288 static void ReserveDiskSpace()
   289 	{
   290 	TInt err = TheDbSession.ReserveDriveSpace(KTestDrive, KReservedSpaceSize);
   291 	TEST2(err, KErrNone);
   292 	}
   293 
   294 //Frees already reserved disk space for TheDbSession instance.
   295 //TheDbSession instance has to be connected already.
   296 static void FreeReservedSpace()
   297 	{
   298 	TheDbSession.FreeReservedSpace(KTestDrive);
   299 	}
   300 
   301 //Gets an access to the reserved disk space for TheDbSession instance.
   302 //TheDbSession instance has to be connected already.
   303 static void UnlockReservedSpace()
   304 	{
   305 	TInt err = TheDbSession.GetReserveAccess(KTestDrive);
   306 	TEST2(err, KErrNone);
   307 	}
   308 
   309 //Releases the access to the reserved disk space.
   310 //TheDbSession instance has to be connected already.
   311 static void LockReservedSpace()
   312 	{
   313 	(void)TheDbSession.ReleaseReserveAccess(KTestDrive);
   314 	}
   315 
   316 //Creates the test DBMS session
   317 static void CreateTestDbSession()
   318 	{
   319 	TInt err = TheDbSession.Connect();
   320 	TEST2(err, KErrNone);
   321 	}
   322 
   323 
   324 //Creates the test database
   325 //TheDbSession instance has to be connected already.
   326 //TheFs.Connect() has to be called already.
   327 static void CreateTestDatabase(RDbs& aDbs, RDbNamedDatabase& aDb)
   328 	{
   329 	//Create the test database.
   330 	TInt err = aDb.Replace(TheFs, KTestDatabase);
   331 	TEST2(err, KErrNone);
   332 	TheDb.Close();
   333 	//Open it now using DBMS session (so, on DBMS server side), because we want to test
   334 	//server side RFs sessions - handling "out of disk space" situations.
   335 	err = aDb.Open(aDbs, KTestDatabase);
   336 	TEST2(err, KErrNone);
   337 	}
   338 
   339 //Creates a test table
   340 static void CreateTestTableL(RDbNamedDatabase& aDb)
   341 	{
   342 	CDbColSet* colSet = CDbColSet::NewLC();
   343 	for(const TColDef* colDef=KColDefs;colDef->iName;++colDef)
   344 		{
   345 		TDbCol col(TPtrC(colDef->iName), colDef->iType);
   346 		col.iAttributes = colDef->iAttributes;
   347 		colSet->AddL(col);
   348 		}
   349 	TEST2(aDb.CreateTable(KTestTableName, *colSet), KErrNone);
   350 	CleanupStack::PopAndDestroy(colSet);
   351 	}
   352 
   353 //Adds some data to the test table
   354 static void AddTestDataL(RDbNamedDatabase& aDb)
   355 	{
   356 	RDbTable tbl;
   357 	CleanupClosePushL(tbl);
   358 	TEST2(tbl.Open(aDb, KTestTableName, RDbRowSet::EUpdatable), KErrNone);
   359 	for(TInt i=0;i<KTestRecordsCount;++i)
   360 		{
   361 		tbl.InsertL();
   362 		tbl.SetColL(2, _L8("1ABCDEFGHI2ABCDEFGHI3ABCDEFGHI4ABCDEFGHI5ABCDEFGHI6ABCDEFGHI7ABCDEFGHI8ABCDEFGHI9ABCDEFGHI0ABCDEFGHI"));
   363 		tbl.PutL();
   364 		}
   365 	TEST(tbl.CountL() == KTestRecordsCount);
   366 	CleanupStack::PopAndDestroy(&tbl);
   367 	}
   368 
   369 //Deletes some records from the test table using "delete" transaction.
   370 //Do not put TEST or TEST2 macro calls here (except for record count checks)!
   371 //The method must leave if some of the calls inside fail.
   372 static void DeleteRecordsL()
   373 	{
   374 	RDbTable tbl;
   375 	CleanupClosePushL(tbl);
   376 	LEAVE_IF_ERROR(tbl.Open(TheDb, KTestTableName, RDbRowSet::EUpdatable));
   377 	TEST(tbl.CountL() == KTestRecordsCount);
   378 	TheDb.Begin();
   379 	tbl.FirstL();
   380 	for(TInt i=0;i<(KTestRecordsCount/2);++i)
   381 		{
   382 		tbl.DeleteL();
   383 		tbl.NextL();
   384 		}
   385 	TInt err = TheDb.Commit();
   386 	if(err != KErrNone)
   387 		{
   388 		TheDb.Rollback();
   389 		LEAVE(err);
   390 		}
   391 	TEST(tbl.CountL() == (KTestRecordsCount / 2));
   392 	CleanupStack::PopAndDestroy(&tbl);
   393 	}
   394 
   395 /**
   396 The function simply calls RDbs::ReserveDriveSpace(), RDbs::GetReserveAccess(),
   397 RDbs::ReleaseReserveAccess() methods and checks the return values.
   398 It might be usefull for debugging in case if something gets wrong.
   399 
   400 @SYMTestCaseID          SYSLIB-DBMS-CT-0647
   401 @SYMTestCaseDesc        Tests for attempting to reserve disk space
   402 @SYMTestPriority        Medium
   403 @SYMTestActions         Calls up RDbs::ReserveDriveSpace(), RDbs::GetReserveAccess(),
   404                         RDbs::ReleaseReserveAccess() methods and checks the return values.
   405 @SYMTestExpectedResults Test must not fail
   406 @SYMREQ                 REQ0000
   407 */
   408 static void SimpleCallsL()
   409 	{
   410 	RDbs dbs;
   411 	CleanupClosePushL(dbs);
   412 	LEAVE_IF_ERROR(dbs.Connect());
   413 
   414 	//Reserve disk space
   415 	TInt err = dbs.ReserveDriveSpace(KTestDrive, KReservedSpaceSize);
   416 	TEST2(err, KErrNone);
   417 
   418 	//An attempt to re-reserve it
   419    	err = dbs.ReserveDriveSpace(KTestDrive, KReservedSpaceSize);
   420 	TEST2(err, KErrInUse);
   421 
   422 	//Get an access to the reserved disk space
   423 	err = dbs.GetReserveAccess(KTestDrive);
   424 	TEST2(err, KErrNone);
   425 
   426 	//An attempt to get an access to the reserved space twice.
   427 	err = dbs.GetReserveAccess(KTestDrive);
   428 	TEST2(err, KErrInUse);
   429 
   430 	//This call must fail, because it tries to get an access to the reserved space of
   431 	//not the same drive, for which ReserveDriveSpace() was called.
   432 	err = dbs.GetReserveAccess(KTestDrive + 1);
   433 	TEST(err != KErrNone);
   434 
   435 	(void)dbs.ReleaseReserveAccess(KTestDrive);
   436 
   437 	//An attempt to release the reserved space twice. This call will panic in debug mode.
   438 	//(void)dbs.ReleaseReserveAccess(KTestDrive);
   439 
   440 	//Cancel reserving an additional disk space
   441 	dbs.FreeReservedSpace(KTestDrive);
   442 
   443 	//Cancel reserving an additional disk space twice
   444     //This call will panic in debug mode.
   445 	//dbs.FreeReservedSpace(KTestDrive);
   446 
   447 	CleanupStack::PopAndDestroy(&dbs);
   448 	}
   449 
   450 /**
   451 @SYMTestCaseID          SYSLIB-DBMS-CT-0648
   452 @SYMTestCaseDesc        Transactions test
   453 						Simulating  an "out of disk space" situation
   454 @SYMTestPriority        Medium
   455 @SYMTestActions         Transaction test under "out of disk space" circumstances
   456 						while reserving disk space.
   457 @SYMTestExpectedResults Test must not fail
   458 @SYMREQ                 REQ0000
   459 */
   460 static void TransactionTestL()
   461 	{
   462     TVolumeIOParamInfo volIoPrm;
   463     TInt err = TheFs.VolumeIOParam(KTestDrive, volIoPrm);
   464     TEST2(err, KErrNone);
   465     RDebug::Print(_L("--Drive %d. BlockSize=%d, ClusterSize=%d, RecReadBufSize=%d, RecWriteBufSize=%d\r\n"), KTestDrive, volIoPrm.iBlockSize, volIoPrm.iClusterSize, volIoPrm.iRecReadBufSize, volIoPrm.iRecWriteBufSize);
   466     /////////////////////////////////////////////////////////
   467 	CreateTestDbSession();
   468     //Rserve disk space
   469 	ReserveDiskSpace();
   470     //Create test database and table. Add some test data to them.
   471 	CreateTestDatabase(TheDbSession, TheDb);
   472 	CreateTestTableL(TheDb);
   473 	AddTestDataL(TheDb);
   474     RDebug::Print(_L("--Simulate an \"out of disk space\" situation with creating a very large data file, which occupies almost the all the available disk space.\r\n"));
   475 	CreateLargeFileL();
   476     RDebug::Print(_L("--Attempt to delete test data records. The transaction must fail, because of \"out of disk space\".\r\n"));
   477     TInt64 diskSpace = FreeDiskSpaceL();
   478 	RDebug::Print(_L("--Attempt to delete test data records. Free disk space = %ld\n"), diskSpace);
   479 	TRAP(err, DeleteRecordsL());
   480 	RDebug::Print(_L("--DeleteRecordsL() returned %d error\r\n"), err);
   481 	TEST(err != KErrNone);
   482     RDebug::Print(_L("--The attempt failed with err=%d. Get an access to the reserved disk space.\r\n"), err);
   483     UnlockReservedSpace();
   484 	RDebug::Print(_L("--Try again with getting an access to the reserved disk space.\n"));
   485     diskSpace = FreeDiskSpaceL();
   486     RDebug::Print(_L("After GetReserveAccess(), free disk space = %ld\r\n"), diskSpace);
   487 	DeleteRecordsL();
   488 	RDebug::Print(_L("--\"Delete\" transaction was completed successfully.\n"));
   489     //Free the resources, used in the test
   490 	DeleteLargeDataFiles();
   491 	LockReservedSpace();
   492     FreeReservedSpace();
   493 	}
   494 
   495 /**
   496 @SYMTestCaseID          SYSLIB-DBMS-CT-0649
   497 @SYMTestCaseDesc        OOD tests with two DBMS sessions.
   498 @SYMTestPriority        Medium
   499 @SYMTestActions         The test actually checks that the DBMS server is in a stable state, when there is more
   500 						than one RDbs session and a shared database is accessed.
   501 						The first check is that the shared database can be accessed without any problem through
   502 						any of the sessions: first or second.
   503 						Then the second session is closed and the shared database is accessed
   504 						through the first DBMS session - the operations should not fail.
   505 @SYMTestExpectedResults Test must not fail
   506 @SYMREQ                 REQ0000
   507 */
   508 static void TwoSessTestL()
   509     {
   510     //Create session1, open a shared database, open a shared table through session 1
   511     RDbs dbSess1;
   512     CleanupClosePushL(dbSess1);
   513     LEAVE_IF_ERROR(dbSess1.Connect());
   514 
   515     RDbNamedDatabase db1;
   516     CleanupClosePushL(db1);
   517 	TInt err = db1.Open(dbSess1, KTestDatabase);
   518 	TEST2(err, KErrNone);
   519 
   520 	RDbTable tbl1;
   521 	CleanupClosePushL(tbl1);
   522 	TEST2(tbl1.Open(db1, KTestTableName, RDbRowSet::EUpdatable), KErrNone);
   523 
   524     //Create session2, open shared database, open shared table through session 2
   525     RDbs dbSess2;
   526     CleanupClosePushL(dbSess2);
   527     LEAVE_IF_ERROR(dbSess2.Connect());
   528 
   529     RDbNamedDatabase db2;
   530     CleanupClosePushL(db2);
   531 	err = db2.Open(dbSess2, KTestDatabase);
   532 	TEST2(err, KErrNone);
   533 
   534 	RDbTable tbl2;
   535 	CleanupClosePushL(tbl2);
   536 	TEST2(tbl2.Open(db2, KTestTableName, RDbRowSet::EUpdatable), KErrNone);
   537 
   538     //Here we have two sessions and two instances of RDbNamedDatabase type, which
   539     //operate on a shared database. Insert a record through the sessions.
   540 
   541 	tbl1.InsertL();
   542 	tbl1.SetColL(2, _L8("--------------------------1----------------------------------------"));
   543 	tbl1.PutL();
   544 
   545 	tbl2.InsertL();
   546 	tbl2.SetColL(2, _L8("========================2======================================"));
   547 	tbl2.PutL();
   548 
   549     //Close the second session. It should be able to access the shared database via the
   550     //first session.
   551 
   552 	CleanupStack::PopAndDestroy(&tbl2);
   553     CleanupStack::PopAndDestroy(&db2);
   554     CleanupStack::PopAndDestroy(&dbSess2);
   555 
   556     //Try to access again the shared database.
   557 	tbl1.InsertL();
   558 	tbl1.SetColL(2, _L8("+++++++++++++++++++++++++++++++++++3++++++++++++++++++++++++++++++++++++++++++"));
   559 	tbl1.PutL();
   560 
   561 	CleanupStack::PopAndDestroy(&tbl1);
   562     CleanupStack::PopAndDestroy(&db1);
   563     CleanupStack::PopAndDestroy(&dbSess1);
   564     }
   565 
   566 /**
   567 @SYMTestCaseID          SYSLIB-DBMS-CT-0650
   568 @SYMTestCaseDesc        OOD tests with more than one DBMS session.
   569 @SYMTestPriority        Medium
   570 @SYMTestActions         The test calls ReserveDriveSpace/GetReserveAccess/ReleaseReserveAccess in a different
   571 						combinations on four DBMS sessions. The test should not fail or panic.
   572 @SYMTestExpectedResults Test must not fail
   573 @SYMREQ                 REQ0000
   574 */
   575 static void TwoSessTest2L()
   576     {
   577     //Create session1
   578     RDbs dbSess1;
   579     CleanupClosePushL(dbSess1);
   580     LEAVE_IF_ERROR(dbSess1.Connect());
   581 
   582     //Create session2
   583     RDbs dbSess2;
   584     CleanupClosePushL(dbSess2);
   585     LEAVE_IF_ERROR(dbSess2.Connect());
   586 
   587     //Play with "ReserveDriveSpace" on both sessions
   588     TInt err = dbSess1.ReserveDriveSpace(KTestDrive, KReservedSpaceSize);
   589     TEST2(err, KErrNone);
   590     err = dbSess2.ReserveDriveSpace(KTestDrive, KReservedSpaceSize);
   591     TEST2(err, KErrNone);
   592     dbSess2.FreeReservedSpace(KTestDrive);
   593     err = dbSess2.ReserveDriveSpace(KTestDrive, KReservedSpaceSize);
   594     TEST2(err, KErrNone);
   595 
   596     //Get an access to the reserved space through session 2
   597 	err = dbSess2.GetReserveAccess(KTestDrive);
   598     TEST2(err, KErrNone);
   599     //Free/re-reserve disk space for session 1.
   600     dbSess1.FreeReservedSpace(KTestDrive);
   601     err = dbSess1.ReserveDriveSpace(KTestDrive, KReservedSpaceSize);
   602     TEST2(err, KErrNone);
   603 
   604     //Create session4
   605     RDbs dbSess4;
   606     CleanupClosePushL(dbSess4);
   607     LEAVE_IF_ERROR(dbSess4.Connect());
   608 
   609     //Try to reserve space for session 4.
   610     err = dbSess4.ReserveDriveSpace(KTestDrive, KReservedSpaceSize);
   611     TEST2(err, KErrNone);
   612 
   613     //Create session3
   614     RDbs dbSess3;
   615     CleanupClosePushL(dbSess3);
   616     LEAVE_IF_ERROR(dbSess3.Connect());
   617     //Try to reserve space for session 3.
   618     err = dbSess3.ReserveDriveSpace(KTestDrive, KReservedSpaceSize);
   619     TEST2(err, KErrNone);
   620 
   621     //Release and free session 2 access to the reserved space.
   622     (void)dbSess2.ReleaseReserveAccess(KTestDrive);
   623     dbSess2.FreeReservedSpace(KTestDrive);
   624 
   625     dbSess3.FreeReservedSpace(KTestDrive);
   626     CleanupStack::PopAndDestroy(&dbSess3);
   627 
   628     dbSess4.FreeReservedSpace(KTestDrive);
   629     CleanupStack::PopAndDestroy(&dbSess4);
   630 
   631     //Get an access to the reserved space through session 2.
   632     //But it was freed, so the call will fail.
   633 	err = dbSess2.GetReserveAccess(KTestDrive);
   634     TEST(err != KErrNone);
   635 
   636     //Free/re-reserve disk space for session 1.
   637     dbSess1.FreeReservedSpace(KTestDrive);
   638     err = dbSess1.ReserveDriveSpace(KTestDrive, KReservedSpaceSize);
   639     TEST2(err, KErrNone);
   640 
   641     //Grant/release the access to the reserved space for session 1.
   642 	err = dbSess1.GetReserveAccess(KTestDrive);
   643     TEST2(err, KErrNone);
   644     (void)dbSess1.ReleaseReserveAccess(KTestDrive);
   645 
   646     //Grant an access to the reserved space for session 2.
   647     //The call will fail because there is no reserved disk space for session 2.
   648 	err = dbSess2.GetReserveAccess(KTestDrive);
   649     TEST(err != KErrNone);
   650 
   651     //Free the reserved space - session 1
   652     dbSess1.FreeReservedSpace(KTestDrive);
   653 
   654     CleanupStack::PopAndDestroy(&dbSess2);
   655     CleanupStack::PopAndDestroy(&dbSess1);
   656     }
   657 
   658 /**
   659 @SYMTestCaseID          SYSLIB-DBMS-CT-0651
   660 @SYMTestCaseDesc        Out of memory tests
   661 @SYMTestPriority        Medium
   662 @SYMTestActions         Checks RDbs::ReserveDriveSpace() behaviour under OOM circumstances
   663 @SYMTestExpectedResults Test must not fail
   664 @SYMREQ                 REQ0000
   665 */
   666 static void OOMTest1()
   667     {
   668     RDbs dbs;
   669     TEST2(dbs.Connect(), KErrNone);
   670 	dbs.ResourceMark();
   671 	for(TInt count=1;;++count)
   672 		{
   673         RDebug::Print(_L("OOMTest1. Count=%d\n"), count);
   674 		dbs.SetHeapFailure(RHeap::EFailNext, count);
   675 
   676 		TInt ret = dbs.ReserveDriveSpace(KTestDrive, KReservedSpaceSize);
   677 
   678 		if(ret == KErrNoMemory)
   679 			{
   680 	        dbs.ResourceCheck();
   681 			}
   682 		else if(ret == KErrNone)
   683 			{
   684 			dbs.FreeReservedSpace(KTestDrive);
   685 			break;
   686 			}
   687 		else
   688 			{
   689 			TEST2(ret, KErrNone);
   690 			}
   691 		}
   692 
   693     dbs.SetHeapFailure(RHeap::ENone, 0);
   694     dbs.Close();
   695     }
   696 
   697 /**
   698 @SYMTestCaseID          SYSLIB-DBMS-CT-0652
   699 @SYMTestCaseDesc        Out of memory tests
   700 @SYMTestPriority        Medium
   701 @SYMTestActions         Checks RDbs::GetReserveAccess() behaviour under OOM circumstances
   702 @SYMTestExpectedResults Test must not fail
   703 @SYMREQ                 REQ0000
   704 */
   705 static void OOMTest2()
   706     {
   707     RDbs dbs;
   708     TEST2(dbs.Connect(), KErrNone);
   709 	TEST2(dbs.ReserveDriveSpace(KTestDrive, KReservedSpaceSize), KErrNone);
   710 	dbs.ResourceMark();
   711 	for(TInt count=1;;++count)
   712 		{
   713         RDebug::Print(_L("OOMTest2. Count=%d\n"), count);
   714 		dbs.SetHeapFailure(RHeap::EFailNext, count);
   715 
   716 		TInt ret = dbs.GetReserveAccess(KTestDrive);
   717 
   718 		if(ret == KErrNoMemory)
   719 			{
   720 	        dbs.ResourceCheck();
   721 			}
   722 		else if(ret == KErrNone)
   723 			{
   724 			(void)dbs.ReleaseReserveAccess(KTestDrive);
   725 			break;
   726 			}
   727 		else
   728 			{
   729 			TEST2(ret, KErrNone);
   730 			}
   731 		}
   732 
   733 	dbs.FreeReservedSpace(KTestDrive);
   734     dbs.SetHeapFailure(RHeap::ENone, 0);
   735     dbs.Close();
   736     }
   737 
   738 
   739 //Used in DEF057265().
   740 static TInt ThreadFunc(void*)
   741 	{
   742 	User::SetJustInTime(EFalse);	// disable debugger panic handling
   743 	//Create DBMS session. Reserve drive space.
   744     RDbs dbs;
   745     TEST2(dbs.Connect(), KErrNone);
   746 	TEST2(dbs.ReserveDriveSpace(KTestDrive, KReservedSpaceSize), KErrNone);
   747 	//Panic thread. See DBMS server behaviour - will it panic or not?
   748 	//If DBMS server panics in _DEBUG mode - DEF057265 is not properly fixed.
   749 	User::Panic(_L("Simulate DBMS client failuer"), 0);
   750 	return KErrNone;
   751 	}
   752 
   753 //DEF057265 - Panics when uninstalling a java midlet while it is running.
   754 //The test will run one thread. Inside the thread's function the test will create
   755 //DBMS session and reserve some disk space. Then the test will panic the thread
   756 //(without freeing the reserved disk space).
   757 //If DBMS server panics in _DEBUG mode - the defect is not fixed.
   758 void DEF057265()
   759 	{
   760 	_LIT(KSessThreadName,"SessThrd");
   761 	RThread sessThread;
   762 	TEST2(sessThread.Create(KSessThreadName, &ThreadFunc, 0x2000, 0, 0), KErrNone);
   763 
   764 	TRequestStatus sessThreadStatus;
   765 	sessThread.Logon(sessThreadStatus);
   766 	TEST2(sessThreadStatus.Int(), KRequestPending);
   767 
   768 	sessThread.Resume();
   769 	User::WaitForRequest(sessThreadStatus);
   770 	TEST2(sessThread.ExitType(), EExitPanic);
   771 
   772 	User::SetJustInTime(EFalse);	// disable debugger panic handling
   773 	sessThread.Close();//This Close() operation will force DBMS server to close
   774 					   //created in ThreadFunc() DBMS session.
   775 	}
   776 
   777 ///////////////////////////////////////////////////////////////////////////////////////
   778 ///////////////////////////////////////////////////////////////////////////////////////
   779 //The main test function.
   780 //Call your new test functions from here
   781 static void RunTestsL()
   782 	{
   783 	TheTest.Start(_L(" @SYMTestCaseID:SYSLIB-DBMS-CT-0647 RDbs OOD methods calls "));
   784 	SimpleCallsL();
   785 
   786 	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-DBMS-CT-0648 Transaction test with reserving disk space "));
   787 	TransactionTestL();
   788 
   789 	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-DBMS-CT-0649 Two DBMS sessions test "));
   790     TwoSessTestL();
   791 
   792 	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-DBMS-CT-0650 Two DBMS sessions test-2 "));
   793     TwoSessTest2L();
   794 
   795 	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-DBMS-CT-0651 DBMS OOD - OOM test 1 "));
   796     OOMTest1();
   797 
   798 	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-DBMS-CT-0652 DBMS OOD - OOM test 2 "));
   799     OOMTest2();
   800 
   801 	TheTest.Next(_L("DEF057265  Panics when uninstalling a java midlet while it is running"));
   802 	DEF057265();
   803 
   804 	//Add tests here!
   805 	}
   806 
   807 TInt E32Main()
   808 	{
   809 	TheTest.Title();
   810 
   811 	__UHEAP_MARK;
   812 
   813 	CTrapCleanup* trapCleanup = CTrapCleanup::New();
   814 	TEST(trapCleanup != NULL);
   815 
   816 	DeleteLargeDataFiles();
   817 
   818 	TInt err = TheFs.Connect();
   819 	TEST2(err, KErrNone);
   820 	SetupTestDirectory();
   821 
   822 	TRAP(err, RunTestsL());
   823 	TheDb.Close();
   824 	TheDbSession.Close();
   825 	TheFs.Close();
   826 	TEST2(err, KErrNone);
   827 
   828 	DeleteDataFiles();//delete the data files used by this test
   829 
   830 	TheTest.End();
   831 	TheTest.Close();
   832 
   833 	delete trapCleanup;
   834 
   835 	__UHEAP_MARKEND;
   836 
   837 	return 0;
   838 	}
   839 
   840