Update contrib.
1 // Copyright (c) 2004-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 static RTest TheTest(_L("t_dblongcol"));
21 static CTrapCleanup* TheTrapCleanup;
22 const TInt KTestCleanupStack=0x40;
25 _LIT( KTestDir, "c:\\DBMS-TST\\" );
26 _LIT( KSearchTestDbPath, "c:\\DBMS-TST\\eposlmserachtest.ldb" );
28 //Delete "aFullName" file.
29 static void DeleteDataFile(const TDesC& aFullName)
32 TInt err = fsSession.Connect();
36 if(fsSession.Entry(aFullName, entry) == KErrNone)
38 RDebug::Print(_L("Deleting \"%S\" file.\n"), &aFullName);
39 err = fsSession.SetAtt(aFullName, 0, KEntryAttReadOnly);
42 RDebug::Print(_L("Error %d changing \"%S\" file attributes.\n"), err, &aFullName);
44 err = fsSession.Delete(aFullName);
47 RDebug::Print(_L("Error %d deleting \"%S\" file.\n"), err, &aFullName);
54 RDebug::Print(_L("Error %d connecting file session. File: %S.\n"), err, &aFullName);
58 ///////////////////////////////////////////////////////////////////////////////////////
59 ///////////////////////////////////////////////////////////////////////////////////////
60 //Tests macros and functions.
61 //If (!aValue) then the test will be panicked, the test data files will be deleted.
62 static void Check(TInt aValue, TInt aLine)
66 ::DeleteDataFile(KSearchTestDbPath);
67 TheTest(EFalse, aLine);
70 //If (aValue != aExpected) then the test will be panicked, the test data files will be deleted.
71 static void Check(TInt aValue, TInt aExpected, TInt aLine)
73 if(aValue != aExpected)
75 RDebug::Print(_L("*** Expected error: %d, got: %d\r\n"), aExpected, aValue);
76 ::DeleteDataFile(KSearchTestDbPath);
77 TheTest(EFalse, aLine);
80 //Use these to test conditions.
81 #define TEST(arg) ::Check((arg), __LINE__)
82 #define TEST2(aValue, aExpected) ::Check(aValue, aExpected, __LINE__)
84 ///////////////////////////////////////////////////////////////////////////////////////
86 static void LeaveL(TInt aLine, TInt aError)
88 RDebug::Print(_L("*** Leave. Error: %d, line: %d\r\n"), aError, aLine);
91 static void LeaveIfErrorL(TInt aLine, TInt aError)
95 LeaveL(aLine, aError);
98 #define __LEAVE(err) LeaveL(__LINE__, err)
99 #define __LEAVE_IF_ERROR(err) LeaveIfErrorL(__LINE__, err)
101 ///////////////////////////////////////////////////////////////////////////////////////
102 ///////////////////////////////////////////////////////////////////////////////////////
105 // Prepare the test directory.
107 static void SetupTestDirectory()
109 TInt r=TheFsSession.MkDir(KTestDir);
110 TEST(r==KErrNone || r==KErrAlreadyExists);
111 r=TheFsSession.SetSessionPath(KTestDir);
115 static TInt SearchForL( const TPtrC& aSearchString, RDbNamedDatabase& aDb )
117 _LIT( KSQLSearchStatement, "select Notes from CDs where Notes like '%S'" );
119 query.Format( KSQLSearchStatement, &aSearchString );
122 _LIT( KQueryFormatter, "\r\n %S\r\n" );
124 msg.Format( KQueryFormatter, &query );
125 TheTest.Printf( msg );
127 // create a view on the database
129 // use EDbCompareCollated in order to search case-insensitive
130 __LEAVE_IF_ERROR( view.Prepare( aDb, TDbQuery( query, EDbCompareCollated ) ) );
131 __LEAVE_IF_ERROR( view.EvaluateAll() );
133 // iterate across the row set
134 TInt noOfMatches = 0;
135 for ( view.FirstL(); view.AtRow(); view.NextL() )
142 // Display no of matches
143 _LIT( KNoOfMatchFormatter, " Found %d matches\r\n" );
144 msg.Format( KNoOfMatchFormatter, noOfMatches );
145 TheTest.Printf( msg );
153 @SYMTestCaseID SYSLIB-DBMS-CT-0645
154 @SYMTestCaseDesc Searching for data from a database
155 @SYMTestPriority Medium
156 @SYMTestActions Tests for EDbColText,EDbColLongText column type
157 @SYMTestExpectedResults Test must not fail
160 static void TestSearchL( TInt aIndex )
163 _LIT( KComposer1, "Elgar" );
164 _LIT( KCol1, "Artist" );
165 _LIT( KCol2, "Notes" );
166 _LIT( KTable, "CDs" );
168 TInt err = TheFsSession.Delete( KSearchTestDbPath );
169 if ( ( err != KErrNone ) && ( err != KErrNotFound ) && ( err != KErrPathNotFound ) )
175 CleanupClosePushL( db );
176 __LEAVE_IF_ERROR( db.Create( TheFsSession, KSearchTestDbPath ) );
179 // Create the database table
181 // Create a table definition
182 CDbColSet* columns = CDbColSet::NewLC();
184 columns->AddL( TDbCol( KCol1, EDbColText ) );
186 columns->AddL( TDbCol( KCol2, EDbColText ) );
188 columns->AddL( TDbCol( KCol2, EDbColLongText ) );
189 // if the column is of type "EDbColText" instead,
190 // all searching is working properly
192 __LEAVE_IF_ERROR( db.CreateTable( KTable, *columns ) );
193 // cleanup the column set
194 CleanupStack::PopAndDestroy( columns );
199 // create a view on the database
200 _LIT( KSQLStatement, "select Artist,Notes from CDs order by Artist" );
202 __LEAVE_IF_ERROR( view.Prepare( db, TDbQuery( KSQLStatement, EDbCompareNormal ) ) );
203 __LEAVE_IF_ERROR( view.EvaluateAll() );
205 // Get the structure of rowset
206 CDbColSet* colSet = view.ColSetL();
209 view.SetColL( colSet->ColNo( KCol1 ), KComposer1 ); // Artist
211 // RDbColWriteStream out;
212 // TDbColNo col = colSet->ColNo( KCol2 ); // Ordinal position of long column
214 // out.OpenLC( view, col );
215 // out.WriteL( _L( "Some additional comment here." ) );
218 // CleanupStack::PopAndDestroy(); // out
219 view.SetColL( colSet->ColNo( KCol2 ), _L( "Some additional comment here." ) );
228 _LIT( KRowFormatter, "\r\n Artist: %S \r\n Notes: %S \r\n" );
229 __LEAVE_IF_ERROR( view.Prepare( db, TDbQuery( KSQLStatement, EDbCompareNormal ) ) );
230 __LEAVE_IF_ERROR( view.EvaluateAll() );
232 // Get the structure of the rowset
233 colSet = view.ColSetL();
234 // iterate across the row set
235 for ( view.FirstL(); view.AtRow(); view.NextL() )
239 // while the rowset is on this row, can use a TPtrC to
240 // refer to any text columns
241 TPtrC artist = view.ColDes( colSet->ColNo( KCol1 ) );
242 // and a stream for long columns
244 TDbColNo col = colSet->ColNo( KCol2 ); // Ordinal position of long column
245 TBuf<256> notes; // Buffer for out notes
246 in.OpenLC( view, col );
247 in.ReadL( notes, view.ColLength( col ) );
249 CleanupStack::PopAndDestroy(); // in
250 // Display the artist and notes
252 msg.Format( KRowFormatter, &artist, ¬es );
253 TheTest.Printf( msg );
260 // Search for the data
263 result = SearchForL( _L( "Some*" ), db ); // matches
265 result = SearchForL( _L( "some*" ), db ); // defect causes no match, should match
267 result = SearchForL( _L( "*some*" ), db ); // matches
269 result = SearchForL( _L( "s?me*" ), db ); // matches
271 result = SearchForL( _L( "Some additional comment here." ), db ); // matches
273 result = SearchForL( _L( "some additional comment here." ), db ); // defect causes no match, should match
276 CleanupStack::PopAndDestroy( &db );
280 // Initialise the cleanup stack.
282 static void setupCleanup()
284 TheTrapCleanup=CTrapCleanup::New();
285 TEST(TheTrapCleanup!=NULL);
288 for (TInt i=KTestCleanupStack;i>0;i--)\
289 CleanupStack::PushL((TAny*)0);\
290 CleanupStack::Pop(KTestCleanupStack);\
296 // Test streaming conversions.
298 GLDEF_C TInt E32Main()
304 TInt err = TheFsSession.Connect();
305 TEST2(err, KErrNone);
306 ::SetupTestDirectory();
308 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-DBMS-CT-0645 Testing DBMS - EDbColText "));
309 TRAP(err, TestSearchL( 0 ));
311 TheTest.Start(_L(" @SYMTestCaseID:SYSLIB-DBMS-CT-0645 Testing DBMS - EDbColLongText "));
312 TRAP(err, TestSearchL( 1 ));
314 ::DeleteDataFile(KSearchTestDbPath);
317 TheFsSession.Close();
320 delete TheTrapCleanup;