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".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // Testing new RDbs methods, which handle "Out of disk space" situations.
22 /////////////////////////////////////////////////////////////////
25 //If you change KTestDrive, don't forget to change KTestDatabase too!!!
27 #if defined __WINSCW__ || defined __WINS__
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");
34 #elif defined __X86GCC__
36 const TInt KTestDrive = EDriveG;
37 _LIT( KTestDatabase, "G:\\DBMS-TST\\T_DbmsOOD.DB");
41 const TInt KTestDrive = EDriveE;
42 _LIT( KTestDatabase, "E:\\DBMS-TST\\T_DbmsOOD.DB");
46 const TInt KReservedSpaceSize = 0; //The aSpace parameter of RDbs::ReserveDriveSpace()
47 //is not used at the moment and shall be set to 0.
49 static RTest TheTest(_L("t_dbood - \"Out of Disk space\" test"));
51 static RDbNamedDatabase TheDb;
52 static RDbs TheDbSession;
55 _LIT(KTestTableName, "TABLE1");
57 const TInt KTestRecordsCount = 350;
65 static TColDef const KColDefs[]=
67 {_S("ID"), EDbColUint32, TDbCol::EAutoIncrement},
68 {_S("DATA"), EDbColBinary, TDbCol::ENotNull},
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__
79 _LIT(KLargeFileName, "T:\\DBMS-TST\\DeleteMe");
81 #elif defined __X86GCC__
83 _LIT(KLargeFileName, "G:\\DBMS-TST\\DeleteMe");
87 _LIT(KLargeFileName, "E:\\DBMS-TST\\DeleteMe");
91 static void AssembleLargeFileName(const TDesC& aFileName, TInt aFileNumber, TDes& aResultPath)
93 _LIT(KFormatStr, "%S.%03d");
94 aResultPath.Format(KFormatStr, &aFileName, aFileNumber);
97 ///////////////////////////////////////////////////////////////////////////////////////
98 ///////////////////////////////////////////////////////////////////////////////////////
99 //Create/Destroy test environment - global functions
101 //Deletes "aFullName" file.
102 static TInt DeleteDataFile(const TDesC& aFullName)
105 TInt err = fsSession.Connect();
109 err = fsSession.Entry(aFullName, entry);
112 RDebug::Print(_L("Deleting \"%S\" file.\n"), &aFullName);
113 err = fsSession.SetAtt(aFullName, 0, KEntryAttReadOnly);
116 RDebug::Print(_L("Error %d changing \"%S\" file attributes.\n"), err, &aFullName);
118 err = fsSession.Delete(aFullName);
121 RDebug::Print(_L("Error %d deleting \"%S\" file.\n"), err, &aFullName);
128 RDebug::Print(_L("Error %d connecting file session. File: %S.\n"), err, &aFullName);
133 //Deletes large data files only
134 static void DeleteLargeDataFiles()
136 for(TInt i=0;i<1000;++i)
138 TBuf<KMaxFileName> filePath;
139 AssembleLargeFileName(KLargeFileName, i, filePath);
140 if(DeleteDataFile(filePath) != KErrNone)
147 //Deletes data files used by the test
148 static void DeleteDataFiles()
150 if(TheDbSession.Handle())
154 TheDbSession.Close();
155 DeleteDataFile(KTestDatabase);
156 DeleteLargeDataFiles();
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)
168 TheTest(EFalse, aLine);
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)
174 if(aValue != aExpected)
176 RDebug::Print(_L("*** Expected error: %d, got: %d\r\n"), aExpected, aValue);
178 TheTest(EFalse, aLine);
181 //Use these to test conditions.
182 #define TEST(arg) Check((arg), __LINE__)
183 #define TEST2(aValue, aExpected) Check(aValue, aExpected, __LINE__)
185 ///////////////////////////////////////////////////////////////////////////////////////
186 ///////////////////////////////////////////////////////////////////////////////////////
189 //Prepares the test directory.
190 //TheFs.Connect() has to be called already.
191 static void SetupTestDirectory()
193 TInt err = TheFs.MkDir(KTestDatabase);
196 RDebug::Print(_L("*** SetupTestDirectory(), RFs::MkDir(), err=%d\r\n"), err);
198 TEST(err == KErrNone || err == KErrAlreadyExists);
201 //Leaves with info message printed out
202 static void LeaveL(TInt aError, TInt aLine)
204 RDebug::Print(_L("*** Leave. Error: %d, Line: %d\r\n"), aError, aLine);
208 //Leaves if aError < 0 with info message printed out
209 static void LeaveIfErrorL(TInt aError, TInt aLine)
211 if(aError < KErrNone)
213 LeaveL(aError, aLine);
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__)
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)
226 TInt err = KErrDiskFull;
227 while(err == KErrDiskFull)
229 err = aFile.SetSize(aSize);
236 TEST(err == KErrNone || err == KErrDiskFull);
239 //Gets the available space of the tested drive.
240 static TInt64 FreeDiskSpaceL()
242 TVolumeInfo volInfoBefore;
243 LEAVE_IF_ERROR(TheFs.Volume(volInfoBefore, KTestDrive));
244 return volInfoBefore.iFree;
247 //Creates large data file with aSize size (in bytes).
248 static void DoCreateLargeFileL(const TDesC& aPath, TInt aSize)
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);
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()
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)
271 AssembleLargeFileName(KLargeFileName, fileNo++, filePath);
272 TInt fileSize = KLargeFileSize;
273 if(diskSpace < (TInt64)KLargeFileSize)
275 TInt64 lastFileSize = diskSpace - KMinDiskSpace;
276 fileSize = I64LOW(lastFileSize);
278 DoCreateLargeFileL(filePath, fileSize);
279 diskSpace = FreeDiskSpaceL();
280 RDebug::Print(_L("----CreateLargeFileL, step %d, free space = %ld\n"), fileNo, diskSpace);
282 diskSpace = FreeDiskSpaceL();
283 RDebug::Print(_L("CreateLargeFileL: free space after = %ld\n"), diskSpace);
286 //Reserves disk space for TheDbSession instance.
287 //TheDbSession instance has to be connected already.
288 static void ReserveDiskSpace()
290 TInt err = TheDbSession.ReserveDriveSpace(KTestDrive, KReservedSpaceSize);
291 TEST2(err, KErrNone);
294 //Frees already reserved disk space for TheDbSession instance.
295 //TheDbSession instance has to be connected already.
296 static void FreeReservedSpace()
298 TheDbSession.FreeReservedSpace(KTestDrive);
301 //Gets an access to the reserved disk space for TheDbSession instance.
302 //TheDbSession instance has to be connected already.
303 static void UnlockReservedSpace()
305 TInt err = TheDbSession.GetReserveAccess(KTestDrive);
306 TEST2(err, KErrNone);
309 //Releases the access to the reserved disk space.
310 //TheDbSession instance has to be connected already.
311 static void LockReservedSpace()
313 (void)TheDbSession.ReleaseReserveAccess(KTestDrive);
316 //Creates the test DBMS session
317 static void CreateTestDbSession()
319 TInt err = TheDbSession.Connect();
320 TEST2(err, KErrNone);
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)
329 //Create the test database.
330 TInt err = aDb.Replace(TheFs, KTestDatabase);
331 TEST2(err, KErrNone);
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);
339 //Creates a test table
340 static void CreateTestTableL(RDbNamedDatabase& aDb)
342 CDbColSet* colSet = CDbColSet::NewLC();
343 for(const TColDef* colDef=KColDefs;colDef->iName;++colDef)
345 TDbCol col(TPtrC(colDef->iName), colDef->iType);
346 col.iAttributes = colDef->iAttributes;
349 TEST2(aDb.CreateTable(KTestTableName, *colSet), KErrNone);
350 CleanupStack::PopAndDestroy(colSet);
353 //Adds some data to the test table
354 static void AddTestDataL(RDbNamedDatabase& aDb)
357 CleanupClosePushL(tbl);
358 TEST2(tbl.Open(aDb, KTestTableName, RDbRowSet::EUpdatable), KErrNone);
359 for(TInt i=0;i<KTestRecordsCount;++i)
362 tbl.SetColL(2, _L8("1ABCDEFGHI2ABCDEFGHI3ABCDEFGHI4ABCDEFGHI5ABCDEFGHI6ABCDEFGHI7ABCDEFGHI8ABCDEFGHI9ABCDEFGHI0ABCDEFGHI"));
365 TEST(tbl.CountL() == KTestRecordsCount);
366 CleanupStack::PopAndDestroy(&tbl);
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()
375 CleanupClosePushL(tbl);
376 LEAVE_IF_ERROR(tbl.Open(TheDb, KTestTableName, RDbRowSet::EUpdatable));
377 TEST(tbl.CountL() == KTestRecordsCount);
380 for(TInt i=0;i<(KTestRecordsCount/2);++i)
385 TInt err = TheDb.Commit();
391 TEST(tbl.CountL() == (KTestRecordsCount / 2));
392 CleanupStack::PopAndDestroy(&tbl);
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.
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
408 static void SimpleCallsL()
411 CleanupClosePushL(dbs);
412 LEAVE_IF_ERROR(dbs.Connect());
415 TInt err = dbs.ReserveDriveSpace(KTestDrive, KReservedSpaceSize);
416 TEST2(err, KErrNone);
418 //An attempt to re-reserve it
419 err = dbs.ReserveDriveSpace(KTestDrive, KReservedSpaceSize);
420 TEST2(err, KErrInUse);
422 //Get an access to the reserved disk space
423 err = dbs.GetReserveAccess(KTestDrive);
424 TEST2(err, KErrNone);
426 //An attempt to get an access to the reserved space twice.
427 err = dbs.GetReserveAccess(KTestDrive);
428 TEST2(err, KErrInUse);
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);
435 (void)dbs.ReleaseReserveAccess(KTestDrive);
437 //An attempt to release the reserved space twice. This call will panic in debug mode.
438 //(void)dbs.ReleaseReserveAccess(KTestDrive);
440 //Cancel reserving an additional disk space
441 dbs.FreeReservedSpace(KTestDrive);
443 //Cancel reserving an additional disk space twice
444 //This call will panic in debug mode.
445 //dbs.FreeReservedSpace(KTestDrive);
447 CleanupStack::PopAndDestroy(&dbs);
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
460 static void TransactionTestL()
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();
470 //Create test database and table. Add some test data to them.
471 CreateTestDatabase(TheDbSession, TheDb);
472 CreateTestTableL(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"));
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);
488 RDebug::Print(_L("--\"Delete\" transaction was completed successfully.\n"));
489 //Free the resources, used in the test
490 DeleteLargeDataFiles();
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
508 static void TwoSessTestL()
510 //Create session1, open a shared database, open a shared table through session 1
512 CleanupClosePushL(dbSess1);
513 LEAVE_IF_ERROR(dbSess1.Connect());
515 RDbNamedDatabase db1;
516 CleanupClosePushL(db1);
517 TInt err = db1.Open(dbSess1, KTestDatabase);
518 TEST2(err, KErrNone);
521 CleanupClosePushL(tbl1);
522 TEST2(tbl1.Open(db1, KTestTableName, RDbRowSet::EUpdatable), KErrNone);
524 //Create session2, open shared database, open shared table through session 2
526 CleanupClosePushL(dbSess2);
527 LEAVE_IF_ERROR(dbSess2.Connect());
529 RDbNamedDatabase db2;
530 CleanupClosePushL(db2);
531 err = db2.Open(dbSess2, KTestDatabase);
532 TEST2(err, KErrNone);
535 CleanupClosePushL(tbl2);
536 TEST2(tbl2.Open(db2, KTestTableName, RDbRowSet::EUpdatable), KErrNone);
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.
542 tbl1.SetColL(2, _L8("--------------------------1----------------------------------------"));
546 tbl2.SetColL(2, _L8("========================2======================================"));
549 //Close the second session. It should be able to access the shared database via the
552 CleanupStack::PopAndDestroy(&tbl2);
553 CleanupStack::PopAndDestroy(&db2);
554 CleanupStack::PopAndDestroy(&dbSess2);
556 //Try to access again the shared database.
558 tbl1.SetColL(2, _L8("+++++++++++++++++++++++++++++++++++3++++++++++++++++++++++++++++++++++++++++++"));
561 CleanupStack::PopAndDestroy(&tbl1);
562 CleanupStack::PopAndDestroy(&db1);
563 CleanupStack::PopAndDestroy(&dbSess1);
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
575 static void TwoSessTest2L()
579 CleanupClosePushL(dbSess1);
580 LEAVE_IF_ERROR(dbSess1.Connect());
584 CleanupClosePushL(dbSess2);
585 LEAVE_IF_ERROR(dbSess2.Connect());
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);
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);
606 CleanupClosePushL(dbSess4);
607 LEAVE_IF_ERROR(dbSess4.Connect());
609 //Try to reserve space for session 4.
610 err = dbSess4.ReserveDriveSpace(KTestDrive, KReservedSpaceSize);
611 TEST2(err, KErrNone);
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);
621 //Release and free session 2 access to the reserved space.
622 (void)dbSess2.ReleaseReserveAccess(KTestDrive);
623 dbSess2.FreeReservedSpace(KTestDrive);
625 dbSess3.FreeReservedSpace(KTestDrive);
626 CleanupStack::PopAndDestroy(&dbSess3);
628 dbSess4.FreeReservedSpace(KTestDrive);
629 CleanupStack::PopAndDestroy(&dbSess4);
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);
636 //Free/re-reserve disk space for session 1.
637 dbSess1.FreeReservedSpace(KTestDrive);
638 err = dbSess1.ReserveDriveSpace(KTestDrive, KReservedSpaceSize);
639 TEST2(err, KErrNone);
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);
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);
651 //Free the reserved space - session 1
652 dbSess1.FreeReservedSpace(KTestDrive);
654 CleanupStack::PopAndDestroy(&dbSess2);
655 CleanupStack::PopAndDestroy(&dbSess1);
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
666 static void OOMTest1()
669 TEST2(dbs.Connect(), KErrNone);
671 for(TInt count=1;;++count)
673 RDebug::Print(_L("OOMTest1. Count=%d\n"), count);
674 dbs.SetHeapFailure(RHeap::EFailNext, count);
676 TInt ret = dbs.ReserveDriveSpace(KTestDrive, KReservedSpaceSize);
678 if(ret == KErrNoMemory)
682 else if(ret == KErrNone)
684 dbs.FreeReservedSpace(KTestDrive);
689 TEST2(ret, KErrNone);
693 dbs.SetHeapFailure(RHeap::ENone, 0);
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
705 static void OOMTest2()
708 TEST2(dbs.Connect(), KErrNone);
709 TEST2(dbs.ReserveDriveSpace(KTestDrive, KReservedSpaceSize), KErrNone);
711 for(TInt count=1;;++count)
713 RDebug::Print(_L("OOMTest2. Count=%d\n"), count);
714 dbs.SetHeapFailure(RHeap::EFailNext, count);
716 TInt ret = dbs.GetReserveAccess(KTestDrive);
718 if(ret == KErrNoMemory)
722 else if(ret == KErrNone)
724 (void)dbs.ReleaseReserveAccess(KTestDrive);
729 TEST2(ret, KErrNone);
733 dbs.FreeReservedSpace(KTestDrive);
734 dbs.SetHeapFailure(RHeap::ENone, 0);
739 //Used in DEF057265().
740 static TInt ThreadFunc(void*)
742 User::SetJustInTime(EFalse); // disable debugger panic handling
743 //Create DBMS session. Reserve drive space.
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);
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.
760 _LIT(KSessThreadName,"SessThrd");
762 TEST2(sessThread.Create(KSessThreadName, &ThreadFunc, 0x2000, 0, 0), KErrNone);
764 TRequestStatus sessThreadStatus;
765 sessThread.Logon(sessThreadStatus);
766 TEST2(sessThreadStatus.Int(), KRequestPending);
769 User::WaitForRequest(sessThreadStatus);
770 TEST2(sessThread.ExitType(), EExitPanic);
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.
777 ///////////////////////////////////////////////////////////////////////////////////////
778 ///////////////////////////////////////////////////////////////////////////////////////
779 //The main test function.
780 //Call your new test functions from here
781 static void RunTestsL()
783 TheTest.Start(_L(" @SYMTestCaseID:SYSLIB-DBMS-CT-0647 RDbs OOD methods calls "));
786 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-DBMS-CT-0648 Transaction test with reserving disk space "));
789 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-DBMS-CT-0649 Two DBMS sessions test "));
792 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-DBMS-CT-0650 Two DBMS sessions test-2 "));
795 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-DBMS-CT-0651 DBMS OOD - OOM test 1 "));
798 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-DBMS-CT-0652 DBMS OOD - OOM test 2 "));
801 TheTest.Next(_L("DEF057265 Panics when uninstalling a java midlet while it is running"));
813 CTrapCleanup* trapCleanup = CTrapCleanup::New();
814 TEST(trapCleanup != NULL);
816 DeleteLargeDataFiles();
818 TInt err = TheFs.Connect();
819 TEST2(err, KErrNone);
820 SetupTestDirectory();
822 TRAP(err, RunTestsL());
824 TheDbSession.Close();
826 TEST2(err, KErrNone);
828 DeleteDataFiles();//delete the data files used by this test