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.
22 // MSVC++ up to 5.0 has problems with expanding inline functions
23 // This disables the mad warnings for the whole project
24 #if defined(NDEBUG) && defined(__VC32__) && _MSC_VER<=1100
25 #pragma warning(disable : 4710) // function not expanded. MSVC 5.0 is stupid
28 LOCAL_D RTest test(_L("t_dbindex - Test DBMS indexing and ordering"));
29 LOCAL_D CTrapCleanup* TheTrapCleanup;
31 LOCAL_D RDbNamedDatabase TheDatabase;
32 LOCAL_D RDbTable TheTable;
33 LOCAL_D RDbView TheView;
35 LOCAL_D TBuf<0x200> TheBuf;
37 const TInt KTestCleanupStack=0x20;
38 const TPtrC KTestDatabase=_L("C:\\DBMS-TST\\T_INDEX.DB");
39 const TPtrC KTableName(_S("Table"));
40 const TPtrC KIndexName(_S("index"));
41 const TPtrC KIndexTwo(_S("index_two"));
42 const TPtrC KColumnName(_S("column"));
43 const TPtrC KColumnTwo(_S("column2"));
45 const TPtrC KTableName1(_S("Table1"));
46 const TPtrC KColumnName1(_S("column1"));
47 const TPtrC KIndexName1(_S("index1"));
49 const TPtrC KSelectOrdered(_L("select column from table order by column"));
51 #define elementsof(array) (sizeof(array)/sizeof(array[0]))
53 void Check(TInt aValue,TInt aExpected,TInt aLine)
55 if (aValue!=aExpected)
57 test.Printf(_L("*** Expected %d: got %d\r\n"),aExpected,aValue);
58 test.operator()(EFalse,aLine);
61 #define test2(a,b) Check(a,b,__LINE__)
64 // Open the database (shared access) (SYMBIAN_REMOVE_TRIVIAL_ENCRYPTION version)
66 LOCAL_C void OpenDatabase()
68 TInt r=TheDatabase.Open(TheDbs,KTestDatabase);
73 // Create the database (SYMBIAN_REMOVE_TRIVIAL_ENCRYPTION version)
75 LOCAL_C void CreateDatabase()
77 TInt r=TheDatabase.Replace(TheFs,KTestDatabase);
84 LOCAL_C void CloseDatabase()
90 @SYMTestCaseID SYSLIB-DBMS-CT-0618
91 @SYMTestCaseDesc Tests for RDbNamedDatabase functionality
92 @SYMTestPriority Medium
93 @SYMTestActions Tests for RDbNamedDatabase::CreateIndex()
94 @SYMTestExpectedResults Test must not fail
97 LOCAL_C void TestIndexBuildL()
99 test.Start(_L(" @SYMTestCaseID:SYSLIB-DBMS-CT-0618 Create table "));
101 CDbColSet *cs=CDbColSet::NewLC();
102 cs->AddL(TDbCol(KColumnName,EDbColInt32));
103 cs->AddL(TDbCol(KColumnTwo,EDbColInt32));
104 test(TheDatabase.CreateTable(KTableName,*cs)==KErrNone);
105 CleanupStack::PopAndDestroy();
106 test.Next(_L("create indices"));
107 CDbKey *key=CDbKey::NewLC();
108 key->AddL(TDbKeyCol(KColumnName));
110 test(TheDatabase.CreateIndex(KIndexName,KTableName,*key)==KErrNone);
112 key->AddL(TDbKeyCol(KColumnTwo));
114 test(TheDatabase.CreateIndex(KIndexTwo,KTableName,*key)==KErrNone);
115 CleanupStack::PopAndDestroy();
116 test.Next(_L("Populate table"));
117 test(TheTable.Open(TheDatabase,KTableName)==KErrNone);
119 TheTable.SetColL(1,1);
120 TheTable.SetColL(2,-1);
123 TheTable.SetColL(1,2);
124 TheTable.SetColL(2,-2);
126 test(TheDatabase.Commit()==KErrNone);
127 test.Next(_L("Check order"));
128 test(TheTable.SetNoIndex()==KErrNone);
129 test(TheTable.SetIndex(KIndexName)==KErrNone);
130 test(TheTable.CountL()==2);
131 test(TheTable.NextL());
133 test(TheTable.ColInt(1)==1);
134 test(TheTable.NextL());
136 test(TheTable.ColInt(1)==2);
137 test(!TheTable.NextL());
138 test(TheTable.SetIndex(KIndexTwo)==KErrNone);
139 test(TheTable.CountL()==2);
140 test(TheTable.NextL());
142 test(TheTable.ColInt(1)==2);
143 test(TheTable.NextL());
145 test(TheTable.ColInt(1)==1);
146 test(!TheTable.NextL());
147 test(TheTable.SetNoIndex()==KErrNone);
148 test(TheTable.CountL()==2);
149 test(TheTable.NextL());
150 test(TheTable.NextL());
151 test(!TheTable.NextL());
153 test.Next(_L("Drop indices"));
154 test(TheDatabase.DropIndex(KIndexTwo,KTableName)==KErrNone);
155 test(TheTable.Open(TheDatabase,KTableName)==KErrNone);
156 test(TheTable.SetIndex(KIndexName)==KErrNone);
157 test(TheTable.SetIndex(KIndexTwo)!=KErrNone);
159 test(TheDatabase.DropIndex(KIndexName,KTableName)==KErrNone);
160 test(TheTable.Open(TheDatabase,KTableName)==KErrNone);
161 test(TheTable.SetIndex(KIndexName)!=KErrNone);
162 test(TheTable.SetIndex(KIndexTwo)!=KErrNone);
164 test(TheDatabase.DropTable(KTableName)==KErrNone);
168 LOCAL_C TInt CountRowsL()
171 while (TheTable.NextL())
177 @SYMTestCaseID SYSLIB-DBMS-CT-0619
178 @SYMTestCaseDesc RDbNamedDatabase::Execute() function test
179 @SYMTestPriority Medium
180 @SYMTestActions Tests for CREATE TABLE,CREATE INDEX and CREATE UNIQUE INDEX query
181 @SYMTestExpectedResults Test must not fail
184 LOCAL_C void TestPersistenceL()
186 test.Start(_L(" @SYMTestCaseID:SYSLIB-DBMS-CT-0619 Create table "));
188 test(TheDatabase.Execute(_L("CREATE TABLE Table (column CHAR(120) NOT NULL)"))==KErrNone);
189 test(TheTable.Open(TheDatabase,KTableName)==KErrNone);
191 TheTable.SetColL(1,_L("a"));
194 TheTable.SetColL(1,_L("b"));
197 TheTable.SetColL(1,_L("c"));
200 TheTable.SetColL(1,_L("d"));
203 TheTable.SetColL(1,_L("e"));
206 test(TheDatabase.Commit()==KErrNone);
207 test.Next(_L("Build indices"));
208 test (TheDatabase.Execute(_L("CREATE INDEX index ON table (column ASC)"))==KErrNone);
209 test (TheDatabase.Execute(_L("CREATE UNIQUE INDEX index_two ON table (column DESC)"))==KErrNone);
210 test.Next(_L("Close and re-open database"));
213 test.Next(_L("Check indices"));
214 CDbKey* key=TheDatabase.KeyL(KIndexName,KTableName);
215 test (key->Count()==1);
216 test (key->Comparison()==EDbCompareNormal);
217 test (!key->IsUnique());
218 test ((*key)[0].iName.CompareF(KColumnName)==0);
219 test ((*key)[0].iOrder==TDbKeyCol::EAsc);
221 key=TheDatabase.KeyL(KIndexTwo,KTableName);
222 test (key->Count()==1);
223 test (key->Comparison()==EDbCompareNormal);
224 test (key->IsUnique());
225 test ((*key)[0].iName.CompareF(KColumnName)==0);
226 test ((*key)[0].iOrder==TDbKeyCol::EDesc);
228 test(TheTable.Open(TheDatabase,KTableName)==KErrNone);
229 test(TheTable.SetNoIndex()==KErrNone);
230 test(CountRowsL()==5);
231 test(TheTable.CountL()==5);
232 test(TheTable.SetIndex(KIndexName)==KErrNone);
233 test(TheTable.CountL()==5);
234 test(CountRowsL()==5);
235 test(TheTable.SetIndex(KIndexTwo)==KErrNone);
236 test(TheTable.CountL()==5);
237 test(CountRowsL()==5);
239 test.Next(_L("Drop indices"));
241 test (TheDatabase.Execute(_L("DROP INDEX index_two FROM table"))==KErrNone);
242 test (TheDatabase.Execute(_L("DROP INDEX index FROM table"))==KErrNone);
243 test (TheDatabase.Execute(_L("DROP TABLE table"))==KErrNone);
244 test(TheDatabase.Commit()==KErrNone);
248 LOCAL_C void BuildTablePrologL(TDbColType aType,TInt aAttribs=0)
251 CDbColSet *cs=CDbColSet::NewLC();
252 TDbCol col(KColumnName,aType);
253 col.iAttributes=aAttribs;
255 test(TheDatabase.CreateTable(KTableName,*cs)==KErrNone);
256 CleanupStack::PopAndDestroy();
257 test(TheTable.Open(TheDatabase,KTableName)==KErrNone);
260 inline void SetColL(RDbRowSet& aSet,TDbColNo col,const TInt& aValue)
261 {aSet.SetColL(col,aValue);}
262 inline void SetColL(RDbRowSet& aSet,TDbColNo col,const TUint& aValue)
263 {aSet.SetColL(col,aValue);}
264 inline void SetColL(RDbRowSet& aSet,TDbColNo col,const TInt64& aValue)
265 {aSet.SetColL(col,aValue);}
266 inline void SetColL(RDbRowSet& aSet,TDbColNo col,const TReal32& aValue)
267 {aSet.SetColL(col,aValue);}
268 inline void SetColL(RDbRowSet& aSet,TDbColNo col,const TReal64& aValue)
269 {aSet.SetColL(col,aValue);}
270 inline void SetColL(RDbRowSet& aSet,TDbColNo col,const TTime& aValue)
271 {aSet.SetColL(col,aValue);}
272 inline void SetColL(RDbRowSet& aSet,TDbColNo col,const TPtrC& aValue)
273 {aSet.SetColL(col,aValue);}
276 void BuildTableL(TDbColType aType,TInt aAttribs,T aValues[],TInt aCount)
278 BuildTablePrologL(aType,aAttribs);
279 for (TInt ii=0;ii<aCount;++ii)
282 SetColL(TheTable,1,aValues[ii]);
285 test(TheDatabase.Commit()==KErrNone);
286 test (TheTable.CountL()==aCount);
291 @SYMTestCaseID SYSLIB-DBMS-CT-0620
292 @SYMTestCaseDesc Setting the specified index as the active index for a table test
293 @SYMTestPriority Medium
294 @SYMTestActions Create an index and set as active index for the table.
295 Tests for RDbNamedDatabase::CreateIndex(),RDbNamedDatabase::Commit()
296 RDbTable::Open(),RDbTable::SetIndex() functions.
297 @SYMTestExpectedResults Test must not fail
300 LOCAL_C void BuildIndexL(TDbTextComparison aComparison=EDbCompareNormal,TInt aLength=KDbUndefinedLength)
302 test.Next(_L(" @SYMTestCaseID:SYSLIB-DBMS-CT-0620 Test index order "));
304 CDbKey *key=CDbKey::NewLC();
305 key->AddL(TDbKeyCol(KColumnName,aLength));
307 key->SetComparison(aComparison);
308 test(TheDatabase.CreateIndex(KIndexName,KTableName,*key)==KErrNone);
309 CleanupStack::PopAndDestroy();
310 test (TheDatabase.Commit()==KErrNone);
311 test(TheTable.Open(TheDatabase,KTableName)==KErrNone);
312 test(TheTable.SetIndex(KIndexName)==KErrNone);
315 inline void GetCol(RDbRowSet& aSet,TDbColNo col,TInt& aValue)
316 {aValue=aSet.ColInt(col);}
317 inline void GetCol(RDbRowSet& aSet,TDbColNo col,TUint& aValue)
318 {aValue=aSet.ColUint(col);}
319 inline void GetCol(RDbRowSet& aSet,TDbColNo col,TInt64& aValue)
320 {aValue=aSet.ColInt64(col);}
321 inline void GetCol(RDbRowSet& aSet,TDbColNo col,TReal32& aValue)
322 {aValue=aSet.ColReal32(col);}
323 inline void GetCol(RDbRowSet& aSet,TDbColNo col,TReal64& aValue)
324 {aValue=aSet.ColReal64(col);}
325 inline void GetCol(RDbRowSet& aSet,TDbColNo col,TTime& aValue)
326 {aValue=aSet.ColTime(col);}
329 @SYMTestCaseID SYSLIB-DBMS-CT-0621
330 @SYMTestCaseDesc RDbRowSet ordering test
331 @SYMTestPriority Medium
332 @SYMTestActions Reorder the row set data with RDbRowSet::GetL(),SetL() functions.
333 @SYMTestExpectedResults Test must not fail
337 void TestOrderingL(RDbRowSet& aSet,T,TInt aCount)
339 test.Next( _L( " @SYMTestCaseID:SYSLIB-DBMS-CT-0621 " ) );
340 test(aSet.CountL()==aCount);
353 GetCol(aSet,1,current);
362 @SYMTestCaseID SYSLIB-DBMS-CT-0622
363 @SYMTestCaseDesc RDbTable::SeekL() function test
364 @SYMTestPriority Medium
365 @SYMTestActions Tests for the retrieved column value
366 @SYMTestExpectedResults Test must not fail
370 void TestSeekL(RDbTable& aTable,T,const T aValues[],TInt aCount)
372 test.Next( _L( " @SYMTestCaseID:SYSLIB-DBMS-CT-0622 Test index seeking " ) );
373 for (TInt ii=0;ii<aCount;++ii)
375 test(aTable.SeekL(aValues[ii]));
378 GetCol(aTable,1,val);
379 test(aValues[ii]==val);
384 aVal argument is used in the test functions (TestType & TestOrdering) and has no meaning outside them.
385 It is used only to avoid some compiler varnings and to determine the correct template type
387 @SYMTestCaseID SYSLIB-DBMS-CT-0623
388 @SYMTestCaseDesc Tests for RDbTable,RDbRowSet classes
389 @SYMTestPriority Medium
390 @SYMTestActions Call up Test for table ordering and index seeking functions
391 @SYMTestExpectedResults Test must not fail
395 void TestTypeL( TDbColType aType, TInt aAttribs, const T aValues[], TInt aCount )
397 test.Start( _L( " @SYMTestCaseID:SYSLIB-DBMS-CT-0623 Build table " ) );
398 BuildTableL( aType, aAttribs, aValues, aCount );
401 test.Next( _L( "Test ORDER BY ordering" ) );
402 test( TheView.Prepare( TheDatabase, KSelectOrdered ) == KErrNone );
403 test( TheView.EvaluateAll() == KErrNone );
404 TestOrderingL( TheView, t, aCount );
408 TestOrderingL( TheTable, t, aCount );
410 TestSeekL( TheTable, t, aValues, aCount );
413 test( TheDatabase.DropTable( KTableName ) == KErrNone );
417 @SYMTestCaseID SYSLIB-DBMS-CT-1322
418 @SYMTestCaseDesc Text ordering test
419 @SYMTestPriority Medium
420 @SYMTestActions Tests for RDbRowSet::Next(),RDbRowSet::GetL(),RDbRowSet::ColDes() functions
421 @SYMTestExpectedResults Test must not fail
424 void TestTextOrderingL(RDbRowSet& aSet,TInt aCount,const TTextOps& aComp)
426 test.Next(_L(" @SYMTestCaseID:SYSLIB-DBMS-CT-1322 "));
427 test(aSet.CountL()==aCount);
432 TPtrC current=aSet.ColDes(1);
434 test(aComp.Compare(TheBuf,current)<0);
441 @SYMTestCaseID SYSLIB-DBMS-CT-1323
442 @SYMTestCaseDesc Tests for RDbView,RDbTable classes
443 @SYMTestPriority Medium
444 @SYMTestActions Wrapper function to call up for text ordering and text indexing tests
445 @SYMTestExpectedResults Test must not fail
448 void TestTextL(const TPtrC aValues[],TInt aCount,TDbTextComparison aComparison,TInt aLength=KDbUndefinedLength)
450 const TTextOps& comp=TTextOps::Ops(aComparison);
451 test.Start(_L(" @SYMTestCaseID:SYSLIB-DBMS-CT-1323 Build table "));
452 BuildTableL(EDbColText,0,aValues,aCount);
454 test.Next(_L("Test ORDER BY ordering"));
455 test (TheView.Prepare(TheDatabase,TDbQuery(KSelectOrdered,aComparison))==KErrNone);
456 test (TheView.EvaluateAll()==KErrNone);
457 TestTextOrderingL(TheView,aCount,comp);
460 BuildIndexL(aComparison,aLength);
461 test(TheTable.SetIndex(KIndexName)==KErrNone);
462 TestTextOrderingL(TheTable,aCount,comp);
464 test.Next(_L("Test index seeking"));
465 for (TInt ii=0;ii<aCount;++ii)
467 test(TheTable.SeekL(aValues[ii]));
469 test(comp.Compare(aValues[ii],TheTable.ColDes(1))==0);
473 test(TheDatabase.DropTable(KTableName)==KErrNone);
477 void TestLongTextOrderingL(RDbRowSet& aSet,TInt aCount,const TTextOps& aComp)
479 test(aSet.CountL()==aCount);
485 TInt len=aSet.ColLength(1);
486 HBufC* buf=HBufC::NewL(len);
489 TPtr des(buf->Des());
491 CleanupStack::PopAndDestroy();
493 test (aComp.Compare(*buf,*prev)>=0);
501 LOCAL_C void OrderByLongTextL(TInt aCount,TDbTextComparison aComparison)
503 test (TheView.Prepare(TheDatabase,TDbQuery(KSelectOrdered,aComparison))==KErrNone);
504 test (TheView.EvaluateAll()==KErrNone);
505 TestLongTextOrderingL(TheView,aCount,TTextOps::Ops(aComparison));
509 LOCAL_C void TestLongTextL(const TPtrC aValues[],TInt aCount,TDbTextComparison aComparison,TInt aLength=KDbUndefinedLength)
511 const TTextOps& comp=TTextOps::Ops(aComparison);
512 test.Start(_L("Build table"));
513 BuildTableL(EDbColLongText,0,aValues,aCount);
515 test.Next(_L("Test ORDER BY ordering"));
516 OrderByLongTextL(aCount,aComparison);
518 BuildIndexL(aComparison,aLength);
519 test(TheTable.SetIndex(KIndexName)==KErrNone);
520 TestLongTextOrderingL(TheTable,aCount,comp);
522 test.Next(_L("Test index seeking"));
523 for (TInt ii=0;ii<aCount;++ii)
525 test(TheTable.SeekL(aValues[ii]));
527 RDbColReadStream strm;
528 strm.OpenLC(TheTable,1);
529 strm.ReadL(TheBuf,TheTable.ColLength(1));
530 CleanupStack::PopAndDestroy();
531 test(comp.Compare(aValues[ii],TheBuf)==0);
535 test(TheDatabase.DropTable(KTableName)==KErrNone);
539 TUint const KBitValues[]={0,1};
540 TInt const KInt8Values[]={0,KMinTInt8+1,1,KMaxTInt8,2,-3,-1,KMaxTInt8-1,KMinTInt8,-40};
541 TInt const KInt16Values[]={0,KMinTInt16+1,1,KMaxTInt16,2,-3,-1,KMaxTInt16-1,KMinTInt16,-4000};
542 TInt const KInt32Values[]={0,KMinTInt32+1,1,KMaxTInt32,2,-3,-1,KMaxTInt32-1,KMinTInt32,-40000000};
543 TInt const KInt32Count=sizeof(KInt32Values)/sizeof(KInt32Values[0]);
544 TUint const KUint8Values[]={0,1,KMaxTUint8,2,(KMaxTUint8+1)/2,(KMaxTUint8-1)/2,KMaxTUint8-1,40};
545 TUint const KUint16Values[]={0,1,KMaxTUint16,2,(KMaxTUint16+1)/2,(KMaxTUint16-1)/2,KMaxTUint16-1,4000};
546 TUint const KUint32Values[]={0,1,KMaxTUint32,2,KMaxTUint32/2+1,KMaxTUint32/2,KMaxTUint32-1,40000000};
547 //TReal32 const KReal32Values[]={0.0f,1.0f,KMaxTReal32,KMinTReal32,-1.0f,-KMaxTReal32,-4e20f,-KMinTReal32};
548 //TReal64 const KReal64Values[]={0.0,1.0,KMaxTReal64,KMinTReal64,-1.0,-KMaxTReal64,-4e200,-KMinTReal64};
549 TReal32 const KReal32Values[]={0.0f,1.0f,1e37f,1e-37f,-1.0f,-1e37f,-4e20f,-1e-37f};
550 TReal64 const KReal64Values[]={0.0,1.0,KMaxTReal64,KMinTReal64,-1.0,-KMaxTReal64,-4e200,-KMinTReal64};
551 TInt64 const KInt64Values[]=
554 MAKE_TINT64(0x80000000u,0x1u),
556 MAKE_TINT64(0x7fffffffu,0xffffffffu),
560 MAKE_TINT64(0x7fffffffu,0xfffffffeu),
561 MAKE_TINT64(0x80000000u,0x0u),
564 TTime const KTimeValues[]=
568 TDateTime(1970,EJanuary,0,0,0,0,0),
570 TDateTime(2049,EDecember,30,23,59,59,999999),
571 TDateTime(1996,EJuly,8,17,45,0,0)
573 TPtrC const KTextValues[]=
584 TPtrC const KLongTextValues[]=
586 _S("this blob will be inlined"),
588 _S("that blob was null"),
589 _S("An example of an out-of-line blob in an index! LongText8-LongText8-LongText8-LongText8-LongText8-LongText8-LongText8-LongText8-LongText8-LongText8-LongText8-LongText8-LongText8-LongText8-LongText8-LongText8-LongText8-LongText8-LongText8-LongText8-LongText8-LongText8-LongText8-LongText8-LongText8-LongText8")
591 const TInt KLongTextLimit=30;
594 @SYMTestCaseID SYSLIB-DBMS-CT-0624
595 @SYMTestCaseDesc Wrapper function testing for Indexing with different integer sizes and Text .
596 @SYMTestPriority Medium
597 @SYMTestActions Tests for indexing
598 @SYMTestExpectedResults Test must not fail
601 LOCAL_C void TestTypesL()
603 #define ARRAY_SIZE(a) TInt(sizeof(a)/sizeof(a[0]))
604 test.Start(_L(" @SYMTestCaseID:SYSLIB-DBMS-CT-0624 Indexing Bit "));
605 TestTypeL(EDbColBit,TDbCol::ENotNull,KBitValues,ARRAY_SIZE(KBitValues));
606 test.Next(_L("Indexing Int8"));
607 TestTypeL(EDbColInt8,TDbCol::ENotNull,KInt8Values,ARRAY_SIZE(KInt8Values));
608 test.Next(_L("Indexing Int16"));
609 TestTypeL(EDbColInt16,TDbCol::ENotNull,KInt16Values,ARRAY_SIZE(KInt16Values));
610 test.Next(_L("Indexing Int32"));
611 TestTypeL(EDbColInt32,TDbCol::ENotNull,KInt32Values,ARRAY_SIZE(KInt32Values));
612 test.Next(_L("Indexing Uint8"));
613 TestTypeL(EDbColUint8,TDbCol::ENotNull,KUint8Values,ARRAY_SIZE(KUint8Values));
614 test.Next(_L("Indexing Uint16"));
615 TestTypeL(EDbColUint16,TDbCol::ENotNull,KUint16Values,ARRAY_SIZE(KUint16Values));
616 test.Next(_L("Indexing Uint32"));
617 TestTypeL(EDbColUint32,TDbCol::ENotNull,KUint32Values,ARRAY_SIZE(KUint32Values));
618 test.Next(_L("Indexing Real32"));
619 TestTypeL(EDbColReal32,TDbCol::ENotNull,KReal32Values,ARRAY_SIZE(KReal32Values));
620 test.Next(_L("Indexing Real64"));
621 TestTypeL(EDbColReal64,TDbCol::ENotNull,KReal64Values,ARRAY_SIZE(KReal64Values));
622 test.Next(_L("Indexing Int64"));
623 TestTypeL(EDbColInt64,TDbCol::ENotNull,KInt64Values,ARRAY_SIZE(KInt64Values));
624 test.Next(_L("Indexing Time"));
625 TestTypeL(EDbColDateTime,TDbCol::ENotNull,KTimeValues,ARRAY_SIZE(KTimeValues));
626 test.Next(_L("Indexing Text (Normal)"));
627 TestTextL(KTextValues,ARRAY_SIZE(KTextValues),EDbCompareNormal);
628 test.Next(_L("Indexing Text (Folded)"));
629 TestTextL(KTextValues,ARRAY_SIZE(KTextValues),EDbCompareFolded);
630 test.Next(_L("Indexing Text (Collated)"));
631 TestTextL(KTextValues,ARRAY_SIZE(KTextValues),EDbCompareCollated);
632 test.Next(_L("Indexing Text (Normal, truncated)"));
633 TestTextL(KTextValues,ARRAY_SIZE(KTextValues),EDbCompareNormal,5);
634 test.Next(_L("Indexing LongText (Normal)"));
635 TestLongTextL(KLongTextValues,ARRAY_SIZE(KLongTextValues),EDbCompareNormal,KLongTextLimit);
636 test.Next(_L("Indexing LongText (Folded)"));
637 TestLongTextL(KLongTextValues,ARRAY_SIZE(KLongTextValues),EDbCompareFolded,KLongTextLimit);
638 test.Next(_L("Indexing LongText (Collated)"));
639 TestLongTextL(KLongTextValues,ARRAY_SIZE(KLongTextValues),EDbCompareCollated,KLongTextLimit);
643 const TInt KBlobKeyTruncated=32/sizeof(TText);
644 const TInt KBlobKeyMaxInline=255/sizeof(TText);
645 const TInt KBlobKeyCompare=512/sizeof(TText);
647 const TInt KMemoTestLengths[]=
662 void TestMemoTableL(CDbColSet& aBaseSet)
664 test.Start(_L("create the table"));
665 aBaseSet.AddL(TDbCol(KColumnName,EDbColLongText));
667 TInt r=TheDatabase.CreateTable(KTableName,aBaseSet);
670 test.Next(_L("add the rows"));
671 r=TheView.Prepare(TheDatabase,KSelectOrdered,RDbView::EInsertOnly);
673 r=TheView.EvaluateAll();
677 for (TUint ii=0;ii<elementsof(KMemoTestLengths);++ii)
679 TInt size=KMemoTestLengths[ii];
680 HBufC* buf=HBufC::NewL(size);
683 TPtr des(buf->Des());
685 des.AppendFill('b',size-prev->Length());
688 TheView.SetColL(1,*buf);
694 TheView.SetColL(1,*buf);
701 r=TheDatabase.Commit();
704 test.Next(_L("Normal order"));
705 OrderByLongTextL(count,EDbCompareNormal);
706 test.Next(_L("Folded order"));
707 OrderByLongTextL(count,EDbCompareFolded);
708 test.Next(_L("Collated order"));
709 OrderByLongTextL(count,EDbCompareCollated);
711 r=TheDatabase.DropTable(KTableName);
717 @SYMTestCaseID SYSLIB-DBMS-CT-0625
718 @SYMTestCaseDesc Tests for ordering by longtext
719 @SYMTestPriority Medium
720 @SYMTestActions Tests for CDbColSet
721 @SYMTestExpectedResults Test must not fail
724 LOCAL_C void TestOrderByLongTextL()
726 test.Start(_L(" @SYMTestCaseID:SYSLIB-DBMS-CT-0625 Maximum Inline Limit "));
727 CDbColSet* set=CDbColSet::NewLC();
728 TestMemoTableL(*set);
730 test.Next(_L("Reduced Inline limit [<32]"));
733 col.iType=EDbColText8;
737 for (TInt ii=0;ii<32;++ii)
739 name.Format(_L("col%d"),ii);
742 col.iMaxLength=255-20;
745 TestMemoTableL(*set);
746 CleanupStack::PopAndDestroy();
751 @SYMTestCaseID SYSLIB-DBMS-CT-0626
752 @SYMTestCaseDesc Tests for reverse ordering in indexes
753 @SYMTestPriority Medium
754 @SYMTestActions Tests for reversing the indexes
755 @SYMTestExpectedResults Test must not fail
758 LOCAL_C void TestReverseL()
760 test.Start(_L(" @SYMTestCaseID:SYSLIB-DBMS-CT-0626 Create table and index "));
762 CDbColSet *cs=CDbColSet::NewLC();
763 cs->AddL(TDbCol(KColumnName,EDbColInt32));
764 test(TheDatabase.CreateTable(KTableName,*cs)==KErrNone);
765 CleanupStack::PopAndDestroy();
766 CDbKey *key=CDbKey::NewLC();
767 key->AddL(TDbKeyCol(KColumnName,TDbKeyCol::EDesc));
769 test(TheDatabase.CreateIndex(KIndexName,KTableName,*key)==KErrNone);
770 CleanupStack::PopAndDestroy();
771 test(TheDatabase.Commit()==KErrNone);
772 test.Next(_L("Add records"));
774 test(TheTable.Open(TheDatabase,KTableName)==KErrNone);
775 for (TInt ii=0;ii<KInt32Count;++ii)
778 TheTable.SetColL(1,KInt32Values[ii]);
781 test(TheDatabase.Commit()==KErrNone);
782 test(TheTable.CountL()==KInt32Count);
783 test.Next(_L("Check order"));
784 test(TheTable.SetIndex(KIndexName)==KErrNone);
785 test(TheTable.CountL()==KInt32Count);
787 if (TheTable.FirstL())
791 TInt32 last=TheTable.ColInt(1);
792 while (TheTable.NextL())
796 TInt32 current=TheTable.ColInt(1);
801 test(count==KInt32Count);
803 test(TheDatabase.DropTable(KTableName)==KErrNone);
808 @SYMTestCaseID SYSLIB-DBMS-CT-0627
809 @SYMTestCaseDesc Tests for multi-column keys
810 @SYMTestPriority Medium
811 @SYMTestActions Tests for mutliple column keys
812 @SYMTestExpectedResults Test must not fail
815 LOCAL_C void TestMultiL()
817 test.Start(_L(" @SYMTestCaseID:SYSLIB-DBMS-CT-0627 Create table and index "));
819 CDbColSet *cs=CDbColSet::NewLC();
820 TDbCol col(KColumnName,EDbColInt32);
821 col.iAttributes=TDbCol::ENotNull;
823 col.iName=KColumnTwo;
825 test(TheDatabase.CreateTable(KTableName,*cs)==KErrNone);
826 CleanupStack::PopAndDestroy();
827 CDbKey *key=CDbKey::NewLC();
828 key->AddL(TDbKeyCol(KColumnTwo));
829 key->AddL(TDbKeyCol(KColumnName,TDbKeyCol::EDesc));
831 test(TheDatabase.CreateIndex(KIndexName,KTableName,*key)==KErrNone);
832 CleanupStack::PopAndDestroy();
833 test(TheDatabase.Commit()==KErrNone);
834 test.Next(_L("Add records"));
836 test(TheTable.Open(TheDatabase,KTableName)==KErrNone);
837 for (TInt ii=0;ii<KInt32Count;++ii)
839 for (TInt jj=0;jj<KInt32Count;++jj)
842 TheTable.SetColL(1,KInt32Values[ii]);
843 TheTable.SetColL(2,KInt32Values[jj]);
847 test(TheDatabase.Commit()==KErrNone);
848 test.Next(_L("Check order"));
849 test(TheTable.CountL()==KInt32Count*KInt32Count);
850 test(TheTable.SetIndex(KIndexName)==KErrNone);
851 test(TheTable.CountL()==KInt32Count*KInt32Count);
853 if (TheTable.FirstL())
857 TInt32 lastOne=TheTable.ColInt(1);
858 TInt32 lastTwo=TheTable.ColInt(2);
859 while (TheTable.NextL())
863 TInt32 currentOne=TheTable.ColInt(1);
864 TInt32 currentTwo=TheTable.ColInt(2);
865 test(lastTwo<currentTwo||(lastTwo==currentTwo&&lastOne>currentOne));
870 test(count==KInt32Count*KInt32Count);
872 test(TheDatabase.DropTable(KTableName)==KErrNone);
877 @SYMTestCaseID SYSLIB-DBMS-CT-0628
878 @SYMTestCaseDesc Tests duplicates/unique constraints
879 @SYMTestPriority Medium
880 @SYMTestActions Tests for adding duplicate entries
881 @SYMTestExpectedResults Test must not fail
884 LOCAL_C void TestDuplicatesL()
886 test.Start(_L(" @SYMTestCaseID:SYSLIB-DBMS-CT-0628 Create table and indices "));
887 BuildTableL(EDbColInt32,TDbCol::ENotNull,KInt32Values,KInt32Count);
890 CDbKey* key=CDbKey::NewLC();
891 key->AddL(KColumnName);
892 test(TheDatabase.CreateIndex(KIndexTwo,KTableName,*key)==KErrNone);
893 CleanupStack::PopAndDestroy();
894 test.Next(_L("Attempt to add/update duplicate entry"));
895 test(TheTable.Open(TheDatabase,KTableName)==KErrNone);
897 TheTable.SetColL(1,0);
898 TRAPD(r,TheTable.PutL());
903 TheTable.SetColL(1,0);
904 TRAP(r,TheTable.PutL());
907 test.Next(_L("Remove unique index"));
909 test(TheDatabase.DropIndex(KIndexName,KTableName)==KErrNone);
910 test.Next(_L("Attempt to update/add duplicate entry"));
911 test(TheTable.Open(TheDatabase,KTableName)==KErrNone);
914 TheTable.SetColL(1,0);
915 TRAP(r,TheTable.PutL());
918 TheTable.SetColL(1,0);
919 TRAP(r,TheTable.PutL());
921 test.Next(_L("Check order"));
922 test(TheTable.CountL()==KInt32Count+1);
923 test(TheTable.SetIndex(KIndexTwo)==KErrNone);
924 test(TheTable.CountL()==KInt32Count+1);
926 if (TheTable.FirstL())
930 TInt32 last=TheTable.ColInt(1);
931 while (TheTable.NextL())
935 TInt32 current=TheTable.ColInt(1);
936 test(last<=current); // duplicates present
940 test(count==KInt32Count+1);
941 test.Next(_L("Try to create unique index"));
944 key->AddL(KColumnName);
946 test(TheDatabase.CreateIndex(KIndexName,KTableName,*key)!=KErrNone);
947 CleanupStack::PopAndDestroy();
948 test(TheDatabase.DropTable(KTableName)==KErrNone);
952 struct Pair { TInt i1,i2; };
959 // seek pair: results for <,<=,=,>=,>
960 static TSeekingTest const SeekingTests[]=
962 {{0,0},{{-1,-1},{-1,-1},{-1,-1},{100,10},{100,10}}},
963 {{0,-1},{{-1,-1},{-1,-1},{-1,-1},{100,10},{100,10}}},
964 {{100,0},{{-1,-1},{-1,-1},{-1,-1},{100,10},{100,10}}},
965 {{100,10},{{-1,-1},{100,10},{100,10},{100,10},{100,20}}},
966 {{100,55},{{100,50},{100,50},{-1,-1},{100,60},{100,60}}},
967 {{100,60},{{100,50},{100,60},{100,60},{100,60},{100,70}}},
968 {{100,100},{{100,90},{100,100},{100,100},{100,100},{200,10}}},
969 {{100,110},{{100,100},{100,100},{-1,-1},{200,10},{200,10}}},
970 {{100,-1},{{-1,-1},{100,100},{100,10},{100,10},{200,10}}},
971 {{500,-1},{{400,100},{500,100},{500,10},{500,10},{600,10}}},
972 {{550,50},{{500,100},{500,100},{-1,-1},{600,10},{600,10}}},
973 {{550,-1},{{500,100},{500,100},{-1,-1},{600,10},{600,10}}},
974 {{1000,0},{{900,100},{900,100},{-1,-1},{1000,10},{1000,10}}},
975 {{1000,10},{{900,100},{1000,10},{1000,10},{1000,10},{1000,20}}},
976 {{1000,100},{{1000,90},{1000,100},{1000,100},{1000,100},{-1,-1}}},
977 {{1000,110},{{1000,100},{1000,100},{-1,-1},{-1,-1},{-1,-1}}},
978 {{1000,-1},{{900,100},{1000,100},{1000,10},{1000,10},{-1,-1}}},
979 {{1100,0},{{1000,100},{1000,100},{-1,-1},{-1,-1},{-1,-1}}},
980 {{1100,-1},{{1000,100},{1000,100},{-1,-1},{-1,-1},{-1,-1}}}
984 @SYMTestCaseID SYSLIB-DBMS-CT-0629
985 @SYMTestCaseDesc Tests for seeking on indexes
986 @SYMTestPriority Medium
987 @SYMTestActions Tests for SeekL and GetL functions
988 @SYMTestExpectedResults Test must not fail
991 LOCAL_C void TestSeekingL()
993 test.Start(_L(" @SYMTestCaseID:SYSLIB-DBMS-CT-0629 Create table and index "));
995 CDbColSet *cs=CDbColSet::NewLC();
996 TDbCol col(KColumnName,EDbColInt32);
997 col.iAttributes=TDbCol::ENotNull;
999 col.iName=KColumnTwo;
1001 test(TheDatabase.CreateTable(KTableName,*cs)==KErrNone);
1002 CleanupStack::PopAndDestroy();
1003 CDbKey *key=CDbKey::NewLC();
1004 key->AddL(KColumnName).AddL(KColumnTwo);
1006 test(TheDatabase.CreateIndex(KIndexName,KTableName,*key)==KErrNone);
1007 CleanupStack::PopAndDestroy();
1008 test(TheDatabase.Commit()==KErrNone);
1009 test.Next(_L("Add records"));
1010 TheDatabase.Begin();
1011 test(TheTable.Open(TheDatabase,KTableName)==KErrNone);
1012 for (TInt ii=100;ii<=1000;ii+=100)
1014 for (TInt jj=10;jj<=100;jj+=10)
1017 TheTable.SetColL(1,ii);
1018 TheTable.SetColL(2,jj);
1022 test(TheDatabase.Commit()==KErrNone);
1023 test(TheTable.CountL()==100);
1024 test(TheTable.SetIndex(KIndexName)==KErrNone);
1025 test(TheTable.CountL()==100);
1026 test.Next(_L("Seeking"));
1027 const TSeekingTest* stest=SeekingTests;
1028 const TSeekingTest* const end=stest+sizeof(SeekingTests)/sizeof(SeekingTests[0])-1;
1029 for (;stest<=end;++stest)
1031 TDbSeekMultiKey<2> key;
1032 key.Add(stest->iSeek.i1);
1033 if (stest->iSeek.i2>=0)
1034 key.Add(stest->iSeek.i2);
1035 const Pair* results=stest->iResults;
1036 for (TInt ii=RDbTable::ELessThan;ii<=RDbTable::EGreaterThan;++results,++ii)
1038 if (TheTable.SeekL(key,RDbTable::TComparison(ii)))
1040 test(results->i1>=0);
1041 TRAPD(errCode, TheTable.GetL());
1042 test(errCode==KErrNone);
1043 test(TheTable.ColInt(1)==results->i1);
1044 test(TheTable.ColInt(2)==results->i2);
1047 test(results->i1<0);
1051 test(TheDatabase.DropTable(KTableName)==KErrNone);
1056 @SYMTestCaseID SYSLIB-DBMS-CT-0630
1057 @SYMTestCaseDesc Tests for defect,index creation and set index operations
1058 @SYMTestPriority Medium
1059 @SYMTestActions Tests for creating and setting index operations
1060 @SYMTestExpectedResults Test must not fail
1063 LOCAL_C void TestInequalityErrorL()
1065 test.Start(_L(" @SYMTestCaseID:SYSLIB-DBMS-CT-0630 Create table "));
1066 TheDatabase.Begin();
1067 CDbColSet *cs=CDbColSet::NewLC();
1068 cs->AddL(TDbCol(KColumnName,EDbColInt32));
1069 test(TheDatabase.CreateTable(KTableName,*cs)==KErrNone);
1070 CleanupStack::PopAndDestroy();
1072 test.Next(_L("create indices"));
1073 CDbKey *key=CDbKey::NewLC();
1074 key->AddL(TDbKeyCol(KColumnName));
1075 test(TheDatabase.CreateIndex(KIndexName,KTableName,*key)==KErrNone);
1076 CleanupStack::PopAndDestroy();
1078 test.Next(_L("Populate table"));
1079 test(TheTable.Open(TheDatabase,KTableName)==KErrNone);
1080 for(TInt ii=0; ii<=130;++ii)
1083 TheTable.SetColL(1,ii);
1087 test.Next(_L("Checks"));
1088 test(TheTable.SetIndex(KIndexName)==KErrNone);
1090 // We need to delete a row in this node to get to the correct inequality condition
1091 test.Next(_L("Delete row 90"));
1092 test(TheTable.SeekL(TDbSeekKey(90)));
1095 // Now delete last row on node which should be 94
1096 test.Next(_L("Delete row 94"));
1097 test(TheTable.SeekL(TDbSeekKey(94)));
1101 test(!TheTable.SeekL(TDbSeekKey(94)));
1103 test.Next(_L("Insert row 94"));
1105 TheTable.SetColL(1,94);
1108 test.Next(_L("now try and find it"));
1109 test(TheTable.SeekL(TDbSeekKey(94))); //prior to defect fix this line failed.
1111 TheDatabase.Commit();
1113 test(TheDatabase.DropTable(KTableName)==KErrNone);
1118 @SYMTestCaseID PDS-DBMS-CT-4006
1119 @SYMTestCaseDesc Tests for add dbseekkey operations
1120 @SYMTestPriority High
1121 @SYMTestActions Create a DbSeekKey then add an index to it
1122 @SYMTestExpectedResults Verify that seeking with key works
1125 LOCAL_C void TestAddSeekKeyL()
1127 test.Start(_L(" @SYMTestCaseID:PDS-DBMS-CT-4006 Tests for add dbseekkey operations"));
1130 TInt err = TheDatabase.Begin();
1131 test2(err, KErrNone);
1133 CDbColSet *cs=CDbColSet::NewLC();
1134 cs->AddL(TDbCol(KColumnName1,EDbColText8));
1135 err = TheDatabase.CreateTable(KTableName1,*cs);
1136 test2(err , KErrNone);
1137 CleanupStack::PopAndDestroy();
1139 test.Next(_L("Create Indices"));
1140 CDbKey *key=CDbKey::NewLC();
1141 key->AddL(TDbKeyCol(KColumnName1));
1142 err = TheDatabase.CreateIndex(KIndexName1,KTableName1,*key);
1143 test2(err, KErrNone);
1144 CleanupStack::PopAndDestroy();
1146 test.Next(_L("Populate Table"));
1147 TBuf8<7> buf(_L8("testKey"));
1148 err = TheTable.Open(TheDatabase,KTableName1);
1149 test2(err, KErrNone);
1150 for(TInt i = 0; i <= 10; ++i)
1153 TheTable.SetColL(1,buf);
1157 test.Next(_L("Set Index"));
1158 err = TheTable.SetIndex(KIndexName1);
1159 test2(err, KErrNone);
1161 test.Next(_L("Testing Add Function"));
1164 TBool r = TheTable.SeekL(testkey);
1167 err = TheDatabase.Commit();
1168 test2(err, KErrNone);
1175 // Test the database definition and enquiry functions
1177 LOCAL_C void TestIndexesL()
1179 test.Start(_L("Create Database"));
1181 test.Next(_L("Test index build and drop"));
1183 test.Next(_L("Test index persistence"));
1185 test.Next(_L("Testing index key types"));
1187 test.Next(_L("Testing LongText ORDER BY"));
1188 TestOrderByLongTextL();
1189 test.Next(_L("Testing reverse ordering"));
1191 test.Next(_L("Testing multi column keys"));
1193 test.Next(_L("Testing duplicate/unqiue"));
1195 test.Next(_L("Testing seeking"));
1197 test.Next(_L("Testing incorrect inequaltiy condition in store btree"));
1198 TestInequalityErrorL();
1204 // Prepare the test directory.
1206 LOCAL_C void setupTestDirectory()
1208 TInt r=TheFs.Connect();
1211 r=TheFs.MkDir(KTestDatabase);
1212 test(r==KErrNone || r==KErrAlreadyExists);
1216 // Initialise the cleanup stack.
1218 LOCAL_C void setupCleanup()
1220 TheTrapCleanup=CTrapCleanup::New();
1221 test(TheTrapCleanup!=NULL);
1224 for (TInt i=KTestCleanupStack;i>0;i--)\
1225 CleanupStack::PushL((TAny*)0);\
1226 CleanupStack::Pop(KTestCleanupStack);\
1231 LOCAL_C void DeleteDataFile(const TDesC& aFullName)
1234 TInt err = fsSession.Connect();
1238 if(fsSession.Entry(aFullName, entry) == KErrNone)
1240 RDebug::Print(_L("Deleting \"%S\" file.\n"), &aFullName);
1241 err = fsSession.SetAtt(aFullName, 0, KEntryAttReadOnly);
1244 RDebug::Print(_L("Error %d changing \"%S\" file attributes.\n"), err, &aFullName);
1246 err = fsSession.Delete(aFullName);
1249 RDebug::Print(_L("Error %d deleting \"%S\" file.\n"), err, &aFullName);
1256 RDebug::Print(_L("Error %d connecting file session. File: %S.\n"), err, &aFullName);
1261 // Test streaming conversions.
1263 GLDEF_C TInt E32Main()
1266 setupTestDirectory();
1270 TInt r=TheDbs.Connect();
1272 TheDbs.ResourceMark();
1273 test.Start(_L("Standard database"));
1274 TRAP(r,TestIndexesL();)
1276 test.Next(_L("Secure database"));
1277 TRAP(r,TestIndexesL();)
1279 TRAP(r, TestAddSeekKeyL());
1283 ::DeleteDataFile(KTestDatabase); //deletion of data files must be before call to end - DEF047652
1286 TheDbs.ResourceCheck();
1290 delete TheTrapCleanup;