sl@0
|
1 |
// Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
// All rights reserved.
|
sl@0
|
3 |
// This component and the accompanying materials are made available
|
sl@0
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
sl@0
|
5 |
// which accompanies this distribution, and is available
|
sl@0
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
//
|
sl@0
|
8 |
// Initial Contributors:
|
sl@0
|
9 |
// Nokia Corporation - initial contribution.
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// Contributors:
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// Description:
|
sl@0
|
14 |
//
|
sl@0
|
15 |
|
sl@0
|
16 |
#include <d32dbms.h>
|
sl@0
|
17 |
#include <s32file.h>
|
sl@0
|
18 |
#include <e32test.h>
|
sl@0
|
19 |
|
sl@0
|
20 |
static RTest TheTest(_L("t_dblongcol"));
|
sl@0
|
21 |
static CTrapCleanup* TheTrapCleanup;
|
sl@0
|
22 |
const TInt KTestCleanupStack=0x40;
|
sl@0
|
23 |
RFs TheFsSession;
|
sl@0
|
24 |
|
sl@0
|
25 |
_LIT( KTestDir, "c:\\DBMS-TST\\" );
|
sl@0
|
26 |
_LIT( KSearchTestDbPath, "c:\\DBMS-TST\\eposlmserachtest.ldb" );
|
sl@0
|
27 |
|
sl@0
|
28 |
//Delete "aFullName" file.
|
sl@0
|
29 |
static void DeleteDataFile(const TDesC& aFullName)
|
sl@0
|
30 |
{
|
sl@0
|
31 |
RFs fsSession;
|
sl@0
|
32 |
TInt err = fsSession.Connect();
|
sl@0
|
33 |
if(err == KErrNone)
|
sl@0
|
34 |
{
|
sl@0
|
35 |
TEntry entry;
|
sl@0
|
36 |
if(fsSession.Entry(aFullName, entry) == KErrNone)
|
sl@0
|
37 |
{
|
sl@0
|
38 |
RDebug::Print(_L("Deleting \"%S\" file.\n"), &aFullName);
|
sl@0
|
39 |
err = fsSession.SetAtt(aFullName, 0, KEntryAttReadOnly);
|
sl@0
|
40 |
if(err != KErrNone)
|
sl@0
|
41 |
{
|
sl@0
|
42 |
RDebug::Print(_L("Error %d changing \"%S\" file attributes.\n"), err, &aFullName);
|
sl@0
|
43 |
}
|
sl@0
|
44 |
err = fsSession.Delete(aFullName);
|
sl@0
|
45 |
if(err != KErrNone)
|
sl@0
|
46 |
{
|
sl@0
|
47 |
RDebug::Print(_L("Error %d deleting \"%S\" file.\n"), err, &aFullName);
|
sl@0
|
48 |
}
|
sl@0
|
49 |
}
|
sl@0
|
50 |
fsSession.Close();
|
sl@0
|
51 |
}
|
sl@0
|
52 |
else
|
sl@0
|
53 |
{
|
sl@0
|
54 |
RDebug::Print(_L("Error %d connecting file session. File: %S.\n"), err, &aFullName);
|
sl@0
|
55 |
}
|
sl@0
|
56 |
}
|
sl@0
|
57 |
|
sl@0
|
58 |
///////////////////////////////////////////////////////////////////////////////////////
|
sl@0
|
59 |
///////////////////////////////////////////////////////////////////////////////////////
|
sl@0
|
60 |
//Tests macros and functions.
|
sl@0
|
61 |
//If (!aValue) then the test will be panicked, the test data files will be deleted.
|
sl@0
|
62 |
static void Check(TInt aValue, TInt aLine)
|
sl@0
|
63 |
{
|
sl@0
|
64 |
if(!aValue)
|
sl@0
|
65 |
{
|
sl@0
|
66 |
::DeleteDataFile(KSearchTestDbPath);
|
sl@0
|
67 |
TheTest(EFalse, aLine);
|
sl@0
|
68 |
}
|
sl@0
|
69 |
}
|
sl@0
|
70 |
//If (aValue != aExpected) then the test will be panicked, the test data files will be deleted.
|
sl@0
|
71 |
static void Check(TInt aValue, TInt aExpected, TInt aLine)
|
sl@0
|
72 |
{
|
sl@0
|
73 |
if(aValue != aExpected)
|
sl@0
|
74 |
{
|
sl@0
|
75 |
RDebug::Print(_L("*** Expected error: %d, got: %d\r\n"), aExpected, aValue);
|
sl@0
|
76 |
::DeleteDataFile(KSearchTestDbPath);
|
sl@0
|
77 |
TheTest(EFalse, aLine);
|
sl@0
|
78 |
}
|
sl@0
|
79 |
}
|
sl@0
|
80 |
//Use these to test conditions.
|
sl@0
|
81 |
#define TEST(arg) ::Check((arg), __LINE__)
|
sl@0
|
82 |
#define TEST2(aValue, aExpected) ::Check(aValue, aExpected, __LINE__)
|
sl@0
|
83 |
|
sl@0
|
84 |
///////////////////////////////////////////////////////////////////////////////////////
|
sl@0
|
85 |
|
sl@0
|
86 |
static void LeaveL(TInt aLine, TInt aError)
|
sl@0
|
87 |
{
|
sl@0
|
88 |
RDebug::Print(_L("*** Leave. Error: %d, line: %d\r\n"), aError, aLine);
|
sl@0
|
89 |
User::Leave(aError);
|
sl@0
|
90 |
}
|
sl@0
|
91 |
static void LeaveIfErrorL(TInt aLine, TInt aError)
|
sl@0
|
92 |
{
|
sl@0
|
93 |
if(aError < KErrNone)
|
sl@0
|
94 |
{
|
sl@0
|
95 |
LeaveL(aLine, aError);
|
sl@0
|
96 |
}
|
sl@0
|
97 |
}
|
sl@0
|
98 |
#define __LEAVE(err) LeaveL(__LINE__, err)
|
sl@0
|
99 |
#define __LEAVE_IF_ERROR(err) LeaveIfErrorL(__LINE__, err)
|
sl@0
|
100 |
|
sl@0
|
101 |
///////////////////////////////////////////////////////////////////////////////////////
|
sl@0
|
102 |
///////////////////////////////////////////////////////////////////////////////////////
|
sl@0
|
103 |
|
sl@0
|
104 |
//
|
sl@0
|
105 |
// Prepare the test directory.
|
sl@0
|
106 |
//
|
sl@0
|
107 |
static void SetupTestDirectory()
|
sl@0
|
108 |
{
|
sl@0
|
109 |
TInt r=TheFsSession.MkDir(KTestDir);
|
sl@0
|
110 |
TEST(r==KErrNone || r==KErrAlreadyExists);
|
sl@0
|
111 |
r=TheFsSession.SetSessionPath(KTestDir);
|
sl@0
|
112 |
TEST2(r,KErrNone);
|
sl@0
|
113 |
}
|
sl@0
|
114 |
|
sl@0
|
115 |
static TInt SearchForL( const TPtrC& aSearchString, RDbNamedDatabase& aDb )
|
sl@0
|
116 |
{
|
sl@0
|
117 |
_LIT( KSQLSearchStatement, "select Notes from CDs where Notes like '%S'" );
|
sl@0
|
118 |
TBuf<512> query;
|
sl@0
|
119 |
query.Format( KSQLSearchStatement, &aSearchString );
|
sl@0
|
120 |
|
sl@0
|
121 |
// Display query
|
sl@0
|
122 |
_LIT( KQueryFormatter, "\r\n %S\r\n" );
|
sl@0
|
123 |
TBuf<512> msg;
|
sl@0
|
124 |
msg.Format( KQueryFormatter, &query );
|
sl@0
|
125 |
TheTest.Printf( msg );
|
sl@0
|
126 |
|
sl@0
|
127 |
// create a view on the database
|
sl@0
|
128 |
RDbView view;
|
sl@0
|
129 |
// use EDbCompareCollated in order to search case-insensitive
|
sl@0
|
130 |
__LEAVE_IF_ERROR( view.Prepare( aDb, TDbQuery( query, EDbCompareCollated ) ) );
|
sl@0
|
131 |
__LEAVE_IF_ERROR( view.EvaluateAll() );
|
sl@0
|
132 |
|
sl@0
|
133 |
// iterate across the row set
|
sl@0
|
134 |
TInt noOfMatches = 0;
|
sl@0
|
135 |
for ( view.FirstL(); view.AtRow(); view.NextL() )
|
sl@0
|
136 |
{
|
sl@0
|
137 |
// retrieve the row
|
sl@0
|
138 |
view.GetL();
|
sl@0
|
139 |
noOfMatches++;
|
sl@0
|
140 |
}
|
sl@0
|
141 |
|
sl@0
|
142 |
// Display no of matches
|
sl@0
|
143 |
_LIT( KNoOfMatchFormatter, " Found %d matches\r\n" );
|
sl@0
|
144 |
msg.Format( KNoOfMatchFormatter, noOfMatches );
|
sl@0
|
145 |
TheTest.Printf( msg );
|
sl@0
|
146 |
|
sl@0
|
147 |
// close the view
|
sl@0
|
148 |
view.Close();
|
sl@0
|
149 |
return noOfMatches;
|
sl@0
|
150 |
}
|
sl@0
|
151 |
|
sl@0
|
152 |
/**
|
sl@0
|
153 |
@SYMTestCaseID SYSLIB-DBMS-CT-0645
|
sl@0
|
154 |
@SYMTestCaseDesc Searching for data from a database
|
sl@0
|
155 |
@SYMTestPriority Medium
|
sl@0
|
156 |
@SYMTestActions Tests for EDbColText,EDbColLongText column type
|
sl@0
|
157 |
@SYMTestExpectedResults Test must not fail
|
sl@0
|
158 |
@SYMREQ REQ0000
|
sl@0
|
159 |
*/
|
sl@0
|
160 |
static void TestSearchL( TInt aIndex )
|
sl@0
|
161 |
{
|
sl@0
|
162 |
// Default database
|
sl@0
|
163 |
_LIT( KComposer1, "Elgar" );
|
sl@0
|
164 |
_LIT( KCol1, "Artist" );
|
sl@0
|
165 |
_LIT( KCol2, "Notes" );
|
sl@0
|
166 |
_LIT( KTable, "CDs" );
|
sl@0
|
167 |
|
sl@0
|
168 |
TInt err = TheFsSession.Delete( KSearchTestDbPath );
|
sl@0
|
169 |
if ( ( err != KErrNone ) && ( err != KErrNotFound ) && ( err != KErrPathNotFound ) )
|
sl@0
|
170 |
{
|
sl@0
|
171 |
__LEAVE( err );
|
sl@0
|
172 |
}
|
sl@0
|
173 |
|
sl@0
|
174 |
RDbNamedDatabase db;
|
sl@0
|
175 |
CleanupClosePushL( db );
|
sl@0
|
176 |
__LEAVE_IF_ERROR( db.Create( TheFsSession, KSearchTestDbPath ) );
|
sl@0
|
177 |
|
sl@0
|
178 |
//
|
sl@0
|
179 |
// Create the database table
|
sl@0
|
180 |
//
|
sl@0
|
181 |
// Create a table definition
|
sl@0
|
182 |
CDbColSet* columns = CDbColSet::NewLC();
|
sl@0
|
183 |
// add the columns
|
sl@0
|
184 |
columns->AddL( TDbCol( KCol1, EDbColText ) );
|
sl@0
|
185 |
if ( aIndex == 0 )
|
sl@0
|
186 |
columns->AddL( TDbCol( KCol2, EDbColText ) );
|
sl@0
|
187 |
else
|
sl@0
|
188 |
columns->AddL( TDbCol( KCol2, EDbColLongText ) );
|
sl@0
|
189 |
// if the column is of type "EDbColText" instead,
|
sl@0
|
190 |
// all searching is working properly
|
sl@0
|
191 |
// Create a table
|
sl@0
|
192 |
__LEAVE_IF_ERROR( db.CreateTable( KTable, *columns ) );
|
sl@0
|
193 |
// cleanup the column set
|
sl@0
|
194 |
CleanupStack::PopAndDestroy( columns );
|
sl@0
|
195 |
|
sl@0
|
196 |
//
|
sl@0
|
197 |
// Add data
|
sl@0
|
198 |
//
|
sl@0
|
199 |
// create a view on the database
|
sl@0
|
200 |
_LIT( KSQLStatement, "select Artist,Notes from CDs order by Artist" );
|
sl@0
|
201 |
RDbView view;
|
sl@0
|
202 |
__LEAVE_IF_ERROR( view.Prepare( db, TDbQuery( KSQLStatement, EDbCompareNormal ) ) );
|
sl@0
|
203 |
__LEAVE_IF_ERROR( view.EvaluateAll() );
|
sl@0
|
204 |
|
sl@0
|
205 |
// Get the structure of rowset
|
sl@0
|
206 |
CDbColSet* colSet = view.ColSetL();
|
sl@0
|
207 |
// insert a row
|
sl@0
|
208 |
view.InsertL();
|
sl@0
|
209 |
view.SetColL( colSet->ColNo( KCol1 ), KComposer1 ); // Artist
|
sl@0
|
210 |
// Use the stream
|
sl@0
|
211 |
// RDbColWriteStream out;
|
sl@0
|
212 |
// TDbColNo col = colSet->ColNo( KCol2 ); // Ordinal position of long column
|
sl@0
|
213 |
//
|
sl@0
|
214 |
// out.OpenLC( view, col );
|
sl@0
|
215 |
// out.WriteL( _L( "Some additional comment here." ) );
|
sl@0
|
216 |
// out.Close();
|
sl@0
|
217 |
//
|
sl@0
|
218 |
// CleanupStack::PopAndDestroy(); // out
|
sl@0
|
219 |
view.SetColL( colSet->ColNo( KCol2 ), _L( "Some additional comment here." ) );
|
sl@0
|
220 |
view.PutL();
|
sl@0
|
221 |
// close the view
|
sl@0
|
222 |
view.Close();
|
sl@0
|
223 |
delete colSet;
|
sl@0
|
224 |
|
sl@0
|
225 |
//
|
sl@0
|
226 |
// Display the data
|
sl@0
|
227 |
//
|
sl@0
|
228 |
_LIT( KRowFormatter, "\r\n Artist: %S \r\n Notes: %S \r\n" );
|
sl@0
|
229 |
__LEAVE_IF_ERROR( view.Prepare( db, TDbQuery( KSQLStatement, EDbCompareNormal ) ) );
|
sl@0
|
230 |
__LEAVE_IF_ERROR( view.EvaluateAll() );
|
sl@0
|
231 |
|
sl@0
|
232 |
// Get the structure of the rowset
|
sl@0
|
233 |
colSet = view.ColSetL();
|
sl@0
|
234 |
// iterate across the row set
|
sl@0
|
235 |
for ( view.FirstL(); view.AtRow(); view.NextL() )
|
sl@0
|
236 |
{
|
sl@0
|
237 |
// retrieve the row
|
sl@0
|
238 |
view.GetL();
|
sl@0
|
239 |
// while the rowset is on this row, can use a TPtrC to
|
sl@0
|
240 |
// refer to any text columns
|
sl@0
|
241 |
TPtrC artist = view.ColDes( colSet->ColNo( KCol1 ) );
|
sl@0
|
242 |
// and a stream for long columns
|
sl@0
|
243 |
RDbColReadStream in;
|
sl@0
|
244 |
TDbColNo col = colSet->ColNo( KCol2 ); // Ordinal position of long column
|
sl@0
|
245 |
TBuf<256> notes; // Buffer for out notes
|
sl@0
|
246 |
in.OpenLC( view, col );
|
sl@0
|
247 |
in.ReadL( notes, view.ColLength( col ) );
|
sl@0
|
248 |
in.Close();
|
sl@0
|
249 |
CleanupStack::PopAndDestroy(); // in
|
sl@0
|
250 |
// Display the artist and notes
|
sl@0
|
251 |
TBuf<512> msg;
|
sl@0
|
252 |
msg.Format( KRowFormatter, &artist, ¬es );
|
sl@0
|
253 |
TheTest.Printf( msg );
|
sl@0
|
254 |
}
|
sl@0
|
255 |
// close the view
|
sl@0
|
256 |
view.Close();
|
sl@0
|
257 |
delete colSet;
|
sl@0
|
258 |
|
sl@0
|
259 |
//
|
sl@0
|
260 |
// Search for the data
|
sl@0
|
261 |
//
|
sl@0
|
262 |
TInt result;
|
sl@0
|
263 |
result = SearchForL( _L( "Some*" ), db ); // matches
|
sl@0
|
264 |
TEST(result == 1);
|
sl@0
|
265 |
result = SearchForL( _L( "some*" ), db ); // defect causes no match, should match
|
sl@0
|
266 |
TEST(result == 1);
|
sl@0
|
267 |
result = SearchForL( _L( "*some*" ), db ); // matches
|
sl@0
|
268 |
TEST(result == 1);
|
sl@0
|
269 |
result = SearchForL( _L( "s?me*" ), db ); // matches
|
sl@0
|
270 |
TEST(result == 1);
|
sl@0
|
271 |
result = SearchForL( _L( "Some additional comment here." ), db ); // matches
|
sl@0
|
272 |
TEST(result == 1);
|
sl@0
|
273 |
result = SearchForL( _L( "some additional comment here." ), db ); // defect causes no match, should match
|
sl@0
|
274 |
TEST(result == 1);
|
sl@0
|
275 |
|
sl@0
|
276 |
CleanupStack::PopAndDestroy( &db );
|
sl@0
|
277 |
}
|
sl@0
|
278 |
|
sl@0
|
279 |
//
|
sl@0
|
280 |
// Initialise the cleanup stack.
|
sl@0
|
281 |
//
|
sl@0
|
282 |
static void setupCleanup()
|
sl@0
|
283 |
{
|
sl@0
|
284 |
TheTrapCleanup=CTrapCleanup::New();
|
sl@0
|
285 |
TEST(TheTrapCleanup!=NULL);
|
sl@0
|
286 |
TRAPD(r,\
|
sl@0
|
287 |
{\
|
sl@0
|
288 |
for (TInt i=KTestCleanupStack;i>0;i--)\
|
sl@0
|
289 |
CleanupStack::PushL((TAny*)0);\
|
sl@0
|
290 |
CleanupStack::Pop(KTestCleanupStack);\
|
sl@0
|
291 |
});
|
sl@0
|
292 |
TEST2(r,KErrNone);
|
sl@0
|
293 |
}
|
sl@0
|
294 |
|
sl@0
|
295 |
//
|
sl@0
|
296 |
// Test streaming conversions.
|
sl@0
|
297 |
//
|
sl@0
|
298 |
GLDEF_C TInt E32Main()
|
sl@0
|
299 |
{
|
sl@0
|
300 |
TheTest.Title();
|
sl@0
|
301 |
setupCleanup();
|
sl@0
|
302 |
__UHEAP_MARK;
|
sl@0
|
303 |
|
sl@0
|
304 |
TInt err = TheFsSession.Connect();
|
sl@0
|
305 |
TEST2(err, KErrNone);
|
sl@0
|
306 |
::SetupTestDirectory();
|
sl@0
|
307 |
|
sl@0
|
308 |
TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-DBMS-CT-0645 Testing DBMS - EDbColText "));
|
sl@0
|
309 |
TRAP(err, TestSearchL( 0 ));
|
sl@0
|
310 |
TEST2(err,KErrNone);
|
sl@0
|
311 |
TheTest.Start(_L(" @SYMTestCaseID:SYSLIB-DBMS-CT-0645 Testing DBMS - EDbColLongText "));
|
sl@0
|
312 |
TRAP(err, TestSearchL( 1 ));
|
sl@0
|
313 |
TEST2(err,KErrNone);
|
sl@0
|
314 |
::DeleteDataFile(KSearchTestDbPath);
|
sl@0
|
315 |
TheTest.End();
|
sl@0
|
316 |
|
sl@0
|
317 |
TheFsSession.Close();
|
sl@0
|
318 |
|
sl@0
|
319 |
__UHEAP_MARKEND;
|
sl@0
|
320 |
delete TheTrapCleanup;
|
sl@0
|
321 |
TheTest.Close();
|
sl@0
|
322 |
return 0;
|
sl@0
|
323 |
}
|
sl@0
|
324 |
|