os/persistentdata/persistentstorage/sqlite3api/TEST/t_sqliteperf.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 // Copyright (c) 2008-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 <bautils.h>
    18 #include <e32math.h>
    19 #include <hal.h>
    20 #include <sqldb.h>
    21 #include "sqliteTestUtl.h"
    22 #include "t_sqliteperf.h"
    23 
    24 ///////////////////////////////////////////////////////////////////////////////////////
    25 
    26 const char* const KTestName = "t_sqliteperf test";
    27 
    28 _LIT(KTestDir, "c:\\test\\");
    29 _LIT(KTestDbName,   "c:\\test\\t_sqliteperf.db");
    30 _LIT8(KTestDbName8, "c:\\test\\t_sqliteperf.db\x0");
    31 
    32 _LIT(KSqlSrvName, "sqlsrv.exe");
    33 
    34 static RSqlDatabase TheDb;
    35 
    36 const TInt KInsertRecCnt = 1000;
    37 const TInt KUpdateRecCnt = KInsertRecCnt / 10;
    38 const TInt KDeleteRecCnt = KInsertRecCnt / 10;
    39 const TInt KSelectRecCnt = KInsertRecCnt / 10;
    40 
    41 static TInt TheUpdateRecIds[KUpdateRecCnt] = {0};
    42 static TInt TheDeleteRecIds[KDeleteRecCnt] = {0};
    43 static TInt TheSelectRecIds[KSelectRecCnt] = {0};
    44 
    45 static TInt TheInsertRecId = 0;
    46 static TInt TheUpdateRecId = 0;
    47 static TInt TheDeleteRecId = 0;
    48 static TInt TheSelectRecId = 0;
    49 
    50 const char KMultiInsertSql[] = "INSERT INTO Tbl VALUES(:Id, 9234567890, 99.998, 'TEXT VALUE', x'AABBCCDDEEFF')";
    51 const char KMultiUpdateSql[] = "UPDATE Tbl SET D=11.113 WHERE I IN";
    52 const char KMultiDeleteSql[] = "DELETE FROM Tbl WHERE I IN";
    53 const char KMultiSelectSql[] = "SELECT I64,D,T,B FROM Tbl WHERE I IN";
    54 
    55 const char KSingleInsertSql[] = "INSERT INTO Tbl VALUES(%d, 9234567890, 99.998, 'TEXT VALUE', x'AABBCCDDEEFF')";
    56 const char KSingleUpdateSql[] = "UPDATE Tbl SET D=11.113 WHERE I=";
    57 const char KSingleDeleteSql[] = "DELETE FROM Tbl WHERE I=";
    58 const char KSingleSelectSql[] = "SELECT I64,D,T,B FROM Tbl WHERE I=";
    59 
    60 //This buffer is used for SQL statement formatting. 2000 bytes should be enough as a buffer max length.
    61 static TBuf8<2000> TheSqlBuf;
    62 //This buffer is used for printf related formatting. 500 characters should be enough.
    63 static TBuf<500> ThePrintBuf;
    64 
    65 #define UNUSED_VAR(a) (a) = (a)
    66 #define UNUSED_PTR(a) a.Set(a)
    67 
    68 ///////////////////////////////////////////////////////////////////////////////////////
    69 
    70 extern "C" const char* TestDbName(void)
    71 	{
    72 	return (const char*)KTestDbName8().Ptr();
    73 	}
    74 
    75 static void DeleteTestFiles()
    76 	{
    77 	TheDb.Close();
    78 	(void)RSqlDatabase::Delete(KTestDbName);
    79 	}
    80 
    81 ///////////////////////////////////////////////////////////////////////////////////////
    82 //Test macros and functions
    83 static void Check(TInt aValue, TInt aLine)
    84 	{
    85 	if(!aValue)
    86 		{
    87 		DeleteTestFiles();
    88 		TestTestLine(EFalse, aLine);
    89 		}
    90 	}
    91 static void Check(TInt aValue, TInt aExpected, TInt aLine)
    92 	{
    93 	if(aValue != aExpected)
    94 		{
    95 		DeleteTestFiles();
    96 		RDebug::Print(_L("*** Expected error: %d, got: %d\r\n"), aExpected, aValue);
    97 		TestTestLine(EFalse, aLine);
    98 		}
    99 	}
   100 #define TEST(arg) ::Check((arg), __LINE__)
   101 #define TEST2(aValue, aExpected) ::Check(aValue, aExpected, __LINE__)
   102 
   103 ///////////////////////////////////////////////////////////////////////////////////////
   104 
   105 static TInt KillProcess(const TDesC& aProcessName)
   106 	{
   107 	TFullName name;
   108 	//RDebug::Print(_L("Find and kill \"%S\" process.\n"), &aProcessName);
   109 	TBuf<64> pattern(aProcessName);
   110 	TInt length = pattern.Length();
   111 	pattern += _L("*");
   112 	TFindProcess procFinder(pattern);
   113 
   114 	while (procFinder.Next(name) == KErrNone)
   115 		{
   116 		if (name.Length() > length)
   117 			{//If found name is a string containing aProcessName string.
   118 			TChar c(name[length]);
   119 			if (c.IsAlphaDigit() ||
   120 				c == TChar('_') ||
   121 				c == TChar('-'))
   122 				{
   123 				// If the found name is other valid application name
   124 				// starting with aProcessName string.
   125 				//RDebug::Print(_L(":: Process name: \"%S\".\n"), &name);
   126 				continue;
   127 				}
   128 			}
   129 		RProcess proc;
   130 		if (proc.Open(name) == KErrNone)
   131 			{
   132 			proc.Kill(0);
   133 			//RDebug::Print(_L("\"%S\" process killed.\n"), &name);
   134 			}
   135 		proc.Close();
   136 		}
   137 	return KErrNone;
   138 	}
   139 
   140 static TInt TheCounterFreq = -10000000;
   141 const TInt KMicroSecIn1Sec = 1000000;
   142 
   143 //Prints aFastCount parameter (converted to us)
   144 static TInt FcDiff2Us(TUint32 aFastCount)
   145 	{
   146 	double v = ((double)aFastCount * KMicroSecIn1Sec) / (double)TheCounterFreq;
   147 	TInt v2 = (TInt)v;
   148 	return v2;
   149 	}
   150 
   151 static void GetFastCounterFrequency()
   152 	{
   153 	TEST2(HAL::Get(HAL::EFastCounterFrequency, TheCounterFreq), KErrNone);
   154 	TBuf8<32> printString;
   155 	printString.Format(_L8("Counter frequency=%d\r\n"), TheCounterFreq);
   156 	TestPrintf((const char*)printString.PtrZ());
   157 	}
   158 
   159 extern "C" unsigned int FastCounterValue(void)
   160 	{
   161 	return User::FastCounter();
   162 	}
   163 
   164 //The performance test case results are stored in the ThePerfTestResult array.
   165 static TUint32 ThePerfTestResult[EPerfTestModeCnt][EPerfTestTypeCnt];
   166 
   167 extern "C" void StorePerfTestResult(TPerfTestMode aMode, TPerfTestType aType, unsigned int aResult)
   168 	{
   169 	ThePerfTestResult[aMode][aType] = aResult;
   170 	}
   171 
   172 static void PrintPerfTestResults()
   173 	{
   174 	TBuf8<256> printString;
   175 	TInt r1 = FcDiff2Us(ThePerfTestResult[EPerfTestSqlMode]          [EPerfTestMultiInsert]);
   176 	TInt r2 = FcDiff2Us(ThePerfTestResult[EPerfTestSqliteSqlMode]    [EPerfTestMultiInsert]);
   177 	TInt r3 = FcDiff2Us(ThePerfTestResult[EPerfTestSqliteDefaultMode][EPerfTestMultiInsert]);
   178 	TInt r4 = (TInt)((Abs(r2 - r1) * 100.0) / r1);
   179 	TInt r5 = (TInt)((Abs(r3 - r1) * 100.0) / r1);
   180 	TestPrintf("###                 SQL            SQLITE-SQL     SQLITE-DEFAULT\r\n");
   181 	printString.Format(_L8("###Multi Insert:  %8dus     %8dus     %8dus   %8d%%%%   %8d%%%%\r\n"), r1, r2, r3, r2 > r1 ? -r4 : +r4, r3 > r1 ? -r5 : +r5);
   182 	TestPrintf((const char*)printString.PtrZ());
   183 
   184 	r1 = FcDiff2Us(ThePerfTestResult[EPerfTestSqlMode]          [EPerfTestMultiUpdate]);
   185 	r2 = FcDiff2Us(ThePerfTestResult[EPerfTestSqliteSqlMode]    [EPerfTestMultiUpdate]);
   186 	r3 = FcDiff2Us(ThePerfTestResult[EPerfTestSqliteDefaultMode][EPerfTestMultiUpdate]);
   187 	r4 = (TInt)((Abs(r2 - r1) * 100.0) / r1);
   188 	r5 = (TInt)((Abs(r3 - r1) * 100.0) / r1);
   189 	printString.Format(_L8("###Multi Update:  %8dus     %8dus     %8dus   %8d%%%%   %8d%%%%\r\n"), r1, r2, r3, r2 > r1 ? -r4 : +r4, r3 > r1 ? -r5 : +r5);
   190 	TestPrintf((const char*)printString.PtrZ());
   191 
   192 	r1 = FcDiff2Us(ThePerfTestResult[EPerfTestSqlMode]          [EPerfTestMultiDelete]);
   193 	r2 = FcDiff2Us(ThePerfTestResult[EPerfTestSqliteSqlMode]    [EPerfTestMultiDelete]);
   194 	r3 = FcDiff2Us(ThePerfTestResult[EPerfTestSqliteDefaultMode][EPerfTestMultiDelete]);
   195 	r4 = (TInt)((Abs(r2 - r1) * 100.0) / r1);
   196 	r5 = (TInt)((Abs(r3 - r1) * 100.0) / r1);
   197 	printString.Format(_L8("###Multi Delete:  %8dus     %8dus     %8dus   %8d%%%%   %8d%%%%\r\n"), r1, r2, r3, r2 > r1 ? -r4 : +r4, r3 > r1 ? -r5 : +r5);
   198 	TestPrintf((const char*)printString.PtrZ());
   199 
   200 	r1 = FcDiff2Us(ThePerfTestResult[EPerfTestSqlMode]          [EPerfTestMultiSelect]);
   201 	r2 = FcDiff2Us(ThePerfTestResult[EPerfTestSqliteSqlMode]    [EPerfTestMultiSelect]);
   202 	r3 = FcDiff2Us(ThePerfTestResult[EPerfTestSqliteDefaultMode][EPerfTestMultiSelect]);
   203 	r4 = (TInt)((Abs(r2 - r1) * 100.0) / r1);
   204 	r5 = (TInt)((Abs(r3 - r1) * 100.0) / r1);
   205 	printString.Format(_L8("###Multi Select:  %8dus     %8dus     %8dus   %8d%%%%   %8d%%%%\r\n"), r1, r2, r3, r2 > r1 ? -r4 : +r4, r3 > r1 ? -r5 : +r5);
   206 	TestPrintf((const char*)printString.PtrZ());
   207 
   208 	r1 = FcDiff2Us(ThePerfTestResult[EPerfTestSqlMode]          [EPerfTestSingleInsert]);
   209 	r2 = FcDiff2Us(ThePerfTestResult[EPerfTestSqliteSqlMode]    [EPerfTestSingleInsert]);
   210 	r3 = FcDiff2Us(ThePerfTestResult[EPerfTestSqliteDefaultMode][EPerfTestSingleInsert]);
   211 	r4 = (TInt)((Abs(r2 - r1) * 100.0) / r1);
   212 	r5 = (TInt)((Abs(r3 - r1) * 100.0) / r1);
   213 	printString.Format(_L8("##Single Insert:  %8dus     %8dus     %8dus   %8d%%%%   %8d%%%%\r\n"), r1, r2, r3, r2 > r1 ? -r4 : +r4, r3 > r1 ? -r5 : +r5);
   214 	TestPrintf((const char*)printString.PtrZ());
   215 
   216 	r1 = FcDiff2Us(ThePerfTestResult[EPerfTestSqlMode]          [EPerfTestSingleUpdate]);
   217 	r2 = FcDiff2Us(ThePerfTestResult[EPerfTestSqliteSqlMode]    [EPerfTestSingleUpdate]);
   218 	r3 = FcDiff2Us(ThePerfTestResult[EPerfTestSqliteDefaultMode][EPerfTestSingleUpdate]);
   219 	r4 = (TInt)((Abs(r2 - r1) * 100.0) / r1);
   220 	r5 = (TInt)((Abs(r3 - r1) * 100.0) / r1);
   221 	printString.Format(_L8("##Single Update:  %8dus     %8dus     %8dus   %8d%%%%   %8d%%%%\r\n"), r1, r2, r3, r2 > r1 ? -r4 : +r4, r3 > r1 ? -r5 : +r5);
   222 	TestPrintf((const char*)printString.PtrZ());
   223 
   224 	r1 = FcDiff2Us(ThePerfTestResult[EPerfTestSqlMode]          [EPerfTestSingleDelete]);
   225 	r2 = FcDiff2Us(ThePerfTestResult[EPerfTestSqliteSqlMode]    [EPerfTestSingleDelete]);
   226 	r3 = FcDiff2Us(ThePerfTestResult[EPerfTestSqliteDefaultMode][EPerfTestSingleDelete]);
   227 	r4 = (TInt)((Abs(r2 - r1) * 100.0) / r1);
   228 	r5 = (TInt)((Abs(r3 - r1) * 100.0) / r1);
   229 	printString.Format(_L8("##Single Delete:  %8dus     %8dus     %8dus   %8d%%%%   %8d%%%%\r\n"), r1, r2, r3, r2 > r1 ? -r4 : +r4, r3 > r1 ? -r5 : +r5);
   230 	TestPrintf((const char*)printString.PtrZ());
   231 
   232 	r1 = FcDiff2Us(ThePerfTestResult[EPerfTestSqlMode]          [EPerfTestSingleSelect]);
   233 	r2 = FcDiff2Us(ThePerfTestResult[EPerfTestSqliteSqlMode]    [EPerfTestSingleSelect]);
   234 	r3 = FcDiff2Us(ThePerfTestResult[EPerfTestSqliteDefaultMode][EPerfTestSingleSelect]);
   235 	r4 = (TInt)((Abs(r2 - r1) * 100.0) / r1);
   236 	r5 = (TInt)((Abs(r3 - r1) * 100.0) / r1);
   237 	printString.Format(_L8("##Single Select:  %8dus     %8dus     %8dus   %8d%%%%   %8d%%%%\r\n"), r1, r2, r3, r2 > r1 ? -r4 : +r4, r3 > r1 ? -r5 : +r5);
   238 	TestPrintf((const char*)printString.PtrZ());
   239 	}
   240 
   241 ///////////////////////////////////////////////////////////////////////////////////////
   242 
   243 static void CreateTestDir()
   244     {
   245     RFs fs;
   246 	TInt err = fs.Connect();
   247 	TEST2(err, KErrNone);
   248 
   249 	err = fs.MkDir(KTestDir);
   250 	TEST(err == KErrNone || err == KErrAlreadyExists);
   251 
   252 	err = fs.CreatePrivatePath(EDriveC);
   253 	TEST(err == KErrNone || err == KErrAlreadyExists);
   254 
   255 	fs.Close();
   256 	}
   257 
   258 ///////////////////////////////////////////////////////////////////////////////////////
   259 
   260 static void CreateTestDatabase()
   261 	{
   262 	RSqlDatabase::Delete(KTestDbName);
   263 
   264 	_LIT8(KConfigStr, "encoding=\"UTF-8\"");
   265 	TInt err = TheDb.Create(KTestDbName, &KConfigStr);
   266 	TEST2(err, KErrNone);
   267 
   268 	err = TheDb.Exec(_L8("CREATE TABLE Tbl(I INTEGER PRIMARY KEY, I64 BIGINT, D DOUBLE, T TEXT, B BINARY)"));
   269 	TEST2(err, 1);
   270 
   271 	TheDb.Close();
   272 	}
   273 
   274 ///////////////////////////////////////////////////////////////////////////////////////
   275 ////////////////////             SQL server tests           ///////////////////////////
   276 ///////////////////////////////////////////////////////////////////////////////////////
   277 
   278 /**
   279 @SYMTestCaseID			SYSLIB-SQLITE3-UT-4010
   280 @SYMTestCaseDesc		SQL server multi-insert performance test.
   281 						The test inserts 1000 records in a single transaction and stores
   282 						the execution time for later use (comparison and printing).
   283 @SYMTestPriority		High
   284 @SYMTestActions			SQL server multi-insert performance test.
   285 @SYMTestExpectedResults Test must not fail
   286 @SYMREQ					REQ8782
   287 */
   288 static void SqlServerMultiInsertTest(const char aInsertSql[], TInt aInsertRecCnt)
   289 	{
   290 	TestNext(" @SYMTestCaseID:SYSLIB-SQLITE3-UT-4010 ");
   291 	(void)KillProcess(KSqlSrvName);
   292 
   293 	TInt err = TheDb.Open(KTestDbName);
   294 	TEST2(err, KErrNone);
   295 
   296 	RSqlStatement stmt;
   297 	err = stmt.Prepare(TheDb, TPtrC8((const TUint8*)aInsertSql));
   298 	TEST2(err, KErrNone);
   299 
   300 	TUint32 fc = FastCounterValue();
   301 	err = TheDb.Exec(_L8("BEGIN"));
   302 	TEST(err >= 0);
   303 
   304 	for(TInt i=0;i<aInsertRecCnt;++i)
   305 		{
   306 		err = stmt.BindInt(0, i + 1);
   307 		TEST2(err, KErrNone);
   308 		err = stmt.Exec();
   309 		TEST2(err, 1);
   310 		err = stmt.Reset();
   311 		TEST2(err, KErrNone);
   312 		}
   313 
   314 	err = TheDb.Exec(_L8("COMMIT"));
   315 	TEST(err >= 0);
   316 	StorePerfTestResult(EPerfTestSqlMode, EPerfTestMultiInsert, FastCounterValue() - fc);
   317 
   318 	stmt.Close();
   319 	TheDb.Close();
   320 	}
   321 
   322 static void FormatSqlStmt(TDes8& aSqlBuf, const char aSql[], TInt aRecIds[], TInt aRecCnt)
   323 	{
   324 	aSqlBuf.Copy(TPtrC8((const TUint8*)aSql));
   325 	aSqlBuf.Append(_L8("("));
   326 	for(TInt i=0;i<aRecCnt;++i)
   327 		{
   328 		aSqlBuf.AppendNum((TInt64)aRecIds[i]);
   329 		aSqlBuf.Append(_L8(","));
   330 		}
   331 	aSqlBuf.SetLength(aSqlBuf.Length() - 1);
   332 	aSqlBuf.Append(_L8(")"));
   333 	}
   334 
   335 /**
   336 @SYMTestCaseID			SYSLIB-SQLITE3-UT-4011
   337 @SYMTestCaseDesc		SQL server multi-update performance test.
   338 						The test updates 100 randomly chosen records and stores
   339 						the execution time for later use (comparison and printing).
   340 @SYMTestPriority		High
   341 @SYMTestActions			SQL server multi-update performance test.
   342 @SYMTestExpectedResults Test must not fail
   343 @SYMREQ					REQ8782
   344 */
   345 static void SqlServerMultiUpdateTest(const char aUpdateSql[], TInt aUpdateRecIds[], TInt aUpdateRecCnt)
   346 	{
   347     TestNext(" @SYMTestCaseID:SYSLIB-SQLITE3-UT-4011 ");
   348 	(void)KillProcess(KSqlSrvName);
   349 
   350 	TInt err = TheDb.Open(KTestDbName);
   351 	TEST2(err, KErrNone);
   352 
   353 	FormatSqlStmt(TheSqlBuf, aUpdateSql, aUpdateRecIds, aUpdateRecCnt);
   354 
   355 	TUint32 fc = FastCounterValue();
   356 	err = TheDb.Exec(TheSqlBuf);
   357 	StorePerfTestResult(EPerfTestSqlMode, EPerfTestMultiUpdate, FastCounterValue() - fc);
   358 	TEST2(err, aUpdateRecCnt);
   359 
   360 	TheDb.Close();
   361 	}
   362 
   363 /**
   364 @SYMTestCaseID			SYSLIB-SQLITE3-UT-4012
   365 @SYMTestCaseDesc		SQL server multi-delete performance test.
   366 						The test deletes 100 randomly chosen records and stores
   367 						the execution time for later use (comparison and printing).
   368 @SYMTestPriority		High
   369 @SYMTestActions			SQL server multi-delete performance test.
   370 @SYMTestExpectedResults Test must not fail
   371 @SYMREQ					REQ8782
   372 */
   373 static void SqlServerMultiDeleteTest(const char aDeleteSql[], TInt aDeleteRecIds[], TInt aDeleteRecCnt)
   374 	{
   375 	TestNext(" @SYMTestCaseID:SYSLIB-SQLITE3-UT-4012 ");
   376 	(void)KillProcess(KSqlSrvName);
   377 
   378 	TInt err = TheDb.Open(KTestDbName);
   379 	TEST2(err, KErrNone);
   380 
   381 	FormatSqlStmt(TheSqlBuf, aDeleteSql, aDeleteRecIds, aDeleteRecCnt);
   382 
   383 	TUint32 fc = FastCounterValue();
   384 	err = TheDb.Exec(TheSqlBuf);
   385 	StorePerfTestResult(EPerfTestSqlMode, EPerfTestMultiDelete, FastCounterValue() - fc);
   386 	TEST2(err, aDeleteRecCnt);
   387 
   388 	TheDb.Close();
   389 	}
   390 
   391 /**
   392 @SYMTestCaseID			SYSLIB-SQLITE3-UT-4013
   393 @SYMTestCaseDesc		SQL server multi-select performance test.
   394 						The test selects 100 randomly chosen records and stores
   395 						the execution time for later use (comparison and printing).
   396 @SYMTestPriority		High
   397 @SYMTestActions			SQL server multi-select performance test.
   398 @SYMTestExpectedResults Test must not fail
   399 @SYMREQ					REQ8782
   400 */
   401 static void SqlServerMultiSelectTest(const char aSelectSql[], TInt aSelectRecIds[], TInt aSelectRecCnt)
   402 	{
   403 	TestNext(" @SYMTestCaseID:SYSLIB-SQLITE3-UT-4013 ");
   404 	(void)KillProcess(KSqlSrvName);
   405 
   406 	TInt err = TheDb.Open(KTestDbName);
   407 	TEST2(err, KErrNone);
   408 
   409 	FormatSqlStmt(TheSqlBuf, aSelectSql, aSelectRecIds, aSelectRecCnt);
   410 
   411 	RSqlStatement stmt;
   412 	err = stmt.Prepare(TheDb, TheSqlBuf);
   413 	TEST2(err, KErrNone);
   414 	TInt recCnt = 0;
   415 	TUint32 fc = FastCounterValue();
   416 	while((err = stmt.Next()) == KSqlAtRow)
   417 		{
   418 		TInt64 i64 = stmt.ColumnInt64(0);
   419 		UNUSED_VAR(i64);
   420 		TReal d = stmt.ColumnReal(1);
   421 		UNUSED_VAR(d);
   422 		TPtrC t;
   423 		err = stmt.ColumnText(2, t);
   424 		TEST2(err, KErrNone);
   425 		UNUSED_PTR(t);
   426 		TPtrC8 b;
   427 		err = stmt.ColumnBinary(3, b);
   428 		TEST2(err, KErrNone);
   429 		UNUSED_PTR(b);
   430 		++recCnt;
   431 		}
   432 	StorePerfTestResult(EPerfTestSqlMode, EPerfTestMultiSelect, FastCounterValue() - fc);
   433 	TEST2(err, KSqlAtEnd);
   434 	TEST2(recCnt, aSelectRecCnt);
   435 
   436 	stmt.Close();
   437 	TheDb.Close();
   438 	}
   439 
   440 /**
   441 @SYMTestCaseID			SYSLIB-SQLITE3-UT-4014
   442 @SYMTestCaseDesc		SQL server single-insert performance test.
   443 						The test inserts one record and stores
   444 						the execution time for later use (comparison and printing).
   445 @SYMTestPriority		High
   446 @SYMTestActions			SQL server single-insert performance test.
   447 @SYMTestExpectedResults Test must not fail
   448 @SYMREQ					REQ8782
   449 */
   450 static void SqlServerSingleInsertTest(const char aSingleInsertSql[], TInt aInsertRecId)
   451 	{
   452 	TestNext(" @SYMTestCaseID:SYSLIB-SQLITE3-UT-4014 ");
   453 	(void)KillProcess(KSqlSrvName);
   454 
   455 	TInt err = TheDb.Open(KTestDbName);
   456 	TEST2(err, KErrNone);
   457 
   458 	TheSqlBuf.Format(TPtrC8((const TUint8*)aSingleInsertSql), aInsertRecId);
   459 	TUint32 fc = FastCounterValue();
   460 	err = TheDb.Exec(TheSqlBuf);
   461 	StorePerfTestResult(EPerfTestSqlMode, EPerfTestSingleInsert, FastCounterValue() - fc);
   462 	TEST2(err, 1);
   463 
   464 	TheDb.Close();
   465 	}
   466 
   467 /**
   468 @SYMTestCaseID			SYSLIB-SQLITE3-UT-4015
   469 @SYMTestCaseDesc		SQL server single-update performance test.
   470 						The test updates one randomly chosen record and stores
   471 						the execution time for later use (comparison and printing).
   472 @SYMTestPriority		High
   473 @SYMTestActions			SQL server single-update performance test.
   474 @SYMTestExpectedResults Test must not fail
   475 @SYMREQ					REQ8782
   476 */
   477 static void SqlServerSingleUpdateTest(const char aSingleUpdateSql[], TInt aUpdateRecId)
   478 	{
   479 	TestNext(" @SYMTestCaseID:SYSLIB-SQLITE3-UT-4015 ");
   480 	(void)KillProcess(KSqlSrvName);
   481 
   482 	TInt err = TheDb.Open(KTestDbName);
   483 	TEST2(err, KErrNone);
   484 
   485 	TheSqlBuf.Copy(TPtrC8((const TUint8*)aSingleUpdateSql));
   486 	TheSqlBuf.AppendNum((TInt64)aUpdateRecId);
   487 	TUint32 fc = FastCounterValue();
   488 	err = TheDb.Exec(TheSqlBuf);
   489 	StorePerfTestResult(EPerfTestSqlMode, EPerfTestSingleUpdate, FastCounterValue() - fc);
   490 	TEST2(err, 1);
   491 
   492 	TheDb.Close();
   493 	}
   494 
   495 /**
   496 @SYMTestCaseID			SYSLIB-SQLITE3-UT-4016
   497 @SYMTestCaseDesc		SQL server single-delete performance test.
   498 						The test deletes one randomly chosen record and stores
   499 						the execution time for later use (comparison and printing).
   500 @SYMTestPriority		High
   501 @SYMTestActions			SQL server single-delete performance test.
   502 @SYMTestExpectedResults Test must not fail
   503 @SYMREQ					REQ8782
   504 */
   505 static void SqlServerSingleDeleteTest(const char aSingleDeleteSql[], TInt aDeleteRecId)
   506 	{
   507 	TestNext(" @SYMTestCaseID:SYSLIB-SQLITE3-UT-4016 ");
   508 	(void)KillProcess(KSqlSrvName);
   509 
   510 	TInt err = TheDb.Open(KTestDbName);
   511 	TEST2(err, KErrNone);
   512 
   513 	TheSqlBuf.Copy(TPtrC8((const TUint8*)aSingleDeleteSql));
   514 	TheSqlBuf.AppendNum((TInt64)aDeleteRecId);
   515 	TUint32 fc = FastCounterValue();
   516 	err = TheDb.Exec(TheSqlBuf);
   517 	StorePerfTestResult(EPerfTestSqlMode, EPerfTestSingleDelete, FastCounterValue() - fc);
   518 	TEST2(err, 1);
   519 
   520 	TheDb.Close();
   521 	}
   522 
   523 /**
   524 @SYMTestCaseID			SYSLIB-SQLITE3-UT-4017
   525 @SYMTestCaseDesc		SQL server single-select performance test.
   526 						The test selects one randomly chosen record and stores
   527 						the execution time for later use (comparison and printing).
   528 @SYMTestPriority		High
   529 @SYMTestActions			SQL server single-select performance test.
   530 @SYMTestExpectedResults Test must not fail
   531 @SYMREQ					REQ8782
   532 */
   533 static void SqlServerSingleSelectTest(const char aSingleSelectSql[], TInt aSelectRecId)
   534 	{
   535 	TestNext(" @SYMTestCaseID:SYSLIB-SQLITE3-UT-4017 ");
   536 	(void)KillProcess(KSqlSrvName);
   537 
   538 	TInt err = TheDb.Open(KTestDbName);
   539 	TEST2(err, KErrNone);
   540 
   541 	TheSqlBuf.Copy(TPtrC8((const TUint8*)aSingleSelectSql));
   542 	TheSqlBuf.AppendNum((TInt64)aSelectRecId);
   543 
   544 	RSqlStatement stmt;
   545 	err = stmt.Prepare(TheDb, TheSqlBuf);
   546 	TEST2(err, KErrNone);
   547 	TInt recCnt = 0;
   548 	TUint32 fc = FastCounterValue();
   549 	while((err = stmt.Next()) == KSqlAtRow)
   550 		{
   551 		TInt64 i64 = stmt.ColumnInt64(0);
   552 		UNUSED_VAR(i64);
   553 		TReal d = stmt.ColumnReal(1);
   554 		UNUSED_VAR(d);
   555 		TPtrC t;
   556 		err = stmt.ColumnText(2, t);
   557 		TEST2(err, KErrNone);
   558 		UNUSED_PTR(t);
   559 		TPtrC8 b;
   560 		err = stmt.ColumnBinary(3, b);
   561 		TEST2(err, KErrNone);
   562 		UNUSED_PTR(b);
   563 		++recCnt;
   564 		}
   565 	StorePerfTestResult(EPerfTestSqlMode, EPerfTestSingleSelect, FastCounterValue() - fc);
   566 	TEST2(err, KSqlAtEnd);
   567 	TEST2(recCnt, 1);
   568 
   569 	stmt.Close();
   570 	TheDb.Close();
   571 	}
   572 
   573 ///////////////////////////////////////////////////////////////////////////////////////
   574 ///////////////////////////////////////////////////////////////////////////////////////
   575 ///////////////////////////////////////////////////////////////////////////////////////
   576 
   577 static void DoSqlServerTests()
   578 	{
   579 	TestNext("SQL: Create the test database");
   580 	CreateTestDatabase();
   581 
   582 	TBuf8<100> msgbuf;
   583 
   584 	msgbuf.Format(_L8("SQL: insert %d records in a single transaction"), KInsertRecCnt);
   585 	TestNext((const char*)msgbuf.PtrZ());
   586 	SqlServerMultiInsertTest(KMultiInsertSql, KInsertRecCnt);
   587 
   588 	msgbuf.Format(_L8("SQL: update %d records in a single transaction"), KUpdateRecCnt);
   589 	TestNext((const char*)msgbuf.PtrZ());
   590 	SqlServerMultiUpdateTest(KMultiUpdateSql, TheUpdateRecIds, KUpdateRecCnt);
   591 
   592 	msgbuf.Format(_L8("SQL: delete %d records in a single transaction"), KDeleteRecCnt);
   593 	TestNext((const char*)msgbuf.PtrZ());
   594 	SqlServerMultiDeleteTest(KMultiDeleteSql, TheDeleteRecIds, KDeleteRecCnt);
   595 
   596 	msgbuf.Format(_L8("SQL: select %d records"), KSelectRecCnt);
   597 	msgbuf.Copy(msgbuf);
   598 	TestNext((const char*)msgbuf.PtrZ());
   599 	SqlServerMultiSelectTest(KMultiSelectSql, TheSelectRecIds, KSelectRecCnt);
   600 
   601 	TestNext("SQL: insert a single record");
   602 	SqlServerSingleInsertTest(KSingleInsertSql, TheInsertRecId);
   603 
   604 	TestNext("SQL: update a single record");
   605 	SqlServerSingleUpdateTest(KSingleUpdateSql, TheUpdateRecId);
   606 
   607 	TestNext("SQL: delete a single record");
   608 	SqlServerSingleDeleteTest(KSingleDeleteSql, TheDeleteRecId);
   609 
   610 	TestNext("SQL: select a single record");
   611 	SqlServerSingleSelectTest(KSingleSelectSql, TheSelectRecId);
   612 
   613 	(void)RSqlDatabase::Delete(KTestDbName);
   614 	}
   615 
   616 static void DoSqliteLibraryTests(TPerfTestMode aPerfTestMode)
   617 	{
   618 	TEST(aPerfTestMode > EPerfTestSqlMode && aPerfTestMode < EPerfTestModeCnt);
   619 
   620 	SqliteInitialize(aPerfTestMode);
   621 
   622 	TestNext("SQLite: Create the test database");
   623 	CreateTestDatabase();
   624 
   625 	TBuf8<200> msgbuf;
   626 	_LIT8(KSqliteConfigSql, "\"SQL\"");
   627 	_LIT8(KSqliteConfigDefault, "\"Default\"");
   628 
   629 	msgbuf.Format(_L8("@SYMTestCaseID:SYSLIB-SQLITE3-UT-4018: SQLite, configuration: %S: insert %d records in a single transaction"),
   630 							aPerfTestMode == EPerfTestSqliteSqlMode ? &KSqliteConfigSql : &KSqliteConfigDefault, KInsertRecCnt);
   631 	TestNext((const char*)msgbuf.PtrZ());
   632 	SqliteMultiInsertTest(aPerfTestMode, KMultiInsertSql, KInsertRecCnt);
   633 
   634 	msgbuf.Format(_L8("@SYMTestCaseID:SYSLIB-SQLITE3-UT-4019: SQLite, configuration: %S: update %d records in a single transaction"),
   635 							aPerfTestMode == EPerfTestSqliteSqlMode ? &KSqliteConfigSql : &KSqliteConfigDefault, KUpdateRecCnt);
   636 	TestNext((const char*)msgbuf.PtrZ());
   637 	SqliteMultiUpdateTest(aPerfTestMode, KMultiUpdateSql, TheUpdateRecIds, KUpdateRecCnt);
   638 
   639 	msgbuf.Format(_L8("@SYMTestCaseID:SYSLIB-SQLITE3-UT-4020: SQLite, configuration: %S: delete %d records in a single transaction"),
   640 							aPerfTestMode == EPerfTestSqliteSqlMode ? &KSqliteConfigSql : &KSqliteConfigDefault, KDeleteRecCnt);
   641 	TestNext((const char*)msgbuf.PtrZ());
   642 	SqliteMultiDeleteTest(aPerfTestMode, KMultiDeleteSql, TheDeleteRecIds, KDeleteRecCnt);
   643 
   644 	msgbuf.Format(_L8("@SYMTestCaseID:SYSLIB-SQLITE3-UT-4021: SQLite, configuration: %S: select %d records"),
   645 							aPerfTestMode == EPerfTestSqliteSqlMode ? &KSqliteConfigSql : &KSqliteConfigDefault, KSelectRecCnt);
   646 	TestNext((const char*)msgbuf.PtrZ());
   647 	SqliteMultiSelectTest(aPerfTestMode, KMultiSelectSql, TheSelectRecIds, KSelectRecCnt);
   648 
   649 	msgbuf.Format(_L8("@SYMTestCaseID:SYSLIB-SQLITE3-UT-4022: SQLite, configuration: %S: insert a single record"),
   650 							aPerfTestMode == EPerfTestSqliteSqlMode ? &KSqliteConfigSql : &KSqliteConfigDefault);
   651 	TestNext((const char*)msgbuf.PtrZ());
   652 	SqliteSingleInsertTest(aPerfTestMode, KSingleInsertSql, TheInsertRecId);
   653 
   654 	msgbuf.Format(_L8("@SYMTestCaseID:SYSLIB-SQLITE3-UT-4023: SQLite, configuration: %S: update a single record"),
   655 							aPerfTestMode == EPerfTestSqliteSqlMode ? &KSqliteConfigSql : &KSqliteConfigDefault);
   656 	TestNext((const char*)msgbuf.PtrZ());
   657 	SqliteSingleUpdateTest(aPerfTestMode, KSingleUpdateSql, TheUpdateRecId);
   658 
   659 	msgbuf.Format(_L8("@SYMTestCaseID:SYSLIB-SQLITE3-UT-4024: SQLite, configuration: %S: delete a single record"),
   660 							aPerfTestMode == EPerfTestSqliteSqlMode ? &KSqliteConfigSql : &KSqliteConfigDefault);
   661 	TestNext((const char*)msgbuf.PtrZ());
   662 	SqliteSingleDeleteTest(aPerfTestMode, KSingleDeleteSql, TheDeleteRecId);
   663 
   664 	msgbuf.Format(_L8("@SYMTestCaseID:SYSLIB-SQLITE3-UT-4025: SQLite, configuration: %S: select a single record"),
   665 							aPerfTestMode == EPerfTestSqliteSqlMode ? &KSqliteConfigSql : &KSqliteConfigDefault);
   666 	TestNext((const char*)msgbuf.PtrZ());
   667 	SqliteSingleSelectTest(aPerfTestMode, KSingleSelectSql, TheSelectRecId);
   668 
   669 	(void)RSqlDatabase::Delete(KTestDbName);
   670 
   671 	SqliteFinalize(aPerfTestMode);
   672 	}
   673 
   674 static TBool IdIn(TInt aId, const TInt aData[], TInt aDataSize)
   675 	{
   676 	TEST(aId > 0);
   677 	TEST(aDataSize >= 0);
   678 	for(TInt i=0;i<aDataSize;++i)
   679 		{
   680 		TEST(aData[i] > 0);
   681 		if(aData[i] == aId)
   682 			{
   683 			return ETrue;
   684 			}
   685 		}
   686 	return EFalse;
   687 	}
   688 
   689 static void VerifyGeneratedRecIds()
   690 	{
   691 	TInt i;
   692 
   693 	for(i=0;i<KUpdateRecCnt;++i)
   694 		{
   695 		TEST(TheUpdateRecIds[i] > 0 && TheUpdateRecIds[i] <= KInsertRecCnt);
   696 		TEST(!IdIn(TheUpdateRecIds[i], TheUpdateRecIds, i));
   697 		TEST(!IdIn(TheUpdateRecIds[i], TheDeleteRecIds, KDeleteRecCnt));
   698 		TEST(!IdIn(TheUpdateRecIds[i], TheSelectRecIds, KSelectRecCnt));
   699 		}
   700 
   701 	for(i=0;i<KDeleteRecCnt;++i)
   702 		{
   703 		TEST(TheDeleteRecIds[i] > 0 && TheDeleteRecIds[i] <= KInsertRecCnt);
   704 		TEST(!IdIn(TheDeleteRecIds[i], TheDeleteRecIds, i));
   705 		TEST(!IdIn(TheDeleteRecIds[i], TheUpdateRecIds, KUpdateRecCnt));
   706 		TEST(!IdIn(TheDeleteRecIds[i], TheSelectRecIds, KSelectRecCnt));
   707 		}
   708 
   709 	for(i=0;i<KSelectRecCnt;++i)
   710 		{
   711 		TEST(TheSelectRecIds[i] > 0 && TheSelectRecIds[i] <= KInsertRecCnt);
   712 		TEST(!IdIn(TheSelectRecIds[i], TheSelectRecIds, i));
   713 		TEST(!IdIn(TheSelectRecIds[i], TheUpdateRecIds, KUpdateRecCnt));
   714 		TEST(!IdIn(TheSelectRecIds[i], TheDeleteRecIds, KDeleteRecCnt));
   715 		}
   716 
   717 	TEST(TheInsertRecId > 0);
   718 
   719 	TEST(TheUpdateRecId > 0 && TheUpdateRecId <= KInsertRecCnt);
   720 	TEST(!IdIn(TheUpdateRecId, TheUpdateRecIds, KUpdateRecCnt));
   721 	TEST(!IdIn(TheUpdateRecId, TheDeleteRecIds, KDeleteRecCnt));
   722 	TEST(!IdIn(TheUpdateRecId, TheSelectRecIds, KSelectRecCnt));
   723 
   724 	TEST(TheDeleteRecId > 0 && TheDeleteRecId <= KInsertRecCnt);
   725 	TEST(!IdIn(TheDeleteRecId, TheUpdateRecIds, KUpdateRecCnt));
   726 	TEST(!IdIn(TheDeleteRecId, TheDeleteRecIds, KDeleteRecCnt));
   727 	TEST(!IdIn(TheDeleteRecId, TheSelectRecIds, KSelectRecCnt));
   728 
   729 	TEST(TheSelectRecId > 0 && TheSelectRecId <= KInsertRecCnt);
   730 	TEST(!IdIn(TheSelectRecId, TheUpdateRecIds, KUpdateRecCnt));
   731 	TEST(!IdIn(TheSelectRecId, TheDeleteRecIds, KDeleteRecCnt));
   732 	TEST(!IdIn(TheSelectRecId, TheSelectRecIds, KSelectRecCnt));
   733 	}
   734 
   735 static void GenerateTestRecIds()
   736 	{
   737 	TTime now;
   738 	now.UniversalTime();
   739 	TInt64 seed = now.Int64();
   740 	TInt i;
   741 
   742 	//Update multi
   743 	for(i=0;i<KUpdateRecCnt;)
   744 		{
   745 		TInt id = Math::Rand(seed) % KInsertRecCnt;
   746 		if(id > 0 && !IdIn(id, TheUpdateRecIds, i))
   747 			{
   748 			TheUpdateRecIds[i++] = id;
   749 			}
   750 		}
   751 	//Delete multi
   752 	for(i=0;i<KDeleteRecCnt;)
   753 		{
   754 		TInt id = Math::Rand(seed) % KInsertRecCnt;
   755 		if(id > 0 && !IdIn(id, TheDeleteRecIds, i) && !IdIn(id, TheUpdateRecIds, KUpdateRecCnt))
   756 			{
   757 			TheDeleteRecIds[i++] = id;
   758 			}
   759 		}
   760 	//Select multi
   761 	for(i=0;i<KSelectRecCnt;)
   762 		{
   763 		TInt id = Math::Rand(seed) % KInsertRecCnt;
   764 		if(id > 0 && !IdIn(id, TheSelectRecIds, i) && !IdIn(id, TheUpdateRecIds, KUpdateRecCnt) &&
   765 		             !IdIn(id, TheDeleteRecIds, KDeleteRecCnt))
   766 			{
   767 			TheSelectRecIds[i++] = id;
   768 			}
   769 		}
   770 	//Insert one
   771 	TheInsertRecId = KInsertRecCnt + 1;
   772 	//Update one
   773 	for(;;)
   774 		{
   775 		TInt id = Math::Rand(seed) % KInsertRecCnt;
   776 		if(id > 0 && !IdIn(id, TheUpdateRecIds, KUpdateRecCnt) && !IdIn(id, TheDeleteRecIds, KDeleteRecCnt) &&
   777 		             !IdIn(id, TheSelectRecIds, KSelectRecCnt))
   778 			{
   779 			TheUpdateRecId = id;
   780 			break;
   781 			}
   782 		}
   783 	//Delete one
   784 	for(;;)
   785 		{
   786 		TInt id = Math::Rand(seed) % KInsertRecCnt;
   787 		if(id > 0 && id != TheUpdateRecId && !IdIn(id, TheUpdateRecIds, KUpdateRecCnt) &&
   788 		                                     !IdIn(id, TheDeleteRecIds, KDeleteRecCnt) && !IdIn(id, TheSelectRecIds, KSelectRecCnt))
   789 			{
   790 			TheDeleteRecId = id;
   791 			break;
   792 			}
   793 		}
   794 	//Select one
   795 	for(;;)
   796 		{
   797 		TInt id = Math::Rand(seed) % KInsertRecCnt;
   798 		if(id > 0 && id != TheUpdateRecId && id != TheDeleteRecId && !IdIn(id, TheUpdateRecIds, KUpdateRecCnt) &&
   799 		                                                             !IdIn(id, TheDeleteRecIds, KDeleteRecCnt) &&
   800 		                                                             !IdIn(id, TheSelectRecIds, KSelectRecCnt))
   801 			{
   802 			TheSelectRecId = id;
   803 			break;
   804 			}
   805 		}
   806 	}
   807 
   808 static void DoTests()
   809 	{
   810 	TestStart("Get fast counter frequency");
   811 	GetFastCounterFrequency();
   812 
   813 	TestNext("Generate test record ids");
   814 	GenerateTestRecIds();
   815 
   816 	TestNext("Verify generated test record ids");
   817 	VerifyGeneratedRecIds();
   818 
   819 	DoSqlServerTests();
   820 	(void)KillProcess(KSqlSrvName);
   821 
   822 	DoSqliteLibraryTests(EPerfTestSqliteDefaultMode);
   823 	
   824 	DoSqliteLibraryTests(EPerfTestSqliteSqlMode);
   825 
   826 	PrintPerfTestResults();
   827 	}
   828 
   829 TInt E32Main()
   830 	{
   831 	TestOpen(KTestName);
   832 	TestTitle();
   833 
   834 	CTrapCleanup* tc = CTrapCleanup::New();
   835 
   836 	__UHEAP_MARK;
   837 
   838 	CreateTestDir();
   839 	DeleteTestFiles();
   840 	DoTests();
   841 	DeleteTestFiles();
   842 
   843 	__UHEAP_MARKEND;
   844 
   845 	TestEnd();
   846 	TestClose();
   847 
   848 	delete tc;
   849 
   850 	User::Heap().Check();
   851 	return KErrNone;
   852 	}