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 <e32math.h>
|
sl@0
|
18 |
#include <e32test.h>
|
sl@0
|
19 |
#include <f32file.h>
|
sl@0
|
20 |
#include <s32buf.h>
|
sl@0
|
21 |
|
sl@0
|
22 |
LOCAL_D RTest TheTest (_L ("t_dbdefect"));
|
sl@0
|
23 |
LOCAL_D CTrapCleanup* TheTrapCleanup = NULL;
|
sl@0
|
24 |
LOCAL_D RSemaphore TheWaitToStartSem;
|
sl@0
|
25 |
LOCAL_D RSemaphore TheWaitForThreadsReadySem;
|
sl@0
|
26 |
LOCAL_D RFs TheFs;
|
sl@0
|
27 |
LOCAL_D RDbs TheDbs1, TheDbs2;
|
sl@0
|
28 |
LOCAL_D RDbNamedDatabase TheDb1, TheDb2;
|
sl@0
|
29 |
|
sl@0
|
30 |
_LIT (KName, "ConnectTestThread_");
|
sl@0
|
31 |
_LIT (KStart, "Starting thread %x.\n");
|
sl@0
|
32 |
_LIT (KConnect, "Thread %x: Waiting to connect...\n");
|
sl@0
|
33 |
_LIT (KConSuccess, "Thread %x: Connection succeeded.\n");
|
sl@0
|
34 |
_LIT (KConFailed, "Thread %x: Connection failed. Error %d.\n");
|
sl@0
|
35 |
_LIT (KStatus, "Status of thread %x is %d.\n");
|
sl@0
|
36 |
|
sl@0
|
37 |
|
sl@0
|
38 |
_LIT(KTable, "TABLE");
|
sl@0
|
39 |
_LIT(KColName, "Fld");
|
sl@0
|
40 |
_LIT(KCol2Name, "Fld2");
|
sl@0
|
41 |
_LIT(KDbName, "C:\\DBMS-TST\\TESTDB22.DB");
|
sl@0
|
42 |
_LIT(KSQLInsert1, "INSERT INTO TABLE (Fld, Fld2) VALUES ('ACDC\\','BLAH')");
|
sl@0
|
43 |
_LIT(KSQLInsert2, "INSERT INTO TABLE (Fld) VALUES ('ABCDEFGH')");
|
sl@0
|
44 |
_LIT(KSQLInsert3, "INSERT INTO TABLE (Fld) VALUES ('A?CDEFGH')");
|
sl@0
|
45 |
_LIT(KSQLInsert4, "INSERT INTO TABLE (Fld) VALUES ('A?*?CDEFGH')");
|
sl@0
|
46 |
_LIT(KSQLInsert5, "INSERT INTO TABLE (Fld) VALUES ('A*CDEFGH')");
|
sl@0
|
47 |
_LIT(KSQLInsert6, "INSERT INTO TABLE (Fld, Fld2) VALUES ('ADCDEFGHIJKLMNOPQRSTUVWXYZ123456789ACDEFGHIJKLMNOPQRSTUVWXYZ123456789ACDEFGHIJKLMNOPQRSTUVWXYZ123456789ACDEFGHIJKLMNOPQRSTUVWXYZ123456789ACDEFGHIJKLMNOPQRSTUVWXYZ123456789ACDEFGHIJKLMNOPQRSTUVWXYZ123456789ACDEFGHIJKLMNOPQRSTUVWXYZ123456789ACDEFGHIJKLMNOP','ADCB')");
|
sl@0
|
48 |
_LIT(KSQLInsert7, "INSERT INTO TABLE (Fld) VALUES ('XZD\\FZX')");
|
sl@0
|
49 |
|
sl@0
|
50 |
_LIT(KSqlRequestGranularity, "SELECT Fld FROM test WHERE (Fld LIKE '1' AND Fld LIKE '2') AND Fld LIKE '3' AND Fld LIKE '4' AND Fld LIKE '5' AND Fld LIKE '6'");
|
sl@0
|
51 |
|
sl@0
|
52 |
_LIT(KText16Name, "text16");
|
sl@0
|
53 |
_LIT(KTableName, "test");
|
sl@0
|
54 |
_LIT(KIndexName, "test_index");
|
sl@0
|
55 |
_LIT(KMaxStringFormat, "%0256d");
|
sl@0
|
56 |
|
sl@0
|
57 |
void TestCleanup()
|
sl@0
|
58 |
{
|
sl@0
|
59 |
TheDb2.Close();
|
sl@0
|
60 |
TheDb1.Close();
|
sl@0
|
61 |
TheDbs2.Close();
|
sl@0
|
62 |
TheDbs1.Close();
|
sl@0
|
63 |
(void)TheFs.Delete(KDbName);
|
sl@0
|
64 |
TheFs.Close();
|
sl@0
|
65 |
}
|
sl@0
|
66 |
|
sl@0
|
67 |
//-----------------------------------------------------------------------------
|
sl@0
|
68 |
//
|
sl@0
|
69 |
// Test macros and functions.
|
sl@0
|
70 |
//
|
sl@0
|
71 |
//-----------------------------------------------------------------------------
|
sl@0
|
72 |
// If (!aValue) then the test will be panicked, the test data files will be
|
sl@0
|
73 |
// deleted.
|
sl@0
|
74 |
LOCAL_C void Check(TInt aValue, TInt aLine)
|
sl@0
|
75 |
{
|
sl@0
|
76 |
if(!aValue)
|
sl@0
|
77 |
{
|
sl@0
|
78 |
TestCleanup();
|
sl@0
|
79 |
TheTest(EFalse, aLine);
|
sl@0
|
80 |
}
|
sl@0
|
81 |
}
|
sl@0
|
82 |
|
sl@0
|
83 |
|
sl@0
|
84 |
// If (aValue != aExpected) then the test will be panicked, the test data files
|
sl@0
|
85 |
// will be deleted.
|
sl@0
|
86 |
LOCAL_C void Check(TInt aValue, TInt aExpected, TInt aLine)
|
sl@0
|
87 |
{
|
sl@0
|
88 |
if(aValue != aExpected)
|
sl@0
|
89 |
{
|
sl@0
|
90 |
RDebug::Print(_L("*** Expected error: %d, got: %d\r\n"), aExpected, aValue);
|
sl@0
|
91 |
TestCleanup();
|
sl@0
|
92 |
TheTest(EFalse, aLine);
|
sl@0
|
93 |
}
|
sl@0
|
94 |
}
|
sl@0
|
95 |
|
sl@0
|
96 |
|
sl@0
|
97 |
//Use these to test conditions.
|
sl@0
|
98 |
#define TEST(arg) ::Check((arg), __LINE__)
|
sl@0
|
99 |
#define TEST2(aValue, aExpected) ::Check((aValue), (aExpected), __LINE__)
|
sl@0
|
100 |
//-----------------------------------------------------------------------------
|
sl@0
|
101 |
//-----------------------------------------------------------------------------
|
sl@0
|
102 |
|
sl@0
|
103 |
struct TTest
|
sl@0
|
104 |
{
|
sl@0
|
105 |
const TText* result;
|
sl@0
|
106 |
const TText* query;
|
sl@0
|
107 |
};
|
sl@0
|
108 |
|
sl@0
|
109 |
const TTest KQuery[]=
|
sl@0
|
110 |
{
|
sl@0
|
111 |
{_S("ACDC\\"),_S("SELECT Fld FROM TABLE WHERE Fld LIKE 'ACDC\\' AND Fld2 LIKE '*BL*'")},
|
sl@0
|
112 |
{_S("A*CDEFGH"),_S("SELECT * FROM TABLE WHERE Fld LIKE '*A\\*C*' ESCAPE '\\'")},
|
sl@0
|
113 |
{_S("A?CDEFGH"),_S("SELECT * FROM TABLE WHERE Fld LIKE '*A\\?C*' ESCAPE '\\'")},
|
sl@0
|
114 |
{_S("A?*?CDEFGH"),_S("SELECT * FROM TABLE WHERE Fld LIKE '*A\\?\\*\\?C*' ESCAPE '\\'")},
|
sl@0
|
115 |
{_S("ADCDEFGHIJKLMNOPQRSTUVWXYZ123456789ACDEFGHIJKLMNOPQRSTUVWXYZ123456789ACDEFGHIJKLMNOPQRSTUVWXYZ123456789ACDEFGHIJKLMNOPQRSTUVWXYZ123456789ACDEFGHIJKLMNOPQRSTUVWXYZ123456789ACDEFGHIJKLMNOPQRSTUVWXYZ123456789ACDEFGHIJKLMNOPQRSTUVWXYZ123456789ACDEFGHIJKLMNOP"),_S("SELECT * FROM TABLE WHERE Fld LIKE '*1234*'")},
|
sl@0
|
116 |
{_S("BLAH"),_S("SELECT Fld2 FROM TABLE WHERE Fld LIKE '*AC*' AND Fld2 LIKE '?LA?'")},
|
sl@0
|
117 |
{_S("BLAH"),_S("SELECT Fld2 FROM TABLE WHERE Fld LIKE 'NOTINTABLE' OR Fld2 LIKE '?LA?'")},
|
sl@0
|
118 |
{_S("ADCDEFGHIJKLMNOPQRSTUVWXYZ123456789ACDEFGHIJKLMNOPQRSTUVWXYZ123456789ACDEFGHIJKLMNOPQRSTUVWXYZ123456789ACDEFGHIJKLMNOPQRSTUVWXYZ123456789ACDEFGHIJKLMNOPQRSTUVWXYZ123456789ACDEFGHIJKLMNOPQRSTUVWXYZ123456789ACDEFGHIJKLMNOPQRSTUVWXYZ123456789ACDEFGHIJKLMNOP"),_S("SELECT * FROM TABLE WHERE Fld LIKE '*ADC*' AND Fld2 LIKE 'ADC?'")},
|
sl@0
|
119 |
{_S("A*CDEFGH"),_S("SELECT Fld FROM TABLE WHERE Fld LIKE '*\\*C*' ESCAPE '\\'")},
|
sl@0
|
120 |
{_S("XZD\\FZX"),_S("SELECT Fld FROM TABLE WHERE Fld LIKE '*D\\\\*' ESCAPE '\\'")}
|
sl@0
|
121 |
};
|
sl@0
|
122 |
|
sl@0
|
123 |
const TTest KBadQuery[]=
|
sl@0
|
124 |
{
|
sl@0
|
125 |
{_S(""),_S("SELECT * FROM TABLE WHERE Fld LIKE 'A?C' ESCAPE '\\'")},
|
sl@0
|
126 |
{_S(""),_S("SELECT * FROM TABLE WHERE Fld LIKE 'A*C' ESCAPE '\\'")},
|
sl@0
|
127 |
{_S(""),_S("SELECT * FROM TABLE WHERE Fld LIKE '?A\\?C' ESCAPE '\\'")},
|
sl@0
|
128 |
{_S(""),_S("SELECT * FROM TABLE WHERE Fld LIKE '?A\\?C?' ESCAPE '\\'")},
|
sl@0
|
129 |
{_S(""),_S("SELECT * FROM TABLE WHERE Fld LIKE '*A\\??\\?C*' ESCAPE '\\'")},
|
sl@0
|
130 |
{_S(""),_S("SELECT * FROM TABLE WHERE Fld LIKE '*A*\\*C*' ESCAPE '\\'")},
|
sl@0
|
131 |
{_S(""),_S("SELECT * FROM TABLE WHERE Fld LIKE 'ABC' ESCAPE '\\'")},
|
sl@0
|
132 |
{_S(""),_S("SELECT * FROM TABLE WHERE Fld LIKE 'ABC*' ESCAPE '\\'")},
|
sl@0
|
133 |
{_S(""),_S("SELECT * FROM TABLE WHERE Fld LIKE '*ABC' ESCAPE '\\'")}
|
sl@0
|
134 |
};
|
sl@0
|
135 |
|
sl@0
|
136 |
const TInt KNumQueries = 10;
|
sl@0
|
137 |
const TInt KNumBadQueries = 9;
|
sl@0
|
138 |
const TInt KThreadCount = 3;
|
sl@0
|
139 |
const TInt KOneSecond = 1000000;
|
sl@0
|
140 |
const TInt KDbNameLen = 255;
|
sl@0
|
141 |
const TInt KMaxColName = 32;
|
sl@0
|
142 |
|
sl@0
|
143 |
static void DoDbmsConnectThreadSubFunctionL (TInt aThreadNumber)
|
sl@0
|
144 |
{
|
sl@0
|
145 |
// The session
|
sl@0
|
146 |
RDbs TheDbSession;
|
sl@0
|
147 |
CleanupClosePushL (TheDbSession);
|
sl@0
|
148 |
|
sl@0
|
149 |
RDebug::Print (KStart (), aThreadNumber);
|
sl@0
|
150 |
RDebug::Print (KConnect (), aThreadNumber);
|
sl@0
|
151 |
|
sl@0
|
152 |
// Signal the main thread to continue
|
sl@0
|
153 |
TheWaitForThreadsReadySem.Signal (1);
|
sl@0
|
154 |
|
sl@0
|
155 |
// Wait until we are signalled
|
sl@0
|
156 |
TheWaitToStartSem.Wait ();
|
sl@0
|
157 |
|
sl@0
|
158 |
// Connect to Dbms
|
sl@0
|
159 |
TInt r = TheDbSession.Connect ();
|
sl@0
|
160 |
|
sl@0
|
161 |
if (r == KErrNone)
|
sl@0
|
162 |
{
|
sl@0
|
163 |
RDebug::Print (KConSuccess (), aThreadNumber);
|
sl@0
|
164 |
TheDbSession.Close ();
|
sl@0
|
165 |
}
|
sl@0
|
166 |
else
|
sl@0
|
167 |
{
|
sl@0
|
168 |
RDebug::Print (KConFailed (), aThreadNumber, r);
|
sl@0
|
169 |
User::Leave (r);
|
sl@0
|
170 |
}
|
sl@0
|
171 |
|
sl@0
|
172 |
CleanupStack::PopAndDestroy (1); // session
|
sl@0
|
173 |
}
|
sl@0
|
174 |
|
sl@0
|
175 |
static TInt DoDbmsConnectThread (TAny* aThreadNumber)
|
sl@0
|
176 |
{
|
sl@0
|
177 |
__UHEAP_MARK;
|
sl@0
|
178 |
|
sl@0
|
179 |
CTrapCleanup* trapCleanup = CTrapCleanup::New ();
|
sl@0
|
180 |
__ASSERT_ALWAYS (trapCleanup!=NULL, User::Invariant ());
|
sl@0
|
181 |
|
sl@0
|
182 |
TInt* threadNumber = static_cast <TInt*> (aThreadNumber);
|
sl@0
|
183 |
TRAPD (err, DoDbmsConnectThreadSubFunctionL (*threadNumber));
|
sl@0
|
184 |
|
sl@0
|
185 |
delete trapCleanup;
|
sl@0
|
186 |
|
sl@0
|
187 |
__UHEAP_MARKEND;
|
sl@0
|
188 |
|
sl@0
|
189 |
return err;
|
sl@0
|
190 |
}
|
sl@0
|
191 |
|
sl@0
|
192 |
/**
|
sl@0
|
193 |
@SYMTestCaseID SYSLIB-DBMS-CT-0644
|
sl@0
|
194 |
@SYMTestCaseDesc Test for defect no 44697
|
sl@0
|
195 |
@SYMTestPriority Medium
|
sl@0
|
196 |
@SYMTestActions Test for defect fixes
|
sl@0
|
197 |
@SYMTestExpectedResults Test must not fail
|
sl@0
|
198 |
@SYMREQ REQ0000
|
sl@0
|
199 |
*/
|
sl@0
|
200 |
LOCAL_C void Defect_DEF44697L ()
|
sl@0
|
201 |
{
|
sl@0
|
202 |
TheTest.Next (_L (" @SYMTestCaseID:SYSLIB-DBMS-CT-0644 Defect_DEF44697L "));
|
sl@0
|
203 |
|
sl@0
|
204 |
__UHEAP_MARK;
|
sl@0
|
205 |
|
sl@0
|
206 |
// find out the number of open handles
|
sl@0
|
207 |
TInt startProcessHandleCount;
|
sl@0
|
208 |
TInt startThreadHandleCount;
|
sl@0
|
209 |
RThread ().HandleCount (startProcessHandleCount, startThreadHandleCount);
|
sl@0
|
210 |
|
sl@0
|
211 |
/////////////////////
|
sl@0
|
212 |
// The Test Begins...
|
sl@0
|
213 |
|
sl@0
|
214 |
// Create semaphores
|
sl@0
|
215 |
::CleanupClosePushL (::TheWaitForThreadsReadySem);
|
sl@0
|
216 |
User::LeaveIfError (::TheWaitForThreadsReadySem.CreateLocal (0));
|
sl@0
|
217 |
|
sl@0
|
218 |
::CleanupClosePushL (::TheWaitToStartSem);
|
sl@0
|
219 |
User::LeaveIfError (::TheWaitToStartSem.CreateLocal (0));
|
sl@0
|
220 |
|
sl@0
|
221 |
// Create the threads.
|
sl@0
|
222 |
RThread createTestThread_1;
|
sl@0
|
223 |
RThread createTestThread_2;
|
sl@0
|
224 |
RThread createTestThread_3;
|
sl@0
|
225 |
|
sl@0
|
226 |
TBuf<100> thread_name;
|
sl@0
|
227 |
TInt KThreadNumber1 = 1;
|
sl@0
|
228 |
TInt KThreadNumber2 = 2;
|
sl@0
|
229 |
TInt KThreadNumber3 = 3;
|
sl@0
|
230 |
|
sl@0
|
231 |
// Create the first test thread______________________________
|
sl@0
|
232 |
thread_name = KName ();
|
sl@0
|
233 |
thread_name.AppendNum (KThreadNumber1);
|
sl@0
|
234 |
|
sl@0
|
235 |
User::LeaveIfError (
|
sl@0
|
236 |
createTestThread_1.Create (thread_name,
|
sl@0
|
237 |
(TThreadFunction) DoDbmsConnectThread,
|
sl@0
|
238 |
KDefaultStackSize,
|
sl@0
|
239 |
KMinHeapSize,
|
sl@0
|
240 |
KMinHeapSize,
|
sl@0
|
241 |
&KThreadNumber1));
|
sl@0
|
242 |
|
sl@0
|
243 |
// Default priority of Main thread is EPriorityNormal
|
sl@0
|
244 |
createTestThread_1.SetPriority(EPriorityMore);
|
sl@0
|
245 |
|
sl@0
|
246 |
TheTest.Printf (_L ("%S thread started\n"), &thread_name);
|
sl@0
|
247 |
|
sl@0
|
248 |
// Request notification when the thread dies.
|
sl@0
|
249 |
TRequestStatus threadStatus_1;
|
sl@0
|
250 |
createTestThread_1.Logon (threadStatus_1);
|
sl@0
|
251 |
|
sl@0
|
252 |
//___________________________________________________________
|
sl@0
|
253 |
|
sl@0
|
254 |
// Create the second test thread______________________________
|
sl@0
|
255 |
thread_name = KName ();
|
sl@0
|
256 |
thread_name.AppendNum (KThreadNumber2);
|
sl@0
|
257 |
|
sl@0
|
258 |
User::LeaveIfError (
|
sl@0
|
259 |
createTestThread_2.Create (thread_name,
|
sl@0
|
260 |
(TThreadFunction) DoDbmsConnectThread,
|
sl@0
|
261 |
KDefaultStackSize,
|
sl@0
|
262 |
KMinHeapSize,
|
sl@0
|
263 |
KMinHeapSize,
|
sl@0
|
264 |
&KThreadNumber2));
|
sl@0
|
265 |
|
sl@0
|
266 |
// Default priority of Main thread is EPriorityNormal
|
sl@0
|
267 |
createTestThread_2.SetPriority(EPriorityMore);
|
sl@0
|
268 |
|
sl@0
|
269 |
TheTest.Printf (_L ("%S thread started\n"), &thread_name);
|
sl@0
|
270 |
|
sl@0
|
271 |
// Request notification when the tread dies.
|
sl@0
|
272 |
TRequestStatus threadStatus_2;
|
sl@0
|
273 |
createTestThread_2.Logon (threadStatus_2);
|
sl@0
|
274 |
|
sl@0
|
275 |
//___________________________________________________________
|
sl@0
|
276 |
|
sl@0
|
277 |
// Create the third test thread______________________________
|
sl@0
|
278 |
thread_name = KName ();
|
sl@0
|
279 |
thread_name.AppendNum (KThreadNumber3);
|
sl@0
|
280 |
|
sl@0
|
281 |
User::LeaveIfError (
|
sl@0
|
282 |
createTestThread_3.Create (thread_name,
|
sl@0
|
283 |
(TThreadFunction) DoDbmsConnectThread,
|
sl@0
|
284 |
KDefaultStackSize,
|
sl@0
|
285 |
KMinHeapSize,
|
sl@0
|
286 |
KMinHeapSize,
|
sl@0
|
287 |
&KThreadNumber3));
|
sl@0
|
288 |
|
sl@0
|
289 |
// Default priority of Main thread is EPriorityNormal
|
sl@0
|
290 |
createTestThread_3.SetPriority(EPriorityMore);
|
sl@0
|
291 |
|
sl@0
|
292 |
TheTest.Printf (_L ("%S thread started\n"), &thread_name);
|
sl@0
|
293 |
|
sl@0
|
294 |
// Request notification when the tread dies.
|
sl@0
|
295 |
TRequestStatus threadStatus_3;
|
sl@0
|
296 |
createTestThread_3.Logon (threadStatus_3);
|
sl@0
|
297 |
|
sl@0
|
298 |
//___________________________________________________________
|
sl@0
|
299 |
|
sl@0
|
300 |
TheTest (threadStatus_1.Int () == KRequestPending);
|
sl@0
|
301 |
TheTest (threadStatus_2.Int () == KRequestPending);
|
sl@0
|
302 |
TheTest (threadStatus_3.Int () == KRequestPending);
|
sl@0
|
303 |
|
sl@0
|
304 |
// Make threads eligible for execution
|
sl@0
|
305 |
createTestThread_1.Resume ();
|
sl@0
|
306 |
createTestThread_2.Resume ();
|
sl@0
|
307 |
createTestThread_3.Resume ();
|
sl@0
|
308 |
|
sl@0
|
309 |
// The way this works is that the main thread blocks until all
|
sl@0
|
310 |
// the test threads are ready (semaphore 1) and then signals them
|
sl@0
|
311 |
// (semaphore 2).
|
sl@0
|
312 |
//
|
sl@0
|
313 |
// 1: Main thread Waits for ALL test threads to become ready.
|
sl@0
|
314 |
// 2: Main thread Signals ALL test threads to run.
|
sl@0
|
315 |
//
|
sl@0
|
316 |
// 1: Test thread Signals Main thread
|
sl@0
|
317 |
// 2: Test thread Waits for Main thread
|
sl@0
|
318 |
//
|
sl@0
|
319 |
// There is still a slight race condition between the
|
sl@0
|
320 |
// test thread signalling (semaphore 1) and then waiting
|
sl@0
|
321 |
// (semaphore 2) which is why we use both higher priority test
|
sl@0
|
322 |
// threads and a timer.
|
sl@0
|
323 |
//
|
sl@0
|
324 |
// The problems come with the way Time slicing works due to
|
sl@0
|
325 |
// other threads of higher priority being run.
|
sl@0
|
326 |
//
|
sl@0
|
327 |
// Higher priority: Ensures the test thread runs before the
|
sl@0
|
328 |
// the main thread.
|
sl@0
|
329 |
//
|
sl@0
|
330 |
// Timer: Safeguards when multiple core processors are being used.
|
sl@0
|
331 |
//
|
sl@0
|
332 |
// The Higher priority fixes the problem on single core processors
|
sl@0
|
333 |
// and multiple cores processors (SMP) where each core can run a
|
sl@0
|
334 |
// thread.
|
sl@0
|
335 |
//
|
sl@0
|
336 |
// It should also ensure that if the system is so busy that it
|
sl@0
|
337 |
// affects the test thread execution, the test thread will still
|
sl@0
|
338 |
// get to the Wait state before the Main thread can Signal.
|
sl@0
|
339 |
//
|
sl@0
|
340 |
// However, on multiple cores the Main thread may run at the same
|
sl@0
|
341 |
// time as the test thread, so we need to make sure that when the
|
sl@0
|
342 |
// test thread Signals it can acheive its Wait state before the
|
sl@0
|
343 |
// Main thread Signals. For example, if the timer has elapsed on the
|
sl@0
|
344 |
// Main thread and the sytem is busy, the test thread should still
|
sl@0
|
345 |
// run before the Main thread due to it higher priority.
|
sl@0
|
346 |
//
|
sl@0
|
347 |
// We also have to think about things like priority inheritance
|
sl@0
|
348 |
// where a thread that has a handle on a Mutex inherits the same
|
sl@0
|
349 |
// priority as a thread Waiting on it. This shouldn't happen for
|
sl@0
|
350 |
// Semaphores as there is no one handle, i.e. no critical section.
|
sl@0
|
351 |
//
|
sl@0
|
352 |
// This higher priority inheritance will take affect when a low
|
sl@0
|
353 |
// priority thread that has a handle on the Mutex blocks because of
|
sl@0
|
354 |
// another medium priority running thread. So in effect a high
|
sl@0
|
355 |
// priority thread Waiting on this Mutex is also blocked.
|
sl@0
|
356 |
//
|
sl@0
|
357 |
// It is also worth noting that on EKA1 emulator, scheduling is
|
sl@0
|
358 |
// performed by windows. On EKA2 emulator scheduling is performed
|
sl@0
|
359 |
// by Symbian so that it is the same as hardware.
|
sl@0
|
360 |
|
sl@0
|
361 |
TheWaitForThreadsReadySem.Wait();
|
sl@0
|
362 |
TheWaitForThreadsReadySem.Wait();
|
sl@0
|
363 |
TheWaitForThreadsReadySem.Wait();
|
sl@0
|
364 |
|
sl@0
|
365 |
// Sleep for a while to allow threads to block on the semaphore
|
sl@0
|
366 |
User::After (KOneSecond<<2); // 4 seconds
|
sl@0
|
367 |
|
sl@0
|
368 |
// Signal all the threads to continue
|
sl@0
|
369 |
TheWaitToStartSem.Signal (KThreadCount);
|
sl@0
|
370 |
|
sl@0
|
371 |
// Wait for all threads to complete, don't care on the order.
|
sl@0
|
372 |
User::WaitForRequest (threadStatus_1);
|
sl@0
|
373 |
User::WaitForRequest (threadStatus_2);
|
sl@0
|
374 |
User::WaitForRequest (threadStatus_3);
|
sl@0
|
375 |
|
sl@0
|
376 |
TheTest.Printf (KStatus, KThreadNumber1, threadStatus_1.Int ());
|
sl@0
|
377 |
TheTest.Printf (KStatus, KThreadNumber2, threadStatus_2.Int ());
|
sl@0
|
378 |
TheTest.Printf (KStatus, KThreadNumber3, threadStatus_3.Int ());
|
sl@0
|
379 |
|
sl@0
|
380 |
TheTest (threadStatus_1.Int () == KErrNone);
|
sl@0
|
381 |
TheTest (threadStatus_2.Int () == KErrNone);
|
sl@0
|
382 |
TheTest (threadStatus_3.Int () == KErrNone);
|
sl@0
|
383 |
|
sl@0
|
384 |
CleanupStack::PopAndDestroy (&::TheWaitToStartSem);
|
sl@0
|
385 |
CleanupStack::PopAndDestroy (&::TheWaitForThreadsReadySem);
|
sl@0
|
386 |
|
sl@0
|
387 |
// The Test Ends...
|
sl@0
|
388 |
/////////////////////
|
sl@0
|
389 |
|
sl@0
|
390 |
// check that no handles have leaked
|
sl@0
|
391 |
TInt endProcessHandleCount;
|
sl@0
|
392 |
TInt endThreadHandleCount;
|
sl@0
|
393 |
RThread ().HandleCount (endProcessHandleCount, endThreadHandleCount);
|
sl@0
|
394 |
|
sl@0
|
395 |
TheTest (startThreadHandleCount == endThreadHandleCount);
|
sl@0
|
396 |
|
sl@0
|
397 |
__UHEAP_MARKEND;
|
sl@0
|
398 |
}
|
sl@0
|
399 |
|
sl@0
|
400 |
|
sl@0
|
401 |
|
sl@0
|
402 |
// Test for LIKE Predicate for EDbColLongText16
|
sl@0
|
403 |
LOCAL_C void LikePredicateDbColLongText16TestL()
|
sl@0
|
404 |
{
|
sl@0
|
405 |
TheTest.Next (_L ("LikePredicateDbColLongText16TestL"));
|
sl@0
|
406 |
//Creating database
|
sl@0
|
407 |
|
sl@0
|
408 |
RFs fsSession;
|
sl@0
|
409 |
User::LeaveIfError(fsSession.Connect());
|
sl@0
|
410 |
CleanupClosePushL(fsSession);
|
sl@0
|
411 |
RDbNamedDatabase database;
|
sl@0
|
412 |
User::LeaveIfError(database.Replace(fsSession, KDbName));
|
sl@0
|
413 |
CleanupClosePushL(database);
|
sl@0
|
414 |
|
sl@0
|
415 |
//Create table
|
sl@0
|
416 |
|
sl@0
|
417 |
CDbColSet* columns= CDbColSet::NewLC();
|
sl@0
|
418 |
|
sl@0
|
419 |
TDbCol name(KColName,EDbColLongText16,KDbNameLen);
|
sl@0
|
420 |
name.iAttributes = TDbCol::ENotNull;
|
sl@0
|
421 |
|
sl@0
|
422 |
TDbCol name2(KCol2Name,EDbColLongText16,KDbNameLen);
|
sl@0
|
423 |
|
sl@0
|
424 |
columns->AddL(name);
|
sl@0
|
425 |
columns->AddL(name2);
|
sl@0
|
426 |
User::LeaveIfError (database.CreateTable (KTable, *columns));
|
sl@0
|
427 |
CleanupStack::PopAndDestroy(); // columns
|
sl@0
|
428 |
|
sl@0
|
429 |
// Insert values into table
|
sl@0
|
430 |
TInt error = database.Execute(KSQLInsert1);
|
sl@0
|
431 |
TheTest(error>=0);
|
sl@0
|
432 |
error =database.Execute(KSQLInsert2);
|
sl@0
|
433 |
TheTest(error>=0);
|
sl@0
|
434 |
error =database.Execute(KSQLInsert3);
|
sl@0
|
435 |
TheTest(error>=0);
|
sl@0
|
436 |
error = database.Execute(KSQLInsert4);
|
sl@0
|
437 |
TheTest(error>=0);
|
sl@0
|
438 |
error = database.Execute(KSQLInsert5);
|
sl@0
|
439 |
TheTest(error>=0);
|
sl@0
|
440 |
error = database.Execute(KSQLInsert6);
|
sl@0
|
441 |
TheTest(error>=0);
|
sl@0
|
442 |
error = database.Execute(KSQLInsert7);
|
sl@0
|
443 |
TheTest(error>=0);
|
sl@0
|
444 |
|
sl@0
|
445 |
|
sl@0
|
446 |
TheTest.Next(_L("Test for valid LIKE predicate queries"));
|
sl@0
|
447 |
|
sl@0
|
448 |
|
sl@0
|
449 |
for(TInt i =0;i<KNumQueries;++i)
|
sl@0
|
450 |
{
|
sl@0
|
451 |
RDebug::Print(_L("Executing statement: %s \n"),(KQuery[i].query));
|
sl@0
|
452 |
RDbView view;
|
sl@0
|
453 |
view.Prepare(database, TDbQuery(TPtrC(KQuery[i].query), EDbCompareFolded), view.EReadOnly);
|
sl@0
|
454 |
view.EvaluateAll();
|
sl@0
|
455 |
view.FirstL();
|
sl@0
|
456 |
typedef TBuf<256> TScriptLine;
|
sl@0
|
457 |
TInt count =0;
|
sl@0
|
458 |
while (view.AtRow())
|
sl@0
|
459 |
{
|
sl@0
|
460 |
view.GetL();
|
sl@0
|
461 |
count++;
|
sl@0
|
462 |
RDbColReadStream rd;
|
sl@0
|
463 |
rd.OpenLC(view,1);
|
sl@0
|
464 |
TScriptLine text;
|
sl@0
|
465 |
rd.ReadL(text,view.ColLength(1));
|
sl@0
|
466 |
CleanupStack::PopAndDestroy();
|
sl@0
|
467 |
RDebug::Print(_L("Expected result: %s Actual Result: %S\n"),(KQuery[i].result),&text);
|
sl@0
|
468 |
TInt err = text.Compare(TPtrC(KQuery[i].result));
|
sl@0
|
469 |
TheTest(err ==0);
|
sl@0
|
470 |
view.NextL();
|
sl@0
|
471 |
}
|
sl@0
|
472 |
view.Close();
|
sl@0
|
473 |
}
|
sl@0
|
474 |
|
sl@0
|
475 |
|
sl@0
|
476 |
// test for illegal statements, check they return KErrArgument
|
sl@0
|
477 |
TheTest.Next(_L("Test that illegal queries return KErrArgument"));
|
sl@0
|
478 |
|
sl@0
|
479 |
|
sl@0
|
480 |
for(TInt j =0;j<KNumBadQueries;++j)
|
sl@0
|
481 |
{
|
sl@0
|
482 |
RDebug::Print(_L("Executing illegal statement: %s \n"),(KBadQuery[j].query));
|
sl@0
|
483 |
RDbView view;
|
sl@0
|
484 |
TInt prepErr = view.Prepare(database, TDbQuery(TPtrC(KBadQuery[j].query), EDbCompareFolded), view.EReadOnly);
|
sl@0
|
485 |
TheTest(prepErr==KErrArgument);
|
sl@0
|
486 |
view.Close();
|
sl@0
|
487 |
}
|
sl@0
|
488 |
|
sl@0
|
489 |
CleanupStack::PopAndDestroy(&database); // database
|
sl@0
|
490 |
CleanupStack::PopAndDestroy(&fsSession); // fsSession
|
sl@0
|
491 |
}
|
sl@0
|
492 |
|
sl@0
|
493 |
|
sl@0
|
494 |
|
sl@0
|
495 |
// for LIKE Predicate for EDbColLongText8
|
sl@0
|
496 |
LOCAL_C void LikePredicateDbColLongText8TestL()
|
sl@0
|
497 |
{
|
sl@0
|
498 |
TheTest.Next (_L ("LikePredicate DbColLongText8 TestL"));
|
sl@0
|
499 |
|
sl@0
|
500 |
//Creating database
|
sl@0
|
501 |
|
sl@0
|
502 |
RFs fsSession;
|
sl@0
|
503 |
User::LeaveIfError(fsSession.Connect());
|
sl@0
|
504 |
CleanupClosePushL(fsSession);
|
sl@0
|
505 |
RDbNamedDatabase database;
|
sl@0
|
506 |
User::LeaveIfError(database.Replace(fsSession, KDbName));
|
sl@0
|
507 |
CleanupClosePushL(database);
|
sl@0
|
508 |
|
sl@0
|
509 |
//Create table
|
sl@0
|
510 |
|
sl@0
|
511 |
CDbColSet* columns= CDbColSet::NewLC();
|
sl@0
|
512 |
|
sl@0
|
513 |
TDbCol name(KColName,EDbColLongText8,KDbNameLen);
|
sl@0
|
514 |
name.iAttributes = TDbCol::ENotNull;
|
sl@0
|
515 |
|
sl@0
|
516 |
TDbCol name2(KCol2Name,EDbColLongText8,KDbNameLen);
|
sl@0
|
517 |
|
sl@0
|
518 |
columns->AddL(name);
|
sl@0
|
519 |
columns->AddL(name2);
|
sl@0
|
520 |
|
sl@0
|
521 |
User::LeaveIfError (database.CreateTable (KTable, *columns));
|
sl@0
|
522 |
CleanupStack::PopAndDestroy(); // columns
|
sl@0
|
523 |
|
sl@0
|
524 |
// Insert values into the table
|
sl@0
|
525 |
TInt error = database.Execute(KSQLInsert1);
|
sl@0
|
526 |
TheTest(error>=0);
|
sl@0
|
527 |
error =database.Execute(KSQLInsert2);
|
sl@0
|
528 |
TheTest(error>=0);
|
sl@0
|
529 |
error =database.Execute(KSQLInsert3);
|
sl@0
|
530 |
TheTest(error>=0);
|
sl@0
|
531 |
error = database.Execute(KSQLInsert4);
|
sl@0
|
532 |
TheTest(error>=0);
|
sl@0
|
533 |
error = database.Execute(KSQLInsert5);
|
sl@0
|
534 |
TheTest(error>=0);
|
sl@0
|
535 |
error = database.Execute(KSQLInsert6);
|
sl@0
|
536 |
TheTest(error>=0);
|
sl@0
|
537 |
error = database.Execute(KSQLInsert7);
|
sl@0
|
538 |
TheTest(error>=0);
|
sl@0
|
539 |
|
sl@0
|
540 |
TheTest.Next(_L("Test for valid LIKE predicate queries"));
|
sl@0
|
541 |
|
sl@0
|
542 |
|
sl@0
|
543 |
for(TInt i =0;i<KNumQueries;++i)
|
sl@0
|
544 |
{
|
sl@0
|
545 |
RDebug::Print(_L("Executing statement: %s \n"),(KQuery[i].query));
|
sl@0
|
546 |
RDbView view;
|
sl@0
|
547 |
TInt prepErr = view.Prepare(database, TDbQuery(TPtrC(KQuery[i].query), EDbCompareFolded), view.EReadOnly);
|
sl@0
|
548 |
TheTest(prepErr>=0);
|
sl@0
|
549 |
TInt evErr = view.EvaluateAll();
|
sl@0
|
550 |
TheTest(evErr==0);
|
sl@0
|
551 |
TBuf8<256> result;
|
sl@0
|
552 |
TBuf8<256> colname;
|
sl@0
|
553 |
result.Copy(TPtrC(KQuery[i].result));
|
sl@0
|
554 |
view.FirstL();
|
sl@0
|
555 |
|
sl@0
|
556 |
while (view.AtRow())
|
sl@0
|
557 |
{
|
sl@0
|
558 |
view.GetL();
|
sl@0
|
559 |
RDbColReadStream rd;
|
sl@0
|
560 |
rd.OpenLC(view,1);
|
sl@0
|
561 |
rd.ReadL(colname,view.ColLength(1));
|
sl@0
|
562 |
CleanupStack::PopAndDestroy();
|
sl@0
|
563 |
RDebug::Print(_L("Expected result: %S Actual Result: %S\n"),&result,&colname);
|
sl@0
|
564 |
TInt err = colname.CompareF(result);
|
sl@0
|
565 |
TheTest(err ==0);
|
sl@0
|
566 |
|
sl@0
|
567 |
view.NextL();
|
sl@0
|
568 |
}
|
sl@0
|
569 |
|
sl@0
|
570 |
view.Close();
|
sl@0
|
571 |
}
|
sl@0
|
572 |
|
sl@0
|
573 |
// test for illegal statements, check they return KErrArgument
|
sl@0
|
574 |
TheTest.Next(_L("Test that illegal queries return KErrArgument"));
|
sl@0
|
575 |
|
sl@0
|
576 |
|
sl@0
|
577 |
|
sl@0
|
578 |
for(TInt j =0;j<KNumBadQueries;++j)
|
sl@0
|
579 |
{
|
sl@0
|
580 |
RDebug::Print(_L("Executing illegal statement: %s \n"),(KBadQuery[j].query));
|
sl@0
|
581 |
RDbView view;
|
sl@0
|
582 |
TInt prepErr = view.Prepare(database, TDbQuery(TPtrC(KBadQuery[j].query), EDbCompareFolded), view.EReadOnly);
|
sl@0
|
583 |
TheTest(prepErr==KErrArgument);
|
sl@0
|
584 |
|
sl@0
|
585 |
view.Close();
|
sl@0
|
586 |
}
|
sl@0
|
587 |
|
sl@0
|
588 |
CleanupStack::PopAndDestroy(&database); // database
|
sl@0
|
589 |
CleanupStack::PopAndDestroy(&fsSession); // fsSession
|
sl@0
|
590 |
}
|
sl@0
|
591 |
|
sl@0
|
592 |
|
sl@0
|
593 |
|
sl@0
|
594 |
// Test for LIKE Predicate for EDbColText
|
sl@0
|
595 |
LOCAL_C void LikePredicateDbColTextTestL()
|
sl@0
|
596 |
{
|
sl@0
|
597 |
TheTest.Next (_L ("LikePredicate DbColText TestL"));
|
sl@0
|
598 |
//Creating database
|
sl@0
|
599 |
|
sl@0
|
600 |
RFs fsSession;
|
sl@0
|
601 |
User::LeaveIfError(fsSession.Connect());
|
sl@0
|
602 |
CleanupClosePushL(fsSession);
|
sl@0
|
603 |
RDbNamedDatabase database;
|
sl@0
|
604 |
User::LeaveIfError(database.Replace(fsSession, KDbName));
|
sl@0
|
605 |
CleanupClosePushL(database);
|
sl@0
|
606 |
|
sl@0
|
607 |
//Create table
|
sl@0
|
608 |
|
sl@0
|
609 |
CDbColSet* columns= CDbColSet::NewLC();
|
sl@0
|
610 |
|
sl@0
|
611 |
TDbCol name(KColName,EDbColText,KDbNameLen);
|
sl@0
|
612 |
name.iAttributes = TDbCol::ENotNull;
|
sl@0
|
613 |
|
sl@0
|
614 |
TDbCol name2(KCol2Name,EDbColText,KDbNameLen);
|
sl@0
|
615 |
|
sl@0
|
616 |
columns->AddL(name);
|
sl@0
|
617 |
columns->AddL(name2);
|
sl@0
|
618 |
|
sl@0
|
619 |
User::LeaveIfError (database.CreateTable (KTable, *columns));
|
sl@0
|
620 |
CleanupStack::PopAndDestroy(); // columns
|
sl@0
|
621 |
|
sl@0
|
622 |
// Insert values into the table
|
sl@0
|
623 |
TInt error = database.Execute(KSQLInsert1);
|
sl@0
|
624 |
TheTest(error>=0);
|
sl@0
|
625 |
error =database.Execute(KSQLInsert2);
|
sl@0
|
626 |
TheTest(error>=0);
|
sl@0
|
627 |
error =database.Execute(KSQLInsert3);
|
sl@0
|
628 |
TheTest(error>=0);
|
sl@0
|
629 |
error = database.Execute(KSQLInsert4);
|
sl@0
|
630 |
TheTest(error>=0);
|
sl@0
|
631 |
error = database.Execute(KSQLInsert5);
|
sl@0
|
632 |
TheTest(error>=0);
|
sl@0
|
633 |
error = database.Execute(KSQLInsert6);
|
sl@0
|
634 |
TheTest(error>=0);
|
sl@0
|
635 |
error = database.Execute(KSQLInsert7);
|
sl@0
|
636 |
TheTest(error>=0);
|
sl@0
|
637 |
|
sl@0
|
638 |
|
sl@0
|
639 |
TheTest.Next(_L("Test for valid LIKE predicate queries"));
|
sl@0
|
640 |
|
sl@0
|
641 |
|
sl@0
|
642 |
for(TInt i =0;i<KNumQueries;++i)
|
sl@0
|
643 |
{
|
sl@0
|
644 |
RDebug::Print(_L("Executing statement: %s \n"),(KQuery[i].query));
|
sl@0
|
645 |
RDbView view;
|
sl@0
|
646 |
TInt prepErr = view.Prepare(database, TDbQuery(TPtrC(KQuery[i].query), EDbCompareFolded), view.EReadOnly);
|
sl@0
|
647 |
if(TPtrC(KQuery[i].result).Length() == 0)
|
sl@0
|
648 |
{
|
sl@0
|
649 |
TheTest(prepErr != KErrNone);
|
sl@0
|
650 |
continue;
|
sl@0
|
651 |
}
|
sl@0
|
652 |
|
sl@0
|
653 |
view.EvaluateAll();
|
sl@0
|
654 |
TBufC<256> colname;
|
sl@0
|
655 |
TBufC<256> res;
|
sl@0
|
656 |
view.FirstL();
|
sl@0
|
657 |
while (view.AtRow())
|
sl@0
|
658 |
{
|
sl@0
|
659 |
view.GetL();
|
sl@0
|
660 |
colname = view.ColDes(1);
|
sl@0
|
661 |
res= KQuery[i].result;
|
sl@0
|
662 |
RDebug::Print(_L("Expected result: %s Actual Result: %S\n"),(KQuery[i].result),&colname);
|
sl@0
|
663 |
TInt err = colname.Compare(TPtrC(KQuery[i].result));
|
sl@0
|
664 |
TheTest(err ==0);
|
sl@0
|
665 |
view.NextL();
|
sl@0
|
666 |
}
|
sl@0
|
667 |
view.Close();
|
sl@0
|
668 |
}
|
sl@0
|
669 |
|
sl@0
|
670 |
// test for illegal statements, check they return KErrArgument
|
sl@0
|
671 |
TheTest.Next(_L("Test that illegal queries return KErrArgument"));
|
sl@0
|
672 |
|
sl@0
|
673 |
for(TInt j =0;j<KNumBadQueries;++j)
|
sl@0
|
674 |
{
|
sl@0
|
675 |
RDebug::Print(_L("Executing illegal statement: %s \n"),(KBadQuery[j].query));
|
sl@0
|
676 |
RDbView view;
|
sl@0
|
677 |
TInt prepErr = view.Prepare(database, TDbQuery(TPtrC(KBadQuery[j].query), EDbCompareFolded), view.EReadOnly);
|
sl@0
|
678 |
TheTest(prepErr==KErrArgument);
|
sl@0
|
679 |
view.Close();
|
sl@0
|
680 |
}
|
sl@0
|
681 |
|
sl@0
|
682 |
CleanupStack::PopAndDestroy(&database); // database
|
sl@0
|
683 |
CleanupStack::PopAndDestroy(&fsSession); // fsSession
|
sl@0
|
684 |
}
|
sl@0
|
685 |
|
sl@0
|
686 |
|
sl@0
|
687 |
|
sl@0
|
688 |
/**
|
sl@0
|
689 |
@SYMTestCaseID SYSLIB-DBMS-UT-1592
|
sl@0
|
690 |
@SYMTestCaseDesc Testing limited-ESCAPE-clause
|
sl@0
|
691 |
@SYMTestPriority High
|
sl@0
|
692 |
@SYMTestActions Execute DBMS query with ESCAPE-clause
|
sl@0
|
693 |
@SYMTestExpectedResults The test should not fail.
|
sl@0
|
694 |
@SYMDEF INC076370
|
sl@0
|
695 |
*/
|
sl@0
|
696 |
LOCAL_C void Defect_INC076370L()
|
sl@0
|
697 |
{
|
sl@0
|
698 |
TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-DBMS-UT-1592 Defect INC076370 "));
|
sl@0
|
699 |
LikePredicateDbColTextTestL(); //EDbColText
|
sl@0
|
700 |
LikePredicateDbColLongText16TestL(); //EDbColLongText16
|
sl@0
|
701 |
LikePredicateDbColLongText8TestL(); //EDbColLongText8
|
sl@0
|
702 |
}
|
sl@0
|
703 |
|
sl@0
|
704 |
/**
|
sl@0
|
705 |
@SYMTestCaseID SYSLIB-DBMS-UT-1667
|
sl@0
|
706 |
@SYMTestCaseDesc Testing RdbRowSet::DeleteL() with EDbColLongText16 type columns
|
sl@0
|
707 |
@SYMTestPriority High
|
sl@0
|
708 |
@SYMTestActions Create a table with a EDbColLongText16 type column and then use
|
sl@0
|
709 |
RdbRowSet::DeleteL() to delete the current row.
|
sl@0
|
710 |
@SYMTestExpectedResults The test should not fail.
|
sl@0
|
711 |
@SYMDEF INC083027
|
sl@0
|
712 |
*/
|
sl@0
|
713 |
LOCAL_C void Defect_INC083027L()
|
sl@0
|
714 |
{
|
sl@0
|
715 |
TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-DBMS-UT-1667 Defect INC083027 "));
|
sl@0
|
716 |
RFs fs;
|
sl@0
|
717 |
CleanupClosePushL(fs);
|
sl@0
|
718 |
User::LeaveIfError(fs.Connect());
|
sl@0
|
719 |
|
sl@0
|
720 |
// create database
|
sl@0
|
721 |
RDbNamedDatabase database;
|
sl@0
|
722 |
CleanupClosePushL(database);
|
sl@0
|
723 |
User::LeaveIfError(database.Replace(fs, _L("c:\\test.db")));
|
sl@0
|
724 |
|
sl@0
|
725 |
CDbColSet* columns = CDbColSet::NewLC();
|
sl@0
|
726 |
const TInt maxTextLength = 256;
|
sl@0
|
727 |
TDbCol text16Col(KText16Name, EDbColLongText16, maxTextLength);
|
sl@0
|
728 |
columns->AddL(text16Col);
|
sl@0
|
729 |
|
sl@0
|
730 |
TBuf<KMaxColName> targetColName;
|
sl@0
|
731 |
targetColName = KText16Name;
|
sl@0
|
732 |
|
sl@0
|
733 |
// create table
|
sl@0
|
734 |
User::LeaveIfError(database.CreateTable(KTableName, *columns));
|
sl@0
|
735 |
|
sl@0
|
736 |
//create index
|
sl@0
|
737 |
CDbKey* key = CDbKey::NewLC();
|
sl@0
|
738 |
TInt keyLength = 122;
|
sl@0
|
739 |
TDbKeyCol keyCol(targetColName, keyLength);
|
sl@0
|
740 |
key->AddL(keyCol);
|
sl@0
|
741 |
User::LeaveIfError(database.CreateIndex(KIndexName, KTableName, *key));
|
sl@0
|
742 |
CleanupStack::PopAndDestroy(2); // key and columns
|
sl@0
|
743 |
|
sl@0
|
744 |
//insert rows
|
sl@0
|
745 |
HBufC* sqlQueryBuf = HBufC::NewLC(512);
|
sl@0
|
746 |
TPtr sqlQuery(sqlQueryBuf->Des());
|
sl@0
|
747 |
_LIT(KSQLInsertFormat, "SELECT %S FROM %S");
|
sl@0
|
748 |
sqlQuery.Format(KSQLInsertFormat, &targetColName, &KTableName);
|
sl@0
|
749 |
|
sl@0
|
750 |
RDbView insertview;
|
sl@0
|
751 |
User::LeaveIfError(insertview.Prepare(database, TDbQuery(sqlQuery), RDbView::EInsertOnly));
|
sl@0
|
752 |
|
sl@0
|
753 |
HBufC* tmpBuf = HBufC::NewLC(maxTextLength);
|
sl@0
|
754 |
TPtr maxString(tmpBuf->Des());
|
sl@0
|
755 |
maxString.Format(KMaxStringFormat, 0);
|
sl@0
|
756 |
insertview.InsertL();
|
sl@0
|
757 |
insertview.SetColL(1, maxString);
|
sl@0
|
758 |
insertview.PutL();
|
sl@0
|
759 |
insertview.Close();
|
sl@0
|
760 |
|
sl@0
|
761 |
//delete the row
|
sl@0
|
762 |
RDbView deleteview;
|
sl@0
|
763 |
User::LeaveIfError(deleteview.Prepare(database, TDbQuery(sqlQuery), RDbView::EUpdatable));
|
sl@0
|
764 |
User::LeaveIfError(deleteview.EvaluateAll());
|
sl@0
|
765 |
|
sl@0
|
766 |
while (deleteview.NextL())
|
sl@0
|
767 |
{
|
sl@0
|
768 |
deleteview.GetL();
|
sl@0
|
769 |
TRAPD(err , deleteview.DeleteL());
|
sl@0
|
770 |
TheTest(err==KErrNone);
|
sl@0
|
771 |
}
|
sl@0
|
772 |
deleteview.Close();
|
sl@0
|
773 |
|
sl@0
|
774 |
CleanupStack::PopAndDestroy(2); // tmpBuf, sqlQueryBuf
|
sl@0
|
775 |
CleanupStack::PopAndDestroy(&database); // database
|
sl@0
|
776 |
CleanupStack::PopAndDestroy(&fs); // fs
|
sl@0
|
777 |
}
|
sl@0
|
778 |
|
sl@0
|
779 |
/**
|
sl@0
|
780 |
@SYMTestCaseID SYSLIB-DBMS-UT-1894
|
sl@0
|
781 |
@SYMTestCaseDesc Testing memory handling in CSqlMultiNode::Concatenate()
|
sl@0
|
782 |
@SYMTestPriority Medium
|
sl@0
|
783 |
@SYMTestActions Execute a special request to a database which will trigger CSqlMultiNode::Concatenate(), and the size of one of the SQL nodes will be divisible by the CSqlMultiNode granularity
|
sl@0
|
784 |
@SYMTestExpectedResults The test should not fail or panic.
|
sl@0
|
785 |
@SYMDEF INC093657
|
sl@0
|
786 |
*/
|
sl@0
|
787 |
LOCAL_C void Defect_INC093657L ()
|
sl@0
|
788 |
{
|
sl@0
|
789 |
TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-DBMS-UT-1894 Defect INC093657 "));
|
sl@0
|
790 |
RFs fs;
|
sl@0
|
791 |
CleanupClosePushL(fs);
|
sl@0
|
792 |
User::LeaveIfError(fs.Connect());
|
sl@0
|
793 |
|
sl@0
|
794 |
// create database
|
sl@0
|
795 |
RDbNamedDatabase database;
|
sl@0
|
796 |
CleanupClosePushL(database);
|
sl@0
|
797 |
User::LeaveIfError(database.Replace(fs, _L("c:\\test.db")));
|
sl@0
|
798 |
|
sl@0
|
799 |
CDbColSet* columns = CDbColSet::NewLC();
|
sl@0
|
800 |
const TInt maxTextLength = 256;
|
sl@0
|
801 |
TDbCol column(KColName, EDbColLongText16, maxTextLength);
|
sl@0
|
802 |
columns->AddL(column);
|
sl@0
|
803 |
|
sl@0
|
804 |
// create table
|
sl@0
|
805 |
User::LeaveIfError(database.CreateTable(KTableName, *columns));
|
sl@0
|
806 |
CleanupStack::PopAndDestroy(); // columns
|
sl@0
|
807 |
|
sl@0
|
808 |
//execute a pointless request that is intended to detect subtle memory corruptions in CSqlMultiNode::Concatenate
|
sl@0
|
809 |
RDbView view;
|
sl@0
|
810 |
TInt err = view.Prepare(database, TDbQuery(KSqlRequestGranularity));
|
sl@0
|
811 |
|
sl@0
|
812 |
TheTest(err==KErrNone);
|
sl@0
|
813 |
|
sl@0
|
814 |
view.Close();
|
sl@0
|
815 |
database.Destroy();
|
sl@0
|
816 |
|
sl@0
|
817 |
CleanupStack::PopAndDestroy(&database); // database
|
sl@0
|
818 |
CleanupStack::PopAndDestroy(&fs); // fs
|
sl@0
|
819 |
}
|
sl@0
|
820 |
|
sl@0
|
821 |
/**
|
sl@0
|
822 |
@SYMTestCaseID SYSLIB-DBMS-UT-3467
|
sl@0
|
823 |
@SYMTestCaseDesc Test for DEF105615 "DBMS, CDbColSet::operator[](TDbColNo) operator may access an invalid memory".
|
sl@0
|
824 |
The test creates a table with 3 coluumns and a multi-column key (3 columns). The column
|
sl@0
|
825 |
names length is such that when RDbRowSet::ColSetL() is called for retrieving the column
|
sl@0
|
826 |
names, the CDbColSet array data member will make just a single memory allocation, where
|
sl@0
|
827 |
all TDbCol elements will be stored. Then the test repeats 100 times, the following statements:
|
sl@0
|
828 |
<retrieve a colset>;
|
sl@0
|
829 |
<create a copy of colset's last TDbCol element using TDbCol's copy constructor>;
|
sl@0
|
830 |
<create a copy of colset's last TDbCol element using TDbCol's "=" operator>;
|
sl@0
|
831 |
If the test uses the compiler generated TDbCol's copy constructor and "=" operator,
|
sl@0
|
832 |
the test crashes at some iteration, because an invalid memory region is accessed and
|
sl@0
|
833 |
the crash is: KERN-EXEC 3.
|
sl@0
|
834 |
The same test is repeated for TDbKeyCol's copy constructor and "=" operator.
|
sl@0
|
835 |
@SYMTestPriority High
|
sl@0
|
836 |
@SYMTestActions Test for DEF105615 "DBMS, CDbColSet::operator[](TDbColNo) operator may access an invalid memory".
|
sl@0
|
837 |
@SYMTestExpectedResults The test must not fail
|
sl@0
|
838 |
@SYMREQ DEF105615
|
sl@0
|
839 |
*/
|
sl@0
|
840 |
void DEF105615L()
|
sl@0
|
841 |
{
|
sl@0
|
842 |
TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-DBMS-UT-3467 DEF105615 DBMS, CDbColSet::operator[](TDbColNo) operator may access an invalid memory"));
|
sl@0
|
843 |
RFs fs;
|
sl@0
|
844 |
TInt err = fs.Connect();
|
sl@0
|
845 |
TheTest(err == KErrNone);
|
sl@0
|
846 |
|
sl@0
|
847 |
RDbNamedDatabase db;
|
sl@0
|
848 |
err = db.Replace(fs, KDbName);
|
sl@0
|
849 |
TheTest(err == KErrNone);
|
sl@0
|
850 |
|
sl@0
|
851 |
const TInt KColCnt = 3;
|
sl@0
|
852 |
|
sl@0
|
853 |
err = db.Execute(_L("CREATE TABLE A(A1234567890 INTEGER, B1234567890 INTEGER, C12345 INTEGER)"));
|
sl@0
|
854 |
TheTest(err == KErrNone);
|
sl@0
|
855 |
err = db.Execute(_L("CREATE INDEX I1 ON A(A1234567890, B1234567890, C12345)"));
|
sl@0
|
856 |
TheTest(err == KErrNone);
|
sl@0
|
857 |
|
sl@0
|
858 |
RDbTable tbl;
|
sl@0
|
859 |
err = tbl.Open(db, _L("A"));
|
sl@0
|
860 |
TheTest(err == KErrNone);
|
sl@0
|
861 |
|
sl@0
|
862 |
//It is very hard to reproduce the problem, because the memory region after the memory, occupied by
|
sl@0
|
863 |
//CDbColSet's array, may be valid. That is the reason the test is repeated in a loop KTestCnt times,
|
sl@0
|
864 |
//where every ColSetL() call will allocate a new block of memory for its array and at some point TDbCol's
|
sl@0
|
865 |
//copy constructor and "=" operator may try to access an invalid memory area, if the compiler generated
|
sl@0
|
866 |
//ones are used.
|
sl@0
|
867 |
const TInt KTestCnt = 100;
|
sl@0
|
868 |
TInt i;
|
sl@0
|
869 |
CDbColSet* colset[KTestCnt];
|
sl@0
|
870 |
for(i=0;i<KTestCnt;++i)
|
sl@0
|
871 |
{
|
sl@0
|
872 |
TRAP(err, colset[i] = tbl.ColSetL());
|
sl@0
|
873 |
TheTest(err == KErrNone);
|
sl@0
|
874 |
TDbCol lastCol = (*colset[i])[KColCnt]; //copy constructor
|
sl@0
|
875 |
lastCol = (*colset[i])[KColCnt]; //"=" operator
|
sl@0
|
876 |
}
|
sl@0
|
877 |
for(i=0;i<KTestCnt;++i)
|
sl@0
|
878 |
{
|
sl@0
|
879 |
delete colset[i];
|
sl@0
|
880 |
}
|
sl@0
|
881 |
|
sl@0
|
882 |
tbl.Close();
|
sl@0
|
883 |
|
sl@0
|
884 |
//The same test is repeated for TDbKeyCol's copy constructor and "=" operator
|
sl@0
|
885 |
CDbKey* key[KTestCnt];
|
sl@0
|
886 |
for(i=0;i<KTestCnt;++i)
|
sl@0
|
887 |
{
|
sl@0
|
888 |
TRAP(err, key[i] = db.KeyL(_L("I1"), _L("A")));
|
sl@0
|
889 |
TheTest(err == KErrNone);
|
sl@0
|
890 |
TDbKeyCol lastKeyCol = (*key[i])[KColCnt - 1]; //copy constructor
|
sl@0
|
891 |
lastKeyCol = (*key[i])[KColCnt - 1]; //"=" operator
|
sl@0
|
892 |
}
|
sl@0
|
893 |
for(i=0;i<KTestCnt;++i)
|
sl@0
|
894 |
{
|
sl@0
|
895 |
delete key[i];
|
sl@0
|
896 |
}
|
sl@0
|
897 |
|
sl@0
|
898 |
db.Close();
|
sl@0
|
899 |
err = fs.Delete(KDbName);
|
sl@0
|
900 |
TheTest(err == KErrNone);
|
sl@0
|
901 |
fs.Close();
|
sl@0
|
902 |
}
|
sl@0
|
903 |
|
sl@0
|
904 |
/**
|
sl@0
|
905 |
@SYMTestCaseID SYSLIB-DBMS-UT-3469
|
sl@0
|
906 |
@SYMTestCaseDesc Test for DEF105615 "DBMS, CDbColSet::operator[](TDbColNo) operator may access an invalid memory".
|
sl@0
|
907 |
The test creates TDbCol and TDbKeyCol objects, creates their copies using copy constructors
|
sl@0
|
908 |
and "=" operators and checks that the copies were constructed correctly,
|
sl@0
|
909 |
@SYMTestPriority High
|
sl@0
|
910 |
@SYMTestActions Test for DEF105615 "DBMS, CDbColSet::operator[](TDbColNo) operator may access an invalid memory".
|
sl@0
|
911 |
@SYMTestExpectedResults The test must not fail
|
sl@0
|
912 |
@SYMREQ DEF105615
|
sl@0
|
913 |
*/
|
sl@0
|
914 |
void DEF105615_2()
|
sl@0
|
915 |
{
|
sl@0
|
916 |
TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-DBMS-UT-3469 DEF105615 DBMS, CDbColSet::operator[](TDbColNo) operator may access an invalid memory - 2 "));
|
sl@0
|
917 |
|
sl@0
|
918 |
const TDbColType KColType = EDbColText16;
|
sl@0
|
919 |
const TInt KMaxColLen = 73;
|
sl@0
|
920 |
const TInt KColAttributes = TDbCol::ENotNull;
|
sl@0
|
921 |
_LIT(KColName, "Name");
|
sl@0
|
922 |
|
sl@0
|
923 |
TDbCol srcDbCol(KColName, EDbColText16, KMaxColLen);
|
sl@0
|
924 |
srcDbCol.iAttributes = KColAttributes;
|
sl@0
|
925 |
|
sl@0
|
926 |
//TDbCol - copy constructor
|
sl@0
|
927 |
TDbCol dbColCopy1(srcDbCol);
|
sl@0
|
928 |
TheTest(dbColCopy1.iType == srcDbCol.iType && dbColCopy1.iType == KColType);
|
sl@0
|
929 |
TheTest(dbColCopy1.iMaxLength == srcDbCol.iMaxLength && dbColCopy1.iMaxLength == KMaxColLen);
|
sl@0
|
930 |
TheTest(dbColCopy1.iAttributes == srcDbCol.iAttributes && dbColCopy1.iAttributes == KColAttributes);
|
sl@0
|
931 |
TheTest(dbColCopy1.iName == srcDbCol.iName && dbColCopy1.iName == KColName);
|
sl@0
|
932 |
|
sl@0
|
933 |
//TDbCol - "=" operator
|
sl@0
|
934 |
TDbCol dbColCopy2;
|
sl@0
|
935 |
dbColCopy2 = srcDbCol;
|
sl@0
|
936 |
TheTest(dbColCopy2.iType == srcDbCol.iType && dbColCopy2.iType == KColType);
|
sl@0
|
937 |
TheTest(dbColCopy2.iMaxLength == srcDbCol.iMaxLength && dbColCopy2.iMaxLength == KMaxColLen);
|
sl@0
|
938 |
TheTest(dbColCopy2.iAttributes == srcDbCol.iAttributes && dbColCopy2.iAttributes == KColAttributes);
|
sl@0
|
939 |
TheTest(dbColCopy2.iName == srcDbCol.iName && dbColCopy2.iName == KColName);
|
sl@0
|
940 |
|
sl@0
|
941 |
//TDbCol - self assignment
|
sl@0
|
942 |
srcDbCol = srcDbCol;
|
sl@0
|
943 |
TheTest(srcDbCol.iType == KColType);
|
sl@0
|
944 |
TheTest(srcDbCol.iMaxLength == KMaxColLen);
|
sl@0
|
945 |
TheTest(srcDbCol.iAttributes == KColAttributes);
|
sl@0
|
946 |
TheTest(srcDbCol.iName == KColName);
|
sl@0
|
947 |
|
sl@0
|
948 |
const TInt KKeyLen = 29;
|
sl@0
|
949 |
const TDbKeyCol::TOrder KKeyOrder = TDbKeyCol::EDesc;
|
sl@0
|
950 |
_LIT(KKeyName, "Name22");
|
sl@0
|
951 |
|
sl@0
|
952 |
TDbKeyCol srcDbKeyCol(KKeyName, KKeyLen, KKeyOrder);
|
sl@0
|
953 |
|
sl@0
|
954 |
//TDbKeyCol - copy constructor
|
sl@0
|
955 |
TDbKeyCol dbKeyColCopy1(srcDbKeyCol);
|
sl@0
|
956 |
TheTest(dbKeyColCopy1.iOrder == srcDbKeyCol.iOrder && dbKeyColCopy1.iOrder == KKeyOrder);
|
sl@0
|
957 |
TheTest(dbKeyColCopy1.iLength == srcDbKeyCol.iLength && dbKeyColCopy1.iLength == KKeyLen);
|
sl@0
|
958 |
TheTest(dbKeyColCopy1.iName == srcDbKeyCol.iName && dbKeyColCopy1.iName == KKeyName);
|
sl@0
|
959 |
|
sl@0
|
960 |
//TDbKeyCol - "=" operator
|
sl@0
|
961 |
TDbKeyCol dbKeyColCopy2;
|
sl@0
|
962 |
dbKeyColCopy2 = srcDbKeyCol;
|
sl@0
|
963 |
TheTest(dbKeyColCopy2.iOrder == srcDbKeyCol.iOrder && dbKeyColCopy2.iOrder == KKeyOrder);
|
sl@0
|
964 |
TheTest(dbKeyColCopy2.iLength == srcDbKeyCol.iLength && dbKeyColCopy2.iLength == KKeyLen);
|
sl@0
|
965 |
TheTest(dbKeyColCopy2.iName == srcDbKeyCol.iName && dbKeyColCopy2.iName == KKeyName);
|
sl@0
|
966 |
|
sl@0
|
967 |
//TDbKeyCol - self assignment
|
sl@0
|
968 |
srcDbKeyCol = srcDbKeyCol;
|
sl@0
|
969 |
TheTest(srcDbKeyCol.iOrder == KKeyOrder);
|
sl@0
|
970 |
TheTest(srcDbKeyCol.iLength == KKeyLen);
|
sl@0
|
971 |
TheTest(srcDbKeyCol.iName == KKeyName);
|
sl@0
|
972 |
}
|
sl@0
|
973 |
|
sl@0
|
974 |
/**
|
sl@0
|
975 |
@SYMTestCaseID SYSLIB-DBMS-UT-3413
|
sl@0
|
976 |
@SYMTestCaseDesc Testing that "incremental update" operations running in one connection does not
|
sl@0
|
977 |
interfere with database operations executed from a second connection
|
sl@0
|
978 |
@SYMTestPriority High
|
sl@0
|
979 |
@SYMTestActions Create a test database with one table and insert some records there (> 100).
|
sl@0
|
980 |
Create 2 database connections.
|
sl@0
|
981 |
Open that database from connection 1 and execute an incremental update operation
|
sl@0
|
982 |
in a transaction. At the same time try to open and close the same table from
|
sl@0
|
983 |
connection 2, mixing these operations with the RDbUpdate::Next() calls from
|
sl@0
|
984 |
connection 1. So the call pattern should be:
|
sl@0
|
985 |
@code
|
sl@0
|
986 |
RDbUpdate dbUpdate;
|
sl@0
|
987 |
....
|
sl@0
|
988 |
while((err = dbUpdate.Next()) > 0) //from "Conenction 1"
|
sl@0
|
989 |
{
|
sl@0
|
990 |
RDbTable tbl;
|
sl@0
|
991 |
err = tbl.Open(TheDb2, _L("A")); //from "Conenction 2"
|
sl@0
|
992 |
...
|
sl@0
|
993 |
}
|
sl@0
|
994 |
@endcode
|
sl@0
|
995 |
@SYMTestExpectedResults The test should not fail or panic.
|
sl@0
|
996 |
@SYMDEF INC101720
|
sl@0
|
997 |
*/
|
sl@0
|
998 |
void Defect_INC101720()
|
sl@0
|
999 |
{
|
sl@0
|
1000 |
TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-DBMS-UT-3413 "));
|
sl@0
|
1001 |
//Create the test database
|
sl@0
|
1002 |
TInt err = TheDb1.Replace(TheFs, KDbName);
|
sl@0
|
1003 |
TEST2(err, KErrNone);
|
sl@0
|
1004 |
TheDb1.Close();
|
sl@0
|
1005 |
//Establish the first database connection
|
sl@0
|
1006 |
err = TheDbs1.Connect();
|
sl@0
|
1007 |
TEST2(err, KErrNone);
|
sl@0
|
1008 |
err = TheDb1.Open(TheDbs1, KDbName);
|
sl@0
|
1009 |
TEST2(err, KErrNone);
|
sl@0
|
1010 |
//Create a test table and fill the table with enough test records (> 100)
|
sl@0
|
1011 |
err = TheDb1.Execute(_L("CREATE TABLE A(Id COUNTER, Id2 INTEGER, Name LONG VARCHAR)"));
|
sl@0
|
1012 |
TEST2(err, KErrNone);
|
sl@0
|
1013 |
const TInt KTestRecCount = 200;
|
sl@0
|
1014 |
err = TheDb1.Begin();
|
sl@0
|
1015 |
TEST2(err, KErrNone);
|
sl@0
|
1016 |
for(TInt i=0;i<KTestRecCount;++i)
|
sl@0
|
1017 |
{
|
sl@0
|
1018 |
_LIT(KSqlFmtStr, "INSERT INTO A(Id2, Name) VALUES(%d, 'TestNameString')");
|
sl@0
|
1019 |
TBuf<100> sql;
|
sl@0
|
1020 |
TUint32 id = Math::Random() % KTestRecCount;
|
sl@0
|
1021 |
sql.Format(KSqlFmtStr, id + 1);
|
sl@0
|
1022 |
err = TheDb1.Execute(sql);
|
sl@0
|
1023 |
TEST2(err, 1);
|
sl@0
|
1024 |
}
|
sl@0
|
1025 |
err = TheDb1.Commit();
|
sl@0
|
1026 |
TEST2(err, KErrNone);
|
sl@0
|
1027 |
//Establish a second connection with the same test database
|
sl@0
|
1028 |
err = TheDbs2.Connect();
|
sl@0
|
1029 |
TEST2(err, KErrNone);
|
sl@0
|
1030 |
err = TheDb2.Open(TheDbs2, KDbName);
|
sl@0
|
1031 |
TEST2(err, KErrNone);
|
sl@0
|
1032 |
//The test: Conenction 1 - "incremental update" operation.
|
sl@0
|
1033 |
// Connection 2 - "open table/close table" operations mixed with the incremental Next-s.
|
sl@0
|
1034 |
//Expectation: The test must not fail.
|
sl@0
|
1035 |
err = TheDb1.Begin();
|
sl@0
|
1036 |
TEST2(err, KErrNone);
|
sl@0
|
1037 |
RDbUpdate dbUpdate;
|
sl@0
|
1038 |
err = dbUpdate.Execute(TheDb1, _L("UPDATE A SET Name = 'ModifiedNameString' WHERE Id2 > 10"));
|
sl@0
|
1039 |
TEST2(err, KErrNone);
|
sl@0
|
1040 |
TInt step = 0;
|
sl@0
|
1041 |
while((err = dbUpdate.Next()) > 0)
|
sl@0
|
1042 |
{
|
sl@0
|
1043 |
++step;
|
sl@0
|
1044 |
RDbTable tbl;
|
sl@0
|
1045 |
err = tbl.Open(TheDb2, _L("A"));
|
sl@0
|
1046 |
TEST2(err, KErrNone);
|
sl@0
|
1047 |
tbl.Close();
|
sl@0
|
1048 |
}
|
sl@0
|
1049 |
TEST(step > 1);//just to be sure that the test executes dbUpdate.Next() more than once
|
sl@0
|
1050 |
TEST2(err, KErrNone);
|
sl@0
|
1051 |
dbUpdate.Close();
|
sl@0
|
1052 |
err = TheDb1.Commit();
|
sl@0
|
1053 |
TEST2(err, KErrNone);
|
sl@0
|
1054 |
//Cleanup
|
sl@0
|
1055 |
TheDb2.Close();
|
sl@0
|
1056 |
TheDbs2.Close();
|
sl@0
|
1057 |
TheDb1.Close();
|
sl@0
|
1058 |
TheDbs1.Close();
|
sl@0
|
1059 |
}
|
sl@0
|
1060 |
|
sl@0
|
1061 |
/**
|
sl@0
|
1062 |
@SYMTestCaseID SYSLIB-DBMS-UT-3484
|
sl@0
|
1063 |
@SYMTestCaseDesc DBMS Hindi collation doesn't work on long text fields.
|
sl@0
|
1064 |
@SYMTestPriority Medium
|
sl@0
|
1065 |
@SYMTestActions This test is to check that DBMS correctly sorts columns using Collation, when
|
sl@0
|
1066 |
the columns are of type EDbColLongText16. Previous implementations split the
|
sl@0
|
1067 |
strings to be compared into chunks, however this could cause it to be sorted
|
sl@0
|
1068 |
incorrectly if it was split on a combining or accent character. This fault
|
sl@0
|
1069 |
occurs on the default locale as well as Hindi. Test steps:
|
sl@0
|
1070 |
* Create a database table and adds several unicode strings to EDbColLongText16
|
sl@0
|
1071 |
column in table. One set of strings have an ascii character followed by
|
sl@0
|
1072 |
an accent (e + ') and the other set have the combined equivilant ascii
|
sl@0
|
1073 |
character (è). These should have the same sort order,however if are split
|
sl@0
|
1074 |
then will compare differently.
|
sl@0
|
1075 |
* Sort the columns using EDbCompareCollated
|
sl@0
|
1076 |
* Check that the columns were sorted in the correct order
|
sl@0
|
1077 |
@SYMTestExpectedResults The columns should get sorted into ascending order correctly
|
sl@0
|
1078 |
@SYMDEF INC107268
|
sl@0
|
1079 |
*/
|
sl@0
|
1080 |
void Defect_INC107268L()
|
sl@0
|
1081 |
{
|
sl@0
|
1082 |
TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-DBMS-UT-3484 Defect INC107268 - DBMS Hindi collation doesn't work on long text fields"));
|
sl@0
|
1083 |
|
sl@0
|
1084 |
// some unicode characters
|
sl@0
|
1085 |
const TChar Ka(0x0061); // a
|
sl@0
|
1086 |
const TChar Kb(0x0062); // b
|
sl@0
|
1087 |
const TChar Ke(0x0065); // e
|
sl@0
|
1088 |
const TChar Kgrave(0x0060); // ' (grave)
|
sl@0
|
1089 |
const TChar Kegrave(0x00e8); // e with grave
|
sl@0
|
1090 |
const TChar K1(0x0031); // 1
|
sl@0
|
1091 |
const TChar K2(0x0032); // 2
|
sl@0
|
1092 |
|
sl@0
|
1093 |
// the maximum characters in a EDbColLongText16 string before dbms stops storing
|
sl@0
|
1094 |
// the string inline, and we need to read it from a stream (see TBlobKey).
|
sl@0
|
1095 |
const TInt KInlineLimit = 127;
|
sl@0
|
1096 |
|
sl@0
|
1097 |
// maximum number of characters buffered in TBlobKey when string stored out of line.
|
sl@0
|
1098 |
// (see TBlobKey::ETruncSize which is in bytes)
|
sl@0
|
1099 |
const TInt KTruncLimit = 16;
|
sl@0
|
1100 |
|
sl@0
|
1101 |
const TInt KMaxStringSize = 256;
|
sl@0
|
1102 |
|
sl@0
|
1103 |
TBuf<KMaxStringSize> inLineBoundryA;
|
sl@0
|
1104 |
TBuf<KMaxStringSize> inLineBoundryB;
|
sl@0
|
1105 |
TBuf<KMaxStringSize> truncBoundryA;
|
sl@0
|
1106 |
TBuf<KMaxStringSize> truncBoundryB;
|
sl@0
|
1107 |
TBuf<KMaxStringSize> padding;
|
sl@0
|
1108 |
|
sl@0
|
1109 |
// this string will be stored inline. It should sort to be < stringB
|
sl@0
|
1110 |
inLineBoundryA.Fill(Ka, KInlineLimit-2);
|
sl@0
|
1111 |
inLineBoundryA.Append(Kegrave);
|
sl@0
|
1112 |
inLineBoundryA.Append(K1);
|
sl@0
|
1113 |
|
sl@0
|
1114 |
// this string is just over the break point, so *is* truncated.
|
sl@0
|
1115 |
// this is expected to get sorted incorrecly as combining character is split off (negative test case)
|
sl@0
|
1116 |
inLineBoundryB.Fill(Ka, KInlineLimit-2);
|
sl@0
|
1117 |
inLineBoundryB.Append(Ke);
|
sl@0
|
1118 |
inLineBoundryB.Append(Kgrave);
|
sl@0
|
1119 |
inLineBoundryB.Append(K2);
|
sl@0
|
1120 |
|
sl@0
|
1121 |
padding.Fill(Kb, KInlineLimit);
|
sl@0
|
1122 |
|
sl@0
|
1123 |
// this string is longger that KInlineLimit so is stored out of line
|
sl@0
|
1124 |
truncBoundryA.Fill(Kb, KTruncLimit-2);
|
sl@0
|
1125 |
truncBoundryA.Append(Kegrave);
|
sl@0
|
1126 |
truncBoundryA.Append(K1);
|
sl@0
|
1127 |
truncBoundryA.Append(padding);
|
sl@0
|
1128 |
|
sl@0
|
1129 |
// this string has combining characters that fall on boundry of ETruncSize value (32 bytes)
|
sl@0
|
1130 |
truncBoundryB.Fill(Kb, KTruncLimit-2);
|
sl@0
|
1131 |
truncBoundryB.Append(Ke);
|
sl@0
|
1132 |
truncBoundryB.Append(Kgrave);
|
sl@0
|
1133 |
truncBoundryB.Append(K2);
|
sl@0
|
1134 |
truncBoundryB.Append(padding);
|
sl@0
|
1135 |
|
sl@0
|
1136 |
|
sl@0
|
1137 |
// e and '(grave) characters seperately
|
sl@0
|
1138 |
TBuf<3> e_grave;
|
sl@0
|
1139 |
e_grave.Append( Ke );
|
sl@0
|
1140 |
e_grave.Append( Kgrave );
|
sl@0
|
1141 |
|
sl@0
|
1142 |
// e with grave character - this should sort the same as e_grave
|
sl@0
|
1143 |
TBuf<3> egrave;
|
sl@0
|
1144 |
egrave.Append( Kegrave );
|
sl@0
|
1145 |
|
sl@0
|
1146 |
TBuf<1> nullString;
|
sl@0
|
1147 |
|
sl@0
|
1148 |
e_grave.Append(K2); // make e_grave sort second
|
sl@0
|
1149 |
egrave.Append(K1); // make egrave sort first
|
sl@0
|
1150 |
|
sl@0
|
1151 |
// Check with database
|
sl@0
|
1152 |
_LIT(KPosLmLandmarkTable, "lmt_landmark");
|
sl@0
|
1153 |
_LIT(KPosLmLandmarkIdCol, "lmc_lmid");
|
sl@0
|
1154 |
_LIT(KPosLmNameCol, "lmc_name");
|
sl@0
|
1155 |
|
sl@0
|
1156 |
TInt err = TheDb1.Replace( TheFs, KDbName );
|
sl@0
|
1157 |
TEST2 (err, KErrNone);
|
sl@0
|
1158 |
CleanupClosePushL(TheDb1);
|
sl@0
|
1159 |
|
sl@0
|
1160 |
CDbColSet* columns = CDbColSet::NewLC();
|
sl@0
|
1161 |
TDbCol idField( KPosLmLandmarkIdCol, EDbColUint32 );
|
sl@0
|
1162 |
idField.iAttributes |= TDbCol::EAutoIncrement;
|
sl@0
|
1163 |
columns->AddL( idField );
|
sl@0
|
1164 |
columns->AddL( TDbCol( KPosLmNameCol, EDbColLongText16 ) ); // Works with EDbColText16. Defect only for EDbColLongText16.
|
sl@0
|
1165 |
|
sl@0
|
1166 |
err = TheDb1.CreateTable( KPosLmLandmarkTable, *columns );
|
sl@0
|
1167 |
TEST2 (err, KErrNone);
|
sl@0
|
1168 |
CleanupStack::PopAndDestroy(columns);
|
sl@0
|
1169 |
|
sl@0
|
1170 |
RDbTable table;
|
sl@0
|
1171 |
err = table.Open( TheDb1, KPosLmLandmarkTable );
|
sl@0
|
1172 |
TEST2 (err, KErrNone);
|
sl@0
|
1173 |
CleanupClosePushL(table);
|
sl@0
|
1174 |
|
sl@0
|
1175 |
// add rows to table
|
sl@0
|
1176 |
table.InsertL();
|
sl@0
|
1177 |
table.SetColL( 2, egrave); // row 0 - sorted 8th
|
sl@0
|
1178 |
table.PutL();
|
sl@0
|
1179 |
|
sl@0
|
1180 |
table.InsertL();
|
sl@0
|
1181 |
table.SetColL( 2, e_grave ); // row 1 - sorted 9th
|
sl@0
|
1182 |
table.PutL();
|
sl@0
|
1183 |
|
sl@0
|
1184 |
table.InsertL();
|
sl@0
|
1185 |
table.SetColL( 2, inLineBoundryA ); // row 2 - sorted 3rd (incorrectly - negative test case)
|
sl@0
|
1186 |
table.PutL();
|
sl@0
|
1187 |
|
sl@0
|
1188 |
table.InsertL();
|
sl@0
|
1189 |
table.SetColL( 2, inLineBoundryB ); // row 3 - sorted 2nd (incorrectly - negative test case)
|
sl@0
|
1190 |
table.PutL();
|
sl@0
|
1191 |
|
sl@0
|
1192 |
table.InsertL();
|
sl@0
|
1193 |
table.SetColL( 2, nullString ); // row 4 - sorted 1st
|
sl@0
|
1194 |
table.PutL();
|
sl@0
|
1195 |
|
sl@0
|
1196 |
table.InsertL();
|
sl@0
|
1197 |
table.SetColL( 2, truncBoundryB ); // row 5 - sorted 5th
|
sl@0
|
1198 |
table.PutL();
|
sl@0
|
1199 |
|
sl@0
|
1200 |
table.InsertL();
|
sl@0
|
1201 |
table.SetColL( 2, truncBoundryA ); // row 6 - sorted 4th
|
sl@0
|
1202 |
table.PutL();
|
sl@0
|
1203 |
|
sl@0
|
1204 |
|
sl@0
|
1205 |
CleanupStack::PopAndDestroy(); // table.close()
|
sl@0
|
1206 |
|
sl@0
|
1207 |
// do an sql select with Order By to sort columns
|
sl@0
|
1208 |
_LIT(KPosLmSqlSelectOrderByString, "SELECT %S, %S FROM %S ORDER BY %S");
|
sl@0
|
1209 |
TBuf<200> sql;
|
sl@0
|
1210 |
sql.Format( KPosLmSqlSelectOrderByString,
|
sl@0
|
1211 |
&KPosLmLandmarkIdCol,
|
sl@0
|
1212 |
&KPosLmNameCol,
|
sl@0
|
1213 |
&KPosLmLandmarkTable,
|
sl@0
|
1214 |
&KPosLmNameCol);
|
sl@0
|
1215 |
|
sl@0
|
1216 |
RDbView view;
|
sl@0
|
1217 |
CleanupClosePushL(view);
|
sl@0
|
1218 |
err = view.Prepare( TheDb1, TDbQuery( sql, EDbCompareCollated ) );
|
sl@0
|
1219 |
TEST2 (err, KErrNone);
|
sl@0
|
1220 |
err = view.EvaluateAll();
|
sl@0
|
1221 |
TEST2 (err, KErrNone);
|
sl@0
|
1222 |
|
sl@0
|
1223 |
// Now check that view is ordered correctly
|
sl@0
|
1224 |
const TUint32 ExpectedOrder[] = {4,3,2,6,5,0,1};
|
sl@0
|
1225 |
TInt x = 0;
|
sl@0
|
1226 |
while (view.NextL())
|
sl@0
|
1227 |
{
|
sl@0
|
1228 |
view.GetL();
|
sl@0
|
1229 |
TEST2(view.ColUint32(1), ExpectedOrder[x]); // check we got the expected order
|
sl@0
|
1230 |
x++;
|
sl@0
|
1231 |
}
|
sl@0
|
1232 |
TEST2(x, 7); // check we got the right number of values
|
sl@0
|
1233 |
CleanupStack::PopAndDestroy(2); // TheDb1.Close(); view.Close()
|
sl@0
|
1234 |
}
|
sl@0
|
1235 |
|
sl@0
|
1236 |
|
sl@0
|
1237 |
/**
|
sl@0
|
1238 |
@SYMTestCaseID PDS-DBMS-UT-4001
|
sl@0
|
1239 |
@SYMTestCaseDesc INC128224 SQL statement with ESCAPE panics in DBMS.
|
sl@0
|
1240 |
@SYMTestPriority High
|
sl@0
|
1241 |
@SYMTestActions The test verifies that SELECT statement with a LIKE redicate with an ESCAPE clause
|
sl@0
|
1242 |
followed by another LIKE predicate does not causes a crash in DBMS.
|
sl@0
|
1243 |
The test creates a test database, inserts some records and then runs a SELECT
|
sl@0
|
1244 |
statement that has one LIKE predicate with an ESCAPE followed by another LIKE.
|
sl@0
|
1245 |
@SYMTestExpectedResults The test should pass and should not crash the DBMS
|
sl@0
|
1246 |
@SYMDEF INC128224
|
sl@0
|
1247 |
*/
|
sl@0
|
1248 |
void INC128224L()
|
sl@0
|
1249 |
{
|
sl@0
|
1250 |
TheTest.Next(_L(" @SYMTestCaseID:PDS-DBMS-UT-4001 INC128224 SQL statement with ESCAPE panics in DBMS"));
|
sl@0
|
1251 |
|
sl@0
|
1252 |
TInt err = TheDb1.Replace(TheFs, KDbName);
|
sl@0
|
1253 |
TEST2(err, KErrNone);
|
sl@0
|
1254 |
|
sl@0
|
1255 |
err = TheDb1.Execute(_L("CREATE TABLE A(T1 VARCHAR(100),T2 VARCHAR(150))"));
|
sl@0
|
1256 |
TEST2(err, KErrNone);
|
sl@0
|
1257 |
err = TheDb1.Execute(_L("INSERT INTO A(T1,T2) VALUES('AAAAAA','HGS')"));
|
sl@0
|
1258 |
TEST2(err, 1);
|
sl@0
|
1259 |
err = TheDb1.Execute(_L("INSERT INTO A(T1,T2) VALUES('BBBBBB','RRR')"));
|
sl@0
|
1260 |
TEST2(err, 1);
|
sl@0
|
1261 |
err = TheDb1.Execute(_L("INSERT INTO A(T1,T2) VALUES('C*CCCCC','AAQWWT')"));
|
sl@0
|
1262 |
TEST2(err, 1);
|
sl@0
|
1263 |
err = TheDb1.Execute(_L("INSERT INTO A(T1,T2) VALUES('DDDDDD','TUQQPQQQQSSS')"));
|
sl@0
|
1264 |
TEST2(err, 1);
|
sl@0
|
1265 |
err = TheDb1.Execute(_L("INSERT INTO A(T1,T2) VALUES('C*CABS','IAAAIAAAIA')"));
|
sl@0
|
1266 |
TEST2(err, 1);
|
sl@0
|
1267 |
|
sl@0
|
1268 |
RDbView view;
|
sl@0
|
1269 |
err = view.Prepare(TheDb1, _L("SELECT * FROM A WHERE (T1 LIKE '*C\\*C*' ESCAPE '\\') AND (T2 LIKE 'I?A*')"));
|
sl@0
|
1270 |
TEST2(err, KErrNone);
|
sl@0
|
1271 |
TInt cnt = 0;
|
sl@0
|
1272 |
while(view.NextL())
|
sl@0
|
1273 |
{
|
sl@0
|
1274 |
view.GetL();
|
sl@0
|
1275 |
TPtrC t1 = view.ColDes(1);
|
sl@0
|
1276 |
TPtrC t2 = view.ColDes(2);
|
sl@0
|
1277 |
RDebug::Print(_L("T1=\"%S\", T2=\"%S\"\r\n"), &t1, &t2);
|
sl@0
|
1278 |
++cnt;
|
sl@0
|
1279 |
}
|
sl@0
|
1280 |
view.Close();
|
sl@0
|
1281 |
TEST2(cnt, 1);
|
sl@0
|
1282 |
|
sl@0
|
1283 |
TheDb1.Close();
|
sl@0
|
1284 |
(void)TheFs.Delete(KDbName);
|
sl@0
|
1285 |
}
|
sl@0
|
1286 |
|
sl@0
|
1287 |
LOCAL_C void DoTestsL ()
|
sl@0
|
1288 |
{
|
sl@0
|
1289 |
__UHEAP_MARK;
|
sl@0
|
1290 |
CleanupClosePushL(TheFs);
|
sl@0
|
1291 |
Defect_INC076370L();
|
sl@0
|
1292 |
Defect_INC083027L();
|
sl@0
|
1293 |
Defect_DEF44697L ();
|
sl@0
|
1294 |
Defect_INC093657L();
|
sl@0
|
1295 |
Defect_INC101720();
|
sl@0
|
1296 |
DEF105615L();
|
sl@0
|
1297 |
DEF105615_2();
|
sl@0
|
1298 |
Defect_INC107268L();
|
sl@0
|
1299 |
INC128224L();
|
sl@0
|
1300 |
CleanupStack::PopAndDestroy(); // TheFs.Close()
|
sl@0
|
1301 |
__UHEAP_MARKEND;
|
sl@0
|
1302 |
}
|
sl@0
|
1303 |
|
sl@0
|
1304 |
|
sl@0
|
1305 |
GLDEF_C TInt E32Main ()
|
sl@0
|
1306 |
{
|
sl@0
|
1307 |
__UHEAP_MARK;
|
sl@0
|
1308 |
TheTest.Title ();
|
sl@0
|
1309 |
TheTest.Start (_L ("Verify Defect Fixes"));
|
sl@0
|
1310 |
|
sl@0
|
1311 |
TheTrapCleanup = CTrapCleanup::New ();
|
sl@0
|
1312 |
__ASSERT_ALWAYS (TheTrapCleanup!=NULL, User::Invariant ());
|
sl@0
|
1313 |
|
sl@0
|
1314 |
TInt err = TheFs.Connect();
|
sl@0
|
1315 |
TheTest(err == KErrNone);
|
sl@0
|
1316 |
|
sl@0
|
1317 |
TRAP (err,DoTestsL ());
|
sl@0
|
1318 |
TheTest (err==KErrNone);
|
sl@0
|
1319 |
|
sl@0
|
1320 |
delete TheTrapCleanup;
|
sl@0
|
1321 |
|
sl@0
|
1322 |
//Wait some time, because DBMS server won't be destroyed right after the last DBMS session
|
sl@0
|
1323 |
//being clossed.
|
sl@0
|
1324 |
TheTest.Printf(_L("Wait DBMS server shutdown...\n"));
|
sl@0
|
1325 |
const TInt KExitDelay = 6000000;
|
sl@0
|
1326 |
User::After(KExitDelay);
|
sl@0
|
1327 |
|
sl@0
|
1328 |
TheTest.End ();
|
sl@0
|
1329 |
TheTest.Close ();
|
sl@0
|
1330 |
|
sl@0
|
1331 |
__UHEAP_MARKEND;
|
sl@0
|
1332 |
return (0);
|
sl@0
|
1333 |
}
|