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.
16 // MSVC++ up to 5.0 has problems with expanding inline functions
17 // This disables the mad warnings for the whole project
18 #if defined(NDEBUG) && defined(__VC32__) && _MSC_VER<=1100
19 #pragma warning(disable : 4710) // function not expanded. MSVC 5.0 is stupid
27 // constructing literal TInt64 from compiler 64 bit integer rep
30 #if defined __GCC32__ || defined __EABI__
31 #define _LINT64(val) MAKE_TINT64(TUint(val##LL>>32),TUint(val##LL&0xffffffffu))
33 #define _LINT64(val) MAKE_TINT64(TUint(__int64(val)>>32),TUint(__int64(val)&0xffffffffu))
36 #define _LINT64 I64LIT
39 LOCAL_D RTest TheTest(_L("t_dbsql: DBMS SQL parsing and execution tests"));
42 LOCAL_D CTrapCleanup* TheTrapCleanup;
44 LOCAL_D RDbNamedDatabase TheDatabase;
45 LOCAL_D RDbTable TheTable;
46 LOCAL_D RDbView TheView;
47 LOCAL_D TBuf<1024> TheSql;
49 const TInt KTestCleanupStack=0x20;
50 const TPtrC KTestDatabase=_L("c:\\dbms-tst\\t_sql.db");
52 #define elementsof(array) (sizeof(array)/sizeof(array[0]))
54 LOCAL_C void TestCleanup()
63 TInt err = fsSession.Connect();
67 if(fsSession.Entry(KTestDatabase, entry) == KErrNone)
69 RDebug::Print(_L("Deleting \"%S\" file.\n"), &KTestDatabase);
70 err = fsSession.SetAtt(KTestDatabase, 0, KEntryAttReadOnly);
73 RDebug::Print(_L("Error %d changing \"%S\" file attributes.\n"), err, &KTestDatabase);
75 err = fsSession.Delete(KTestDatabase);
78 RDebug::Print(_L("Error %d deleting \"%S\" file.\n"), err, &KTestDatabase);
85 RDebug::Print(_L("Error %d connecting file session. File: %S.\n"), err, &KTestDatabase);
89 LOCAL_C void CloseDatabase()
94 LOCAL_C void Disconnect()
96 TheDbs.ResourceCheck();
100 ///////////////////////////////////////////////////////////////////////////////////////
101 ///////////////////////////////////////////////////////////////////////////////////////
102 //Tests macros and functions.
103 //If (!aValue) then the test will be panicked, the test data files will be deleted.
104 static void Check(TInt aValue, TInt aLine)
108 RDebug::Print(_L("*** Expression evaluated to false\r\n"));
110 TheTest(EFalse, aLine);
113 //If (aValue != aExpected) then the test will be panicked, the test data files will be deleted.
114 static void Check(TInt aValue, TInt aExpected, TInt aLine)
116 if(aValue != aExpected)
118 RDebug::Print(_L("*** Expected error: %d, got: %d\r\n"), aExpected, aValue);
120 TheTest(EFalse, aLine);
123 //Use these to test conditions.
124 #define TEST(arg) ::Check((arg), __LINE__)
125 #define TEST2(aValue, aExpected) ::Check(aValue, aExpected, __LINE__)
127 ///////////////////////////////////////////////////////////////////////////////////////
128 ///////////////////////////////////////////////////////////////////////////////////////
130 // Create the database
131 LOCAL_C void CreateDatabase()
133 TInt r=TheDatabase.Replace(TheFs,KTestDatabase);
137 LOCAL_C void Connect()
139 TInt r=TheDbs.Connect();
141 TheDbs.ResourceMark();
144 // Open the database through the server
145 LOCAL_C void ShareDatabase()
147 TInt r=TheDatabase.Open(TheDbs,KTestDatabase);
153 const TText* iSearchCondition;
156 #define ROWS(n,m) (((~0u)<<(n))&((2u<<(m))-1))
157 #define ROW(n) ROWS(n,n)
159 #define ALL_ROWS (~1u) // all rows which are not NULL
161 class TestPredicateBase
164 static void Create(const TText* aType);
165 static void Test(const TSelectTest* aTest,TInt aCount,TInt aRows, TBool aLog);
166 static void TestViewL(const TSelectTest* aTest,TInt aCount,TInt aRows, TBool aLog=EFalse);
169 // Create the table for the predicate tests
170 void TestPredicateBase::Create(const TText* aType)
172 TheTest.Next(TPtrC(aType));
174 TheSql.Format(_L("CREATE TABLE Compare (Id COUNTER,Test %s)"),aType);
175 TInt r=TheDatabase.Execute(TheSql);
177 r=TheTable.Open(TheDatabase,_L("Compare"),TheTable.EInsertOnly);
181 // Test the predicate on the table, then on the indexed table
182 void TestPredicateBase::Test(const TSelectTest* aTest,TInt aCount,TInt aRows, TBool aLog)
186 TheTest.Printf(_L("TestPredicateBase::Test\r\n"));
189 TInt r=TheDatabase.Commit();
192 TheTest.Printf(_L("Commit %d\r\n"), r);
195 TRAPD(errCode, TestViewL(aTest,aCount,aRows, aLog));
198 TheTest.Printf(_L("TestViewL %d"), errCode);
201 TEST2(errCode, KErrNone);
202 r=TheDatabase.Execute(_L("CREATE INDEX Key ON Compare (Test)"));
205 TheTest.Printf(_L("Execute %d"), r);
209 TRAP(errCode,TestViewL(aTest,aCount,aRows, aLog));
212 TheTest.Printf(_L("TestViewL %d"), errCode);
215 TEST2(errCode, KErrNone);
216 r=TheDatabase.Execute(_L("DROP TABLE Compare"));
219 TheTest.Printf(_L("Execute %d"), r);
225 // Test the predicate on the table
226 void TestPredicateBase::TestViewL(const TSelectTest* aTest,TInt aCount,TInt aRows, TBool /*aLog*/)
228 TUint rowMask=(2u<<aRows)-1;
229 for (;--aCount>=0;++aTest)
231 TheSql.Format(_L("SELECT Id FROM Compare WHERE Test %s"),aTest->iSearchCondition);
232 TInt r=TheView.Prepare(TheDatabase,TheSql,TheView.EReadOnly);
235 TheTest.Printf(_L("Prepare r= %d aCount= %d statement %S\r\n"), r, aCount, &TheSql);
238 TBool ignoreRow0=TheView.Unevaluated();
239 r=TheView.EvaluateAll();
242 while (TheView.NextL())
245 rows|=1u<<TheView.ColUint(1);
249 TEST((rows&~ROW(0))==(aTest->iResultSet&rowMask&~ROW(0)));
253 TEST(rows==(aTest->iResultSet&rowMask));
259 typedef void (*FSetColL)(TDbColNo aCol,const TAny* aVal);
261 void WriteRowsL(const TAny* aValues,TInt aRows,TInt aSize,FSetColL aSetColL, TBool aLog)
263 for (TInt row=0;row<=aRows;++row)
267 TheTest.Printf(_L("row = %d"), row);
270 TEST(TheTable.ColUint(1)==TUint(row));
272 { // first row is always null
274 aValues=PtrAdd(aValues,aSize);
283 static void SetColL(TDbColNo aCol,const TAny* aVal)
285 TheTable.SetColL(aCol,*(const T*)aVal);
290 inline void WriteRowsL(const T* aValues,TUint aRows, TBool aLog)
292 WriteRowsL(aValues,aRows,sizeof(T),&SetCol<T>::SetColL, aLog);
296 class TestPredicate : public TestPredicateBase
302 // Test the Predicate operators for all types
304 void TestPredicate<T>::RunL()
308 if((TPtrC(T::KType)).CompareF(_L("TIME"))==0)
312 WriteRowsL(T::KValues,elementsof(T::KValues), log);
313 Test(T::KTests,elementsof(T::KTests),elementsof(T::KValues),log);
319 static const TText* const KType;
320 static const TUint KValues[];
321 static const TSelectTest KTests[];
323 const TText* const TypeBit::KType=_S("BIT");
324 const TUint TypeBit::KValues[]={0,1};
325 const TSelectTest TypeBit::KTests[]=
327 {_S("IS NULL"),ROW(0)},
328 {_S("IS NOT NULL"),ALL_ROWS},
334 {_S(">=0"),ALL_ROWS},
339 {_S("<=1"),ALL_ROWS},
346 static const TText* const KType;
347 static const TUint KValues[];
348 static const TSelectTest KTests[];
350 const TText* const TypeUint8::KType=_S("UNSIGNED TINYINT");
351 const TUint TypeUint8::KValues[]={0,1,127,128,254,255};
352 const TSelectTest TypeUint8::KTests[]=
354 {_S("IS NULL"),ROW(0)},
355 {_S("IS NOT NULL"),ALL_ROWS},
358 {_S("<2"),ROWS(1,2)},
359 {_S(">=0"),ALL_ROWS},
360 {_S("<128"),ROWS(1,3)},
361 {_S("<>1"),ALL_ROWS-ROW(2)},
368 static const TText* const KType;
369 static const TUint KValues[];
370 static const TSelectTest KTests[];
372 const TText* const TypeUint16::KType=_S("UNSIGNED SMALLINT");
373 const TUint TypeUint16::KValues[]={0,1,5000,32767,32768,65534,65535};
374 const TSelectTest TypeUint16::KTests[]=
376 {_S("IS NULL"),ROW(0)},
377 {_S("IS NOT NULL"),ALL_ROWS},
380 {_S("<2"),ROWS(1,2)},
381 {_S(">=32768"),ROWS(5,7)},
382 {_S("<32767"),ROWS(1,3)},
383 {_S("<>1"),ALL_ROWS-ROW(2)},
384 {_S(">65535"),NO_ROWS}
390 static const TText* const KType;
391 static const TUint KValues[];
392 static const TSelectTest KTests[];
394 const TText* const TypeUint32::KType=_S("UNSIGNED INTEGER");
395 const TUint TypeUint32::KValues[]={0,1,2147483647u,2147483648u,3000000000u,4294967294u,4294967295u};
396 const TSelectTest TypeUint32::KTests[]=
398 {_S("IS NULL"),ROW(0)},
399 {_S("IS NOT NULL"),ALL_ROWS},
402 {_S("<2"),ROWS(1,2)},
403 {_S(">=2147483648"),ROWS(4,7)},
404 {_S("<2147483647"),ROWS(1,2)},
405 {_S("<>3000000000"),ALL_ROWS-ROW(5)},
406 {_S(">4294967295"),NO_ROWS}
412 static const TText* const KType;
413 static const TInt KValues[];
414 static const TSelectTest KTests[];
416 const TText* const TypeInt8::KType=_S("TINYINT");
417 const TInt TypeInt8::KValues[]={-128,-1,0,1,127};
418 const TSelectTest TypeInt8::KTests[]=
420 {_S("IS NULL"),ROW(0)},
421 {_S("IS NOT NULL"),ALL_ROWS},
424 {_S("<2"),ROWS(1,4)},
425 {_S(">=-128"),ALL_ROWS},
426 {_S("<128"),ALL_ROWS},
427 {_S("<>1"),ALL_ROWS-ROW(4)}
433 static const TText* const KType;
434 static const TInt KValues[];
435 static const TSelectTest KTests[];
437 const TText* const TypeInt16::KType=_S("SMALLINT");
438 const TInt TypeInt16::KValues[]={-32768,-32767,-1,0,1,32766,32767};
439 const TSelectTest TypeInt16::KTests[]=
441 {_S("IS NULL"),ROW(0)},
442 {_S("IS NOT NULL"),ALL_ROWS},
444 {_S("<>0"),ALL_ROWS-ROW(4)},
446 {_S("<2"),ROWS(1,5)},
447 {_S(">=-40000"),ALL_ROWS},
448 {_S("<32766"),ROWS(1,5)},
455 static const TText* const KType;
456 static const TInt KValues[];
457 static const TSelectTest KTests[];
459 const TText* const TypeInt32::KType=_S("INTEGER");
460 const TInt TypeInt32::KValues[]={0x80000000/*-2147483648*/,-2147483647,-1,0,1,2147483646,2147483647};
461 const TSelectTest TypeInt32::KTests[]=
463 {_S("IS NULL"),ROW(0)},
464 {_S("IS NOT NULL"),ALL_ROWS},
466 {_S("<>0"),ALL_ROWS-ROW(4)},
468 {_S("<2"),ROWS(1,5)},
469 {_S(">=-2147483648"),ALL_ROWS},
470 {_S("<2147483646"),ROWS(1,5)},
471 {_S(">2147483647"),NO_ROWS},
478 static const TText* const KType;
479 static const TInt64 KValues[];
480 static const TSelectTest KTests[];
482 const TText* const TypeInt64::KType=_S("BIGINT");
483 const TInt64 TypeInt64::KValues[]=
485 MAKE_TINT64(0x80000000, 0x00000000), // min int64
486 _LINT64(-4294967296),
487 TInt(0x80000000), // -2147483648!
495 _LINT64(9223372036854775807) // max int64
497 const TSelectTest TypeInt64::KTests[]=
499 {_S("IS NULL"),ROW(0)},
500 {_S("IS NOT NULL"),ALL_ROWS},
502 {_S("<>0"),ALL_ROWS-ROW(5)},
504 {_S("<2"),ROWS(1,6)},
505 {_S(">=-9223372036854775808"),ALL_ROWS},
506 {_S("<4294967296"),ROWS(1,9)},
507 {_S(">9223372036854775806"),ROW(11)},
514 static const TText* const KType;
515 static const TReal32 KValues[];
516 static const TSelectTest KTests[];
518 const TText* const TypeReal32::KType=_S("REAL");
519 const TReal32 TypeReal32::KValues[]=
529 const TSelectTest TypeReal32::KTests[]=
531 {_S("IS NULL"),ROW(0)},
532 {_S("IS NOT NULL"),ALL_ROWS},
534 {_S("<>0.0"),ALL_ROWS-ROW(4)},
536 {_S("<2e1"),ROWS(1,6)},
537 {_S(">=-100000000000000"),ROWS(2,7)},
538 {_S("<1e-36"),ROWS(1,5)},
539 {_S(">1e15"),ROW(7)},
541 {_S("<=-.0"),ROWS(1,4)},
542 {_S("<1e40"),ALL_ROWS}
548 static const TText* const KType;
549 static const TReal64 KValues[];
550 static const TSelectTest KTests[];
552 const TText* const TypeReal64::KType=_S("DOUBLE");
553 const TReal64 TypeReal64::KValues[]=
563 const TSelectTest TypeReal64::KTests[]=
565 {_S("IS NULL"),ROW(0)},
566 {_S("IS NOT NULL"),ALL_ROWS},
568 {_S("<>0"),ALL_ROWS-ROW(4)},
570 {_S("<2"),ROWS(1,6)},
571 {_S(">=-100000000000000"),ROWS(2,7)},
572 {_S("<1e-300"),ROWS(1,5)},
573 {_S(">1e15"),ROW(7)},
575 {_S("<=0"),ROWS(1,4)},
576 {_S("<1e40"),ROWS(1,6)}
582 static const TText* const KType;
583 static const TTime KValues[];
584 static const TSelectTest KTests[];
586 const TText* const TypeTime::KType=_S("TIME");
587 const TTime TypeTime::KValues[]=
589 TInt64(0u), // zero date/time
590 _L(":085815"), // 8:58:15am
591 _L("19181010:110000"), // 11am, 11 Nov 1918
592 _L("19750226:"), // midnight, 27 Mar 1975
593 _L("19961130:235959"), // 11:59:59pm, 31 Dec 1996
594 _L("19970000:"), // midnight, 1 Jan 1997
595 _L("19970611:210000"), // 9pm, 12 July 1997
596 _L("19980309:214500"), // 9:45pm, 10 April 1998
597 _L("20700608:") // midnight, 9 July 2070
599 const TSelectTest TypeTime::KTests[]=
601 {_S("IS NULL"),ROW(0)},
602 {_S("IS NOT NULL"),ALL_ROWS},
603 {_S("=#12am#"),ROW(1)},
604 {_S("<#Jan 1 2100#"),ALL_ROWS},
605 {_S("<>#31/12/1996 23:59:59#"),ALL_ROWS-ROW(5)},
606 {_S("<#9a#"),ROWS(1,2)},
607 {_S(">=#11:59:59pm, 31 Dec 1996#"),ROWS(5,9)},
608 {_S("=#9:45pm 10 April, 1998#"),ROW(8)},
609 {_S("=#8:58:15#"),ROW(2)}
615 static const TText* const KType;
616 static const TText* const KValues[];
617 static TSelectTest KTests[];
619 const TText* const TypeText::KType=_S("VARCHAR(100)");
620 const TText* const TypeText::KValues[]=
622 _S(""), // this should be equivalent to NULL
627 _S("abcdefghijklmnopqrstuvwxyzlike"),
628 _S("likeabcdefghijklmnopqrstuvwxyz"),
629 _S("abcdefghijklmnopqrstuvwxyzlikeabcdefghijklmnopqrstuvwxyz"),
630 _S("abcdefghijklmnopqrstuvwxyzliveabcdefghijklmnopqrstuvwxyz"),
634 TSelectTest TypeText::KTests[]=
636 {_S("IS NULL"),ROWS(0,1)},
637 {_S("IS NOT NULL"),ALL_ROWS-ROW(1)},
639 {_S("=''"),ROWS(0,1)}, // equivalent to IS NULL
640 {_S("<>''"),ALL_ROWS-ROW(1)}, // equivalent to IS NOT NULL
641 {_S(">''"),ALL_ROWS-ROW(1)}, // equivalent to IS NOT NULL
642 {_S("<''"),NO_ROWS}, // expression is trivially false
643 {_S("<=''"),ROWS(0,1)},
644 {_S(">=''"),ALL_ROWS+ROW(0)}, // expression is trivially true
646 {_S("LIKE ''"),ROWS(0,1)}, // synonomous with IS NULL
647 {_S("NOT LIKE ''"),ALL_ROWS-ROW(1)},
648 {_S("LIKE '?*'"),ALL_ROWS-ROW(1)}, // synonomous with IS NOT NULL
649 {_S("NOT LIKE '?*'"),ROWS(0,1)},
650 {_S("LIKE '*'"),ALL_ROWS+ROW(0)}, // trivially true
651 {_S("NOT LIKE '*'"),NO_ROWS},
654 {_S("<'ab'"),ROWS(0,3)+ROW(11)},
655 {_S("<'abc'"),ROWS(0,4)+ROW(11)},
656 {_S("<'b'"),ROWS(0,4)+ROW(6)+ROWS(8,9)+ROW(11)},
657 {_S(">'abc'"),ROWS(5,10)},
658 {_S("='like'"),ROW(5)},
659 {_S("='l''ke'"),ROW(10)},
660 {_S("='''Tis'"),ROW(11)},
662 {_S("LIKE 'a'"),ROW(2)},
663 {_S("LIKE 'a*'"),ROWS(2,4)+ROW(6)+ROWS(8,9)},
664 {_S("LIKE '*a'"),ROWS(2,4)},
665 {_S("LIKE 'a*a'"),ROWS(3,4)},
666 {_S("LIKE '*a*'"),ROWS(2,4)+ROWS(6,9)},
668 {_S("LIKE 'like'"),ROW(5)},
669 {_S("LIKE 'l?ke'"),ROW(5)+ROW(10)},
670 {_S("LIKE 'like*'"),ROW(5)+ROW(7)},
671 {_S("LIKE '*like'"),ROWS(5,6)},
672 {_S("LIKE '*like*'"),ROWS(5,8)},
673 {_S("LIKE '*likeit*'"),NO_ROWS},
674 {_S("LIKE '*li?e*'"),ROWS(5,9)},
675 {_S("LIKE '?*li?e*'"),ROW(6)+ROWS(8,9)},
676 {_S("LIKE '*li?e*?'"),ROWS(7,9)},
677 {_S("LIKE '?*li?e*?'"),ROWS(8,9)},
678 {_S("LIKE '*?k?*'"),ROWS(5,10)},
679 {_S("LIKE '*?i?e*'"),ROWS(5,9)},
681 {_S("LIKE '*e*'"),ROWS(5,10)},
682 {_S("LIKE '*z*k*e*'"),ROW(6)+ROW(8)},
683 {_S("LIKE '\?\?k?'"),ROW(5)+ROW(10)},
684 {_S("LIKE '\?\?k*'"),ROW(5)+ROW(7)+ROW(10)},
685 {_S("LIKE '*''*'"),ROWS(10,11)},
686 {_S("LIKE '?''\?\?'"),ROW(10)},
687 {_S("LIKE '?'"),ROW(2)},
688 {_S("LIKE '\?\?\?\?'"),ROW(5)+ROWS(10,11)},
689 {_S("LIKE '\?\?*\?\?'"),ROWS(5,11)},
690 {_S("LIKE '''*'"),ROW(11)}
693 TEMPLATE_SPECIALIZATION struct SetCol<const TText* const>
695 static void SetColL(TDbColNo aCol,const TAny* aVal)
697 TheTable.SetColL(aCol,TPtrC(*(const TText* const*)aVal));
700 TEMPLATE_SPECIALIZATION struct SetCol<const TText*>
702 static void SetColL(TDbColNo aCol,const TAny* aVal)
704 TheTable.SetColL(aCol,TPtrC(*(const TText* const*)aVal));
711 static const TText* const KType;
713 const TText* const TypeLongText::KType=_S("LONG VARCHAR");
715 class TestPredicate2 : public TestPredicateBase
721 // write rows equivalent to TypeText and use its tests
722 void TestPredicate2::RunL()
724 Create(TypeLongText::KType);
725 TBuf<1022> fill=_S("abcdefghijklmnopqrstuvqxyz");
726 fill.AppendFill('.',fill.MaxLength()-fill.Length());
728 for (TInt row=0;row<=TInt(elementsof(TypeText::KValues));++row)
731 TheTable.SetColL(1,row);
734 RDbColWriteStream blob;
735 blob.OpenLC(TheTable,2);
740 case 1: case 2: case 3: case 4: case 5: case 10: case 11:
741 blob.WriteL(TPtrC(TypeText::KValues[row-1]));
745 blob.WriteL(_L("like"));
748 blob.WriteL(_L("like"));
753 blob.WriteL(_L("like"));
758 blob.WriteL(_L("live"));
763 CleanupStack::PopAndDestroy();
768 TInt r=TheDatabase.Commit();
770 TestViewL(TypeText::KTests,elementsof(TypeText::KTests),elementsof(TypeText::KValues));
771 CDbKey& key=*CDbKey::NewLC();
772 key.AddL(TDbKeyCol(_L("Test"),120));
773 r=TheDatabase.CreateIndex(_L("Key"),_L("Compare"),key);
775 CleanupStack::PopAndDestroy();
776 TestViewL(TypeText::KTests,elementsof(TypeText::KTests),elementsof(TypeText::KValues));
777 r=TheDatabase.Execute(_L("DROP TABLE Compare"));
782 * Utility for DEF063276 fix.
785 _LIT(KTypeTextKTests44, "Z:\\test\\TypeTextKTests44.dat");
786 _LIT(KTypeTextKTests46, "Z:\\test\\TypeTextKTests46.dat");
787 _LIT(KTypeTextKTests47, "Z:\\test\\TypeTextKTests47.dat");
789 static void ReadDesc(TDes& aDes, const TDesC& aFilename, RFs& aFs)
791 TheTest.Printf(_L("---ReadDesc(), aFilename=%S\r\n"), &aFilename);
793 TInt err = file.Open(aFs, aFilename, EFileRead);
794 TheTest.Printf(_L("Open file aFilename=%S err = %d\r\n"), &aFilename, err);
795 TEST2(err, KErrNone);
797 TPtr8 ptr(reinterpret_cast<TUint8*>(const_cast<TUint16*>(aDes.Ptr())), aDes.MaxSize());
798 err = file.Read(ptr);
799 TheTest.Printf(_L("Read file aFilename=%S err = %d\r\n"), &aFilename, err);
800 TEST2(err, KErrNone);
801 aDes.SetLength(ptr.Length() / sizeof(TText));
806 @SYMTestCaseID SYSLIB-DBMS-CT-0633
807 @SYMTestCaseDesc Tests the Predicate operators for all types
808 @SYMTestPriority Medium
809 @SYMTestActions Attempt to check with different types
810 @SYMTestExpectedResults Test must not fail
813 LOCAL_C void TestPredicatesL()
815 TheTest.Start(_L(" @SYMTestCaseID:SYSLIB-DBMS-CT-0633 init "));
817 TestPredicate<TypeBit>::RunL();
818 TestPredicate<TypeUint8>::RunL();
819 TestPredicate<TypeUint16>::RunL();
820 TestPredicate<TypeUint32>::RunL();
821 TestPredicate<TypeInt8>::RunL();
822 TestPredicate<TypeInt16>::RunL();
823 TestPredicate<TypeInt32>::RunL();
824 TestPredicate<TypeInt64>::RunL();
825 TestPredicate<TypeReal32>::RunL();
826 TestPredicate<TypeReal64>::RunL();
827 TestPredicate<TypeTime>::RunL();
830 * Work around for DEF063276.
831 * These literals are now loaded from Z:\test\TypeTextKTests44.dat,
832 * Z:\test\data\TypeTextKTests44.dat and Z:\test\TypeTextKTests44.dat respectively.
833 * Bullseye Coverage corrupts these literals to avoid this they are stored in files as to not be touched by Bullseye Coverage.
837 ReadDesc(buf44, KTypeTextKTests44, TheFs);
838 TypeText::KTests[44].iSearchCondition = const_cast<TText*>(buf44.PtrZ());
840 TBuf<32> buf46(TypeText::KTests[46].iSearchCondition);
841 ReadDesc(buf46, KTypeTextKTests46, TheFs);
842 TypeText::KTests[46].iSearchCondition = const_cast<TText*>(buf46.PtrZ());
844 TBuf<32> buf47(TypeText::KTests[47].iSearchCondition);
845 ReadDesc(buf47, KTypeTextKTests47, TheFs);
846 TypeText::KTests[47].iSearchCondition = const_cast<TText*>(buf47.PtrZ());
850 TestPredicate<TypeText>::RunL();
851 TestPredicate2::RunL();
857 @SYMTestCaseID SYSLIB-DBMS-CT-0634
858 @SYMTestCaseDesc DML Query test
859 Test for RDbNamedDatabase::Execute() function
860 @SYMTestPriority Medium
861 @SYMTestActions Tests for CREATE TABLE,CREATE UNIQUE INDEX,INSET INTO,UPDATE,DELETE,DROP queries
862 @SYMTestExpectedResults Test must not fail
865 LOCAL_C void TestDataModificationlanguage()
867 TheTest.Start(_L(" @SYMTestCaseID:SYSLIB-DBMS-CT-0634 init "));
870 TInt r=TheDatabase.Execute(_L("CREATE TABLE test (ID INTEGER NOT NULL,SALARY DOUBLE)"));
872 r=TheDatabase.Execute(_L("CREATE UNIQUE INDEX key ON test (ID)"));
875 TheTest.Next(_L("insert-statements"));
876 r=TheDatabase.Execute(_L("INSERT INTO test VALUES (0,0)"));
878 r=TheDatabase.Execute(_L("INSERT INTO test (ID) VALUES (1)"));
880 r=TheDatabase.Execute(_L("INSERT INTO test (SALARY,ID) VALUES (20.4,2)"));
883 TheTest.Next(_L("update-statements"));
884 r=TheDatabase.Execute(_L("UPDATE test SET SALARY=30000 WHERE ID=1"));
887 TheTest.Next(_L("delete-statements"));
888 r=TheDatabase.Execute(_L("DELETE FROM test WHERE SALARY<40"));
890 r=TheDatabase.Execute(_L("DELETE FROM test"));
892 r=TheDatabase.Execute(_L("DROP TABLE test"));
895 TheTest.Next(_L("larger table"));
896 r=TheDatabase.Execute(_L("CREATE TABLE test (ID COUNTER,DATA INTEGER)"));
899 TheTest.Next(_L("insert"));
900 r=TheDatabase.Begin();
903 for (TInt ii=0;ii<100;++ii)
905 sql.Format(_L("INSERT INTO test (DATA) VALUES (%D)"),100-ii);
906 r=TheDatabase.Execute(sql);
909 r=TheDatabase.Commit();
912 TheTest.Next(_L("update"));
913 r=TheDatabase.Execute(_L("UPDATE test SET DATA=200 WHERE ID>=40 AND ID<60"));
916 TheTest.Next(_L("delete"));
917 r=TheDatabase.Execute(_L("DELETE FROM test WHERE DATA>90"));
920 TheTest.Next(_L("update"));
921 r=TheDatabase.Execute(_L("UPDATE test SET DATA=-1"));
924 TheTest.Next(_L("delete"));
925 r=TheDatabase.Execute(_L("DELETE FROM test"));
927 r=TheDatabase.Execute(_L("DROP TABLE test"));
935 @SYMTestCaseID SYSLIB-DBMS-CT-0635
936 @SYMTestCaseDesc DBMS SQL parsing and execution tests.Tests for database index order
937 Test for RDbNamedDatabase::Execute() function
938 @SYMTestPriority Medium
939 @SYMTestActions Tests for order by index
940 @SYMTestExpectedResults Test must not fail
943 LOCAL_C void TestOrderByL()
945 static const TReal TestDataSalary[]={10,34000,15000,53200,17800,240000};
946 static const TText* const TestDataNames[]={_S("gopher"),_S("james '007' bond"),_S("moneypenny"),_S("Q"),_S("james '007' bond"),_S("M")};
948 TheTest.Start(_L(" @SYMTestCaseID:SYSLIB-DBMS-CT-0635 init "));
952 TInt r=TheDatabase.Execute(_L("CREATE TABLE test (ID INTEGER NOT NULL,SALARY DOUBLE,NAME VARCHAR)"));
954 r=TheDatabase.Execute(_L("CREATE UNIQUE INDEX key ON test (ID)"));
957 TheTest.Next(_L("insert data"));
958 r=TheView.Prepare(TheDatabase,_L("SELECT ID,SALARY,NAME FROM test"),TheView.EInsertOnly);
964 TheView.SetColL(1,6-ii);
965 TheView.SetColL(2,TestDataSalary[ii]);
966 TheView.SetColL(3,TPtrC(TestDataNames[ii]));
969 r=TheDatabase.Commit();
973 TheTest.Next(_L("Order by <index>"));
974 // test the index is used here
975 r=TheView.Prepare(TheDatabase,_L("SELECT ID FROM test ORDER BY ID"));
977 TEST(!TheView.Unevaluated());
979 if (TheView.FirstL())
983 TInt last=TheView.ColInt(1);
984 while (TheView.NextL())
988 TInt v=TheView.ColInt(1);
994 TEST(c==TheView.CountL());
997 TheTest.Next(_L("Order by <no-index> 1"));
998 // test that no index is used here
999 r=TheView.Prepare(TheDatabase,_L("SELECT SALARY FROM test ORDER BY SALARY"));
1001 TEST(TheView.Unevaluated());
1002 r=TheView.EvaluateAll();
1005 if (TheView.FirstL())
1009 TReal last=TheView.ColReal(1);
1010 while (TheView.NextL())
1014 TReal v=TheView.ColReal(1);
1020 TEST(c==TheView.CountL());
1023 TheTest.Next(_L("Order by <no-index> 2"));
1024 // test that no index is used here
1025 r=TheView.Prepare(TheDatabase,_L("SELECT SALARY FROM test ORDER BY SALARY,NAME"));
1027 TEST(TheView.Unevaluated());
1028 r=TheView.EvaluateAll();
1031 if (TheView.FirstL())
1035 TReal last=TheView.ColReal(1);
1036 while (TheView.NextL())
1040 TReal v=TheView.ColReal(1);
1046 TEST(c==TheView.CountL());
1049 TheTest.Next(_L("Order by <no-index> 3"));
1050 // test that no index is used here
1051 r=TheView.Prepare(TheDatabase,_L("SELECT NAME FROM test ORDER BY NAME"));
1053 TEST(TheView.Unevaluated());
1054 r=TheView.EvaluateAll();
1057 if (TheView.FirstL())
1061 TBuf<50> last=TheView.ColDes(1);
1062 while (TheView.NextL())
1066 TPtrC v=TheView.ColDes(1);
1072 TEST(c==TheView.CountL());
1075 TheTest.Next(_L("Order by <no-index> 4"));
1076 // test that no index is used here
1077 r=TheView.Prepare(TheDatabase,_L("SELECT NAME FROM test ORDER BY NAME,SALARY"));
1079 TEST(TheView.Unevaluated());
1080 r=TheView.EvaluateAll();
1083 if (TheView.FirstL())
1087 TBuf<50> last=TheView.ColDes(1);
1088 while (TheView.NextL())
1092 TPtrC v=TheView.ColDes(1);
1098 TEST(c==TheView.CountL());
1101 TheTest.Next(_L("Order by + search <no-index>"));
1102 // test that no index is used here
1103 r=TheView.Prepare(TheDatabase,_L("SELECT ID,SALARY FROM test WHERE SALARY>30000 ORDER BY SALARY DESC"));
1105 TEST(TheView.Unevaluated());
1106 r=TheView.EvaluateAll();
1109 if (TheView.FirstL())
1113 TReal last=TheView.ColReal(2);
1114 while (TheView.NextL())
1118 TReal v=TheView.ColReal(2);
1124 TEST(c==TheView.CountL());
1130 TheTest.Next(_L("Order by <index> Finished"));
1134 LOCAL_C void doMain()
1136 TheTest.Start(_L("Predicate tests"));
1137 TRAPD(errCode, TestPredicatesL());
1138 TEST2(errCode, KErrNone);
1140 TheTest.Next(_L("DML execution"));
1141 TestDataModificationlanguage();
1143 TheTest.Next(_L("ORDER BY clause"));
1144 TRAP(errCode, TestOrderByL());
1145 TEST2(errCode, KErrNone);
1149 // Prepare the test directory.
1150 LOCAL_C void setupTestDirectory()
1152 TInt r=TheFs.Connect();
1155 r=TheFs.MkDir(KTestDatabase);
1156 TEST(r==KErrNone || r==KErrAlreadyExists);
1159 // Initialise the cleanup stack.
1160 LOCAL_C void setupCleanup()
1162 TheTrapCleanup=CTrapCleanup::New();
1163 TEST(TheTrapCleanup!=NULL);
1166 for (TInt i=KTestCleanupStack;i>0;i--)\
1167 CleanupStack::PushL((TAny*)0);\
1168 CleanupStack::Pop(KTestCleanupStack);\
1173 // Test streaming conversions.
1174 GLDEF_C TInt E32Main()
1177 setupTestDirectory();
1181 TheTest.Start(_L("Standard database"));
1184 // clean up data file used by this test - must be done before call to End() - DEF047652
1191 delete TheTrapCleanup;