os/persistentdata/persistentstorage/sql/TEST/t_sqlstartup.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 // Copyright (c) 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 <e32test.h>
    17 #include <bautils.h>
    18 #include "SqlSrvMain.h"
    19 #include "SqlSrvStartup.h"
    20 #include "SqlSrvUtil.h"
    21 
    22 _LIT(KCfgDb1ConfigFilePath, "c:\\private\\10281e17\\cfg[10281E17]t_sqlstartup1.db.02"); // config file version 2 for t_sqlstartup1.db
    23 _LIT(KCfgDb2ConfigFilePath, "c:\\private\\10281e17\\cfg[10281E17]t_sqlstartup2.db.05"); // config file version 5 for t_sqlstartup2.db
    24 
    25 //This subdir is created by t_sqlenvcreate app. It should not be returned in the list of files for backup.
    26 _LIT(KPrivateSubDir, "c:\\private\\10281e17\\TestDir.db");
    27 
    28 ///////////////////////////////////////////////////////////////////////////////////////
    29 
    30 RTest TheTest(_L("t_sqlstartup test"));
    31 
    32 RFs TheFs;
    33 
    34 static TInt TheProcessHandleCount = 0;
    35 static TInt TheThreadHandleCount = 0;
    36 static TInt TheAllocatedCellsCount = 0;
    37 
    38 #ifdef _DEBUG
    39 static const TInt KBurstRate = 20;
    40 #endif
    41 
    42 ///////////////////////////////////////////////////////////////////////////////////////
    43 
    44 void DeleteTestFiles()
    45 	{
    46 	(void)TheFs.Delete(KCfgDb2ConfigFilePath);
    47 	(void)TheFs.Delete(KCfgDb1ConfigFilePath);
    48 	TheFs.Close();
    49 	}
    50 
    51 ///////////////////////////////////////////////////////////////////////////////////////
    52 ///////////////////////////////////////////////////////////////////////////////////////
    53 //Test macros and functions
    54 void Check(TInt aValue, TInt aLine)
    55 	{
    56 	if(!aValue)
    57 		{
    58 		DeleteTestFiles();
    59 		RDebug::Print(_L("*** Expresssion evaluated to false\r\n"));
    60 		TheTest(EFalse, aLine);
    61 		}
    62 	}
    63 void Check(TInt aValue, TInt aExpected, TInt aLine)
    64 	{
    65 	if(aValue != aExpected)
    66 		{
    67 		DeleteTestFiles();
    68 		RDebug::Print(_L("*** Expected error: %d, got: %d\r\n"), aExpected, aValue);
    69 		TheTest(EFalse, aLine);
    70 		}
    71 	}
    72 #define TEST(arg) ::Check((arg), __LINE__)
    73 #define TEST2(aValue, aExpected) ::Check(aValue, aExpected, __LINE__)
    74 
    75 ////////////////////////////////////////////////////////////////////////////////////////////////////////////
    76 
    77 static void MarkHandles()
    78     {
    79     RThread().HandleCount(TheProcessHandleCount, TheThreadHandleCount);
    80     }
    81 
    82 static void MarkAllocatedCells()
    83     {
    84     TheAllocatedCellsCount = User::CountAllocCells();
    85     }
    86 
    87 static void CheckAllocatedCells()
    88     {
    89     TInt allocatedCellsCount = User::CountAllocCells();
    90     TEST2(allocatedCellsCount, TheAllocatedCellsCount);
    91     }
    92 
    93 static void CheckHandles()
    94     {
    95     TInt endProcessHandleCount;
    96     TInt endThreadHandleCount;
    97     
    98     RThread().HandleCount(endProcessHandleCount, endThreadHandleCount);
    99 
   100     TEST2(TheProcessHandleCount, endProcessHandleCount);
   101     TEST2(TheThreadHandleCount, endThreadHandleCount);
   102     }
   103 
   104 static void OomPreStep(TInt
   105 #ifdef _DEBUG        
   106     aFailingAllocationNo
   107 #endif
   108                       )
   109     {
   110     MarkHandles();
   111     MarkAllocatedCells();
   112     __UHEAP_MARK;
   113     __UHEAP_SETBURSTFAIL(RAllocator::EBurstFailNext, aFailingAllocationNo, KBurstRate);
   114     }
   115 
   116 static void OomPostStep()
   117     {
   118     __UHEAP_RESET;
   119     __UHEAP_MARKEND;
   120     CheckAllocatedCells();
   121     CheckHandles();
   122     }
   123 
   124 ////////////////////////////////////////////////////////////////////////////////////////////////////////////
   125 ////////////////////////////////////////////////////////////////////////////////////////////////////////////
   126 
   127 static void CreateAndDestroySqlServerL()
   128     {
   129     CSqlServer* server = CSqlServer::NewLC();
   130     //Drive C: to the RSqlDriveSpaceCol object. This will allow "reserve drive space" construct/destroy code to be tested.  
   131     RSqlDriveSpaceCol& drvcol = server->DriveSpaceCol();
   132     drvcol.AddL(EDriveC);
   133     CleanupStack::PopAndDestroy(server);
   134     }
   135 
   136 static CSqlServer* CreateSqlServerL()
   137     {
   138     CSqlServer* server = CSqlServer::NewLC();
   139     CleanupStack::Pop(server);
   140     return server;
   141     }
   142 
   143 /**
   144 @SYMTestCaseID          PDS-SQL-UT-4159
   145 @SYMTestCaseDesc        SQL server startup OOM test
   146 @SYMTestPriority        High
   147 @SYMTestActions         Runs the SQL server startup code in an OOM loop.
   148 @SYMTestExpectedResults Test must not fail
   149 @SYMDEF                 DEF144096
   150 */  
   151 void SqlServerStartupOomTest()
   152     {
   153     TInt err = KErrNoMemory;
   154     TInt failingAllocationNo = 0;
   155     TheTest.Printf(_L("Iteration:\r\n"));
   156     while(err == KErrNoMemory)
   157         {
   158         TheTest.Printf(_L(" %d"), ++failingAllocationNo);
   159         OomPreStep(failingAllocationNo);
   160         TRAP(err, CreateAndDestroySqlServerL());
   161         OomPostStep();
   162         }
   163     if(err != KErrNoMemory)
   164         {
   165         TEST2(err, KErrNone);   
   166         }
   167     TheTest.Printf(_L("\r\n===OOM test succeeded at heap failure rate of %d ===\r\n"), failingAllocationNo);
   168     }
   169 
   170 /**
   171 @SYMTestCaseID          PDS-SQL-UT-4160
   172 @SYMTestCaseDesc        CSqlServer::GetBackUpListL() OOM test
   173 @SYMTestPriority        High
   174 @SYMTestActions         Calls CSqlServer::GetBackUpListL() in an OOM loop.
   175 @SYMTestExpectedResults Test must not fail
   176 @SYMDEF                 DEF144096
   177 */  
   178 void GetBackupListOomTest()
   179     {
   180     CSqlServer* server = NULL;
   181     TRAPD(err, server = CreateSqlServerL());
   182     TEST2(err, KErrNone);
   183   
   184     TInt fileCnt = 0;
   185     err = KErrNoMemory;
   186     TInt failingAllocationNo = 0;
   187     TheTest.Printf(_L("Iteration:\r\n"));
   188     while(err == KErrNoMemory)
   189         {
   190         TheTest.Printf(_L(" %d"), ++failingAllocationNo);
   191         OomPreStep(failingAllocationNo);
   192         const TUid KDbUd = {0x98765432};
   193         RArray<HBufC*> files;
   194         TRAP(err, server->GetBackUpListL(KDbUd, EDriveC, files));
   195         fileCnt = files.Count();
   196         if(err == KErrNone)
   197         	{
   198 			//No directories should be returned in the list of files for backup
   199 			for(TInt i=0;i<fileCnt;++i)
   200 				{
   201 				TPtrC fname = files[i]->Des();
   202 				TInt rc = KPrivateSubDir().CompareF(fname);
   203 				TEST(rc != 0);
   204 				}
   205         	}
   206         for(TInt j=0;j<files.Count();++j)
   207         	{
   208 			delete files[j];
   209         	}
   210         files.Close();
   211         OomPostStep();
   212         }
   213     
   214     delete server;
   215     
   216     if(err != KErrNoMemory)
   217         {
   218         TEST2(err, KErrNone);   
   219         }
   220     TheTest.Printf(_L("\r\n===OOM test succeeded at heap failure rate of %d ===\r\nFile count: %d\r\n"), failingAllocationNo, fileCnt);
   221     }
   222 
   223 /**
   224 @SYMTestCaseID          PDS-SQL-UT-4161
   225 @SYMTestCaseDesc        SQL server startup file I/O error simulation test
   226 @SYMTestPriority        High
   227 @SYMTestActions         Runs the SQL server startup code in a file I/O error simulation loop.
   228 @SYMTestExpectedResults Test must not fail
   229 @SYMDEF                 DEF144096
   230 */  
   231 void SqlServerStartupFileIoErrorTest()
   232     {
   233     RFs fs;
   234     TInt err = fs.Connect();
   235     TEST2(err, KErrNone);
   236     
   237     for(TInt fsError=KErrNotFound;fsError>=KErrBadName;--fsError)
   238         {
   239         TheTest.Printf(_L("===Simulated error: %d\r\nIteration: "), fsError);
   240         err = KErrNotFound;
   241         TInt cnt=0;
   242         while(err<KErrNone)
   243             {
   244             TheTest.Printf(_L("%d "), cnt);
   245             (void)fs.SetErrorCondition(fsError, cnt);
   246             TRAP(err, CreateAndDestroySqlServerL());
   247             (void)fs.SetErrorCondition(KErrNone);
   248             if(err != KErrNone)
   249                 {
   250                 ++cnt;
   251                 }
   252             }
   253         TEST2(err, KErrNone);
   254         TheTest.Printf(_L("\r\n===File I/O error simulation test succeeded on iteration %d===\r\n"), cnt);
   255         }
   256 
   257     fs.Close();
   258     }
   259 
   260 /**
   261 @SYMTestCaseID          PDS-SQL-UT-4162
   262 @SYMTestCaseDesc        CSqlServer::GetBackUpListL() file I/O error simulation test
   263 @SYMTestPriority        High
   264 @SYMTestActions         Calls CSqlServer::GetBackUpListL() in a file I/O error simulation loop.
   265 @SYMTestExpectedResults Test must not fail
   266 @SYMDEF                 DEF144096
   267 */  
   268 void GetBackupListFileIoErrorTest()
   269     {
   270     CSqlServer* server = NULL;
   271     TRAPD(err, server = CreateSqlServerL());
   272     TEST2(err, KErrNone);
   273 
   274     for(TInt fsError=KErrNotFound;fsError>=KErrBadName;--fsError)
   275         {
   276         TheTest.Printf(_L("===Simulated error: %d\r\nIteration: "), fsError);
   277         err = KErrNotFound;
   278         TInt fileCnt = 0;
   279         TInt cnt=0;
   280         while(err<KErrNone)
   281             {
   282             TheTest.Printf(_L("%d "), cnt);
   283             (void)server->Fs().SetErrorCondition(fsError, cnt);
   284             const TUid KDbUd = {0x98765432};
   285             RArray<HBufC*> files;
   286             TRAP(err, server->GetBackUpListL(KDbUd, EDriveC, files));
   287             fileCnt = files.Count(); 
   288             if(err == KErrNone)
   289             	{
   290     			//No directories should be returned in the list of files for backup
   291     			for(TInt i=0;i<fileCnt;++i)
   292     				{
   293     				TPtrC fname = files[i]->Des();
   294     				TInt rc = KPrivateSubDir().CompareF(fname);
   295     				TEST(rc != 0);
   296     				}
   297             	}
   298             for(TInt j=0;j<files.Count();++j)
   299             	{
   300 				delete files[j];
   301             	}
   302             files.Close();
   303             (void)server->Fs().SetErrorCondition(KErrNone);
   304             if(err != KErrNone)
   305                 {
   306                 ++cnt;
   307                 }
   308             }
   309         TEST2(err, KErrNone);
   310         TheTest.Printf(_L("\r\n===File I/O error simulation test succeeded on iteration %d===\r\nFile count: %d\r\n"), cnt, fileCnt);
   311         }
   312         
   313     delete server;
   314     }
   315 
   316 /**
   317 @SYMTestCaseID          PDS-SQL-UT-4224
   318 @SYMTestCaseDesc        CSqlServer::GetBackUpListL() functional test
   319 @SYMTestPriority        High
   320 @SYMTestActions         Calls CSqlServer::GetBackUpListL() and tests the output, when the drive is read-only,
   321                         when there is a sub-directory which name is matching the search pattern.
   322 @SYMTestExpectedResults Test must not fail
   323 */  
   324 void GetBackupListFunctionalTest()
   325 	{
   326     CSqlServer* server = NULL;
   327     TRAPD(err, server = CreateSqlServerL());
   328     TEST2(err, KErrNone);
   329     //Case 1: database with specified uid bellow do exist (on drive C). There will be one subdirectory matching the search pattern. 
   330     const TDriveNumber KTestDrvNum1 = EDriveC;
   331     const TUid KDbUid = {0x98765432};
   332 	TDriveUnit testDrive(KTestDrvNum1);
   333 	TDriveName testDriveName = testDrive.Name();
   334 	testDriveName.LowerCase(); 
   335 	//One test directory will be created, which name will be matching the search pattern.
   336 	//The directory name should not be included in the list with the file names.
   337     TFileName testFileName;
   338     err = server->Fs().PrivatePath(testFileName);
   339     TEST2(err, KErrNone);
   340     testFileName.Append(KDbUid.Name());
   341     _LIT(KTestPath, "t_startup\\");
   342     testFileName.Append(KTestPath);
   343     testFileName.Append(_L("t_startup.db"));
   344     TParse parse;
   345     err = parse.Set(testFileName, &testDriveName, 0);
   346     TEST2(err, KErrNone);
   347     err = server->Fs().MkDirAll(parse.FullName());
   348     TEST(err == KErrNone || err == KErrAlreadyExists);
   349     //
   350     RArray<HBufC*> files;
   351     TRAP(err, server->GetBackUpListL(KDbUid, KTestDrvNum1, files));
   352     TEST2(err, KErrNone);
   353     TInt fileCnt = files.Count();
   354     for(TInt i=0;i<fileCnt;++i)
   355     	{
   356 		TPtrC fname = files[i]->Des();
   357 		TheTest.Printf(_L("Db: %S\r\n"), &fname);
   358 		TEST(fname.FindF(KTestPath) < 0);
   359 		//The name should include the full path + the drive
   360 		err = parse.Set(fname, 0, 0);
   361 		TEST2(err, KErrNone);
   362 		TEST(parse.DrivePresent());
   363 		TEST(parse.PathPresent());
   364 		TDriveName driveName(parse.Drive());
   365 		driveName.LowerCase(); 
   366 		delete files[i];
   367 		TEST(driveName == testDriveName);		
   368     	}
   369     files.Close();
   370     //Case 2: drive Z:. No files should be returned.
   371     const TDriveNumber KTestDrvNum2 = EDriveZ;
   372     TRAP(err, server->GetBackUpListL(KDbUid, KTestDrvNum2, files));
   373     TEST2(err, KErrNone);
   374     fileCnt = files.Count();
   375     TEST2(fileCnt, 0);
   376     //Case 3: drive A:. The drive does not exist. No files should be returned.
   377     const TDriveNumber KTestDrvNum3 = EDriveA;
   378     TRAP(err, server->GetBackUpListL(KDbUid, KTestDrvNum3, files));
   379 	TheTest.Printf(_L("Drive %d, err=%d\r\n"), KTestDrvNum3, err);
   380     fileCnt = files.Count();
   381     TEST2(fileCnt, 0);
   382     //
   383     delete server;
   384 	}
   385 
   386 /**
   387 @SYMTestCaseID          PDS-SQL-UT-4163
   388 @SYMTestCaseDesc        Test for DEF144196: SQL, server code coverage can be improved
   389 @SYMTestPriority        High
   390 @SYMTestActions         Tests the UTF conversion functions implemented in SqlSrvUtil.cpp.
   391 @SYMTestExpectedResults Test must not fail
   392 @SYMDEF                 DEF144196
   393 */  
   394 void UtfConversionTest()
   395     {
   396     /////////       UTF16ToUTF8()       ///////////////////////
   397     _LIT(KStr16, "abcd");
   398     _LIT8(KStr8, "abcd");
   399     TBuf8<KMaxFileName + 1> bufout;
   400     TBool rc = UTF16ToUTF8(KStr16, bufout);
   401     TEST(rc);
   402     TEST(bufout == KStr8);
   403     //Test where the input buffer contains non-convertible characters
   404     TBuf<2> name2;
   405     name2.SetLength(2);
   406     name2[0] = TChar(0xD800); 
   407     name2[1] = TChar(0xFC00); 
   408     rc = UTF16ToUTF8(name2, bufout);
   409     TEST(!rc);
   410     /////////       UTF16ToUTF8Z()       ///////////////////////
   411     _LIT8(KStr8Z, "abcd\x0");
   412     rc = UTF16ToUTF8Z(KStr16, bufout);
   413     TEST(rc);
   414     TEST(bufout == KStr8Z);
   415     //Test where the input buffer contains non-convertible characters
   416     rc = UTF16ToUTF8Z(name2, bufout);
   417     TEST(!rc);
   418     /////////       UTF16ZToUTF8Z()       ///////////////////////
   419     _LIT(KStr16Z, "abcd\x0");
   420     rc = UTF16ZToUTF8Z(KStr16Z, bufout);
   421     TEST(rc);
   422     TEST(bufout == KStr8Z);
   423     //Test where the input buffer contains non-convertible characters
   424     TBuf<3> name3;
   425     name3.SetLength(3);
   426     name3[0] = TChar(0xD800); 
   427     name3[1] = TChar(0xFC00); 
   428     name3[2] = TChar(0x0000); 
   429     rc = UTF16ZToUTF8Z(name3, bufout);
   430     TEST(!rc);
   431     }
   432 
   433 /**
   434 @SYMTestCaseID          PDS-SQL-UT-4175
   435 @SYMTestCaseDesc        Test for DEF144937: SQL, SQL server, the code coverage can be improved in some areas. 
   436 @SYMTestPriority        High
   437 @SYMTestActions         The test creates a SQL server instance and performs some basic operations with
   438                         RSqlDriveSpaceCol object owned by the server, such as: adding a new drive,
   439                         getting an access to the reserved drive space, releasing the access.
   440 @SYMTestExpectedResults Test must not fail
   441 @SYMDEF                 DEF144937
   442 */  
   443 void ReserveDriveSpaceTest()
   444     {
   445     CSqlServer* srv = NULL;
   446     TRAPD(err, srv = CreateSqlServerL());
   447     TEST2(err, KErrNone);
   448     
   449     RSqlDriveSpaceCol& drvcol = srv->DriveSpaceCol();
   450     TRAP(err, drvcol.AddL(EDriveC));
   451     TEST2(err, KErrNone);
   452 
   453     CSqlDriveSpace* drvspace = drvcol.Find(EDriveZ);
   454     TEST(!drvspace);
   455     drvspace = drvcol.Find(EDriveC);
   456     TEST(drvspace != NULL);
   457     
   458     TDriveNumber drvnum = drvspace->Drive();
   459     TEST2(drvnum, EDriveC);
   460     //It is safe to call GetAccessL() more than once. The access is reference counted.
   461     TRAP(err, drvspace->GetAccessL());
   462     TEST2(err, KErrNone);
   463     TRAP(err, drvspace->GetAccessL());
   464     TEST2(err, KErrNone);
   465     //It is safe if ReleaseAccess() call count do not match GetAccessL() call count.
   466     drvspace->ReleaseAccess();
   467     drvspace->ReleaseAccess();
   468     drvspace->ReleaseAccess();
   469     //
   470     drvcol.ResetAndDestroy();
   471     delete srv;
   472     }
   473 
   474 void DoCreateCfgFile(const TDesC& aFileName, const TDesC8& aData)
   475     {
   476     RFile file;
   477     TInt err = file.Create(TheFs, aFileName, EFileRead | EFileWrite);
   478     TEST2(err, KErrNone);
   479     err = file.Write(aData); 
   480     file.Close();   
   481     TEST2(err, KErrNone);
   482     }
   483 
   484 void DoTests()
   485 	{
   486     CActiveScheduler* scheduler = new CActiveScheduler;
   487     TEST(scheduler != NULL);
   488     CActiveScheduler::Install(scheduler);
   489 
   490     //Adding two db config files will allow CDbConfigFiles construct/destroy code also to be tested in the OOM tests.
   491     TInt err = TheFs.Connect();
   492     TEST2(err, KErrNone);
   493     DoCreateCfgFile(KCfgDb1ConfigFilePath, _L8("CREATE INDEX idx ON table1(i1);"));
   494     DoCreateCfgFile(KCfgDb2ConfigFilePath, _L8("CREATE INDEX idx1 ON table1(i1);CREATE INDEX idx2 ON table2(i2)"));
   495     
   496     TheTest.Start(_L(" @SYMTestCaseID:PDS-SQL-UT-4159 SQL server startup OOM test"));
   497     SqlServerStartupOomTest();
   498 
   499     TheTest.Next (_L(" @SYMTestCaseID:PDS-SQL-UT-4160 CSqlServer::GetBackUpListL() OOM test"));
   500     GetBackupListOomTest();
   501 
   502     TheTest.Next (_L(" @SYMTestCaseID:PDS-SQL-UT-4161 SQL server startup file I/O error simulation test"));
   503     SqlServerStartupFileIoErrorTest();
   504     
   505     TheTest.Next (_L(" @SYMTestCaseID:PDS-SQL-UT-4162 CSqlServer::GetBackUpListL() file I/O error simulation test"));
   506     GetBackupListFileIoErrorTest();
   507 
   508     TheTest.Next (_L(" @SYMTestCaseID:PDS-SQL-UT-4224 CSqlServer::GetBackUpListL() functional test"));
   509     GetBackupListFunctionalTest();
   510     
   511     TheTest.Next (_L(" @SYMTestCaseID:PDS-SQL-UT-4163 SQL server, UTF conversion test"));
   512     UtfConversionTest();
   513 
   514     TheTest.Next (_L(" @SYMTestCaseID:PDS-SQL-UT-4175 Reserve drive space tests"));
   515     ReserveDriveSpaceTest();
   516     
   517     delete scheduler;
   518 	}
   519 
   520 TInt E32Main()
   521 	{
   522 	TheTest.Title();
   523 	
   524 	CTrapCleanup* tc = CTrapCleanup::New();
   525 	TheTest(tc != NULL);
   526 	
   527 	__UHEAP_MARK;
   528 	
   529 	DoTests();
   530 	DeleteTestFiles();
   531 
   532 	__UHEAP_MARKEND;
   533 	
   534 	TheTest.End();
   535 	TheTest.Close();
   536 	
   537 	delete tc;
   538 
   539 	User::Heap().Check();
   540 	return KErrNone;
   541 	}