Update contrib.
1 // Copyright (c) 1998-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
20 LOCAL_D RTest test(_L("t_dbwindow: Testing the 'window' stage"));
21 LOCAL_D CTrapCleanup* TheTrapCleanup;
22 LOCAL_D CFileStore* TheStore;
23 LOCAL_D RDbStoreDatabase TheDatabase;
24 LOCAL_D RDbView TheView;
27 const TInt KTestCleanupStack=0x20;
28 const TPtrC KTestDir=_S("C:\\DBMS-TST\\");
29 const TPtrC KTestFile=_S("T_WINDOW.DB");
30 const TPtrC KTableName=_S("TestTable");
31 const TPtrC KColumnID=_S("id");
32 const TPtrC KIndexName=_S("TestIndex");
33 const TInt KRecords=10;
34 const TPtrC KCreateTable=_L("CREATE TABLE TestTable (id INTEGER NOT NULL)");
35 const TPtrC KCreateIndex=_L("CREATE UNIQUE INDEX TestIndex ON TestTable (id)");
36 const TPtrC KEmptyQuery=_L("select * from TestTable where id is null");
37 const TPtrC KOrderQuery=_L("select * from TestTable order by id");
38 const TDbWindow KSingleSlotWindow(0,0);
39 const TDbWindow KSmallWindow(2,2);
40 const TDbWindow KLargeWindow(20,0);
43 // Create the database-in-a-store
45 LOCAL_C void CreateDatabaseL()
47 CFileStore* store=CPermanentFileStore::ReplaceLC(TheFs,KTestFile,EFileRead|EFileWrite);
48 store->SetTypeL(KPermanentFileStoreLayoutUid);
50 id=TheDatabase.CreateL(store);
57 LOCAL_C void CloseDatabaseL()
59 // cannot evaluate size info for store database
60 RDbDatabase::TSize size=TheDatabase.Size();
63 test (TheDatabase.UpdateStats()==KErrNone);
64 size=TheDatabase.Size();
71 LOCAL_C void CreateTableL()
74 test(TheDatabase.Execute(KCreateTable)==KErrNone);
76 test(table.Open(TheDatabase,KTableName,table.EInsertOnly)==KErrNone);
77 for (TInt ii=0;ii<KRecords;++ii)
84 test(TheDatabase.Execute(KCreateIndex)==KErrNone);
85 test (TheDatabase.Commit()==KErrNone);
95 @SYMTestCaseID SYSLIB-DBMS-CT-0638
96 @SYMTestCaseDesc Tests for navigation
97 @SYMTestPriority Medium
98 @SYMTestActions Tests for navigation in an empty window
99 @SYMTestExpectedResults Test must not fail
102 LOCAL_C void TestEmptyL()
104 test.Start(_L(" @SYMTestCaseID:SYSLIB-DBMS-CT-0638 Unevaluated "));
105 test(TheView.Prepare(TheDatabase,KEmptyQuery,TDbWindow::EUnlimited)==KErrNone);
106 test(TheView.CountL(TheView.EQuick)==0);
107 test(!TheView.FirstL());
108 test(TheView.AtEnd());
109 test(!TheView.PreviousL());
110 test(TheView.AtBeginning());
111 test(!TheView.LastL());
112 test(TheView.AtBeginning());
113 test(!TheView.NextL());
114 test(TheView.AtEnd());
115 test.Next(_L("Evaluated"));
116 test(TheView.EvaluateAll()==KErrNone);
117 test(TheView.CountL()==0);
118 test(!TheView.FirstL());
119 test(TheView.AtEnd());
120 test(!TheView.PreviousL());
121 test(TheView.AtBeginning());
122 test(!TheView.LastL());
123 test(TheView.AtBeginning());
124 test(!TheView.NextL());
125 test(TheView.AtEnd());
131 @SYMTestCaseID SYSLIB-DBMS-CT-0639
132 @SYMTestCaseDesc Tests for navigation
133 @SYMTestPriority Medium
134 @SYMTestActions Tests for the unlimited (dynaset) window
135 @SYMTestExpectedResults Test must not fail
138 LOCAL_C void TestUnlimitedL()
140 test.Start(_L(" @SYMTestCaseID:SYSLIB-DBMS-CT-0639 EvaluateAll "));
141 test(TheView.Prepare(TheDatabase,KOrderQuery,TDbWindow::EUnlimited)==KErrNone);
142 test(TheView.EvaluateAll()==KErrNone);
143 test(!TheView.Unevaluated());
144 test(TheView.CountL()==KRecords);
146 for (TheView.BeginningL();TheView.NextL();)
149 for (TheView.EndL();TheView.PreviousL();)
152 test(!TheView.Unevaluated());
153 test.Next(_L("Incremental evaluate"));
155 cc=TheView.CountL(TheView.EQuick);
157 test(!TheView.FirstL());
158 while (TheView.Unevaluated())
160 test(TheView.Evaluate()>=KErrNone);
161 TInt ii=TheView.CountL()-cc;
166 test(TheView.AtRow());
169 test(!TheView.AtRow());
172 test.Next(_L("Insert"));
173 // The new records should go on the end of the set
175 TheView.SetColL(1,TInt(-1));
177 test(TheView.CountL()==KRecords+1);
178 test(TheView.LastL());
180 test(TheView.ColInt(1)==-1);
181 // because of order, it should appear at beginning on re-evaluation
183 test(TheView.EvaluateAll()==KErrNone);
184 test(TheView.CountL()==KRecords+1);
185 test(TheView.FirstL());
187 test(TheView.ColInt(1)==-1);
188 test.Next(_L("Update"));
189 // updated records should not move (or disappear) in the set
191 TheView.SetColL(1,KRecords);
193 test(TheView.CountL()==KRecords+1);
194 test(TheView.FirstL());
196 test(TheView.ColInt(1)==KRecords);
197 // because of order, it should appear at end on re-evaluation
199 test(TheView.EvaluateAll()==KErrNone);
200 test(TheView.CountL()==KRecords+1);
201 test(TheView.LastL());
203 test(TheView.ColInt(1)==KRecords);
204 test.Next(_L("Bookmarks"));
205 TDbBookmark mark=TheView.Bookmark();
206 TheView.BeginningL();
207 TRAPD(r,TheView.GotoL(mark));
210 test(TheView.ColInt(1)==KRecords);
211 test(!TheView.NextL());
212 test(TheView.PreviousL());
213 test.Next(_L("Delete"));
214 // should disappear from the set
216 test(TheView.CountL()==KRecords);
217 for (TheView.BeginningL();TheView.NextL();)
220 test(TheView.ColInt(1)!=KRecords);
222 TRAP(r,TheView.GotoL(mark));
225 test(TheView.EvaluateAll()==KErrNone);
226 test(TheView.CountL()==KRecords);
227 for (TheView.BeginningL();TheView.NextL();)
230 test(TheView.ColInt(1)!=KRecords);
232 TRAP(r,TheView.GotoL(mark));
239 // do as much incremental evaluation as possible
241 LOCAL_C void Evaluate()
243 test(TheView.EvaluateAll()==KErrNone);
247 // get to the true end of set
249 LOCAL_C void GotoEndL()
253 while (TheView.AtRow())
255 if (!TheView.Unevaluated())
261 LOCAL_C void CheckWindowL(TInt forward,TInt back)
264 for (ii=0;ii<forward;++ii)
265 test(TheView.NextL());
266 test(!TheView.NextL());
267 for (ii=0;ii<forward+back+1;++ii)
268 test(TheView.PreviousL());
269 test(!TheView.PreviousL());
270 for (ii=0;ii<back+1;++ii)
271 test(TheView.NextL());
275 @SYMTestCaseID SYSLIB-DBMS-CT-0640
276 @SYMTestCaseDesc Tests for RDbView
277 @SYMTestPriority Medium
278 @SYMTestActions Tests for a restricted sized window
279 @SYMTestExpectedResults Test must not fail
282 LOCAL_C void TestRestrictedL()
284 test.Start(_L(" @SYMTestCaseID:SYSLIB-DBMS-CT-0640 Behaviour at start of set "));
285 test(TheView.Prepare(TheDatabase,KOrderQuery,KSingleSlotWindow)==KErrNone);
286 test(TheView.EvaluateAll()==KErrNone);
287 test(TheView.CountL()==1);
288 test(!TheView.Unevaluated());
289 test(TheView.NextL());
290 test(!TheView.Unevaluated());
292 TInt id=TheView.ColInt(1);
293 test(!TheView.NextL());
294 test(TheView.Unevaluated());
296 test(TheView.CountL()==1);
297 test(TheView.AtRow());
298 test(!TheView.PreviousL());
299 test(TheView.Unevaluated());
301 test(TheView.CountL()==1);
302 test(TheView.AtRow());
304 test(TheView.ColInt(1)==id);
305 test(!TheView.PreviousL());
306 test(TheView.Unevaluated());
308 test(TheView.CountL()==1);
309 test(TheView.AtBeginning());
310 test(TheView.NextL());
312 test(TheView.ColInt(1)==id);
313 test(!TheView.Unevaluated());
314 test.Next(_L("Behaviour at end of set"));
316 test(TheView.LastL());
317 test(!TheView.Unevaluated());
319 id=TheView.ColInt(1);
320 test(!TheView.PreviousL());
321 test(TheView.Unevaluated());
323 test(TheView.CountL()==1);
324 test(TheView.AtRow());
325 test(!TheView.NextL());
326 test(TheView.Unevaluated());
328 test(TheView.CountL()==1);
329 test(TheView.AtRow());
331 test(TheView.ColInt(1)==id);
332 test(!TheView.NextL());
333 test(TheView.Unevaluated());
335 test(TheView.CountL()==1);
336 test(TheView.AtEnd());
337 test(TheView.PreviousL());
339 test(TheView.ColInt(1)==id);
340 test(!TheView.Unevaluated());
343 test.Next(_L("Forward and backwards slots"));
344 test(TheView.Prepare(TheDatabase,KOrderQuery,KSmallWindow)==KErrNone);
345 test(TheView.EvaluateAll()==KErrNone);
346 test(TheView.CountL()==5);
347 test(TheView.FirstL());
349 test(TheView.NextL());
350 test(TheView.NextL()); // now on preferred slot (id=2)
351 test(!TheView.Unevaluated());
352 test(TheView.NextL());
353 test(TheView.Unevaluated());
356 test(TheView.LastL()); // id=5
358 test(TheView.LastL()); // id=7
359 Evaluate(); // should now have last five rows
361 test(TheView.LastL()); // id=9
362 Evaluate(); // no more rows
363 CheckWindowL(0,4); // all behind us now
365 test(TheView.ColInt(1)==9);
366 TheView.FirstL(); // id=5
368 TheView.FirstL(); // id=3
370 TheView.FirstL(); // id=1
374 test.Next(_L("Bookmarks"));
375 TDbBookmark mark=TheView.Bookmark();
376 test(TheView.NextL());
377 test(TheView.NextL());
378 test(TheView.NextL());
380 TRAPD(r,TheView.GotoL(mark));
384 TRAP(r,TheView.GotoL(mark));
386 test.Next(_L("Delete"));
387 test(TheView.FirstL());
389 test(TheView.ColInt(1)==0);
391 test(TheView.CountL()==4);
394 test.Next(_L("Insert"));
396 TheView.SetColL(1,TInt(0));
398 test(TheView.CountL()==4);
401 test(TheView.ColInt(1)==1);
403 test(TheView.EvaluateAll()==KErrNone);
404 test(TheView.FirstL());
406 test(TheView.ColInt(1)==0);
415 test.Start(_L("Setting up test table"));
418 test.Next(_L("Empty Window"));
419 TRAP(r,TestEmptyL();)
421 test.Next(_L("Unlimited Window"));
422 TRAP(r,TestUnlimitedL();)
424 test.Next(_L("Sized window"));
425 TRAP(r,TestRestrictedL();)
427 test.Next(_L("Cleanup"));
428 TRAP(r,CloseDatabaseL();)
435 // Prepare the test directory.
437 LOCAL_C void setupTestDirectory()
439 TInt r=TheFs.Connect();
442 r=TheFs.MkDir(KTestDir);
443 test(r==KErrNone || r==KErrAlreadyExists);
444 r=TheFs.SetSessionPath(KTestDir);
449 // Initialise the cleanup stack.
451 LOCAL_C void setupCleanup()
453 TheTrapCleanup=CTrapCleanup::New();
454 test(TheTrapCleanup!=NULL);
457 for (TInt i=KTestCleanupStack;i>0;i--)\
458 CleanupStack::PushL((TAny*)0);\
459 CleanupStack::Pop(KTestCleanupStack);\
464 LOCAL_C void DeleteDataFile(const TDesC& aFullName)
467 TInt err = fsSession.Connect();
471 if(fsSession.Entry(aFullName, entry) == KErrNone)
473 RDebug::Print(_L("Deleting \"%S\" file.\n"), &aFullName);
474 err = fsSession.SetAtt(aFullName, 0, KEntryAttReadOnly);
477 RDebug::Print(_L("Error %d changing \"%S\" file attributes.\n"), err, &aFullName);
479 err = fsSession.Delete(aFullName);
482 RDebug::Print(_L("Error %d deleting \"%S\" file.\n"), err, &aFullName);
489 RDebug::Print(_L("Error %d connecting file session. File: %S.\n"), err, &aFullName);
494 // Test streaming conversions.
496 GLDEF_C TInt E32Main()
499 setupTestDirectory();
502 test.Start(_L("TDbWindow - database test"));
504 test(err == KErrNone);
506 //deletion of data files must be done before call to end - DEF047652
507 _LIT(KTestDbName, "C:\\DBMS-TST\\T_WINDOW.DB");
508 ::DeleteDataFile(KTestDbName);
512 delete TheTrapCleanup;