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.
20 #include <d32dbmsconstants.h>
22 LOCAL_D RTest TheTest(_L("t_dbscript"));
23 LOCAL_D CTrapCleanup* TheTrapCleanup;
24 LOCAL_D RDbNamedDatabase TheDatabase;
26 LOCAL_D RDbView TheView;
28 const TPtrC KTestDatabase=_L("c:\\dbms-tst\\t_script.db");
30 const TPtrC KRomScriptFile=_L("z:\\test\\t_script.txt");
32 const TPtrC KOutputFile=_L("c:\\dbms-tst\\t_script.log");
34 const TInt KTestCleanupStack=0x20;
35 const TPtrC KDDLKeywords[]={_L("CREATE"),_L("DROP"),_L("ALTER")};
36 const TPtrC KDMLKeywords[]={_L("INSERT"),_L("DELETE"),_L("UPDATE")};
37 const TPtrC KQueryKeywords[]={_L("SELECT")};
38 const TPtrC KScriptKeywords[]={_L("PRINT"),_L("ROWS"),_L("COMPARE"),_L("ERROR"),_L("!"),
39 _L("POPULATE"),_L("RESULTS"),_L("BUILD"),_L("QUERY"),
40 _L("NORMAL"),_L("FOLDED"),_L("COLLATED"),_L("START"),_L("STOP"),
41 _L("LOAD"),_L("ECHO"),_L("WINDOW"),_L("ACCESS")};
42 const TPtrC KRowIdColName=_L("Rw");
43 enum TKeyword {EPrint,ERows,ECompare,EError,EComment,EPopulate,EResults,EBuild,EQuery,ENormal,
44 EFolded,ECollated,EStart,EStop,ELoad,EEcho,EWindow,EAccess,ENumKeywords,EUnknown};
46 typedef TBuf<256> TScriptLine;
47 typedef TBuf<256> TScriptToken;
49 #define ARRAY_SIZE(array) (sizeof(array)/sizeof(array[0]))
55 inline TTimer(TScript& aScript);
56 void Start(const TDesC& aDes);
57 void Stop(const TDesC& aDes);
78 enum TSqlType {EDML,EDDL,EQuery,EUnknown};
80 inline TSqlStatement(const TDesC& aSql,TResults& aResults);
81 TInt Execute(TDbTextComparison aTextComparison=EDbCompareNormal,
82 RDbRowSet::TAccess aAccess=RDbRowSet::EReadOnly,TBool aWindow=EFalse) const;
84 void ExecuteSql(TDbTextComparison aTextComparison) const;
85 void ExecuteQuery(RDbRowSet::TAccess aAccess,TBool aWindow) const;
86 TSqlType SqlType() const;
100 TInt ReadNextStatement();
101 void GetNextTokenFromStatement(TDes& aToken);
102 void GetNextTokenFromLine(TDes& aToken);
105 void WriteLine(const TDesC& aLine);
106 void WriteError(const TDesC& aLine);
107 void WriteSqlError(const TResults& aResults,const TDesC& aLine);
108 void WriteComment(const TDesC& aLine);
109 TKeyword Keyword(const TDesC& aKeyword) const;
111 void ConsumeStatement();
112 inline TInt LineNo() const;
115 TInt AppendNextLine();
130 inline TScriptEngine();
134 TInt ExecuteScriptL();
135 TInt ExecuteSql(const TDesC& aSql);
137 // keyword operations
150 void DoTextComparison(TKeyword aKeyword);
155 void PrintL(RDbRowSet& aRowSet);
156 void CompareL(RDbRowSet& aRowSet);
157 void CompareValues(RDbRowSet& aRowSet,TDbColNo ColNo,TDbColType aType,const TDesC& aToken);
158 void FatalError(const TDesC& aLine);
160 void FatalSqlError(const TDesC& aLine);
161 void TestForNoError();
165 TDbTextComparison iTextComparison;
169 RDbRowSet::TAccess iAccess;
177 inline TTimer::TTimer(TScript& aScript)
181 void TTimer::Start(const TDesC& aDes)
184 line.Format(_L("%S: "),&aDes);
185 iScript.WriteLine(line);
186 iTicks=User::TickCount();
189 void TTimer::Stop(const TDesC& aDes)
192 line.Format(_L("%S: "),&aDes);
194 #define TICK_TIME 15625
196 #define TICK_TIME 100000
198 TInt microSec=(User::TickCount()-iTicks)*TICK_TIME;
199 TUint sec=microSec/1000000;
200 TUint centi=(microSec/10000)-sec*100;
201 line.AppendFormat(_L("%u.%02us\n"),sec,centi);
202 iScript.WriteLine(line);
205 ///////////////////////////////////////////////////////////////////////////////////////
207 LOCAL_C void DeleteDataFile(const TDesC& aFullName)
210 TInt err = fsSession.Connect();
214 if(fsSession.Entry(aFullName, entry) == KErrNone)
216 RDebug::Print(_L("Deleting \"%S\" file.\n"), &aFullName);
217 err = fsSession.SetAtt(aFullName, 0, KEntryAttReadOnly);
220 RDebug::Print(_L("Error %d changing \"%S\" file attributes.\n"), err, &aFullName);
222 err = fsSession.Delete(aFullName);
225 RDebug::Print(_L("Error %d deleting \"%S\" file.\n"), err, &aFullName);
232 RDebug::Print(_L("Error %d connecting file session. File: %S.\n"), err, &aFullName);
236 ///////////////////////////////////////////////////////////////////////////////////////
237 ///////////////////////////////////////////////////////////////////////////////////////
238 //Tests macros and functions.
239 //If (!aValue) then the test will be panicked, the test data files will be deleted.
240 static void Check(TInt aValue, TInt aLine)
244 RDebug::Print(_L("*** Expression evaluated to false\r\n"));
245 DeleteDataFile(KTestDatabase);
246 DeleteDataFile(KOutputFile);
247 TheTest(EFalse, aLine);
250 //If (aValue != aExpected) then the test will be panicked, the test data files will be deleted.
251 static void Check(TInt aValue, TInt aExpected, TInt aLine)
253 if(aValue != aExpected)
255 RDebug::Print(_L("*** Expected error: %d, got: %d\r\n"), aExpected, aValue);
256 DeleteDataFile(KTestDatabase);
257 DeleteDataFile(KOutputFile);
258 TheTest(EFalse, aLine);
261 //Use these to test conditions.
262 #define TEST(arg) Check((arg), __LINE__)
263 #define TEST2(aValue, aExpected) Check(aValue, aExpected, __LINE__)
265 ///////////////////////////////////////////////////////////////////////////////////////
266 ///////////////////////////////////////////////////////////////////////////////////////
272 inline TResults::TResults()
273 : iView(TheView),iError(KErrNone)
278 // class TSqlStatement
281 inline TSqlStatement::TSqlStatement(const TDesC& aSql,TResults& aResults)
282 : iSql(aSql),iResults(aResults)
286 // executes DML or DDL
288 void TSqlStatement::ExecuteSql(TDbTextComparison aTextComparison) const
290 TInt r=TheDatabase.Execute(iSql,aTextComparison);
295 iResults.iError=KErrNone;
300 void TSqlStatement::ExecuteQuery(RDbRowSet::TAccess aAccess,TBool aWindow) const
302 iResults.iView.Close(); // discard any previous queries
303 TInt& err=iResults.iError;
305 err=iResults.iView.Prepare(TheDatabase,iSql,KDbUnlimitedWindow,aAccess);
307 err=iResults.iView.Prepare(TheDatabase,iSql,aAccess);
309 err=iResults.iView.EvaluateAll();
313 // determines the type of sql statement by matching keywords
315 TSqlStatement::TSqlType TSqlStatement::SqlType() const
317 for (TUint i=0;i<ARRAY_SIZE(KDDLKeywords);++i)
319 if (iSql.FindF(KDDLKeywords[i])==0)
322 for (TUint ii=0;ii<ARRAY_SIZE(KDMLKeywords);++ii)
324 if (iSql.FindF(KDMLKeywords[ii])==0)
327 for (TUint j=0;j<ARRAY_SIZE(KQueryKeywords);++j)
329 if (iSql.FindF(KQueryKeywords[j])==0)
336 // executes the sql statement
338 TInt TSqlStatement::Execute(TDbTextComparison aTextComparison,RDbRowSet::TAccess aAccess,TBool aWindow) const
345 ExecuteSql(aTextComparison);
348 ExecuteQuery(aAccess,aWindow);
366 TheTest.Printf(_L("---TScript::TScript(), Open the script file \"%S\"\r\n"), &KRomScriptFile);
368 TInt r=file.Open(TheFs, KRomScriptFile, EFileRead);
371 TheTest.Printf(_L("---TScript::TScript(), Create the file \"%S\"\r\n"), &KOutputFile);
372 TEST2(file.Replace(TheFs, KOutputFile, EFileWrite), KErrNone);
377 inline TInt TScript::LineNo() const
381 // checks for keywords which possibly conform to the usual statement format (ie end in ';')
383 TBool TScript::IsStatement()
385 if (iLine.Remainder().Length()==0) // null statement
387 TPtrC line=iLine.Remainder();
388 TKeyword keyword=Keyword(line);
405 case EUnknown: // could be sql
411 iStatement=line; // not a statement, so make it the whole line
420 // reads the next non-blank statement or line
422 TInt TScript::ReadNextStatement()
424 TInt r=ReadNextLine();
425 if (r!=KErrNone || !IsStatement())
431 if (!c) // nothing left to read
438 iLine.UnGet(); // the semi-colon
439 iStatement=iLine.MarkedToken();
440 iLine.Get(); // the semi-colon
441 iLine.SkipSpaceAndMark();
445 TPtrC TScript::Statement()
447 return iStatement.Remainder();
450 void TScript::ConsumeLine()
456 void TScript::ConsumeStatement()
458 iLine=iLine.Remainder();
463 // reads the next non-blank line into iLine
465 TInt TScript::ReadNextLine()
467 while (iLine.Remainder().Length()==0)
469 TInt r=iInput.Read(iBuf);
472 if (iBuf.Length()>0 && iBuf[0]==0xfeff) // unicode stream marker
476 iLine.SkipSpaceAndMark();
482 // adds next line from file to iLine
484 TInt TScript::AppendNextLine()
488 TInt r=iInput.Read(line);
492 } while (line.Length()==0);
493 iBuf=iLine.MarkedToken();
499 void TScript::WriteError(const TDesC& aLine)
502 line.Format(_L("Error at line %d: %S\n"),iLineNo,&aLine);
504 TheTest.Printf(line);
507 void TScript::WriteSqlError(const TResults& aResults,const TDesC& aLine)
510 line.Format(_L("Error at line %d: %S :-\n"),aResults.iLineNo,&aLine);
512 TheTest.Printf(line);
513 line.Format(_L("\t%S\n"),&aResults.iLine);
515 TheTest.Printf(line);
518 void TScript::WriteLine(const TDesC& aLine)
525 void TScript::WriteComment(const TDesC& aLine)
528 line.Format(_L("\n%S"),&aLine);
533 // returns the integer n from the ' = n ' which must follow in the statement
535 TInt TScript::IntValue()
537 TScriptToken keyword;
538 GetNextTokenFromStatement(keyword);
539 if (keyword.Compare(_L("="))!=0)
540 WriteError(_L("expected '=' missing"));
541 iStatement.SkipSpaceAndMark();
543 TInt err=iStatement.Val(num);
545 WriteError(_L("expected number missing"));
549 TKeyword TScript::Keyword(const TDesC& aKeyword) const
551 for (TInt ii=0; ii<ENumKeywords; ++ii)
553 if (aKeyword.FindF(KScriptKeywords[ii])==0)
560 // gets the next token from iStatement
562 void TScript::GetNextTokenFromStatement(TDes& aToken)
564 iStatement.SkipSpaceAndMark();
569 if (c=='=' || c=='!')
571 } while (iStatement.Peek().IsAlphaDigit());
572 aToken=iStatement.MarkedToken();
573 iStatement.SkipSpaceAndMark();
577 // gets the next token from iLine
579 void TScript::GetNextTokenFromLine(TDes& aToken)
581 iLine.SkipSpaceAndMark();
584 TBool literal=EFalse;
591 iLine.SkipSpaceAndMark();
594 if (c=='\'' || c=='#')
596 if ((c==',' || c=='(' || c==')' || c=='{' || c=='}' || c=='!' ) && !literal)
599 } while (cc.IsAlphaDigit() || literal || TUint(cc)=='.' || TUint(cc)=='+' || TUint(cc)=='-');
600 aToken=iLine.MarkedToken();
601 if (TUint(cc)==';') // ignore semi-colons - they're optional
603 iLine.SkipSpaceAndMark();
606 iStatement=iLine.Remainder();
607 TPtrC comment=iStatement.Remainder();
608 WriteComment(comment);
610 GetNextTokenFromLine(aToken);
616 // class TScriptEngine
619 TScriptEngine::TScriptEngine()
620 : iTextComparison(EDbCompareNormal),iTimer(iScript),iEcho(EFalse),iWindow(EFalse),iAccess(RDbRowSet::EReadOnly)
625 // runs the script file
627 void TScriptEngine::RunL()
629 while (iScript.ReadNextStatement()!=KErrEof)
634 void TScriptEngine::TestForNoError()
636 if (iResults.iError!=KErrNone)
639 line.Format(_L("unexpected error %d"),iResults.iError);
644 void TScriptEngine::ExecuteL()
646 if (ExecuteScriptL()!=KErrNone && ExecuteSql()!=KErrNone)
647 FatalSqlError(_L("syntax error"));
650 TInt TScriptEngine::ExecuteScriptL()
652 TKeyword keyword=iScript.Keyword(iScript.Statement());
699 DoTextComparison(keyword);
714 TInt TScriptEngine::ExecuteSql()
716 return ExecuteSql(iScript.Statement());
719 TInt TScriptEngine::ExecuteSql(const TDesC& aSql)
723 TScriptLine line(_L("\nSQL:\t"));
725 iScript.WriteLine(line);
727 iResults.iLineNo=iScript.LineNo();
729 TSqlStatement statement(aSql,iResults);
730 return statement.Execute(iTextComparison,iAccess,iWindow);
733 void TScriptEngine::DoStartTimer()
735 // test its right function
736 TScriptToken keyword;
737 iScript.GetNextTokenFromStatement(keyword);
738 TEST2(keyword.CompareF(_L("START")), 0);
739 iScript.GetNextTokenFromStatement(keyword);
740 TEST2(keyword.CompareF(_L("TIMER")), 0);
742 iTimer.Start(_L("Timer started"));
745 void TScriptEngine::DoStopTimer()
747 // test its right function
748 TScriptToken keyword;
749 iScript.GetNextTokenFromStatement(keyword);
750 TEST2(keyword.CompareF(_L("STOP")), 0);
751 iScript.GetNextTokenFromStatement(keyword);
752 TEST2(keyword.CompareF(_L("TIMER")), 0);
754 iTimer.Stop(_L("Timer stopped"));
757 void TScriptEngine::DoTextComparison(TKeyword aKeyword)
763 iTextComparison=EDbCompareNormal;
764 line.Set(_L("[Normal text comparison]"));
767 iTextComparison=EDbCompareFolded;
768 line.Set(_L("[Folded text comparison]"));
771 iTextComparison=EDbCompareCollated;
772 line.Set(_L("[Collated text comparison]"));
777 iScript.WriteLine(line);
780 void TScriptEngine::DoComment()
782 // test its right function
783 TScriptToken keyword;
784 iScript.GetNextTokenFromStatement(keyword);
785 TEST2(keyword.CompareF(_L("!")), 0);
787 TPtrC comment=iScript.Statement();
788 iScript.WriteComment(comment);
789 iScript.ConsumeLine();
792 void TScriptEngine::DoError()
794 // test its right function
795 TScriptToken keyword;
796 iScript.GetNextTokenFromStatement(keyword);
797 TEST2(keyword.CompareF(_L("ERROR")), 0);
800 if (iScript.Statement().Length()==0)
802 if (iResults.iError>=0)
803 FatalSqlError(_L("no error when one was expected"));
804 line=_L("\t\tERROR OK");
808 TInt err=iScript.IntValue();
809 if (iResults.iError!=err)
811 line.Format(_L("expected error %d, actual error %d"),err,iResults.iError);
814 line.Format(_L("\t\tERROR=%D OK"),err);
817 iScript.WriteLine(line);
820 void TScriptEngine::DoRows()
822 // test its right function
823 TScriptToken keyword;
824 iScript.GetNextTokenFromStatement(keyword);
825 TEST2(keyword.CompareF(_L("ROWS")), 0);
828 TInt rows=iScript.IntValue();
829 if (iResults.iRows!=rows)
831 line.Format(_L("expected rows %d, actual rows %d"),rows,iResults.iRows);
834 line.Format(_L("\t\tROWS=%D OK"),rows);
835 iScript.WriteLine(line);
838 void TScriptEngine::DoLoadDb()
840 // test its right function
842 iScript.GetNextTokenFromStatement(token);
843 TEST2(token.CompareF(_L("LOAD")), 0);
845 TFileName database(iScript.Statement());
848 line.Format(_L("Opening database: %S"),&database);
849 iScript.WriteLine(line);
850 TEST2(TheDatabase.Open(TheFs,database), KErrNone);
853 void TScriptEngine::DoEcho()
855 // test its right function
856 TScriptToken keyword;
857 iScript.GetNextTokenFromStatement(keyword);
858 TEST2(keyword.CompareF(_L("ECHO")), 0);
860 iScript.GetNextTokenFromStatement(keyword);
861 if (keyword.CompareF(_L("OFF"))==0)
864 iScript.WriteLine(_L("Echo is off"));
866 else if (keyword.CompareF(_L("ON"))==0)
869 iScript.WriteLine(_L("Echo is on"));
872 FatalError(_L("Expected ON|OFF to follow ECHO statement"));
875 void TScriptEngine::DoWindow()
877 // test its right function
878 TScriptToken keyword;
879 iScript.GetNextTokenFromStatement(keyword);
880 TEST2(keyword.CompareF(_L("WINDOW")), 0);
882 iScript.GetNextTokenFromStatement(keyword);
883 if (keyword.CompareF(_L("OFF"))==0)
886 iScript.WriteLine(_L("Window is off"));
888 else if (keyword.CompareF(_L("ON"))==0)
891 iScript.WriteLine(_L("Window is on"));
894 FatalError(_L("Expected ON|OFF to follow WINDOW statement"));
897 void TScriptEngine::DoAccess()
899 // test its right function
900 TScriptToken keyword;
901 iScript.GetNextTokenFromStatement(keyword);
902 TEST2(keyword.CompareF(_L("ACCESS")), 0);
904 iScript.GetNextTokenFromStatement(keyword);
905 if (keyword.CompareF(_L("UPDATE"))==0)
907 iAccess=RDbRowSet::EUpdatable;
908 iScript.WriteLine(_L("Access is updateable"));
910 else if (keyword.CompareF(_L("READ"))==0)
912 iAccess=RDbRowSet::EReadOnly;
913 iScript.WriteLine(_L("Access is read only"));
915 else if (keyword.CompareF(_L("INSERT"))==0)
917 iAccess=RDbRowSet::EInsertOnly;
918 iScript.WriteLine(_L("Access is insert only"));
921 FatalError(_L("Expected UPDATE|INSERT|READ to follow ACCESS statement"));
924 void TScriptEngine::DoResultsL()
926 // test its right function
928 iScript.GetNextTokenFromLine(token);
929 TEST2(token.CompareF(_L("RESULTS")), 0);
931 iScript.GetNextTokenFromLine(token);
932 if (token.Compare(_L("{"))!=0)
933 FatalError(_L("missing '{'"));
934 iScript.GetNextTokenFromLine(token); // first value
936 RDbRowSet& rowset=iResults.iView;
937 CDbColSet* colset=rowset.ColSetL();
938 CleanupStack::PushL(colset);
939 TDbColNo colno=colset->ColNo(KRowIdColName);
940 CArrayFixFlat<TInt>* rowIdScript=new CArrayFixFlat<TInt>(4);
941 CleanupStack::PushL(rowIdScript);
942 CArrayFixFlat<TInt>* rowIdView=new CArrayFixFlat<TInt>(4);
943 CleanupStack::PushL(rowIdView);
945 while (rowset.NextL())
950 if (value.Val(rIdScript)!=KErrNone)
953 line.Format(_L("Unable to extract row id from \"%S\""),&token);
956 TUint rIdView=rowset.ColUint(colno);
957 rowIdScript->AppendL(rIdScript);
958 rowIdView->AppendL(rIdView);
959 iScript.GetNextTokenFromLine(token);
960 if (token.Compare(_L(","))==0 || token.Compare(_L("}"))==0)
962 if (rowIdScript->Count())
964 TKeyArrayFix key(0,ECmpTInt);
965 rowIdScript->Sort(key);
966 rowIdView->Sort(key);
967 for (TInt ii=0;ii<rowIdScript->Count();++ii)
969 TInt expectedId=(*rowIdScript)[ii];
970 TInt actualId=(*rowIdView)[ii];
971 if (actualId!=expectedId)
974 line.Format(_L("expected row id %d, actual row id %d"),actualId,expectedId);
978 rowIdScript->Reset();
981 if (token.Compare(_L(","))==0)
982 iScript.GetNextTokenFromLine(token);
985 if (token.Compare(_L("}"))!=0)
986 FatalError(_L("too many results expected"));
987 CleanupStack::PopAndDestroy(3); // arrays + colset
988 iScript.ConsumeStatement();
992 // same as Sql create statement, but adds a counter
994 void TScriptEngine::DoBuildTable()
996 // test its right function
997 TScriptToken keyword;
998 iScript.GetNextTokenFromStatement(keyword);
999 TEST2(keyword.CompareF(_L("BUILD")), 0);
1001 TScriptLine sql(_L("CREATE "));
1002 sql.Append(iScript.Statement());
1003 TInt pos=sql.Find(_L("("));
1004 sql.Insert(++pos,_L("Rw COUNTER,"));
1005 iScript.ConsumeStatement();
1010 // same as Sql select statement, but makes sure counter is included
1012 void TScriptEngine::DoQuery()
1014 // test its right function
1015 TScriptToken keyword;
1016 iScript.GetNextTokenFromStatement(keyword);
1017 TEST2(keyword.CompareF(_L("QUERY")), 0);
1019 TScriptLine sql(iScript.Statement());
1020 if (sql.Find(_L("*"))!=0)
1022 sql.Insert(0,_L(","));
1023 sql.Insert(0,KRowIdColName);
1025 sql.Insert(0,_L("SELECT "));
1026 iScript.ConsumeStatement();
1030 void TScriptEngine::FatalError(const TDesC& aLine)
1032 iScript.WriteError(aLine);
1036 void TScriptEngine::FatalError()
1038 FatalError(_L("wrong expected value"));
1041 void TScriptEngine::FatalSqlError(const TDesC& aLine)
1043 iScript.WriteSqlError(iResults,aLine);
1047 void TScriptEngine::DoPopulate()
1049 // check its right function
1051 iScript.GetNextTokenFromLine(token);
1052 TEST2(token.CompareF(_L("POPULATE")), 0);
1054 TScriptLine sqlbase=_L("INSERT INTO ");
1055 iScript.GetNextTokenFromLine(token); // table name
1056 sqlbase.AppendFormat(_L("%S "),&token);
1057 iScript.GetNextTokenFromLine(token);
1058 if (token.Compare(_L("("))==0) // optional column names present?
1062 sqlbase.AppendFormat(token);
1063 if (token.Compare(_L(")"))==0)
1065 iScript.GetNextTokenFromLine(token);
1067 iScript.GetNextTokenFromLine(token);
1069 if (token.Compare(_L("{"))!=0)
1070 FatalError(_L("missing '{'"));
1071 sqlbase.AppendFormat(_L(" VALUES ("));
1072 iScript.GetNextTokenFromLine(token); // first value
1073 TheDatabase.Begin(); // all in same transaction
1076 if (token.Compare(_L("}"))==0)
1078 TScriptLine sql=sqlbase;
1082 iScript.GetNextTokenFromLine(token);
1083 if (token.Compare(_L(","))==0)
1085 sql.Append(token); // comma
1086 iScript.GetNextTokenFromLine(token);
1091 sql.AppendFormat(_L(")"));
1095 TheDatabase.Commit();
1096 iScript.ConsumeStatement();
1099 void TScriptEngine::DoPrintL()
1101 // check its right function
1102 TScriptToken keyword;
1103 iScript.GetNextTokenFromStatement(keyword);
1104 TEST2(keyword.CompareF(_L("PRINT")), 0);
1106 iScript.GetNextTokenFromStatement(keyword);
1107 if (keyword.CompareF(_L("VIEW"))==0)
1108 PrintL(iResults.iView);
1109 else if (keyword.CompareF(_L("TABLE"))==0)
1111 iScript.GetNextTokenFromStatement(keyword); // name of table
1113 TInt err=table.Open(TheDatabase,keyword,table.EReadOnly);
1115 FatalError(_L("unable to open table"));
1120 FatalError(_L("expected VIEW or TABLE keyword not present"));
1123 void TScriptEngine::DoCompareL()
1125 // check its right function
1126 TScriptToken keyword;
1127 iScript.GetNextTokenFromLine(keyword);
1128 TEST2(keyword.CompareF(_L("COMPARE")), 0);
1130 iScript.GetNextTokenFromLine(keyword);
1131 if (keyword.CompareF(_L("VIEW"))==0)
1132 CompareL(iResults.iView);
1133 else if (keyword.CompareF(_L("TABLE"))==0)
1135 iScript.GetNextTokenFromLine(keyword); // name of table
1137 TInt err=table.Open(TheDatabase,keyword,table.EReadOnly);
1139 FatalError(_L("unable to open table"));
1144 FatalError(_L("expected VIEW or TABLE keyword not present"));
1147 void TScriptEngine::CompareL(RDbRowSet& aRowSet)
1150 iScript.GetNextTokenFromLine(token);
1151 TBool rowIdMode=EFalse;
1152 CArrayFixFlat<TInt>* rowIdToTest=new CArrayFixFlat<TInt>(4);
1153 CleanupStack::PushL(rowIdToTest);
1154 if (token.Compare(_L("("))==0) // optional row ids present?
1157 iScript.GetNextTokenFromLine(token); // first value
1163 TEST2(value.Val(rowId), KErrNone);
1164 rowIdToTest->AppendL(rowId); // add row id to array
1165 iScript.GetNextTokenFromLine(token);
1166 if (token.Compare(_L(")"))==0)
1168 if (token.Compare(_L(","))==0)
1169 iScript.GetNextTokenFromLine(token);
1171 iScript.GetNextTokenFromLine(token);
1173 if (token.Compare(_L("{"))!=0)
1174 FatalError(_L("missing '{'"));
1175 TInt columns=aRowSet.ColCount();
1176 CDbColSet* colset=aRowSet.ColSetL();
1177 aRowSet.BeginningL();
1178 while (aRowSet.NextL())
1183 TInt currentId=aRowSet.ColUint(colset->ColNo(KRowIdColName));
1184 TBool toTest=EFalse;
1185 for (TInt jj=0; jj<rowIdToTest->Count(); ++jj)
1187 if (currentId==(*rowIdToTest)[jj])
1193 for (TInt ii=1;ii<=columns;++ii)
1195 if (rowIdMode && ii==colset->ColNo(KRowIdColName)) // ignore row id column
1197 const TDbCol& col=(*colset)[ii];
1198 iScript.GetNextTokenFromLine(token); // value
1199 if (token.Compare(_L(","))==0)
1200 iScript.GetNextTokenFromLine(token); // ignore comma
1201 if (aRowSet.IsColNull(ii))
1203 if (token.CompareF(_L("NULL"))!=0)
1204 FatalError(_L("NULL expected"));
1207 CompareValues(aRowSet,ii,col.iType,token);
1211 CleanupStack::PopAndDestroy(); // rowIdToTest
1212 iScript.GetNextTokenFromLine(token); // look for closing '}'
1213 if (token.Compare(_L("}"))!=0)
1214 FatalError(_L("missing '}'"));
1215 iScript.ConsumeStatement();
1219 // compares the value from a rowset aRowset, colimn number aColNo and of type aType, with the value
1220 // contained in the descriptor aToken
1222 void TScriptEngine::CompareValues(RDbRowSet& aRowSet,TDbColNo ColNo,TDbColType aType,const TDesC& aToken)
1230 TEST2(value.Val(num), KErrNone);
1231 if (num!=aRowSet.ColInt(ColNo))
1238 TEST2(value.Val(num8), KErrNone);
1239 if (num8!=aRowSet.ColInt8(ColNo))
1246 TEST2(value.Val(num16), KErrNone);
1247 if (num16!=aRowSet.ColInt16(ColNo))
1254 TEST2(value.Val(num64), KErrNone);
1255 if (num64!=aRowSet.ColInt64(ColNo))
1262 TEST2(value.Val(numu8,EDecimal), KErrNone);
1263 if (numu8!=aRowSet.ColUint8(ColNo))
1270 TEST2(value.Val(numu16,EDecimal), KErrNone);
1271 if (numu16!=aRowSet.ColUint16(ColNo))
1278 TEST2(value.Val(numu32,EDecimal), KErrNone);
1279 if (numu32!=aRowSet.ColUint32(ColNo))
1286 TEST2(value.Val(numr32), KErrNone);
1287 if (numr32!=aRowSet.ColReal32(ColNo))
1294 TEST2(value.Val(numr64), KErrNone);
1295 if (numr64!=aRowSet.ColReal64(ColNo))
1302 TPtrC text=aToken.Mid(1,aToken.Length()-2); // skip quotes
1303 if (text.CompareF(aRowSet.ColDes(ColNo))!=0)
1307 case EDbColDateTime:
1309 TScriptLine time=aToken.Mid(1,aToken.Length()-2); // skip hashes
1312 TTime t2(aRowSet.ColTime(ColNo).DateTime());
1322 void TScriptEngine::PrintL(RDbRowSet& aRowSet)
1324 iScript.WriteLine(TPtrC());
1325 TInt columns=aRowSet.ColCount();
1326 CDbColSet* colset=aRowSet.ColSetL();
1328 for (TInt i=1;i<=columns;++i)
1330 const TDbCol& col=(*colset)[i];
1331 line.AppendFormat(_L("%S\t"),&col.iName);
1333 iScript.WriteLine(line);
1334 aRowSet.BeginningL();
1335 while (aRowSet.NextL())
1338 for (TInt ii=1;ii<=columns;++ii)
1340 const TDbCol& col=(*colset)[ii];
1342 if (aRowSet.IsColNull(ii))
1344 line.AppendFormat(_L("NULL\t"));
1350 line.AppendFormat(_L("%d\t"),aRowSet.ColInt(ii));
1353 line.AppendFormat(_L("%d\t"),aRowSet.ColInt8(ii));
1356 line.AppendFormat(_L("%d\t"),aRowSet.ColInt16(ii));
1359 line.AppendFormat(_L("%ld\t"),aRowSet.ColInt64(ii));
1362 line.AppendFormat(_L("%u\t"),aRowSet.ColUint8(ii));
1365 line.AppendFormat(_L("%u\t"),aRowSet.ColUint16(ii));
1368 line.AppendFormat(_L("%u\t"),aRowSet.ColUint(ii));
1371 line.AppendFormat(_L("%f\t"),aRowSet.ColReal32(ii));
1374 line.AppendFormat(_L("%f\t"),aRowSet.ColReal64(ii));
1377 line.Append(aRowSet.ColDes(ii));
1380 case EDbColDateTime:
1382 TDateTime time(aRowSet.ColTime(ii).DateTime());
1383 line.AppendFormat(_L("%d:%d:%d %d/%d/%d"),time.Hour(),time.Minute(),time.Second(),time.Day(),time.Month(),time.Year());
1386 case EDbColLongText:
1388 RDbColReadStream blob;
1389 blob.OpenLC(aRowSet,ii);
1391 blob.ReadL(text,aRowSet.ColLength(ii));
1392 CleanupStack::PopAndDestroy();
1393 line.AppendFormat(_L("%S\t"),&text);
1399 iScript.WriteLine(line);
1401 iScript.WriteLine(TPtrC());
1407 // Create the database
1409 LOCAL_C void CreateDatabase()
1411 TEST2(TheDatabase.Replace(TheFs,KTestDatabase), KErrNone);
1415 // Close the database
1417 LOCAL_C void CloseDatabase()
1419 TheDatabase.Close();
1423 // Prepare the test directory.
1425 LOCAL_C void SetupTestDirectory()
1427 TInt err=TheFs.Connect();
1428 TEST2(err, KErrNone);
1430 err=TheFs.MkDir(KTestDatabase);
1431 TEST(err==KErrNone || err==KErrAlreadyExists);
1435 // Initialise the cleanup stack.
1437 LOCAL_C void SetupCleanup()
1439 TheTrapCleanup=CTrapCleanup::New();
1440 TEST(TheTrapCleanup!=NULL);
1443 for (TInt i=KTestCleanupStack;i>0;i--)\
1444 CleanupStack::PushL((TAny*)0);\
1445 CleanupStack::Pop(KTestCleanupStack);\
1447 TEST2(err, KErrNone);
1451 @SYMTestCaseID SYSLIB-DBMS-CT-0632
1452 @SYMTestCaseDesc Executes the script files
1453 @SYMTestPriority Medium
1454 @SYMTestActions Start the script engine
1455 @SYMTestExpectedResults Test must not fail
1458 LOCAL_C void RunScriptL()
1460 TheTest.Start(_L(" @SYMTestCaseID:SYSLIB-DBMS-CT-0632 Running script "));
1462 TScriptEngine script;
1471 GLDEF_C TInt E32Main()
1474 SetupTestDirectory();
1478 TRAPD(err,RunScriptL());
1479 TEST2(err, KErrNone);
1481 //deletion of data files must be done before call to end - DEF047652
1482 ::DeleteDataFile(KTestDatabase);
1483 ::DeleteDataFile(KOutputFile);//Comment this line if you want to keep "t_script.log" file.
1487 delete TheTrapCleanup;