Update contrib.
1 // Copyright (c) 1998-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.
21 static RTest TheTest(_L("t_dbtrans: Test DBMS transactions"));
22 static RDbTable TheTable;
25 static RDbNamedDatabase TheDatabase;
27 static TFileName TheTestDbFileName;
29 const TPtrC KTableName(_S("table"));
30 const TPtrC KIndexInt=_S("int");
31 const TPtrC KIndexText=_S("text");
32 const TPtrC KColumnInt=_S("int");
33 const TPtrC KColumnText=_S("text");
34 const TPtrC KColumnComment=_S("comment");
35 const TPtrC KCommentValue=_S("abcdefghijklmnopqrstuvwxyz");
36 const TInt KRecords=2000;
38 ///////////////////////////////////////////////////////////////////////////////////////
40 static void CloseAll()
47 ///////////////////////////////////////////////////////////////////////////////////////
49 //Delete "aFullName" file.
50 static void DeleteFile(const TDesC& aFullName)
53 TInt err = fsSession.Connect();
57 if(fsSession.Entry(aFullName, entry) == KErrNone)
59 err = fsSession.SetAtt(aFullName, 0, KEntryAttReadOnly);
62 TheTest.Printf(_L("Error %d changing \"%S\" file attributes.\n"), err, &aFullName);
64 err = fsSession.Delete(aFullName);
67 TheTest.Printf(_L("Error %d deleting \"%S\" file.\n"), err, &aFullName);
74 TheTest.Printf(_L("Error %d connecting file session. File: %S.\n"), err, &aFullName);
78 ///////////////////////////////////////////////////////////////////////////////////////
80 static void DestroyTestEnv()
83 DeleteFile(TheTestDbFileName);
87 ///////////////////////////////////////////////////////////////////////////////////////
88 //Tests macros and functions.
89 //If (!aValue) then the test will be panicked, the test data files will be deleted.
90 static void Check(TInt aValue, TInt aLine)
94 TheTest.Printf(_L("*** Boolean expression evaluated to false!\r\n"));
96 TheTest(EFalse, aLine);
99 //If (aValue != aExpected) then the test will be panicked, the test data files will be deleted.
100 static void Check(TInt aValue, TInt aExpected, TInt aLine)
102 if(aValue != aExpected)
104 TheTest.Printf(_L("*** Expected error: %d, got: %d\r\n"), aExpected, aValue);
106 TheTest(EFalse, aLine);
109 //Use these to test conditions.
110 #define TEST(arg) ::Check((arg), __LINE__)
111 #define TEST2(aValue, aExpected) ::Check(aValue, aExpected, __LINE__)
113 //////////////////////////////////////////////////////
115 static TInt TheCounterFreq = -10000000;
116 const TInt KMicroSecIn1Sec = 1000000;
118 TUint32 CalcTickDiff(TUint32 aStartTicks, TUint32 aEndTicks)
120 TInt64 diffTicks = (TInt64)aEndTicks - (TInt64)aStartTicks;
123 diffTicks = KMaxTUint32 + diffTicks + 1;
125 return (TUint32)diffTicks;
128 //Prints aFastCount parameter (converted to us)
129 void PrintFcDiffAsUs(const TDesC& aFormatStr, TUint32 aFastCount)
131 if(TheCounterFreq <= 0)
133 TEST2(HAL::Get(HAL::EFastCounterFrequency, TheCounterFreq), KErrNone);
134 TheTest.Printf(_L("Counter frequency=%d Hz\r\n"), TheCounterFreq);
136 double v = ((double)aFastCount * KMicroSecIn1Sec) / (double)TheCounterFreq;
138 TheTest.Printf(aFormatStr, v2);
141 ///////////////////////////////////////////////////////////////////////////////////////
144 // Prepare the test directory.
148 TInt err = TheFs.Connect();
149 TheTest(err == KErrNone);
151 err = TheFs.MkDirAll(TheTestDbFileName);
152 TEST(err == KErrNone || err == KErrAlreadyExists);
155 ///////////////////////////////////////////////////////////////////////////////////////
161 Progress(TInt aCount);
162 void Next(TInt aStep);
168 Progress::Progress(TInt aCount)
169 : iCount(aCount),iPos(0)
172 void Progress::Next(TInt aStep)
174 TInt next=(ETotal*(iCount-aStep))/iCount;
181 static void ProgressInc(RDbIncremental& inc,TInt aCount)
183 Progress progress(aCount);
187 progress.Next(aCount);
193 // Create the database
195 static void CreateDatabase()
197 TInt err = TheDatabase.Replace(TheFs, TheTestDbFileName);
198 TEST2(err, KErrNone);
202 // Create the database
204 static void OpenDatabase()
206 TInt err = TheDatabase.Open(TheFs, TheTestDbFileName);
207 TEST2(err, KErrNone);
210 static void CloseDatabase()
215 static void CreateTable()
217 TInt err = TheDatabase.Execute(_L("create table table (int integer,text varchar(8),comment varchar)"));
218 TEST2(err, KErrNone);
221 static void WriteRecordsL(TInt aCount)
223 Progress write(aCount);
224 TDbColNo cInt,cText,cComment;
225 CDbColSet* set=TheTable.ColSetL();
226 cInt=set->ColNo(KColumnInt);
227 cText=set->ColNo(KColumnText);
228 cComment=set->ColNo(KColumnComment);
232 for (TInt ii=0;ii<aCount;++ii)
238 TheTable.SetColL(cInt,jj);
240 TheTable.SetColL(cText,text);
241 TheTable.SetColL(cComment,KCommentValue);
243 write.Next(aCount-ii-1);
247 static TUint FileSize()
250 TEST2(TheFs.Entry(TheTestDbFileName, entry), KErrNone);
254 static void BuildTableL(TInt aCount, TBool aTransactions, TUint32& aTicks, TUint& aSize)
256 TUint size = FileSize();
257 TUint fc = User::FastCounter();
263 TEST2(TheTable.Open(TheDatabase, KTableName), KErrNone);
264 WriteRecordsL(aCount);
267 TEST2(TheDatabase.Commit(), KErrNone);
270 aTicks = CalcTickDiff(fc, User::FastCounter());
271 aSize = FileSize() - size;
274 static void Execute(const TDesC& aSql)
278 TEST2(inc.Execute(TheDatabase,aSql,step), KErrNone);
279 ProgressInc(inc,step);
282 static void BreakIndexL()
285 TEST2(TheTable.Open(TheDatabase,KTableName), KErrNone);
287 TheTable.SetColL(1,-1);
290 TheDatabase.Rollback();
291 TEST(TheDatabase.IsDamaged());
294 LOCAL_C void Recover()
298 TEST2(rec.Recover(TheDatabase,step), KErrNone);
299 ProgressInc(rec,step);
300 TEST(!TheDatabase.IsDamaged());
304 @SYMTestCaseID SYSLIB-DBMS-CT-0637
305 @SYMTestCaseDesc Streaming conversions test
306 @SYMTestPriority Medium
307 @SYMTestActions Test the database definition and enquiry functions
308 @SYMTestExpectedResults Test must not fail
313 TheTest.Start(_L(" @SYMTestCaseID:SYSLIB-DBMS-CT-0637 Build without transactions "));
317 BuildTableL(KRecords, EFalse, ticks1, size1);
320 TheTest.Next(_L("Build with transactions"));
324 BuildTableL(KRecords, ETrue, ticks2, size2);
326 PrintFcDiffAsUs(_L("#### Without transactions, time=%d us\n"), ticks1);
327 PrintFcDiffAsUs(_L("#### With transactions, time=%d us\n"), ticks2);
328 TheTest.Printf(_L("Transaction performance ratio (without trn:with trn): time %4.2f, size %4.2f\n"), TReal(ticks1) / TReal(ticks2), TReal(size1) / TReal(size2));
330 TheTest.Next(_L("Build Int index"));
331 Execute(_L("create unique index int on table (int)"));
333 TheTest.Next(_L("Break index"));
336 TheTest.Next(_L("Build Text index"));
337 Execute(_L("create unique index text on table (text)"));
339 TheTest.Next(_L("Recover"));
340 TEST(TheDatabase.IsDamaged());
344 TEST(TheDatabase.IsDamaged());
347 TheTest.Next(_L("Drop table"));
348 Execute(_L("drop table table"));
352 //Usage: "t_trans [<drive letter>:]]"
357 CTrapCleanup* tc = CTrapCleanup::New();
361 User::CommandLine(cmdline);
365 _LIT(KTestDatabase, "C:\\DBMS-TST\\T_TRANS.DB");
366 parse.Set(cmdline, &KTestDatabase, 0);
367 TheTestDbFileName.Copy(parse.FullName());
373 TEST2(err, KErrNone);