sl@0
|
1 |
// Copyright (c) 1998-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 |
#include <e32math.h>
|
sl@0
|
20 |
#include <hal.h>
|
sl@0
|
21 |
#include "D32DBAS.H"
|
sl@0
|
22 |
|
sl@0
|
23 |
LOCAL_D RTest test(_L("t_dbsrv: Test DBMS server"));
|
sl@0
|
24 |
LOCAL_D CTrapCleanup* TheTrapCleanup;
|
sl@0
|
25 |
LOCAL_D RFs TheFs;
|
sl@0
|
26 |
LOCAL_D RDbs TheDbs;
|
sl@0
|
27 |
LOCAL_D RDbNamedDatabase TheDatabase;
|
sl@0
|
28 |
LOCAL_D RDbTable TheTable;
|
sl@0
|
29 |
LOCAL_D RDbView TheView;
|
sl@0
|
30 |
|
sl@0
|
31 |
const TInt KTestCleanupStack=0x40;
|
sl@0
|
32 |
const TPtrC KTestDatabase(_S("c:\\dbms-tst\\share.db"));
|
sl@0
|
33 |
const TPtrC KTestFormat(_S(""));
|
sl@0
|
34 |
const TPtrC KTable1(_S("Table1"));
|
sl@0
|
35 |
const TPtrC KTable2(_S("Table2"));
|
sl@0
|
36 |
const TInt KRowCount=1000;
|
sl@0
|
37 |
const TUint KExitDelay=6*0x100000; // ~6 seconds
|
sl@0
|
38 |
|
sl@0
|
39 |
const TPtrC KCreateTable1=_S("CREATE TABLE Table1 (Id INTEGER,Name CHAR(200),Memo LONG VARCHAR,Memo2 LONG VARBINARY)");
|
sl@0
|
40 |
const TPtrC KCreateTable2=_S("CREATE TABLE Table2 (Id INTEGER,Name CHAR(200),Memo LONG VARCHAR)");
|
sl@0
|
41 |
const TPtrC KDropTable1=_S("DROP TABLE Table1");
|
sl@0
|
42 |
const TPtrC KDropTable2=_S("DROP TABLE Table2");
|
sl@0
|
43 |
|
sl@0
|
44 |
_LIT(KTestSpdFile1, "c:\\dbms-tst\\11335577.spd");
|
sl@0
|
45 |
_LIT(KTestSpdFile2, "c:\\dbms-tst\\11335578.spd");
|
sl@0
|
46 |
_LIT(KTestSpdFile3, "c:\\dbms-tst\\11335579.spd");
|
sl@0
|
47 |
_LIT(KTestSpdFile4, "c:\\dbms-tst\\1133557A.spd");
|
sl@0
|
48 |
|
sl@0
|
49 |
const TInt KReturnValueForCompare = 10;
|
sl@0
|
50 |
const TInt KReturnValueForFind = 20;
|
sl@0
|
51 |
|
sl@0
|
52 |
class TTimer
|
sl@0
|
53 |
{
|
sl@0
|
54 |
public:
|
sl@0
|
55 |
void Start(const TDesC& aDes);
|
sl@0
|
56 |
void Stop();
|
sl@0
|
57 |
private:
|
sl@0
|
58 |
TUint iTicks;
|
sl@0
|
59 |
};
|
sl@0
|
60 |
|
sl@0
|
61 |
static TTimer TheTimer;
|
sl@0
|
62 |
|
sl@0
|
63 |
void TTimer::Start(const TDesC& aDes)
|
sl@0
|
64 |
{
|
sl@0
|
65 |
test.Printf(_L(" %S: "),&aDes);
|
sl@0
|
66 |
iTicks=User::FastCounter();
|
sl@0
|
67 |
}
|
sl@0
|
68 |
|
sl@0
|
69 |
void TTimer::Stop()
|
sl@0
|
70 |
{
|
sl@0
|
71 |
TUint ticks = User::FastCounter() - iTicks;
|
sl@0
|
72 |
TInt freq = 0;
|
sl@0
|
73 |
test(HAL::Get(HAL::EFastCounterFrequency, freq) == KErrNone);
|
sl@0
|
74 |
const TInt KMicroSecIn1Sec = 1000000;
|
sl@0
|
75 |
const TInt KMsIn1Sec = 1000;
|
sl@0
|
76 |
double v = ((double)ticks * KMicroSecIn1Sec) / (double)freq; TInt v2 = (TInt)v;
|
sl@0
|
77 |
test.Printf(_L("%d ms\r\n"),v2/KMsIn1Sec);
|
sl@0
|
78 |
}
|
sl@0
|
79 |
|
sl@0
|
80 |
void DeleteTestFiles()
|
sl@0
|
81 |
{
|
sl@0
|
82 |
(void)TheFs.Delete(KTestDatabase);
|
sl@0
|
83 |
(void)TheFs.Delete(KTestSpdFile1);
|
sl@0
|
84 |
(void)TheFs.Delete(KTestSpdFile2);
|
sl@0
|
85 |
(void)TheFs.Delete(KTestSpdFile3);
|
sl@0
|
86 |
(void)TheFs.Delete(KTestSpdFile4);
|
sl@0
|
87 |
}
|
sl@0
|
88 |
|
sl@0
|
89 |
void Check(TInt aValue,TInt aExpected,TInt aLine)
|
sl@0
|
90 |
{
|
sl@0
|
91 |
if (aValue!=aExpected)
|
sl@0
|
92 |
{
|
sl@0
|
93 |
DeleteTestFiles();
|
sl@0
|
94 |
test.Printf(_L("*** Expected %d: got %d\r\n"),aExpected,aValue);
|
sl@0
|
95 |
test.operator()(EFalse,aLine);
|
sl@0
|
96 |
}
|
sl@0
|
97 |
}
|
sl@0
|
98 |
#define test2(a,b) Check(a,b,__LINE__)
|
sl@0
|
99 |
|
sl@0
|
100 |
LOCAL_C void Connect()
|
sl@0
|
101 |
{
|
sl@0
|
102 |
test2(TheDbs.Connect(),KErrNone);
|
sl@0
|
103 |
TheDbs.ResourceMark();
|
sl@0
|
104 |
}
|
sl@0
|
105 |
|
sl@0
|
106 |
LOCAL_C void Disconnect()
|
sl@0
|
107 |
{
|
sl@0
|
108 |
TheDbs.ResourceCheck();
|
sl@0
|
109 |
TheDbs.Close();
|
sl@0
|
110 |
}
|
sl@0
|
111 |
|
sl@0
|
112 |
LOCAL_C void Execute(const TDesC& aSql)
|
sl@0
|
113 |
{
|
sl@0
|
114 |
test2 (TheDatabase.Execute(aSql),KErrNone);
|
sl@0
|
115 |
}
|
sl@0
|
116 |
|
sl@0
|
117 |
LOCAL_C void WriteRecordsL(TInt aCount)
|
sl@0
|
118 |
{
|
sl@0
|
119 |
TheTimer.Start(_L("writing"));
|
sl@0
|
120 |
TheDatabase.Begin();
|
sl@0
|
121 |
TBuf<10> text;
|
sl@0
|
122 |
TInt jj=0;
|
sl@0
|
123 |
for (TInt ii=0;ii<aCount;++ii)
|
sl@0
|
124 |
{
|
sl@0
|
125 |
TheTable.InsertL();
|
sl@0
|
126 |
jj=(jj+23);
|
sl@0
|
127 |
if (jj>=aCount)
|
sl@0
|
128 |
jj-=aCount;
|
sl@0
|
129 |
TheTable.SetColL(1,jj);
|
sl@0
|
130 |
text.Num(jj);
|
sl@0
|
131 |
TheTable.SetColL(2,text);
|
sl@0
|
132 |
TheTable.PutL();
|
sl@0
|
133 |
}
|
sl@0
|
134 |
test2 (TheDatabase.Commit(),KErrNone);
|
sl@0
|
135 |
TheTimer.Stop();
|
sl@0
|
136 |
}
|
sl@0
|
137 |
|
sl@0
|
138 |
LOCAL_C void Ipc(TInt aCount)
|
sl@0
|
139 |
{
|
sl@0
|
140 |
TheTimer.Start(_L("ipc"));
|
sl@0
|
141 |
while (--aCount>=0)
|
sl@0
|
142 |
TheDatabase.InTransaction();
|
sl@0
|
143 |
TheTimer.Stop();
|
sl@0
|
144 |
}
|
sl@0
|
145 |
|
sl@0
|
146 |
LOCAL_C void LoopL(RDbTable::TPosition aDirection)
|
sl@0
|
147 |
{
|
sl@0
|
148 |
TheTimer.Start(_L("loop"));
|
sl@0
|
149 |
TInt cc=0;
|
sl@0
|
150 |
while (TheTable.GotoL(aDirection))
|
sl@0
|
151 |
++cc;
|
sl@0
|
152 |
test2 (cc,TheTable.CountL());
|
sl@0
|
153 |
TheTimer.Stop();
|
sl@0
|
154 |
}
|
sl@0
|
155 |
|
sl@0
|
156 |
LOCAL_C void IterateL(RDbTable::TPosition aDirection)
|
sl@0
|
157 |
{
|
sl@0
|
158 |
TheTimer.Start(_L("iterate"));
|
sl@0
|
159 |
TInt cc=0;
|
sl@0
|
160 |
while (TheTable.GotoL(aDirection))
|
sl@0
|
161 |
{
|
sl@0
|
162 |
++cc;
|
sl@0
|
163 |
TheTable.GetL();
|
sl@0
|
164 |
TBuf<10> text;
|
sl@0
|
165 |
text.Num(TheTable.ColInt(1));
|
sl@0
|
166 |
test (text==TheTable.ColDes(2));
|
sl@0
|
167 |
}
|
sl@0
|
168 |
test2 (cc,TheTable.CountL());
|
sl@0
|
169 |
TheTimer.Stop();
|
sl@0
|
170 |
}
|
sl@0
|
171 |
|
sl@0
|
172 |
LOCAL_C void LocateL(const TDesC& aSql)
|
sl@0
|
173 |
{
|
sl@0
|
174 |
test2 (TheView.Prepare(TheDatabase,aSql),KErrNone);
|
sl@0
|
175 |
test2 (TheView.EvaluateAll(),KErrNone);
|
sl@0
|
176 |
TheTimer.Start(_L("locate"));
|
sl@0
|
177 |
test (!TheView.NextL());
|
sl@0
|
178 |
TheTimer.Stop();
|
sl@0
|
179 |
TheView.Close();
|
sl@0
|
180 |
}
|
sl@0
|
181 |
|
sl@0
|
182 |
LOCAL_C void Locate1L()
|
sl@0
|
183 |
{
|
sl@0
|
184 |
LocateL(_L("select * from Table1 where id is null"));
|
sl@0
|
185 |
}
|
sl@0
|
186 |
|
sl@0
|
187 |
LOCAL_C void Locate2L()
|
sl@0
|
188 |
{
|
sl@0
|
189 |
LocateL(_L("select * from Table1 where id = -12345"));
|
sl@0
|
190 |
}
|
sl@0
|
191 |
|
sl@0
|
192 |
LOCAL_C TInt DeleteL()
|
sl@0
|
193 |
{
|
sl@0
|
194 |
TheTimer.Start(_L("deleting"));
|
sl@0
|
195 |
TheDatabase.Begin();
|
sl@0
|
196 |
TInt cc=0;
|
sl@0
|
197 |
TheTable.BeginningL();
|
sl@0
|
198 |
while (TheTable.NextL())
|
sl@0
|
199 |
{
|
sl@0
|
200 |
++cc;
|
sl@0
|
201 |
TheTable.DeleteL();
|
sl@0
|
202 |
}
|
sl@0
|
203 |
test (TheTable.CountL()==0);
|
sl@0
|
204 |
test (TheDatabase.Commit()==KErrNone);
|
sl@0
|
205 |
TheTimer.Stop();
|
sl@0
|
206 |
return cc;
|
sl@0
|
207 |
}
|
sl@0
|
208 |
|
sl@0
|
209 |
LOCAL_C TInt DeleteSQL()
|
sl@0
|
210 |
{
|
sl@0
|
211 |
TheTimer.Start(_L("deleting [SQL]"));
|
sl@0
|
212 |
TInt cc=TheDatabase.Execute(_L("delete from Table1"));
|
sl@0
|
213 |
test (cc>=KErrNone);
|
sl@0
|
214 |
test (TheTable.CountL()==0);
|
sl@0
|
215 |
TheTimer.Stop();
|
sl@0
|
216 |
return cc;
|
sl@0
|
217 |
}
|
sl@0
|
218 |
|
sl@0
|
219 |
LOCAL_C void BenchmarkL()
|
sl@0
|
220 |
{
|
sl@0
|
221 |
TInt r=TheTable.Open(TheDatabase,KTable1);
|
sl@0
|
222 |
TheTable.LastL();
|
sl@0
|
223 |
test (r==KErrNone);
|
sl@0
|
224 |
Ipc(KRowCount);
|
sl@0
|
225 |
TheTable.Reset();
|
sl@0
|
226 |
LoopL(TheTable.ENext);
|
sl@0
|
227 |
TheTable.Reset();
|
sl@0
|
228 |
IterateL(TheTable.ENext);
|
sl@0
|
229 |
Locate1L();
|
sl@0
|
230 |
Locate2L();
|
sl@0
|
231 |
TheTable.Close();
|
sl@0
|
232 |
}
|
sl@0
|
233 |
|
sl@0
|
234 |
const TPtrC KSemaphore(_S("Connect-test"));
|
sl@0
|
235 |
|
sl@0
|
236 |
LOCAL_C TInt ConnectThread(TAny*)
|
sl@0
|
237 |
{
|
sl@0
|
238 |
RSemaphore s;
|
sl@0
|
239 |
s.OpenGlobal(KSemaphore,EOwnerThread);
|
sl@0
|
240 |
RDbs dbs;
|
sl@0
|
241 |
dbs.Connect();
|
sl@0
|
242 |
s.Signal();
|
sl@0
|
243 |
User::After(0x100000);
|
sl@0
|
244 |
s.Wait();
|
sl@0
|
245 |
dbs.Close();
|
sl@0
|
246 |
s.Signal();
|
sl@0
|
247 |
s.Close();
|
sl@0
|
248 |
return KErrNone;
|
sl@0
|
249 |
}
|
sl@0
|
250 |
|
sl@0
|
251 |
/**
|
sl@0
|
252 |
@SYMTestCaseID SYSLIB-DBMS-CT-0605
|
sl@0
|
253 |
@SYMTestCaseDesc Single and multiple database connection tests
|
sl@0
|
254 |
@SYMTestPriority Medium
|
sl@0
|
255 |
@SYMTestActions Setup a DBMS server session Search the server for pattern matching
|
sl@0
|
256 |
@SYMTestExpectedResults Test must not fail
|
sl@0
|
257 |
@SYMREQ REQ0000
|
sl@0
|
258 |
*/
|
sl@0
|
259 |
LOCAL_C void TestConnect()
|
sl@0
|
260 |
{
|
sl@0
|
261 |
test.Start(_L(" @SYMTestCaseID:SYSLIB-DBMS-CT-0605 Single connection "));
|
sl@0
|
262 |
test (TheDbs.Connect()==KErrNone);
|
sl@0
|
263 |
TheDbs.Close();
|
sl@0
|
264 |
test.Next(_L("Deferred exit"));
|
sl@0
|
265 |
TFindServer find(_L("!DBMS server"));
|
sl@0
|
266 |
TFullName result;
|
sl@0
|
267 |
test2 (find.Next(result),KErrNone);
|
sl@0
|
268 |
test.Next(_L("Multiple connection"));
|
sl@0
|
269 |
Connect();
|
sl@0
|
270 |
RDbs dbs;
|
sl@0
|
271 |
test2 (dbs.Connect(),KErrNone);
|
sl@0
|
272 |
Disconnect();
|
sl@0
|
273 |
dbs.Close();
|
sl@0
|
274 |
test.Next(_L("Deferred exit"));
|
sl@0
|
275 |
find.Find(_L("!DBMS server"));
|
sl@0
|
276 |
test2 (find.Next(result),KErrNone);
|
sl@0
|
277 |
User::After(KExitDelay);
|
sl@0
|
278 |
find.Find(_L("!DBMS server"));
|
sl@0
|
279 |
test2 (find.Next(result),KErrNotFound);
|
sl@0
|
280 |
test.Next(_L("multiple thread connections"));
|
sl@0
|
281 |
RSemaphore s;
|
sl@0
|
282 |
test2 (s.CreateGlobal(KSemaphore,0,EOwnerThread),KErrNone);
|
sl@0
|
283 |
RThread t;
|
sl@0
|
284 |
test2 (t.Create(KSemaphore,ConnectThread,0x2000,0x1000,0x10000,0,EOwnerThread),KErrNone);
|
sl@0
|
285 |
t.Resume();
|
sl@0
|
286 |
TRequestStatus st;
|
sl@0
|
287 |
t.Logon(st);
|
sl@0
|
288 |
t.Close();
|
sl@0
|
289 |
s.Wait();
|
sl@0
|
290 |
Connect();
|
sl@0
|
291 |
s.Signal();
|
sl@0
|
292 |
s.Close();
|
sl@0
|
293 |
User::WaitForRequest(st);
|
sl@0
|
294 |
test2 (TheDbs.ResourceCount(),0);
|
sl@0
|
295 |
Disconnect();
|
sl@0
|
296 |
test.Next(_L("Deferred exit"));
|
sl@0
|
297 |
find.Find(_L("!DBMS server"));
|
sl@0
|
298 |
test2 (find.Next(result),KErrNone);
|
sl@0
|
299 |
User::After(KExitDelay);
|
sl@0
|
300 |
find.Find(_L("!DBMS server"));
|
sl@0
|
301 |
test2 (find.Next(result),KErrNotFound);
|
sl@0
|
302 |
test.End();
|
sl@0
|
303 |
}
|
sl@0
|
304 |
|
sl@0
|
305 |
/**
|
sl@0
|
306 |
@SYMTestCaseID SYSLIB-DBMS-CT-0606
|
sl@0
|
307 |
@SYMTestCaseDesc Tests for benchmark
|
sl@0
|
308 |
@SYMTestPriority Medium
|
sl@0
|
309 |
@SYMTestActions Tests for creating database and writing a table.Test for no error conditions.
|
sl@0
|
310 |
@SYMTestExpectedResults Test must not fail
|
sl@0
|
311 |
@SYMREQ REQ0000
|
sl@0
|
312 |
*/
|
sl@0
|
313 |
LOCAL_C void TestBenchL()
|
sl@0
|
314 |
{
|
sl@0
|
315 |
test.Start(_L(" @SYMTestCaseID:SYSLIB-DBMS-CT-0606 Create database "));
|
sl@0
|
316 |
TInt r=TheDatabase.Replace(TheFs,KTestDatabase,KTestFormat);
|
sl@0
|
317 |
test (r==KErrNone);
|
sl@0
|
318 |
Execute(KCreateTable1);
|
sl@0
|
319 |
test.Next(_L("write table"));
|
sl@0
|
320 |
r=TheTable.Open(TheDatabase,KTable1);
|
sl@0
|
321 |
test (r==KErrNone);
|
sl@0
|
322 |
WriteRecordsL(KRowCount);
|
sl@0
|
323 |
TheTable.Close();
|
sl@0
|
324 |
test.Next(_L("BenchmarkL"));
|
sl@0
|
325 |
TRAPD(errCode, BenchmarkL());
|
sl@0
|
326 |
test(errCode == KErrNone);
|
sl@0
|
327 |
test.Next(_L("Open server-side"));
|
sl@0
|
328 |
TheDatabase.Close();
|
sl@0
|
329 |
Connect();
|
sl@0
|
330 |
r=TheDatabase.Open(TheDbs,KTestDatabase);
|
sl@0
|
331 |
test (r==KErrNone);
|
sl@0
|
332 |
test.Next(_L("BenchmarkL"));
|
sl@0
|
333 |
TRAP(errCode, BenchmarkL());
|
sl@0
|
334 |
test(errCode == KErrNone);
|
sl@0
|
335 |
test.Next(_L("Wrap up"));
|
sl@0
|
336 |
TheDatabase.Close();
|
sl@0
|
337 |
Disconnect();
|
sl@0
|
338 |
test.End();
|
sl@0
|
339 |
}
|
sl@0
|
340 |
|
sl@0
|
341 |
/**
|
sl@0
|
342 |
@SYMTestCaseID SYSLIB-DBMS-CT-0607
|
sl@0
|
343 |
@SYMTestCaseDesc Tests for opening a shared database
|
sl@0
|
344 |
@SYMTestPriority Medium
|
sl@0
|
345 |
@SYMTestActions Tests for database open,column type,write and drop table
|
sl@0
|
346 |
@SYMTestExpectedResults Test must not fail
|
sl@0
|
347 |
@SYMREQ REQ0000
|
sl@0
|
348 |
*/
|
sl@0
|
349 |
LOCAL_C void TestOpenL()
|
sl@0
|
350 |
{
|
sl@0
|
351 |
test.Start(_L(" @SYMTestCaseID:SYSLIB-DBMS-CT-0607 Create database "));
|
sl@0
|
352 |
test2 (TheDatabase.Replace(TheFs,KTestDatabase,KTestFormat),KErrNone);
|
sl@0
|
353 |
TheDatabase.Close();
|
sl@0
|
354 |
test.Next(_L("Open as shared"));
|
sl@0
|
355 |
Connect();
|
sl@0
|
356 |
test2 (TheDatabase.Open(TheDbs,KTestDatabase),KErrNone);
|
sl@0
|
357 |
Execute(KCreateTable1);
|
sl@0
|
358 |
test2 (TheTable.Open(TheDatabase,KTable1),KErrNone);
|
sl@0
|
359 |
test2 (TheTable.ColCount(),4);
|
sl@0
|
360 |
test2 (TheTable.ColType(1),EDbColInt32);
|
sl@0
|
361 |
test2 (TheTable.ColType(2),EDbColText);
|
sl@0
|
362 |
test2 (TheTable.ColType(3),EDbColLongText);
|
sl@0
|
363 |
test2 (TheTable.ColType(4),EDbColLongBinary);
|
sl@0
|
364 |
delete TheTable.ColSetL();
|
sl@0
|
365 |
test.Next(_L("write table"));
|
sl@0
|
366 |
WriteRecordsL(KRowCount);
|
sl@0
|
367 |
test.Next(_L("Check table"));
|
sl@0
|
368 |
TheTable.Reset();
|
sl@0
|
369 |
test (TheTable.AtBeginning());
|
sl@0
|
370 |
test (!TheTable.AtRow());
|
sl@0
|
371 |
test (!TheTable.AtEnd());
|
sl@0
|
372 |
test2 (TheTable.CountL(),KRowCount);
|
sl@0
|
373 |
IterateL(TheTable.ENext);
|
sl@0
|
374 |
test (!TheTable.AtBeginning());
|
sl@0
|
375 |
test (!TheTable.AtRow());
|
sl@0
|
376 |
test (TheTable.AtEnd());
|
sl@0
|
377 |
test.Next(_L("Delete rows"));
|
sl@0
|
378 |
test2 (DeleteL(),KRowCount);
|
sl@0
|
379 |
TheTable.Close();
|
sl@0
|
380 |
test.Next(_L("Drop table"));
|
sl@0
|
381 |
Execute(KDropTable1);
|
sl@0
|
382 |
TheDatabase.Close();
|
sl@0
|
383 |
Disconnect();
|
sl@0
|
384 |
test.End();
|
sl@0
|
385 |
}
|
sl@0
|
386 |
|
sl@0
|
387 |
/**
|
sl@0
|
388 |
@SYMTestCaseID SYSLIB-DBMS-CT-0608
|
sl@0
|
389 |
@SYMTestCaseDesc Tests for database locking
|
sl@0
|
390 |
@SYMTestPriority Medium
|
sl@0
|
391 |
@SYMTestActions Tests for shared,exclusive locks on database
|
sl@0
|
392 |
@SYMTestExpectedResults Test must not fail
|
sl@0
|
393 |
@SYMREQ REQ0000
|
sl@0
|
394 |
*/
|
sl@0
|
395 |
LOCAL_C void TestLocking()
|
sl@0
|
396 |
{
|
sl@0
|
397 |
TInt r;
|
sl@0
|
398 |
RDbNamedDatabase db;
|
sl@0
|
399 |
test.Start(_L(" @SYMTestCaseID:SYSLIB-DBMS-CT-0608 Open databases "));
|
sl@0
|
400 |
Connect();
|
sl@0
|
401 |
test2 (TheDatabase.Open(TheDbs,KTestDatabase),KErrNone);
|
sl@0
|
402 |
test2 (db.Open(TheDbs,KTestDatabase,KTestFormat),KErrNone);
|
sl@0
|
403 |
RDbNotifier ob;
|
sl@0
|
404 |
test2 (ob.Open(TheDatabase),KErrNone);
|
sl@0
|
405 |
//
|
sl@0
|
406 |
test.Next(_L("Shared locks"));
|
sl@0
|
407 |
TRequestStatus stat;
|
sl@0
|
408 |
ob.NotifyUnlock(stat);
|
sl@0
|
409 |
test2 (TheDatabase.Begin(),KErrNone);
|
sl@0
|
410 |
test2 (db.Begin(),KErrNone);
|
sl@0
|
411 |
test2 (TheDatabase.Commit(),KErrNone);
|
sl@0
|
412 |
User::After(1);
|
sl@0
|
413 |
test2 (stat.Int(),KRequestPending); // should not report yet
|
sl@0
|
414 |
test2 (db.Commit(),KErrNone);
|
sl@0
|
415 |
User::WaitForRequest(stat);
|
sl@0
|
416 |
test2 (stat.Int(),ob.EUnlock);
|
sl@0
|
417 |
//
|
sl@0
|
418 |
test.Next(_L("Exclusive locks"));
|
sl@0
|
419 |
ob.NotifyUnlock(stat);
|
sl@0
|
420 |
test2 (TheDatabase.Begin(),KErrNone);
|
sl@0
|
421 |
test2 (db.Begin(),KErrNone);
|
sl@0
|
422 |
test2 (TheDatabase.Execute(KCreateTable1),KErrLocked); // cannot acquire
|
sl@0
|
423 |
test2 (db.Commit(),KErrNone); // release lock
|
sl@0
|
424 |
test2 (TheDatabase.Execute(KCreateTable1),KErrNone); // upgrade to X-lock
|
sl@0
|
425 |
test2 (db.Begin(),KErrLocked); // cannot share
|
sl@0
|
426 |
test2 (TheTable.Open(db,KTable1),KErrNone);
|
sl@0
|
427 |
TRAP(r,TheTable.InsertL()); // cannot lock
|
sl@0
|
428 |
test2 (r,KErrLocked);
|
sl@0
|
429 |
TheTable.Close();
|
sl@0
|
430 |
test2 (db.Execute(KDropTable1),KErrLocked); // cannot lock
|
sl@0
|
431 |
test2 (TheTable.Open(TheDatabase,KTable1),KErrNone);
|
sl@0
|
432 |
TRAP(r,TheTable.InsertL()); // we own the lock
|
sl@0
|
433 |
test2 (r,KErrNone);
|
sl@0
|
434 |
TheTable.Cancel();
|
sl@0
|
435 |
TheTable.Close();
|
sl@0
|
436 |
test2 (TheDatabase.Execute(KDropTable1),KErrNone);
|
sl@0
|
437 |
test2 (stat.Int(),KRequestPending); // no NotifyUnlock yet
|
sl@0
|
438 |
test2 (TheDatabase.Commit(),KErrNone);
|
sl@0
|
439 |
User::WaitForRequest(stat);
|
sl@0
|
440 |
test2 (stat.Int(),ob.ECommit);
|
sl@0
|
441 |
//
|
sl@0
|
442 |
ob.Close();
|
sl@0
|
443 |
db.Close();
|
sl@0
|
444 |
TheDatabase.Close();
|
sl@0
|
445 |
Disconnect();
|
sl@0
|
446 |
test.End();
|
sl@0
|
447 |
}
|
sl@0
|
448 |
|
sl@0
|
449 |
/**
|
sl@0
|
450 |
@SYMTestCaseID SYSLIB-DBMS-CT-0609
|
sl@0
|
451 |
@SYMTestCaseDesc Tests for sharing a database
|
sl@0
|
452 |
@SYMTestPriority Medium
|
sl@0
|
453 |
@SYMTestActions Tests for opening a database more than once.
|
sl@0
|
454 |
Tests the integrity of the table data
|
sl@0
|
455 |
@SYMTestExpectedResults Test must not fail
|
sl@0
|
456 |
@SYMREQ REQ0000
|
sl@0
|
457 |
*/
|
sl@0
|
458 |
LOCAL_C void TestShareL()
|
sl@0
|
459 |
{
|
sl@0
|
460 |
test.Start(_L(" @SYMTestCaseID:SYSLIB-DBMS-CT-0609 Open database "));
|
sl@0
|
461 |
Connect();
|
sl@0
|
462 |
TInt r=TheDatabase.Open(TheDbs,KTestDatabase);
|
sl@0
|
463 |
test (r==KErrNone);
|
sl@0
|
464 |
Execute(KCreateTable1);
|
sl@0
|
465 |
test.Next(_L("Open it again"));
|
sl@0
|
466 |
RDbNamedDatabase db;
|
sl@0
|
467 |
test (db.Open(TheDbs,KTestDatabase,KTestFormat)==KErrNone);
|
sl@0
|
468 |
test (TheTable.Open(db,KTable1)==KErrNone);
|
sl@0
|
469 |
test2 (TheTable.ColCount(),4);
|
sl@0
|
470 |
test2 (TheTable.ColType(1),EDbColInt32);
|
sl@0
|
471 |
test2 (TheTable.ColType(2),EDbColText);
|
sl@0
|
472 |
test2 (TheTable.ColType(3),EDbColLongText);
|
sl@0
|
473 |
test2 (TheTable.ColType(4),EDbColLongBinary);
|
sl@0
|
474 |
delete TheTable.ColSetL();
|
sl@0
|
475 |
TheTable.Close();
|
sl@0
|
476 |
//
|
sl@0
|
477 |
test.Next(_L("write table"));
|
sl@0
|
478 |
test (TheTable.Open(TheDatabase,KTable1)==KErrNone);
|
sl@0
|
479 |
WriteRecordsL(KRowCount);
|
sl@0
|
480 |
TheTable.Close();
|
sl@0
|
481 |
test.Next(_L("Check table"));
|
sl@0
|
482 |
TheDatabase.Close();
|
sl@0
|
483 |
TheDatabase=db;
|
sl@0
|
484 |
test (TheTable.Open(TheDatabase,KTable1)==KErrNone);
|
sl@0
|
485 |
test (TheTable.AtBeginning());
|
sl@0
|
486 |
test (!TheTable.AtRow());
|
sl@0
|
487 |
test (!TheTable.AtEnd());
|
sl@0
|
488 |
test (TheTable.CountL()==KRowCount);
|
sl@0
|
489 |
IterateL(TheTable.ENext);
|
sl@0
|
490 |
test (!TheTable.AtBeginning());
|
sl@0
|
491 |
test (!TheTable.AtRow());
|
sl@0
|
492 |
test (TheTable.AtEnd());
|
sl@0
|
493 |
test.Next(_L("Delete rows"));
|
sl@0
|
494 |
test (DeleteSQL()==KRowCount);
|
sl@0
|
495 |
TheTable.Close();
|
sl@0
|
496 |
test.Next(_L("Drop table"));
|
sl@0
|
497 |
Execute(KDropTable1);
|
sl@0
|
498 |
TheDatabase.Close();
|
sl@0
|
499 |
Disconnect();
|
sl@0
|
500 |
test.End();
|
sl@0
|
501 |
}
|
sl@0
|
502 |
|
sl@0
|
503 |
LOCAL_C void TestScenario1L()
|
sl@0
|
504 |
{
|
sl@0
|
505 |
test.Start(_L("Take stream-lock on client 2"));
|
sl@0
|
506 |
test (TheView.FirstL());
|
sl@0
|
507 |
TheView.GetL();
|
sl@0
|
508 |
RDbColReadStream rcol;
|
sl@0
|
509 |
rcol.OpenLC(TheView,3);
|
sl@0
|
510 |
test2 (rcol.ReadUint16L(),0);
|
sl@0
|
511 |
test.Next(_L("Take a [shared] transaction-lock on client 1"));
|
sl@0
|
512 |
test2 (TheDatabase.Begin(),KErrNone);
|
sl@0
|
513 |
test.Next(_L("Attempt a write-lock on client 1"));
|
sl@0
|
514 |
TRAPD(r,TheTable.InsertL());
|
sl@0
|
515 |
test2 (r,KErrLocked);
|
sl@0
|
516 |
test2 (rcol.ReadUint16L(),1);
|
sl@0
|
517 |
test.Next(_L("Release locks on client 1 and then 2"));
|
sl@0
|
518 |
TheDatabase.Rollback();
|
sl@0
|
519 |
CleanupStack::PopAndDestroy(); // rcol
|
sl@0
|
520 |
test.End();
|
sl@0
|
521 |
}
|
sl@0
|
522 |
|
sl@0
|
523 |
LOCAL_C void TestScenario2L()
|
sl@0
|
524 |
{
|
sl@0
|
525 |
test.Start(_L("Take stream-lock on client 2"));
|
sl@0
|
526 |
test (TheView.FirstL());
|
sl@0
|
527 |
TheView.GetL();
|
sl@0
|
528 |
RDbColReadStream rcol;
|
sl@0
|
529 |
rcol.OpenLC(TheView,3);
|
sl@0
|
530 |
test2 (rcol.ReadUint16L(),0);
|
sl@0
|
531 |
test.Next(_L("Take a [shared] transaction-lock on client 1"));
|
sl@0
|
532 |
test2 (TheDatabase.Begin(),KErrNone);
|
sl@0
|
533 |
test.Next(_L("Attempt a write-lock on client 1"));
|
sl@0
|
534 |
TRAPD(r,TheTable.InsertL());
|
sl@0
|
535 |
test2 (r,KErrLocked);
|
sl@0
|
536 |
test2 (rcol.ReadUint16L(),1);
|
sl@0
|
537 |
test.Next(_L("Release client 2 stream-lock"));
|
sl@0
|
538 |
CleanupStack::PopAndDestroy(); // rcol
|
sl@0
|
539 |
test.Next(_L("Take write-lock on client 1"));
|
sl@0
|
540 |
TheTable.InsertL(); // read-lock removed
|
sl@0
|
541 |
test.Next(_L("release client 1 locks"));
|
sl@0
|
542 |
TheTable.Cancel();
|
sl@0
|
543 |
TheDatabase.Rollback();
|
sl@0
|
544 |
test.End();
|
sl@0
|
545 |
}
|
sl@0
|
546 |
|
sl@0
|
547 |
LOCAL_C void TestScenario3L(RDbDatabase& aClient2)
|
sl@0
|
548 |
{
|
sl@0
|
549 |
test.Start(_L("Take transaction-lock on client 1"));
|
sl@0
|
550 |
test2 (TheDatabase.Begin(),KErrNone);
|
sl@0
|
551 |
test.Next(_L("Take stream-lock on client 2"));
|
sl@0
|
552 |
test (TheView.FirstL());
|
sl@0
|
553 |
TheView.GetL();
|
sl@0
|
554 |
RDbColReadStream rcol;
|
sl@0
|
555 |
rcol.OpenLC(TheView,3);
|
sl@0
|
556 |
test2 (rcol.ReadUint16L(),0);
|
sl@0
|
557 |
test.Next(_L("Release client 1 lock"));
|
sl@0
|
558 |
TheDatabase.Rollback();
|
sl@0
|
559 |
test.Next(_L("Take write-lock on client 2"));
|
sl@0
|
560 |
RDbTable table2; // need a second cursor (cannot do insert with open streams)
|
sl@0
|
561 |
test2 (table2.Open(aClient2,KTable1,table2.EInsertOnly),KErrNone);
|
sl@0
|
562 |
TRAPD(r,table2.InsertL());
|
sl@0
|
563 |
test2 (r,KErrNone);
|
sl@0
|
564 |
test.Next(_L("Release stream-lock"));
|
sl@0
|
565 |
CleanupStack::PopAndDestroy();
|
sl@0
|
566 |
test.Next(_L("Release write-lock"));
|
sl@0
|
567 |
table2.PutL();
|
sl@0
|
568 |
table2.Close();
|
sl@0
|
569 |
test.Next(_L("check the system is unlocked"));
|
sl@0
|
570 |
test2 (TheDatabase.Begin(),KErrNone);
|
sl@0
|
571 |
test2 (TheDatabase.Commit(),KErrNone);
|
sl@0
|
572 |
test.End();
|
sl@0
|
573 |
}
|
sl@0
|
574 |
|
sl@0
|
575 |
LOCAL_C void TestScenario4L()
|
sl@0
|
576 |
{
|
sl@0
|
577 |
test.Start(_L("Take transaction-lock on client 1"));
|
sl@0
|
578 |
test2 (TheDatabase.Begin(),KErrNone);
|
sl@0
|
579 |
test.Next(_L("Take stream-lock on client 1"));
|
sl@0
|
580 |
test (TheTable.FirstL());
|
sl@0
|
581 |
TheTable.GetL();
|
sl@0
|
582 |
RDbColReadStream rcol;
|
sl@0
|
583 |
rcol.OpenLC(TheTable,3);
|
sl@0
|
584 |
test2 (rcol.ReadUint16L(),0);
|
sl@0
|
585 |
test.Next(_L("Take write-lock on client 1"));
|
sl@0
|
586 |
RDbTable table2; // need a second cursor (cannot do insert with open streams)
|
sl@0
|
587 |
test2 (table2.Open(TheDatabase,KTable1,table2.EInsertOnly),KErrNone);
|
sl@0
|
588 |
TRAPD(r,table2.InsertL());
|
sl@0
|
589 |
test2 (r,KErrNone);
|
sl@0
|
590 |
test.Next(_L("Release write-lock"));
|
sl@0
|
591 |
table2.PutL();
|
sl@0
|
592 |
table2.Close();
|
sl@0
|
593 |
test.Next(_L("Release stream-lock"));
|
sl@0
|
594 |
CleanupStack::PopAndDestroy();
|
sl@0
|
595 |
test.Next(_L("release transaction-lock"));
|
sl@0
|
596 |
test2 (TheDatabase.Commit(),KErrNone);
|
sl@0
|
597 |
test.End();
|
sl@0
|
598 |
}
|
sl@0
|
599 |
|
sl@0
|
600 |
LOCAL_C void TestScenario5L()
|
sl@0
|
601 |
{
|
sl@0
|
602 |
test.Start(_L("Begin compaction on client 1"));
|
sl@0
|
603 |
RDbIncremental inc;
|
sl@0
|
604 |
TInt s;
|
sl@0
|
605 |
test2 (inc.Compact(TheDatabase,s),KErrNone);
|
sl@0
|
606 |
test.Next(_L("Attempt a stream-lock on client 2"));
|
sl@0
|
607 |
test (TheView.FirstL());
|
sl@0
|
608 |
TheView.GetL();
|
sl@0
|
609 |
RDbColReadStream rcol;
|
sl@0
|
610 |
TRAPD(r,rcol.OpenL(TheView,3));
|
sl@0
|
611 |
test (r==KErrLocked);
|
sl@0
|
612 |
test.Next(_L("Attempt a stream-lock on client 1"));
|
sl@0
|
613 |
TRAP(r,rcol.OpenL(TheTable,3));
|
sl@0
|
614 |
test (r==KErrAccessDenied);
|
sl@0
|
615 |
test.Next(_L("Release compaction lock"));
|
sl@0
|
616 |
inc.Close();
|
sl@0
|
617 |
test.End();
|
sl@0
|
618 |
}
|
sl@0
|
619 |
|
sl@0
|
620 |
LOCAL_C void TestScenario6L()
|
sl@0
|
621 |
{
|
sl@0
|
622 |
test.Start(_L("Begin compaction on client 1 - open and read columns"));
|
sl@0
|
623 |
TheTable.Close();
|
sl@0
|
624 |
|
sl@0
|
625 |
RDbIncremental inc;
|
sl@0
|
626 |
TInt s;
|
sl@0
|
627 |
test2 (inc.Compact(TheDatabase,s),KErrNone);
|
sl@0
|
628 |
|
sl@0
|
629 |
test.Next(_L("Attempt to open a table on client 1"));
|
sl@0
|
630 |
TInt r=TheTable.Open(TheDatabase,KTable1);
|
sl@0
|
631 |
test (r==KErrNone);
|
sl@0
|
632 |
|
sl@0
|
633 |
//read short column data
|
sl@0
|
634 |
TheTable.FirstL();
|
sl@0
|
635 |
TheTable.GetL();
|
sl@0
|
636 |
TheTable.ColInt32(1);
|
sl@0
|
637 |
|
sl@0
|
638 |
// We cant write to tables
|
sl@0
|
639 |
TRAP(r,TheTable.InsertL());
|
sl@0
|
640 |
test (r==KErrAccessDenied);
|
sl@0
|
641 |
|
sl@0
|
642 |
RDbColReadStream rcol;
|
sl@0
|
643 |
// We can't read long columns
|
sl@0
|
644 |
TheTable.FirstL();
|
sl@0
|
645 |
TheTable.GetL();
|
sl@0
|
646 |
TRAP(r, rcol.OpenL(TheTable,3));
|
sl@0
|
647 |
test2 (r,KErrAccessDenied);
|
sl@0
|
648 |
|
sl@0
|
649 |
// can read other columns
|
sl@0
|
650 |
TRAP(r, rcol.OpenL(TheTable,4));
|
sl@0
|
651 |
test2 (r,KErrNone);
|
sl@0
|
652 |
rcol.Close();
|
sl@0
|
653 |
|
sl@0
|
654 |
test.Next(_L("Release compaction lock"));
|
sl@0
|
655 |
inc.Close();
|
sl@0
|
656 |
test.End();
|
sl@0
|
657 |
}
|
sl@0
|
658 |
|
sl@0
|
659 |
LOCAL_C void TestScenario7L()
|
sl@0
|
660 |
{
|
sl@0
|
661 |
test.Start(_L("Open tables on client 1 - Begin compaction on client 1"));
|
sl@0
|
662 |
|
sl@0
|
663 |
TheTable.Close();
|
sl@0
|
664 |
test.Next(_L("Attempt to open a table on client 1"));
|
sl@0
|
665 |
TInt r=TheTable.Open(TheDatabase,KTable1);
|
sl@0
|
666 |
test (r==KErrNone);
|
sl@0
|
667 |
|
sl@0
|
668 |
test.Next(_L("Begin compaction on client 1"));
|
sl@0
|
669 |
RDbIncremental inc;
|
sl@0
|
670 |
TInt s;
|
sl@0
|
671 |
test2 (inc.Compact(TheDatabase,s),KErrNone);
|
sl@0
|
672 |
|
sl@0
|
673 |
//read short column data
|
sl@0
|
674 |
TheTable.FirstL();
|
sl@0
|
675 |
TheTable.GetL();
|
sl@0
|
676 |
TheTable.ColInt32(1);
|
sl@0
|
677 |
|
sl@0
|
678 |
// We cant write to tables
|
sl@0
|
679 |
TRAP(r,TheTable.InsertL());
|
sl@0
|
680 |
test (r==KErrAccessDenied);
|
sl@0
|
681 |
|
sl@0
|
682 |
RDbColReadStream rcol;
|
sl@0
|
683 |
// cant read 4K text
|
sl@0
|
684 |
TheTable.FirstL();
|
sl@0
|
685 |
TheTable.GetL();
|
sl@0
|
686 |
TRAP(r, rcol.OpenL(TheTable,3));
|
sl@0
|
687 |
test2 (r,KErrAccessDenied);
|
sl@0
|
688 |
|
sl@0
|
689 |
// can read 1K blob
|
sl@0
|
690 |
TRAP(r, rcol.OpenL(TheTable,4));
|
sl@0
|
691 |
test2 (r,KErrNone);
|
sl@0
|
692 |
rcol.Close();
|
sl@0
|
693 |
|
sl@0
|
694 |
test.Next(_L("Release compaction lock"));
|
sl@0
|
695 |
inc.Close();
|
sl@0
|
696 |
test.End();
|
sl@0
|
697 |
}
|
sl@0
|
698 |
|
sl@0
|
699 |
LOCAL_C void TestScenario8L()
|
sl@0
|
700 |
{
|
sl@0
|
701 |
test.Start(_L("Take update-lock on client 1"));
|
sl@0
|
702 |
test2 (TheDatabase.Begin(),KErrNone);
|
sl@0
|
703 |
TheTable.InsertL();
|
sl@0
|
704 |
test.Next(_L("Read blob without locking on client 2"));
|
sl@0
|
705 |
test (TheView.FirstL());
|
sl@0
|
706 |
TheView.GetL();
|
sl@0
|
707 |
RDbColReadStream rcol;
|
sl@0
|
708 |
rcol.OpenLC(TheView,4); // 1K blob
|
sl@0
|
709 |
test2 (rcol.ReadInt32L(),0);
|
sl@0
|
710 |
CleanupStack::PopAndDestroy();
|
sl@0
|
711 |
TRAPD(r,rcol.OpenL(TheView,3)); // 4K text blob
|
sl@0
|
712 |
test2 (r,KErrLocked);
|
sl@0
|
713 |
test.Next(_L("Release client 1 lock"));
|
sl@0
|
714 |
TheTable.Cancel();
|
sl@0
|
715 |
TheDatabase.Rollback();
|
sl@0
|
716 |
test.End();
|
sl@0
|
717 |
}
|
sl@0
|
718 |
|
sl@0
|
719 |
/**
|
sl@0
|
720 |
@SYMTestCaseID SYSLIB-DBMS-CT-0610
|
sl@0
|
721 |
@SYMTestCaseDesc Tests for a defect on database
|
sl@0
|
722 |
@SYMTestPriority Medium
|
sl@0
|
723 |
@SYMTestActions Tests for database connection
|
sl@0
|
724 |
@SYMTestExpectedResults Test must not fail
|
sl@0
|
725 |
@SYMREQ REQ0000
|
sl@0
|
726 |
*/
|
sl@0
|
727 |
LOCAL_C void TestDefectL()
|
sl@0
|
728 |
{
|
sl@0
|
729 |
test.Start(_L(" @SYMTestCaseID:SYSLIB-DBMS-CT-0610 Build test database "));
|
sl@0
|
730 |
Connect();
|
sl@0
|
731 |
TInt r=TheDatabase.Open(TheDbs,KTestDatabase);
|
sl@0
|
732 |
test (r==KErrNone);
|
sl@0
|
733 |
Execute(KCreateTable1);
|
sl@0
|
734 |
test2 (TheTable.Open(TheDatabase,KTable1),KErrNone);
|
sl@0
|
735 |
TheTable.InsertL();
|
sl@0
|
736 |
RDbColWriteStream wcol;
|
sl@0
|
737 |
wcol.OpenLC(TheTable,3);
|
sl@0
|
738 |
TInt ii;
|
sl@0
|
739 |
for (ii=0;ii<2048;++ii)
|
sl@0
|
740 |
wcol.WriteUint16L(ii);
|
sl@0
|
741 |
wcol.CommitL();
|
sl@0
|
742 |
CleanupStack::PopAndDestroy();
|
sl@0
|
743 |
wcol.OpenLC(TheTable,4);
|
sl@0
|
744 |
for (ii=0;ii<256;++ii)
|
sl@0
|
745 |
wcol.WriteInt32L(ii);
|
sl@0
|
746 |
wcol.CommitL();
|
sl@0
|
747 |
CleanupStack::PopAndDestroy();
|
sl@0
|
748 |
TheTable.PutL();
|
sl@0
|
749 |
//
|
sl@0
|
750 |
test.Next(_L("open client 2 connection"));
|
sl@0
|
751 |
RDbNamedDatabase db;
|
sl@0
|
752 |
test2 (db.Open(TheDbs,KTestDatabase,KTestFormat),KErrNone);
|
sl@0
|
753 |
test2 (TheView.Prepare(db,_L("select * from Table1")),KErrNone);
|
sl@0
|
754 |
test2 (TheView.EvaluateAll(),KErrNone);
|
sl@0
|
755 |
//
|
sl@0
|
756 |
test.Next(_L("Scenario 1"));
|
sl@0
|
757 |
TestScenario1L();
|
sl@0
|
758 |
//
|
sl@0
|
759 |
test.Next(_L("Scenario 2"));
|
sl@0
|
760 |
TestScenario2L();
|
sl@0
|
761 |
//
|
sl@0
|
762 |
test.Next(_L("Scenario 3"));
|
sl@0
|
763 |
TestScenario3L(db);
|
sl@0
|
764 |
//
|
sl@0
|
765 |
test.Next(_L("Scenario 4"));
|
sl@0
|
766 |
TestScenario4L();
|
sl@0
|
767 |
//
|
sl@0
|
768 |
test.Next(_L("Scenario 5"));
|
sl@0
|
769 |
TestScenario5L();
|
sl@0
|
770 |
//
|
sl@0
|
771 |
test.Next(_L("Scenario 6"));
|
sl@0
|
772 |
TestScenario6L();
|
sl@0
|
773 |
//
|
sl@0
|
774 |
test.Next(_L("Scenario 7"));
|
sl@0
|
775 |
TestScenario7L();
|
sl@0
|
776 |
//
|
sl@0
|
777 |
test.Next(_L("Scenario 8"));
|
sl@0
|
778 |
TestScenario8L();
|
sl@0
|
779 |
//
|
sl@0
|
780 |
|
sl@0
|
781 |
test.Next(_L("tidy up"));
|
sl@0
|
782 |
test2 (TheDatabase.Begin(),KErrNone);
|
sl@0
|
783 |
TheView.Close();
|
sl@0
|
784 |
TheTable.Close();
|
sl@0
|
785 |
db.Close();
|
sl@0
|
786 |
Execute(KDropTable1);
|
sl@0
|
787 |
test2 (TheDatabase.Commit(),KErrNone);
|
sl@0
|
788 |
TheDatabase.Close();
|
sl@0
|
789 |
Disconnect();
|
sl@0
|
790 |
test.End();
|
sl@0
|
791 |
}
|
sl@0
|
792 |
|
sl@0
|
793 |
/**
|
sl@0
|
794 |
@SYMTestCaseID PDS-DBMS-CT-4002
|
sl@0
|
795 |
@SYMTestCaseDesc Testing RDbIncremental API
|
sl@0
|
796 |
@SYMTestPriority High
|
sl@0
|
797 |
@SYMTestActions Executing SQL using RDbIncremental, Altering tables, creating and droping indexes
|
sl@0
|
798 |
@SYMTestExpectedResults After execution Table should exist in DB, after altering, table colums should change,
|
sl@0
|
799 |
creation of index should create index column in table, dropping index should remove
|
sl@0
|
800 |
it from table
|
sl@0
|
801 |
@SYMDEF DEF135710
|
sl@0
|
802 |
*/
|
sl@0
|
803 |
LOCAL_C void TestRDbIncrementalAPIL()
|
sl@0
|
804 |
{
|
sl@0
|
805 |
test.Start(_L(" @SYMTestCaseID:PDS-DBMS-CT-4002 Testing RDbIncremental API"));
|
sl@0
|
806 |
|
sl@0
|
807 |
Connect();
|
sl@0
|
808 |
TInt err = TheDatabase.Open(TheDbs,KTestDatabase);
|
sl@0
|
809 |
test2(err, KErrNone);
|
sl@0
|
810 |
|
sl@0
|
811 |
test.Next(_L("RDbIncremental API"));
|
sl@0
|
812 |
RDbIncremental inc;
|
sl@0
|
813 |
TInt step;
|
sl@0
|
814 |
|
sl@0
|
815 |
test2(TheDatabase.Begin(), KErrNone);
|
sl@0
|
816 |
err = inc.Execute(TheDatabase, KCreateTable2, step);
|
sl@0
|
817 |
test2(err, KErrNone);
|
sl@0
|
818 |
while(step > 0)
|
sl@0
|
819 |
{
|
sl@0
|
820 |
err = inc.Next(step);
|
sl@0
|
821 |
test2(err, KErrNone);
|
sl@0
|
822 |
}
|
sl@0
|
823 |
inc.Close();
|
sl@0
|
824 |
|
sl@0
|
825 |
test.Next(_L("AlterTable"));
|
sl@0
|
826 |
CDbColSet* colSet = CDbColSet::NewLC();
|
sl@0
|
827 |
colSet->AddL(TDbCol(_L("Id2"), EDbColUint32));
|
sl@0
|
828 |
colSet->AddL(TDbCol(_L("Memo2"), EDbColText));
|
sl@0
|
829 |
test2(colSet->Count(), 2);
|
sl@0
|
830 |
err = inc.AlterTable(TheDatabase, KTable2, *colSet, step);
|
sl@0
|
831 |
test2(err, KErrNone);
|
sl@0
|
832 |
while(step > 0)
|
sl@0
|
833 |
{
|
sl@0
|
834 |
err = inc.Next(step);
|
sl@0
|
835 |
test2(err, KErrNone);
|
sl@0
|
836 |
}
|
sl@0
|
837 |
inc.Close();
|
sl@0
|
838 |
err = TheDatabase.Commit();
|
sl@0
|
839 |
test2(err, KErrNone);
|
sl@0
|
840 |
|
sl@0
|
841 |
test.Next(_L("CreateIndex"));
|
sl@0
|
842 |
TDbKeyCol kcol(_L("Id2"), TDbKeyCol::EAsc);
|
sl@0
|
843 |
CDbKey* key = CDbKey::NewLC();
|
sl@0
|
844 |
test2(TheDatabase.Begin(), KErrNone);
|
sl@0
|
845 |
key->AddL(kcol);
|
sl@0
|
846 |
err = inc.CreateIndex(TheDatabase, _L("Id2"), KTable2, *key, step);
|
sl@0
|
847 |
test2(err, KErrNone);
|
sl@0
|
848 |
while(step > 0)
|
sl@0
|
849 |
{
|
sl@0
|
850 |
err = inc.Next(step);
|
sl@0
|
851 |
test2(err, KErrNone);
|
sl@0
|
852 |
}
|
sl@0
|
853 |
inc.Close();
|
sl@0
|
854 |
|
sl@0
|
855 |
test.Next(_L("DropIndex"));
|
sl@0
|
856 |
err = inc.DropIndex(TheDatabase, _L("Id2"), KTable2, step);
|
sl@0
|
857 |
test2(err, KErrNone);
|
sl@0
|
858 |
while(step > 0)
|
sl@0
|
859 |
{
|
sl@0
|
860 |
err = inc.Next(step);
|
sl@0
|
861 |
test2(err, KErrNone);
|
sl@0
|
862 |
}
|
sl@0
|
863 |
inc.Close();
|
sl@0
|
864 |
err = inc.Execute(TheDatabase, KDropTable2, step);
|
sl@0
|
865 |
test2(err, KErrNone);
|
sl@0
|
866 |
while(step > 0)
|
sl@0
|
867 |
{
|
sl@0
|
868 |
err = inc.Next(step);
|
sl@0
|
869 |
test2(err, KErrNone);
|
sl@0
|
870 |
}
|
sl@0
|
871 |
err = TheDatabase.Commit();
|
sl@0
|
872 |
test2(err, KErrNone);
|
sl@0
|
873 |
inc.Close();
|
sl@0
|
874 |
|
sl@0
|
875 |
CleanupStack::PopAndDestroy(2);
|
sl@0
|
876 |
|
sl@0
|
877 |
TheDatabase.Close();
|
sl@0
|
878 |
Disconnect();
|
sl@0
|
879 |
test.End();
|
sl@0
|
880 |
}
|
sl@0
|
881 |
|
sl@0
|
882 |
/**
|
sl@0
|
883 |
@SYMTestCaseID PDS-DBMS-CT-4003
|
sl@0
|
884 |
@SYMTestCaseDesc Testing RDbUpdate API
|
sl@0
|
885 |
@SYMTestPriority High
|
sl@0
|
886 |
@SYMTestActions Executing DML command using RDbUpdate, checking if rowCount working properly
|
sl@0
|
887 |
@SYMTestExpectedResults After DML execution, rowCount should return proper number of afected rows.
|
sl@0
|
888 |
@SYMDEF DEF135710
|
sl@0
|
889 |
*/
|
sl@0
|
890 |
LOCAL_C void TestRDbUpdate()
|
sl@0
|
891 |
{
|
sl@0
|
892 |
test.Start(_L(" @SYMTestCaseID:PDS-DBMS-CT-4003 Testing RDbUpdate API"));
|
sl@0
|
893 |
_LIT(DMLinsert, "INSERT INTO Table2 VALUES (2,'Mietek', 'Mietek ma kota')");
|
sl@0
|
894 |
|
sl@0
|
895 |
Connect();
|
sl@0
|
896 |
TInt err = TheDatabase.Open(TheDbs,KTestDatabase);
|
sl@0
|
897 |
test2(err, KErrNone);
|
sl@0
|
898 |
|
sl@0
|
899 |
err = TheDatabase.Begin();
|
sl@0
|
900 |
test2(err, KErrNone);
|
sl@0
|
901 |
|
sl@0
|
902 |
err = TheDatabase.Execute(KCreateTable2, EDbCompareNormal);
|
sl@0
|
903 |
test(err >= KErrNone);
|
sl@0
|
904 |
|
sl@0
|
905 |
RDbUpdate update;
|
sl@0
|
906 |
err = update.Execute(TheDatabase, DMLinsert, EDbCompareNormal );
|
sl@0
|
907 |
if(err != KErrNone)
|
sl@0
|
908 |
RDebug::Printf("Error on Execute %d",err);
|
sl@0
|
909 |
test2(err, KErrNone);
|
sl@0
|
910 |
|
sl@0
|
911 |
TInt rows = update.RowCount();
|
sl@0
|
912 |
RDebug::Printf("Afected rows %d",rows);
|
sl@0
|
913 |
test2(rows, 1);
|
sl@0
|
914 |
update.Close();
|
sl@0
|
915 |
|
sl@0
|
916 |
err = TheDatabase.Commit();
|
sl@0
|
917 |
test2(err, KErrNone);
|
sl@0
|
918 |
|
sl@0
|
919 |
TheDatabase.Close();
|
sl@0
|
920 |
Disconnect();
|
sl@0
|
921 |
test.End();
|
sl@0
|
922 |
}
|
sl@0
|
923 |
|
sl@0
|
924 |
/**
|
sl@0
|
925 |
@SYMTestCaseID PDS-DBMS-CT-4004
|
sl@0
|
926 |
@SYMTestCaseDesc Testing RDbRow API
|
sl@0
|
927 |
@SYMTestPriority High
|
sl@0
|
928 |
@SYMTestActions Test for construction functions for RDbRow
|
sl@0
|
929 |
@SYMTestExpectedResults After Creation/Opening row should be a valid object.
|
sl@0
|
930 |
@SYMDEF DEF135710
|
sl@0
|
931 |
*/
|
sl@0
|
932 |
LOCAL_C void TestRDbRowL()
|
sl@0
|
933 |
{
|
sl@0
|
934 |
test.Start(_L(" @SYMTestCaseID:PDS-DBMS-CT-4004 Testing RDbRow API"));
|
sl@0
|
935 |
const TInt KRowSize = 300;
|
sl@0
|
936 |
const TInt KRealRowSize = 512;
|
sl@0
|
937 |
|
sl@0
|
938 |
RDbRow row;
|
sl@0
|
939 |
row.CreateL(KRowSize);
|
sl@0
|
940 |
RDebug::Printf("Rows %d %d",row.Size(), row.MaxSize() );
|
sl@0
|
941 |
test2(row.MaxSize(), KRealRowSize);
|
sl@0
|
942 |
TAny* rptr = row.First();
|
sl@0
|
943 |
|
sl@0
|
944 |
RDbRow row2;
|
sl@0
|
945 |
row2.Open(rptr, KRowSize, 2*KRowSize);
|
sl@0
|
946 |
RDebug::Printf("Row2s %d %d", KRowSize, row2.MaxSize());
|
sl@0
|
947 |
test2(row2.Size(), KRowSize);
|
sl@0
|
948 |
test2(row2.MaxSize(), 2*KRowSize);
|
sl@0
|
949 |
|
sl@0
|
950 |
row.Close();
|
sl@0
|
951 |
row2.Close();
|
sl@0
|
952 |
test.End();
|
sl@0
|
953 |
}
|
sl@0
|
954 |
/*
|
sl@0
|
955 |
* Helper function for SYSLIB-DBMS-CT-4005 Testing TTextOps API
|
sl@0
|
956 |
*/
|
sl@0
|
957 |
LOCAL_C TInt HelperCompareForTestTTextOps(const TText8*,TInt,const TText8*,TInt)
|
sl@0
|
958 |
{
|
sl@0
|
959 |
return KReturnValueForCompare;
|
sl@0
|
960 |
}
|
sl@0
|
961 |
/*
|
sl@0
|
962 |
* Helper function for SYSLIB-DBMS-CT-4005 Testing TTextOps API
|
sl@0
|
963 |
*/
|
sl@0
|
964 |
LOCAL_C TInt HelperFindForTestTTextOps(const TDesC8&,const TText8*,TInt)
|
sl@0
|
965 |
{
|
sl@0
|
966 |
return KReturnValueForFind;
|
sl@0
|
967 |
}
|
sl@0
|
968 |
/**
|
sl@0
|
969 |
@SYMTestCaseID PDS-DBMS-CT-4005
|
sl@0
|
970 |
@SYMTestCaseDesc Testing TTextOps API
|
sl@0
|
971 |
@SYMTestPriority High
|
sl@0
|
972 |
@SYMTestActions Test for Compare and Find functions for TTextOps
|
sl@0
|
973 |
@SYMTestExpectedResults Test if those functions really calling proper targets.
|
sl@0
|
974 |
@SYMDEF DEF135710
|
sl@0
|
975 |
*/
|
sl@0
|
976 |
LOCAL_C void TestTTextOps()
|
sl@0
|
977 |
{
|
sl@0
|
978 |
test.Start(_L(" @SYMTestCaseID:PDS-DBMS-CT-4005 Testing TTextOps API"));
|
sl@0
|
979 |
TTextOps text;
|
sl@0
|
980 |
|
sl@0
|
981 |
text.iCompare8 = HelperCompareForTestTTextOps;
|
sl@0
|
982 |
text.iFind8 = HelperFindForTestTTextOps;
|
sl@0
|
983 |
TInt ret = text.Compare(_L8("Ala ma kota"), _L8("Ala ma konia"));
|
sl@0
|
984 |
test2(ret, KReturnValueForCompare);
|
sl@0
|
985 |
ret = text.Find(_L8("Ala ma kota"), _L8("ma ko"));
|
sl@0
|
986 |
test2(ret, KReturnValueForFind);
|
sl@0
|
987 |
|
sl@0
|
988 |
test.End();
|
sl@0
|
989 |
}
|
sl@0
|
990 |
|
sl@0
|
991 |
#if defined __WINS__ || defined __WINSCW__
|
sl@0
|
992 |
|
sl@0
|
993 |
LOCAL_C TInt ExecuteRemoteL(const TDesC& aCommand, const TDesC& aCommandLineArg)
|
sl@0
|
994 |
{
|
sl@0
|
995 |
RProcess process;
|
sl@0
|
996 |
User::LeaveIfError(process.Create(aCommand, aCommandLineArg));
|
sl@0
|
997 |
|
sl@0
|
998 |
TRequestStatus status;
|
sl@0
|
999 |
process.Logon(status);
|
sl@0
|
1000 |
process.Resume();
|
sl@0
|
1001 |
|
sl@0
|
1002 |
User::WaitForRequest(status);
|
sl@0
|
1003 |
TInt exitReason = process.ExitReason();
|
sl@0
|
1004 |
|
sl@0
|
1005 |
process.Close();
|
sl@0
|
1006 |
User::LeaveIfError(exitReason);
|
sl@0
|
1007 |
|
sl@0
|
1008 |
return exitReason;
|
sl@0
|
1009 |
}
|
sl@0
|
1010 |
|
sl@0
|
1011 |
#endif //defined __WINS__ || defined __WINSCW__
|
sl@0
|
1012 |
|
sl@0
|
1013 |
/**
|
sl@0
|
1014 |
@SYMTestCaseID PDS-DBMS-CT-4007
|
sl@0
|
1015 |
@SYMTestCaseDesc Testing SPConv - This test case uses the Edbsconv tool
|
sl@0
|
1016 |
so therefore only runs on WINSCW builds
|
sl@0
|
1017 |
@SYMTestPriority High
|
sl@0
|
1018 |
@SYMTestActions Launch the external tool to generate SPD files
|
sl@0
|
1019 |
@SYMTestExpectedResults Should produce SPD files and report no errors
|
sl@0
|
1020 |
@SYMDEF DEF135710
|
sl@0
|
1021 |
*/
|
sl@0
|
1022 |
LOCAL_C void TestSPConvL()
|
sl@0
|
1023 |
{
|
sl@0
|
1024 |
test.Start(_L(" @SYMTestCaseID:PDS-DBMS-CT-4007 Testing SPConv"));
|
sl@0
|
1025 |
|
sl@0
|
1026 |
#if defined __WINS__ || defined __WINSCW__
|
sl@0
|
1027 |
|
sl@0
|
1028 |
_LIT(KRomTxtFile1, "z:\\test\\11335577.txt");
|
sl@0
|
1029 |
_LIT(KRomTxtFile2, "z:\\test\\11335578.txt");
|
sl@0
|
1030 |
_LIT(KRomTxtFile3, "z:\\test\\11335579.txt");
|
sl@0
|
1031 |
_LIT(KRomTxtFile4, "z:\\test\\1133557A.txt");
|
sl@0
|
1032 |
_LIT(KCommand,"Edbspconv");
|
sl@0
|
1033 |
_LIT(KCommandParameter, " /f=%S /b=%S /s");
|
sl@0
|
1034 |
|
sl@0
|
1035 |
TBuf<200> commandParameter;
|
sl@0
|
1036 |
|
sl@0
|
1037 |
test.Next(_L("Create SPD File from \"11335577.txt\""));
|
sl@0
|
1038 |
commandParameter.Format(KCommandParameter, &KRomTxtFile1, &KTestSpdFile1);
|
sl@0
|
1039 |
ExecuteRemoteL(KCommand, commandParameter);
|
sl@0
|
1040 |
|
sl@0
|
1041 |
test.Next(_L("Create SPD File from \"11335578.txt\""));
|
sl@0
|
1042 |
commandParameter.Format(KCommandParameter, &KRomTxtFile2, &KTestSpdFile2);
|
sl@0
|
1043 |
ExecuteRemoteL(KCommand, commandParameter);
|
sl@0
|
1044 |
|
sl@0
|
1045 |
test.Next(_L("Create SPD File from \"11335579.txt\""));
|
sl@0
|
1046 |
commandParameter.Format(KCommandParameter, &KRomTxtFile3, &KTestSpdFile3);
|
sl@0
|
1047 |
ExecuteRemoteL(KCommand, commandParameter);
|
sl@0
|
1048 |
|
sl@0
|
1049 |
test.Next(_L("Create SPD File from \"1133557A.txt\""));
|
sl@0
|
1050 |
commandParameter.Format(KCommandParameter, &KRomTxtFile4, &KTestSpdFile4);
|
sl@0
|
1051 |
ExecuteRemoteL(KCommand, commandParameter);
|
sl@0
|
1052 |
|
sl@0
|
1053 |
#else
|
sl@0
|
1054 |
RDebug::Print(_L("Testing SPConv - This test case cannot run on hardware"));
|
sl@0
|
1055 |
#endif
|
sl@0
|
1056 |
|
sl@0
|
1057 |
test.Next(_L("End"));
|
sl@0
|
1058 |
test.End();
|
sl@0
|
1059 |
}
|
sl@0
|
1060 |
|
sl@0
|
1061 |
|
sl@0
|
1062 |
/**
|
sl@0
|
1063 |
@SYMTestCaseID SYSLIB-DBMS-CT-0611
|
sl@0
|
1064 |
@SYMTestCaseDesc Tests the behaviour of observers
|
sl@0
|
1065 |
@SYMTestPriority Medium
|
sl@0
|
1066 |
@SYMTestActions Tests for DDL,DML
|
sl@0
|
1067 |
@SYMTestExpectedResults Test must not fail
|
sl@0
|
1068 |
@SYMREQ REQ0000
|
sl@0
|
1069 |
*/
|
sl@0
|
1070 |
LOCAL_C void TestObserverL()
|
sl@0
|
1071 |
{
|
sl@0
|
1072 |
test.Start(_L(" @SYMTestCaseID:SYSLIB-DBMS-CT-0611 Single connection/observer "));
|
sl@0
|
1073 |
Connect();
|
sl@0
|
1074 |
TInt r=TheDatabase.Open(TheDbs,KTestDatabase);
|
sl@0
|
1075 |
test (r==KErrNone);
|
sl@0
|
1076 |
RDbNotifier ob;
|
sl@0
|
1077 |
r=ob.Open(TheDatabase);
|
sl@0
|
1078 |
test (r==KErrNone);
|
sl@0
|
1079 |
//
|
sl@0
|
1080 |
test.Next(_L("Cancel"));
|
sl@0
|
1081 |
TRequestStatus stat;
|
sl@0
|
1082 |
ob.NotifyUnlock(stat);
|
sl@0
|
1083 |
test (stat==KRequestPending);
|
sl@0
|
1084 |
ob.Cancel();
|
sl@0
|
1085 |
User::WaitForRequest(stat);
|
sl@0
|
1086 |
test (stat==KErrCancel);
|
sl@0
|
1087 |
//
|
sl@0
|
1088 |
test.Next(_L("Close"));
|
sl@0
|
1089 |
ob.NotifyUnlock(stat);
|
sl@0
|
1090 |
test (stat==KRequestPending);
|
sl@0
|
1091 |
ob.Close();
|
sl@0
|
1092 |
User::WaitForRequest(stat);
|
sl@0
|
1093 |
test (stat==KErrCancel);
|
sl@0
|
1094 |
//
|
sl@0
|
1095 |
test.Next(_L("DDL"));
|
sl@0
|
1096 |
r=ob.Open(TheDatabase);
|
sl@0
|
1097 |
test (r==KErrNone);
|
sl@0
|
1098 |
ob.NotifyUnlock(stat);
|
sl@0
|
1099 |
test (stat==KRequestPending);
|
sl@0
|
1100 |
Execute(KCreateTable1);
|
sl@0
|
1101 |
User::WaitForRequest(stat);
|
sl@0
|
1102 |
test (stat==ob.ECommit);
|
sl@0
|
1103 |
//
|
sl@0
|
1104 |
test.Next(_L("DML"));
|
sl@0
|
1105 |
ob.NotifyUnlock(stat);
|
sl@0
|
1106 |
test (stat==KRequestPending);
|
sl@0
|
1107 |
r=TheTable.Open(TheDatabase,KTable1);
|
sl@0
|
1108 |
test (r==KErrNone);
|
sl@0
|
1109 |
WriteRecordsL(50);
|
sl@0
|
1110 |
User::WaitForRequest(stat);
|
sl@0
|
1111 |
test (stat==ob.ECommit);
|
sl@0
|
1112 |
//
|
sl@0
|
1113 |
test.Next(_L("Locked read"));
|
sl@0
|
1114 |
ob.NotifyUnlock(stat);
|
sl@0
|
1115 |
TheDatabase.Begin();
|
sl@0
|
1116 |
test (stat==KRequestPending);
|
sl@0
|
1117 |
TheDatabase.Commit();
|
sl@0
|
1118 |
User::WaitForRequest(stat);
|
sl@0
|
1119 |
test (stat==ob.EUnlock);
|
sl@0
|
1120 |
//
|
sl@0
|
1121 |
test.Next(_L("Database closed"));
|
sl@0
|
1122 |
ob.NotifyUnlock(stat);
|
sl@0
|
1123 |
TheTable.Close();
|
sl@0
|
1124 |
TheDatabase.Close();
|
sl@0
|
1125 |
User::WaitForRequest(stat);
|
sl@0
|
1126 |
test (stat==ob.EClose);
|
sl@0
|
1127 |
ob.NotifyUnlock(stat);
|
sl@0
|
1128 |
User::WaitForRequest(stat);
|
sl@0
|
1129 |
test (stat==ob.EClose);
|
sl@0
|
1130 |
//
|
sl@0
|
1131 |
test.Next(_L("Re-open database"));
|
sl@0
|
1132 |
r=TheDatabase.Open(TheDbs,KTestDatabase);
|
sl@0
|
1133 |
test (r==KErrNone);
|
sl@0
|
1134 |
ob.NotifyUnlock(stat);
|
sl@0
|
1135 |
User::WaitForRequest(stat);
|
sl@0
|
1136 |
test (stat==ob.EClose);
|
sl@0
|
1137 |
ob.Close();
|
sl@0
|
1138 |
//
|
sl@0
|
1139 |
test.Next(_L("Multiple connections and observers"));
|
sl@0
|
1140 |
r=ob.Open(TheDatabase);
|
sl@0
|
1141 |
test (r==KErrNone);
|
sl@0
|
1142 |
RDbNamedDatabase db2;
|
sl@0
|
1143 |
r=db2.Open(TheDbs,KTestDatabase);
|
sl@0
|
1144 |
test (r==KErrNone);
|
sl@0
|
1145 |
RDbNotifier ob2;
|
sl@0
|
1146 |
r=ob2.Open(db2);
|
sl@0
|
1147 |
test (r==KErrNone);
|
sl@0
|
1148 |
//
|
sl@0
|
1149 |
test.Next(_L("Cancel"));
|
sl@0
|
1150 |
ob.NotifyUnlock(stat);
|
sl@0
|
1151 |
TRequestStatus stat2;
|
sl@0
|
1152 |
ob2.NotifyUnlock(stat2);
|
sl@0
|
1153 |
test (stat==KRequestPending);
|
sl@0
|
1154 |
ob.Cancel();
|
sl@0
|
1155 |
User::WaitForRequest(stat);
|
sl@0
|
1156 |
test (stat==KErrCancel);
|
sl@0
|
1157 |
test (stat2==KRequestPending);
|
sl@0
|
1158 |
ob2.Cancel();
|
sl@0
|
1159 |
User::WaitForRequest(stat2);
|
sl@0
|
1160 |
test (stat2==KErrCancel);
|
sl@0
|
1161 |
//
|
sl@0
|
1162 |
test.Next(_L("Close"));
|
sl@0
|
1163 |
ob.NotifyUnlock(stat);
|
sl@0
|
1164 |
ob2.NotifyUnlock(stat2);
|
sl@0
|
1165 |
test (stat2==KRequestPending);
|
sl@0
|
1166 |
ob2.Close();
|
sl@0
|
1167 |
User::WaitForRequest(stat2);
|
sl@0
|
1168 |
test (stat2==KErrCancel);
|
sl@0
|
1169 |
test (stat==KRequestPending);
|
sl@0
|
1170 |
ob.Close();
|
sl@0
|
1171 |
User::WaitForRequest(stat);
|
sl@0
|
1172 |
test (stat==KErrCancel);
|
sl@0
|
1173 |
//
|
sl@0
|
1174 |
test.Next(_L("NotifyChange"));
|
sl@0
|
1175 |
r=ob.Open(TheDatabase);
|
sl@0
|
1176 |
test (r==KErrNone);
|
sl@0
|
1177 |
r=ob2.Open(db2);
|
sl@0
|
1178 |
test (r==KErrNone);
|
sl@0
|
1179 |
ob.NotifyUnlock(stat);
|
sl@0
|
1180 |
ob2.NotifyChange(stat2);
|
sl@0
|
1181 |
TheDatabase.Begin();
|
sl@0
|
1182 |
r=TheDatabase.Commit();
|
sl@0
|
1183 |
test (r==KErrNone);
|
sl@0
|
1184 |
User::WaitForRequest(stat);
|
sl@0
|
1185 |
test (stat==ob.EUnlock);
|
sl@0
|
1186 |
test (stat2==KRequestPending);
|
sl@0
|
1187 |
ob.NotifyUnlock(stat);
|
sl@0
|
1188 |
db2.Begin();
|
sl@0
|
1189 |
r=db2.Commit();
|
sl@0
|
1190 |
test (r==KErrNone);
|
sl@0
|
1191 |
User::WaitForRequest(stat);
|
sl@0
|
1192 |
test (stat==ob.EUnlock);
|
sl@0
|
1193 |
test (stat2==KRequestPending);
|
sl@0
|
1194 |
Execute(KDropTable1);
|
sl@0
|
1195 |
User::WaitForRequest(stat2);
|
sl@0
|
1196 |
test (stat2==ob.ECommit);
|
sl@0
|
1197 |
//
|
sl@0
|
1198 |
test.Next(_L("missed event"));
|
sl@0
|
1199 |
ob.NotifyUnlock(stat);
|
sl@0
|
1200 |
User::WaitForRequest(stat);
|
sl@0
|
1201 |
test (stat==ob.ECommit);
|
sl@0
|
1202 |
//
|
sl@0
|
1203 |
test.Next(_L("database close"));
|
sl@0
|
1204 |
ob.NotifyUnlock(stat);
|
sl@0
|
1205 |
test (stat==KRequestPending);
|
sl@0
|
1206 |
ob2.NotifyUnlock(stat2);
|
sl@0
|
1207 |
test (stat2==KRequestPending);
|
sl@0
|
1208 |
TheDatabase.Close();
|
sl@0
|
1209 |
User::After(0x20000); // ~.1s
|
sl@0
|
1210 |
test (stat==KRequestPending);
|
sl@0
|
1211 |
test (stat2==KRequestPending);
|
sl@0
|
1212 |
db2.Close();
|
sl@0
|
1213 |
User::WaitForRequest(stat);
|
sl@0
|
1214 |
test (stat==ob.EClose);
|
sl@0
|
1215 |
User::WaitForRequest(stat2);
|
sl@0
|
1216 |
test (stat2==ob.EClose);
|
sl@0
|
1217 |
ob.NotifyUnlock(stat);
|
sl@0
|
1218 |
User::WaitForRequest(stat);
|
sl@0
|
1219 |
test (stat==ob.EClose);
|
sl@0
|
1220 |
ob.Cancel();
|
sl@0
|
1221 |
ob.Close();
|
sl@0
|
1222 |
ob2.NotifyUnlock(stat2);
|
sl@0
|
1223 |
User::WaitForRequest(stat2);
|
sl@0
|
1224 |
test (stat2==ob.EClose);
|
sl@0
|
1225 |
ob2.Cancel();
|
sl@0
|
1226 |
ob2.Close();
|
sl@0
|
1227 |
//
|
sl@0
|
1228 |
Disconnect();
|
sl@0
|
1229 |
test.End();
|
sl@0
|
1230 |
}
|
sl@0
|
1231 |
|
sl@0
|
1232 |
LOCAL_C void setupTestDirectory()
|
sl@0
|
1233 |
//
|
sl@0
|
1234 |
// Prepare the test directory.
|
sl@0
|
1235 |
//
|
sl@0
|
1236 |
{
|
sl@0
|
1237 |
TInt r=TheFs.Connect();
|
sl@0
|
1238 |
test(r==KErrNone);
|
sl@0
|
1239 |
//
|
sl@0
|
1240 |
r=TheFs.MkDir(KTestDatabase);
|
sl@0
|
1241 |
test(r==KErrNone || r==KErrAlreadyExists);
|
sl@0
|
1242 |
}
|
sl@0
|
1243 |
|
sl@0
|
1244 |
LOCAL_C void setupCleanup()
|
sl@0
|
1245 |
//
|
sl@0
|
1246 |
// Initialise the cleanup stack.
|
sl@0
|
1247 |
//
|
sl@0
|
1248 |
{
|
sl@0
|
1249 |
TheTrapCleanup=CTrapCleanup::New();
|
sl@0
|
1250 |
test(TheTrapCleanup!=NULL);
|
sl@0
|
1251 |
TRAPD(r,\
|
sl@0
|
1252 |
{\
|
sl@0
|
1253 |
for (TInt i=KTestCleanupStack;i>0;i--)\
|
sl@0
|
1254 |
CleanupStack::PushL((TAny*)0);\
|
sl@0
|
1255 |
CleanupStack::Pop(KTestCleanupStack);\
|
sl@0
|
1256 |
});
|
sl@0
|
1257 |
test(r==KErrNone);
|
sl@0
|
1258 |
}
|
sl@0
|
1259 |
|
sl@0
|
1260 |
LOCAL_C void KillDbmsServer()
|
sl@0
|
1261 |
{
|
sl@0
|
1262 |
_LIT(KDbmsServer,"edbsrv.exe");
|
sl@0
|
1263 |
TFullName name;
|
sl@0
|
1264 |
TBuf<64> pattern(KDbmsServer);
|
sl@0
|
1265 |
TInt length = pattern.Length();
|
sl@0
|
1266 |
pattern += _L("*");
|
sl@0
|
1267 |
TFindProcess procFinder(pattern);
|
sl@0
|
1268 |
|
sl@0
|
1269 |
while (procFinder.Next(name) == KErrNone)
|
sl@0
|
1270 |
{
|
sl@0
|
1271 |
if (name.Length() > length)
|
sl@0
|
1272 |
{//If found name is a string containing aProcessName string.
|
sl@0
|
1273 |
TChar c(name[length]);
|
sl@0
|
1274 |
if (c.IsAlphaDigit() ||
|
sl@0
|
1275 |
c == TChar('_') ||
|
sl@0
|
1276 |
c == TChar('-'))
|
sl@0
|
1277 |
{
|
sl@0
|
1278 |
// If the found name is other valid application name
|
sl@0
|
1279 |
// starting with aProcessName string.
|
sl@0
|
1280 |
//RDebug::Print(_L(":: Process name: \"%S\".\n"), &name);
|
sl@0
|
1281 |
continue;
|
sl@0
|
1282 |
}
|
sl@0
|
1283 |
}
|
sl@0
|
1284 |
RProcess proc;
|
sl@0
|
1285 |
if (proc.Open(name) == KErrNone)
|
sl@0
|
1286 |
{
|
sl@0
|
1287 |
proc.Kill(0);
|
sl@0
|
1288 |
//RDebug::Print(_L("\"%S\" process killed.\n"), &name);
|
sl@0
|
1289 |
}
|
sl@0
|
1290 |
proc.Close();
|
sl@0
|
1291 |
}
|
sl@0
|
1292 |
}
|
sl@0
|
1293 |
void DoTests()
|
sl@0
|
1294 |
{
|
sl@0
|
1295 |
TVersionName n=RDbs::Version().Name();
|
sl@0
|
1296 |
test.Printf(_L("DBMS server v%S\n"),&n);
|
sl@0
|
1297 |
TInt r;
|
sl@0
|
1298 |
test.Start(_L("Connection"));
|
sl@0
|
1299 |
TestConnect();
|
sl@0
|
1300 |
|
sl@0
|
1301 |
test.Next(_L("Open Database"));
|
sl@0
|
1302 |
TRAP(r,TestOpenL());
|
sl@0
|
1303 |
test2 (r,KErrNone);
|
sl@0
|
1304 |
|
sl@0
|
1305 |
test.Next(_L("test defect"));
|
sl@0
|
1306 |
TRAP(r,TestDefectL());
|
sl@0
|
1307 |
test2 (r,KErrNone);
|
sl@0
|
1308 |
|
sl@0
|
1309 |
test.Next(_L("Share Database"));
|
sl@0
|
1310 |
TRAP(r,TestShareL());
|
sl@0
|
1311 |
test2 (r,KErrNone);
|
sl@0
|
1312 |
|
sl@0
|
1313 |
test.Next(_L("Locking"));
|
sl@0
|
1314 |
TRAP(r,TestLocking());
|
sl@0
|
1315 |
test2 (r,KErrNone);
|
sl@0
|
1316 |
|
sl@0
|
1317 |
test.Next(_L("Observers"));
|
sl@0
|
1318 |
TRAP(r,TestObserverL());
|
sl@0
|
1319 |
test2 (r,KErrNone);
|
sl@0
|
1320 |
|
sl@0
|
1321 |
test.Next(_L("Benchmarks"));
|
sl@0
|
1322 |
TRAP(r,TestBenchL());
|
sl@0
|
1323 |
test2 (r,KErrNone);
|
sl@0
|
1324 |
|
sl@0
|
1325 |
test.Next(_L("RDbIncremental"));
|
sl@0
|
1326 |
TRAP(r, TestRDbIncrementalAPIL() );
|
sl@0
|
1327 |
test2 (r,KErrNone);
|
sl@0
|
1328 |
|
sl@0
|
1329 |
test.Next(_L("RDbUpdate"));
|
sl@0
|
1330 |
TestRDbUpdate();
|
sl@0
|
1331 |
|
sl@0
|
1332 |
test.Next(_L("RDbRow"));
|
sl@0
|
1333 |
TRAP(r, TestRDbRowL() );
|
sl@0
|
1334 |
test2 (r,KErrNone);
|
sl@0
|
1335 |
|
sl@0
|
1336 |
test.Next(_L("TTextOpsL"));
|
sl@0
|
1337 |
TestTTextOps();
|
sl@0
|
1338 |
|
sl@0
|
1339 |
test.Next(_L("TestSPConvL"));
|
sl@0
|
1340 |
TRAP(r, TestSPConvL() );
|
sl@0
|
1341 |
test2 (r, KErrNone);
|
sl@0
|
1342 |
|
sl@0
|
1343 |
test.Next(_L("Waiting for server exit"));
|
sl@0
|
1344 |
}
|
sl@0
|
1345 |
|
sl@0
|
1346 |
|
sl@0
|
1347 |
GLDEF_C TInt E32Main()
|
sl@0
|
1348 |
//
|
sl@0
|
1349 |
// Test streaming conversions.
|
sl@0
|
1350 |
//
|
sl@0
|
1351 |
{
|
sl@0
|
1352 |
__UHEAP_MARK;
|
sl@0
|
1353 |
|
sl@0
|
1354 |
test.Title();
|
sl@0
|
1355 |
setupTestDirectory();
|
sl@0
|
1356 |
DeleteTestFiles();
|
sl@0
|
1357 |
setupCleanup();
|
sl@0
|
1358 |
KillDbmsServer();
|
sl@0
|
1359 |
DoTests();
|
sl@0
|
1360 |
delete TheTrapCleanup;
|
sl@0
|
1361 |
DeleteTestFiles();
|
sl@0
|
1362 |
|
sl@0
|
1363 |
test.End();
|
sl@0
|
1364 |
TheFs.Close();
|
sl@0
|
1365 |
test.Close();
|
sl@0
|
1366 |
__UHEAP_MARKEND;
|
sl@0
|
1367 |
return 0;
|
sl@0
|
1368 |
}
|