Update contrib.
1 // Copyright (c) 2009-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".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
12 // NTT DOCOMO, INC - Fix for Bug 3170 "SQL library test T_SQLPERFORMANCE4 fails with USER 84 panic"
21 #include "t_sqlcmdlineutil.h"
23 ///////////////////////////////////////////////////////////////////////////////////////
25 RTest TheTest(_L("t_sqlperformance4 test"));
29 _LIT(KCDriveDatabase, "c:[a000017f]t_sqlperformance4.db");
31 TFileName TheDbFileName;
32 TBuf<200> TheTestTitle;
33 TCmdLineParams TheCmdLineParams;
34 TBuf8<200> TheSqlConfigString;
37 _LIT(KUtf16, "UTF16");
39 _LIT(KMusicCreateTable, "CREATE TABLE Music("
40 L"UniqueId INTEGER PRIMARY KEY,"
43 L"Title TEXT COLLATE NOCASE,"
46 L"Deleted INTEGER DEFAULT 0,"
48 L"AlbumTrack INTEGER,"
49 L"PlayCount INTEGER DEFAULT 0,"
51 L"TimePlayed TEXT DEFAULT '',"
53 L"Sync INTEGER DEFAULT 0,"
54 L"Modified INTEGER DEFAULT 0,"
58 L"ReleaseDate TEXT DEFAULT '',"
64 L"LastPlayPosition INTEGER DEFAULT 0,"
65 L"SampleRate INTEGER,"
67 L"NumChannels INTEGER,"
70 L"MTPDrmStatus INTEGER)");
72 _LIT(KAuxiliaryCreateTable, "CREATE TABLE Auxiliary("
75 L"TimeRefreshed TEXT,"
77 L"Corrupt INTEGER DEFAULT 0,"
78 L"SaveDeletedRecordCount INTEGER DEFAULT 0)");
80 _LIT(KAlbumCreateTable,"CREATE TABLE Album("
81 L"UniqueId INTEGER PRIMARY KEY,"
82 L"Name TEXT COLLATE NOCASE,"
87 _LIT(KArtistCreateTable,"CREATE TABLE Artist("
88 L"UniqueId INTEGER PRIMARY KEY,"
89 L"Name TEXT COLLATE NOCASE,"
90 L"SongCount INTEGER)");
92 _LIT(KComposerCreateTable,"CREATE TABLE Composer("
93 L"UniqueId INTEGER PRIMARY KEY,"
94 L"Name TEXT COLLATE NOCASE,"
95 L"SongCount INTEGER)");
97 _LIT(KGenreCreateTable,"CREATE TABLE Genre("
98 L"UniqueId INTEGER PRIMARY KEY,"
99 L"Name TEXT COLLATE NOCASE,"
100 L"SongCount INTEGER)");
102 _LIT(KPlaylistCreateTable, "CREATE TABLE Playlist("
103 L"UniqueId INTEGER PRIMARY KEY,"
107 L"Name TEXT COLLATE NOCASE,"
111 _LIT(KPlaylistSongsCreateTable, "CREATE TABLE PlaylistSongs("
112 L"UniqueId INTEGER PRIMARY KEY AUTOINCREMENT,"
114 L"PlaylistId INTEGER,"
115 L"Ordinal INTEGER)");
117 _LIT(KPlaylistSongInfoCreateTable, "CREATE TABLE PlaylistSongInfo("
118 L"SongId INTEGER PRIMARY KEY,"
122 L"Title TEXT COLLATE NOCASE)");
125 _LIT(KBeginTransaction, "BEGIN TRANSACTION");
126 _LIT(KCommitTransaction, "COMMIT TRANSACTION");
128 ///////////////////////////////////////////////////////////////////////////////////////
130 void TestEnvDestroy()
133 (void)RSqlDatabase::Delete(TheDbFileName);
137 ///////////////////////////////////////////////////////////////////////////////////////
138 ///////////////////////////////////////////////////////////////////////////////////////
139 //Test macros and functions
140 void Check1(TInt aValue, TInt aLine)
145 TheTest.Printf(_L("*** Line %d\r\n"), aLine);
146 TheTest(EFalse, aLine);
149 void Check2(TInt aValue, TInt aExpected, TInt aLine)
151 if(aValue != aExpected)
154 TheTest.Printf(_L("*** Line %d, Expected error: %d, got: %d\r\n"), aLine, aExpected, aValue);
155 TheTest(EFalse, aLine);
158 #define TEST(arg) ::Check1((arg), __LINE__)
159 #define TEST2(aValue, aExpected) ::Check2(aValue, aExpected, __LINE__)
162 TInt GetDuration(TUint32 aStartTicks, TUint32 aEndTicks)
164 static TInt freq = 0;
167 HAL::Get(HAL::EFastCounterFrequency, freq);
169 TInt64 diffTicks = (TInt64)aEndTicks - (TInt64)aStartTicks;
172 diffTicks = KMaxTUint32 + diffTicks + 1;
174 const TInt KMicroSecIn1Sec = 1000000;
176 return ((diffTicks * KMicroSecIn1Sec) / freq);
179 ///////////////////////////////////////////////////////////////////////////////////////
181 void CreateDatabaseL(const TDesC& aDbName)
183 // create the database now
184 RSqlSecurityPolicy securityPolicy;
185 CleanupClosePushL(securityPolicy);
187 TSecurityPolicy policy(TSecurityPolicy::EAlwaysPass);
188 securityPolicy.Create(policy);
190 TSecurityPolicy schemaPolicy(TSecurityPolicy::EAlwaysPass);
191 TSecurityPolicy readPolicy(TSecurityPolicy::EAlwaysPass);
192 TSecurityPolicy writePolicy(TSecurityPolicy::EAlwaysPass);
194 User::LeaveIfError(securityPolicy.SetDbPolicy(RSqlSecurityPolicy::ESchemaPolicy, schemaPolicy));
195 User::LeaveIfError(securityPolicy.SetDbPolicy(RSqlSecurityPolicy::EReadPolicy, readPolicy));
196 User::LeaveIfError(securityPolicy.SetDbPolicy(RSqlSecurityPolicy::EWritePolicy, writePolicy));
198 TheTest.Printf(_L("Creating Database %S\n"), &aDbName);
200 TInt err = TheDbC.Create(aDbName, securityPolicy, &TheSqlConfigString);
202 if (KErrAlreadyExists == err)
205 // the file already exists
206 // make sure we delete the file
207 User::LeaveIfError(TheDbC.Delete(aDbName));
210 err = TheDbC.Create(aDbName, securityPolicy, &TheSqlConfigString);
214 User::LeaveIfError(err);
217 User::LeaveIfError(TheDbC.Exec(KMusicCreateTable));
218 User::LeaveIfError(TheDbC.Exec(KAuxiliaryCreateTable));
219 User::LeaveIfError(TheDbC.Exec(KAlbumCreateTable));
220 User::LeaveIfError(TheDbC.Exec(KArtistCreateTable));
221 User::LeaveIfError(TheDbC.Exec(KComposerCreateTable));
222 User::LeaveIfError(TheDbC.Exec(KGenreCreateTable));
223 User::LeaveIfError(TheDbC.Exec(KPlaylistCreateTable));
224 User::LeaveIfError(TheDbC.Exec(KPlaylistSongInfoCreateTable));
225 User::LeaveIfError(TheDbC.Exec(KPlaylistSongsCreateTable));
229 CleanupStack::PopAndDestroy(&securityPolicy);
235 TInt err = TheFs.Connect();
236 TEST2(err, KErrNone);
238 //Create database files
239 TRAP(err,CreateDatabaseL(TheDbFileName));
240 TEST2(err, KErrNone);
245 ///////////////////////////////////////////////////////////////////////////////////////
247 @SYMTestCaseID PDS-SQL-UT-4151
248 @SYMTestCaseDesc Measures the performance of inserting multiple records
249 into the Music Player MPX database. This test is based on
250 a real Music Player Harvesting use case
251 @SYMTestPriority Medium
252 @SYMTestActions Reads SQL transactions from a file and executes them.
253 Records the time for executing each statement
254 @SYMTestExpectedResults All statements should be executed without error and
255 performance measurements logged
260 //Open the file with the sql statements
261 _LIT(KSqlFileName,"z:\\test\\t_sqlperformance4.sql");
263 TInt err = sqlFile.Open(TheFs, KSqlFileName, EFileRead);
264 TEST2(err, KErrNone);
267 err = sqlFile.Size(fileLen);
268 TEST2(err, KErrNone);
270 HBufC8* sqlBuf = HBufC8::New(fileLen);
271 TEST(sqlBuf != NULL);
272 TPtr8 sql = sqlBuf->Des();
273 err = sqlFile.Read(sql);
276 TEST2(err, KErrNone);
277 TEST2(sql.Length(), fileLen);
280 err = TheDbC.Open(TheDbFileName, &TheSqlConfigString);
281 TEST2(err, KErrNone);
283 TheTest.Printf(_L("Beginning INSERTS...\n"));
285 const TInt KRecordCount = 6544;
286 TInt recordCount = 0;
293 TInt insertTrnCnt = 0;
294 TInt updateTrnCnt = 0;
295 TInt selectTrnCnt = 0;
297 for(;sql.Length()>0;)
299 TInt eolPos = sql.Locate(TChar('\n'));
302 break;//No more SQL statements
304 TInt stmtLength = eolPos;
305 while (stmtLength > 0 && (sql[stmtLength-1] == '\r'))
307 --stmtLength; //Reduce length to remove carriage return characters from the end of the statement string
309 TPtrC8 sqlStmt8(sql.Ptr(), stmtLength);
310 TPtrC8 ptr = sql.Mid(eolPos + 1);//"eolPos + 1" - first character after '\n'
311 sql.Set(const_cast <TUint8*> (ptr.Ptr()), ptr.Length(), ptr.Length());
314 //Convert to 16 bit query string
316 query.Copy(sqlStmt8);
318 //Execute the statement
319 TInt start = User::FastCounter();
320 err = TheDbC.Exec(query);
321 TInt end = User::FastCounter();
325 //Get the execution time for that statement
326 TInt duration = GetDuration(start, end);
327 totalTime += duration;
329 if(query == KBeginTransaction)
331 TheTest.Printf(_L("Execute Statement - BEGIN: %d us\n"), duration);
334 else if(query == KCommitTransaction)
337 TheTest.Printf(_L("Execute Statement - COMMIT: %d us, Trn#%d, \"INSERT\" count: %d, \"UPDATE\" count: %d, \"SELECT\" count: %d\n"),
338 duration, trnCnt, insertTrnCnt, updateTrnCnt, selectTrnCnt);
339 insertTrnCnt = updateTrnCnt = selectTrnCnt = 0;
344 TPtrC queryType(query.Ptr(), 6);
345 TheTest.Printf(_L("Execute Statement - %S: %d us\n"),&queryType, duration);
346 if(queryType.FindF(_L("INSERT")) >= 0)
351 else if(queryType.FindF(_L("UPDATE")) >= 0)
356 else if(queryType.FindF(_L("SELECT")) >= 0)
367 TheTest.Printf(_L("Total time to process Songs: %d us\n"), totalTime);
368 TheTest.Printf(_L("Transactions count: %d, \"INSERT\" count: %d, \"UPDATE\" count: %d, \"SELECT\" count: %d\n"),
369 trnCnt, insertCnt, updateCnt, selectCnt);
370 TEST2(recordCount, KRecordCount);
372 ///////////////////////////////////////////////////////////////////////////////////
373 ///////////////////////////////////////////////////////////////////////////////////
377 TheTestTitle.Format(_L("@SYMTestCaseID:PDS-SQL-UT-4151; SQL Music Player Db Performance Test, encoding: \"%S\", page size: %d\r\n"),
378 TheCmdLineParams.iDbEncoding == TCmdLineParams::EDbUtf16 ? &KUtf16 : &KUtf8, TheCmdLineParams.iPageSize);
379 TheTest.Start(TheTestTitle);
388 CTrapCleanup* tc = CTrapCleanup::New();
393 GetCmdLineParamsAndSqlConfigString(TheTest, _L("t_sqlperformance4"), TheCmdLineParams, TheSqlConfigString);
394 PrepareDbName(KCDriveDatabase, TheCmdLineParams.iDriveName, TheDbFileName);
396 TheTest.Printf(_L("==Databases: %S\r\n"), &TheDbFileName);
411 User::Heap().Check();