Update contrib.
1 // Copyright (c) 1998-2010 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.
22 const TInt KTestCleanupStack=0x20;
24 LOCAL_D CTrapCleanup* TheTrapCleanup;
25 LOCAL_D RTest test(_L("t_storset"));
28 @SYMTestCaseID SYSLIB-STORE-CT-1121
29 @SYMTestCaseDesc TPagedSet class functionality test
31 @SYMTestActions Tests insert/delete/contains without duplicates.
32 Tests for emptying the set
33 @SYMTestExpectedResults Test must not fail
38 test.Start(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1121 Insertion & Deletion "));
40 const TInt KEntryCount=200;
41 TPagedSet<TInt32> set;
42 set.Connect(CMemPagePool::NewLC());
43 //IsIntact() and IsDirty() test
44 TBool rc = set.IsIntact();
56 test(!rc);//Empty tree - cannot be marked as broken
70 //* test(set.InsertL(it));
73 //* test(!set.InsertL(it));
75 test(set.ContainsL(it));
76 //* test(set.DeleteL(it));
79 //* test(!set.DeleteL(it));
80 //* test(set.Count()==0);
81 test(!set.ContainsL(it));
83 //* test.Next(_L("Duplicates"));
85 //* for (ii=0;ii<KEntryCount;++ii)
86 //* test(set.InsertL(it,EAllowDuplicates));
87 //* test(set.Count()==KEntryCount);
88 //* test(set.ContainsL(it));
89 //* test(!set.InsertL(it));
90 //* for (ii=0;ii<KEntryCount;++ii)
91 //* test(set.DeleteL(it));
92 //* test(!set.ContainsL(it));
93 //* test(!set.DeleteL(it));
94 //* test(set.Count()==0);
96 test.Next(_L("No duplicates"));
97 for (ii=0;ii<KEntryCount;++ii)
100 //* test(set.InsertL(it));
103 for (ii=0;ii<KEntryCount;++ii)
106 //* test(!set.InsertL(it));
107 test(set.ContainsL(it));
109 test(set.Count()==KEntryCount);
111 test.Next(_L("Empty the set"));
113 test(set.Count()==0);
114 for (ii=0;ii<KEntryCount;++ii)
117 test(!set.ContainsL(it));
121 CleanupStack::PopAndDestroy();
124 @SYMTestCaseID SYSLIB-STORE-CT-1122
125 @SYMTestCaseDesc TPagedSet class functionality test with large (10000) set of TUint32.
126 @SYMTestPriority High
127 @SYMTestActions Insert,delete,contains,iteration operations test
128 @SYMTestExpectedResults Test must not fail
131 LOCAL_C void test2L()
133 const TInt KEntryCount=10000;
135 TPagedSet<TUint32> set;
136 //* set.Connect(CMemPagePool::NewLC(),TBtree::EQosFastest);
137 set.Connect(CMemPagePool::NewLC());
139 test.Start(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1122 Add items "));
142 for (ii=KEntryCount;ii>0;--ii)
144 jj=(jj+17)%KEntryCount;
145 //* test(set.InsertL(jj));
148 test(set.Count()==KEntryCount);
150 test.Next(_L("Check contents"));
151 for (ii=0;ii<KEntryCount;++ii)
152 test(set.ContainsL(ii));
154 test.Next(_L("Iterate over items"));
155 TUint8 *checkMap=(TUint8*)User::AllocLC(KEntryCount);
156 Mem::FillZ(checkMap,KEntryCount);
157 TPagedSetIter<TUint32> iter(set);
162 TUint32 data1 = iter.AtL();
165 iter.ExtractAtL(data2);
166 test(data1 == data2);
167 }while(iter.NextL());
169 for (ii=0;ii<KEntryCount;++ii)
170 test(checkMap[ii]==1);
171 CleanupStack::PopAndDestroy();
173 test.Next(_L("Delete items"));
175 for (ii=KEntryCount;ii>KEntryCount/2;--ii)
177 jj=(jj+17)%KEntryCount;
178 //* test(set.DeleteL(jj));
181 test(set.Count()==KEntryCount/2);
183 test.Next(_L("Check contents"));
186 jj=(jj+17)%KEntryCount;
187 test(set.ContainsL(jj));
190 for (ii=KEntryCount;ii>KEntryCount/2;--ii)
192 jj=(jj+17)%KEntryCount;
193 test(!set.ContainsL(jj));
196 test.Next(_L("Delete items"));
199 jj=(jj+17)%KEntryCount;
200 //* test(set.DeleteL(jj));
203 test(set.Count()==1);
205 test.Next(_L("Check contents"));
206 jj=(jj+17)%KEntryCount;
207 TPagedSetBiIter<TUint32> biter(set);
208 test(biter.FirstL());
209 test(biter.AtL()==jj);
211 biter.ExtractAtL(data);
213 test(!biter.NextL());
215 test(biter.AtL()==jj);
216 test(!biter.PreviousL());
217 TPagedSetRIter<TUint32> riter(set);
218 test(riter.ResetL());
219 test(riter.AtL()==jj);
220 riter.ExtractAtL(data);
222 test(!riter.NextL());
224 //* test(set.DeleteL(jj));
226 test(!iter.ResetL());
227 test(set.Count()==0);
231 CleanupStack::PopAndDestroy();
234 @SYMTestCaseID SYSLIB-STORE-CT-1123
235 @SYMTestCaseDesc Stream set out test
236 @SYMTestPriority High
237 @SYMTestActions Build set and stream out
238 @SYMTestExpectedResults Test must not fail
241 LOCAL_C void test3aL(RWriteStream& aStream,MPagePool *aPool,TInt aCount)
243 test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1123 "));
244 TPagedSet<TInt32> set;
245 //* set.Connect(aPool,TBtree::EQosFastest);
248 for (TInt ii=0;ii<aCount;ii++)
251 //* test(set.InsertL(it));
254 aStream<<set.Token();
257 @SYMTestCaseID SYSLIB-STORE-CT-1124
258 @SYMTestCaseDesc Stream in and set test
259 @SYMTestPriority High
260 @SYMTestActions Read a token from a stream,create and a pagedset.Tests for emptying the set.
261 @SYMTestExpectedResults Test must not fail
264 LOCAL_C void test3bL(RReadStream& aStream,MPagePool *aPool,TInt aCount)
266 test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1124 "));
267 TPagedSetToken token;
269 TPagedSet<TInt32> set(token);
270 //* set.Connect(aPool,TBtree::EQosFastest);
273 test(set.Count()==aCount);
274 for (TInt ii=0;ii<aCount;ii++)
277 //* test(set.DeleteL(it));
280 test(set.Count()==0);
284 @SYMTestCaseID SYSLIB-STORE-CT-1125
285 @SYMTestCaseDesc Streaming sets test
286 @SYMTestPriority High
287 @SYMTestActions Tests for token streaming operations on pagedsets.
288 @SYMTestExpectedResults Test must not fail
291 LOCAL_C void test3L()
293 const TInt KEntryCount=1000;
294 MPagePool *pool=CMemPagePool::NewLC();
296 test.Start(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1125 Build set and stream out "));
297 RMemWriteStream out(stream,sizeof(stream));
298 test3aL(out,pool,KEntryCount);
299 test.Next(_L("Stream in and test set "));
300 RMemReadStream in(stream,sizeof(stream));
301 test3bL(in,pool,KEntryCount);
303 CleanupStack::PopAndDestroy();
306 class CPersistentStoreHelper: public CPersistentStore
308 virtual MStreamBuf* DoReadL(TStreamId /*anId*/) const
312 virtual MStreamBuf* DoCreateL(TStreamId& /*anId*/)
324 @SYMTestCaseID PDS-STORE-CT-4015
325 @SYMTestCaseDesc Test untested APIs of TPagedMultiset and TPagedSetToken
326 @SYMTestPriority High
327 @SYMTestActions Test possibility of adding duplicates into TPagedMultiset. Calling empy constructor TPagedSetToken.
329 @SYMTestExpectedResults Insterting duplicates should be possible and should not fail. After adding KEntryCount
330 identical elements Count() should equal KEntryCount. Constructor should create valid object.
331 RepairL function can't be runned now, because it has a problem inside that cause KERN-EXEC: 3.
334 LOCAL_C void test4L()
336 const TInt KEntryCount=200;
338 test.Start(_L(" @SYMTestCaseID:PDS-STORE-CT-4015 Test untested APIs "));
341 TPagedMultiset<TInt32> set;
342 set.Connect(CMemPagePool::NewLC());
343 test.Next(_L("Duplicates"));
345 for (ii=0;ii<KEntryCount;++ii)
347 TRAP(err, set.InsertL(it));
350 test(set.Count()==KEntryCount);
351 TBool rc = set.IsEmpty();
355 TRAP(err, set.ContainsL(it));
357 TRAP(err, set.InsertL(it));
360 for (ii=0;ii<KEntryCount;++ii)
362 TRAP(err, set.DeleteL(it));
366 TRAP(err, set.ContainsL(it));
368 TRAP(err, set.DeleteL(it));
370 test(set.Count()==0);
372 test.Next(_L("Calling MPagePool::Delete"));
373 CMemPagePool* mpp = CMemPagePool::NewLC();
374 const TPageAbandonFunction& nopFunc = mpp->AcquireL();
375 test(&nopFunc != NULL);
376 TAny* any = mpp->AllocL();
378 pref = mpp->AssignL(any, EPageReclaimable);
379 mpp->MPagePool::Delete(pref);
380 CleanupStack::PopAndDestroy();
382 test.Next(_L("CPersistentStore DoSetRootL"));
383 CPersistentStoreHelper* ps = new (ELeave) CPersistentStoreHelper();
384 CleanupStack::PushL(ps);
385 ps->SetRootL(KNullStreamId);
386 CleanupStack::PopAndDestroy();
388 test.Next(_L("HDirectStoreBuf::DoSeekL calls"));
389 HBufC8* buf = HBufC8::NewLC(1024);
392 TPtr8 ptr(buf->Des());
398 buf->Des().Append(_L8("Ala ma kota a kot ma futro. Futro jest dobre by chronic przed zimnem."));
403 CEmbeddedStore* estor = CEmbeddedStore::FromLC(rts);
404 RStoreReadStream rstream;
405 rstream.OpenL(*estor, id);
406 TStreamPos pos = rstream.Source()->SeekL(MStreamBuf::ERead, 5);
407 test(pos.Offset() == 5);
410 CleanupStack::PopAndDestroy(2);
412 test.Next(_L("Calling TEmpty Constructor"));
413 TPagedSetToken set2(TBtreeToken::EEmpty);
414 test( set2.Count() == 0);
416 test.Next(_L("Set function"));
418 const TPagedSetToken& pst = set.Token();
419 test(pst.Count() == set2.Count());
422 CleanupStack::PopAndDestroy();
426 @SYMTestCaseID PDS-STORE-CT-4065
427 @SYMTestCaseDesc TStreamPos tests.
428 @SYMTestActions Tests operations provided by TStreamPos class.
429 @SYMTestPriority High
430 @SYMTestExpectedResults Test must not fail
455 inline TTestEntry() :
460 inline TTestEntry(TInt aKey, TInt aData) :
470 @SYMTestCaseID PDS-STORE-CT-4066
471 @SYMTestCaseDesc TBtreeFix tests.
472 @SYMTestActions Tests operations provided by TBtreeFix class.
473 @SYMTestPriority High
474 @SYMTestExpectedResults Test must not fail
478 CMemPagePool* pool = CMemPagePool::NewLC();
480 TBtreeToken token(TBtreeToken::EEmpty);
481 TBool rc = token.IsEmpty();
483 rc = token.IsIntact();
486 TBtreeFix<TTestEntry, TInt> bentry(token, EBtreeSecure);
487 TBtreeKey bkey(sizeof(TInt));
488 bentry.Connect(pool, &bkey);
491 rc = bentry.FindL(bpos, 1);
493 rc = bentry.InsertL(bpos, TTestEntry(1, 101));
495 rc = bentry.FindL(bpos, 1);
497 TTestEntry entry1 = bentry.AtL(bpos);
498 test(entry1.iKey == 1 && entry1.iData == 101);
499 const void* key = bkey.Key(&entry1);
500 TInt keyVal = *((const TInt*)key);
501 test.Printf(_L("keyVal=%d\n"), keyVal);
503 rc = bentry.InsertL(bpos, TTestEntry(3, 103));
505 rc = bentry.InsertL(bpos, TTestEntry(2, 102));
508 rc = bentry.FindL(bpos, 2);
511 bentry.ExtractAtL(bpos, entry2);
512 test(entry2.iKey == 2 && entry2.iData == 102);
514 rc = bentry.FindL(bpos, 3);
517 bentry.ExtractAtL(bpos, entry3);
518 test(entry3.iKey == 3 && entry3.iData == 103);
520 //==============================================
523 if(bentry.ResetL(bmark))
527 TTestEntry entry = bentry.AtL(bmark);
528 test.Printf(_L("AtL(): entry.iKey=%d, entry.iData=%d\n"), entry.iKey, entry.iData);
529 bentry.ExtractAtL(bmark, entry);
530 test.Printf(_L("ExtractAtL(): entry.iKey=%d, entry.iData=%d\n"), entry.iKey, entry.iData);
531 }while(bentry.NextL(bmark));
534 rc = bentry.NextL(bmark);
537 //==============================================
539 rc = bentry.DeleteL(2);
541 rc = bentry.FindL(bpos, 2);
543 rc = bentry.FindL(bpos, 3);
545 TRAPD(err, bentry.DeleteAtL(bpos));
546 test(err == KErrNone);
547 rc = bentry.FindL(bpos, 3);
551 rc = bentry.IsDirty();
553 bentry.MarkCurrent();
554 rc = bentry.IsDirty();
558 CleanupStack::PopAndDestroy(pool);
561 LOCAL_C void doMainL()
563 test.Start(_L("Basic operations"));
565 test.Next(_L("Large set TUint32"));
567 test.Next(_L("Tokens and streaming"));
569 test.Next(_L("Forgotten API"));
571 test.Next(_L("@SYMTestCaseID:PDS-STORE-CT-4065: TStreamPos test"));
573 test.Next(_L("@SYMTestCaseID:PDS-STORE-CT-4066: TBtreeFix test"));
578 LOCAL_C void setupCleanup()
580 // Initialise the cleanup stack.
583 TheTrapCleanup=CTrapCleanup::New();
584 test(TheTrapCleanup!=NULL);
587 for (TInt i=KTestCleanupStack;i>0;i--)\
588 CleanupStack::PushL((TAny*)1);\
590 CleanupStack::Pop(KTestCleanupStack);\
595 GLDEF_C TInt E32Main()
605 delete TheTrapCleanup;