os/persistentdata/persistentstorage/store/TCONT/t_storset.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
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".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 //
    15 
    16 #include <s32cont.h>
    17 #include <s32page.h>
    18 #include <s32mem.h>
    19 #include <e32test.h>
    20 #include "U32STD.H"
    21 
    22 const TInt KTestCleanupStack=0x20;
    23 
    24 LOCAL_D CTrapCleanup* TheTrapCleanup;
    25 LOCAL_D RTest test(_L("t_storset"));
    26 
    27 /**
    28 @SYMTestCaseID          SYSLIB-STORE-CT-1121
    29 @SYMTestCaseDesc	    TPagedSet class functionality test
    30 @SYMTestPriority 	    High
    31 @SYMTestActions  	    Tests insert/delete/contains without duplicates.
    32                         Tests for emptying the set
    33 @SYMTestExpectedResults Test must not fail
    34 @SYMREQ                 REQ0000
    35 */
    36 LOCAL_C void test1L()
    37 	{
    38 	test.Start(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1121 Insertion & Deletion "));
    39 	
    40 	const TInt KEntryCount=200;
    41 	TPagedSet<TInt32> set;
    42 	set.Connect(CMemPagePool::NewLC());
    43 	//IsIntact() and IsDirty() test
    44 	TBool rc = set.IsIntact();
    45 	test(rc);
    46 	rc = set.IsDirty();
    47 	test(!rc);
    48 	set.MarkDirty();
    49 	rc = set.IsDirty();
    50 	test(rc);
    51 	//IsBroken() test
    52 	rc = set.IsBroken();
    53 	test(!rc);
    54 	set.MarkBroken();
    55 	rc = set.IsBroken();
    56 	test(!rc);//Empty tree - cannot be marked as broken
    57 	TInt yy = 10;
    58 	set.InsertL(yy);
    59 	set.MarkBroken();
    60 	rc = set.IsBroken();
    61 	test(rc);
    62 	set.RepairL();
    63 	rc = set.IsBroken();
    64 	test(!rc);
    65 	set.ClearL();
    66 	rc = set.IsBroken();
    67 	test(!rc);
    68 
    69 	TInt32 it=0;
    70 //*	test(set.InsertL(it));
    71 	set.InsertL(it);
    72 	test(set.Count()==1);
    73 //*	test(!set.InsertL(it));
    74 	test(set.Count()==1);
    75 	test(set.ContainsL(it));
    76 //*	test(set.DeleteL(it));
    77 	set.DeleteL(it);
    78 	test(set.Count()==0);
    79 //*	test(!set.DeleteL(it));
    80 //*	test(set.Count()==0);
    81 	test(!set.ContainsL(it));
    82 
    83 //*	test.Next(_L("Duplicates"));
    84 	TInt ii;
    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);
    95 
    96 	test.Next(_L("No duplicates"));
    97 	for (ii=0;ii<KEntryCount;++ii)
    98 		{
    99 		it=ii;
   100 //*		test(set.InsertL(it));
   101 		set.InsertL(it);
   102 		}
   103 	for (ii=0;ii<KEntryCount;++ii)
   104 		{
   105 		it=ii;
   106 //*		test(!set.InsertL(it));
   107 		test(set.ContainsL(it));
   108 		}
   109 	test(set.Count()==KEntryCount);
   110 
   111 	test.Next(_L("Empty the set"));
   112 	set.ClearL();
   113 	test(set.Count()==0);
   114 	for (ii=0;ii<KEntryCount;++ii)
   115 		{
   116 		it=ii;
   117 		test(!set.ContainsL(it));
   118 		}
   119 
   120 	test.End();
   121 	CleanupStack::PopAndDestroy();
   122 	}
   123 /**
   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
   129 @SYMREQ                 REQ0000
   130 */
   131 LOCAL_C void test2L()
   132 	{
   133 	const TInt KEntryCount=10000;
   134 
   135 	TPagedSet<TUint32> set;
   136 //*	set.Connect(CMemPagePool::NewLC(),TBtree::EQosFastest);
   137 	set.Connect(CMemPagePool::NewLC());
   138 
   139 	test.Start(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1122 Add items "));
   140 	TUint32 jj=0;
   141 	TInt32 ii;
   142 	for (ii=KEntryCount;ii>0;--ii)
   143 		{
   144 		jj=(jj+17)%KEntryCount;
   145 //*		test(set.InsertL(jj));
   146 		set.InsertL(jj);
   147 		}
   148 	test(set.Count()==KEntryCount);
   149 
   150 	test.Next(_L("Check contents"));
   151 	for (ii=0;ii<KEntryCount;++ii)
   152 		test(set.ContainsL(ii));
   153 
   154 	test.Next(_L("Iterate over items"));
   155 	TUint8 *checkMap=(TUint8*)User::AllocLC(KEntryCount);
   156 	Mem::FillZ(checkMap,KEntryCount);
   157 	TPagedSetIter<TUint32> iter(set);
   158 	if (iter.ResetL())
   159 		{
   160 		do	
   161 			{
   162 			TUint32 data1 = iter.AtL();
   163 			++checkMap[data1];
   164 			TUint32 data2;
   165 			iter.ExtractAtL(data2);
   166 			test(data1 == data2);
   167 			}while(iter.NextL());
   168 		}
   169 	for (ii=0;ii<KEntryCount;++ii)
   170 		test(checkMap[ii]==1);
   171 	CleanupStack::PopAndDestroy();
   172 
   173 	test.Next(_L("Delete items"));
   174 	jj=0;
   175 	for (ii=KEntryCount;ii>KEntryCount/2;--ii)
   176 		{
   177 		jj=(jj+17)%KEntryCount;
   178 //*		test(set.DeleteL(jj));
   179 		set.DeleteL(jj);
   180 		}
   181 	test(set.Count()==KEntryCount/2);
   182 
   183 	test.Next(_L("Check contents"));
   184 	for (;ii>0;--ii)
   185 		{
   186 		jj=(jj+17)%KEntryCount;
   187 		test(set.ContainsL(jj));
   188 		}
   189 	jj=0;
   190 	for (ii=KEntryCount;ii>KEntryCount/2;--ii)
   191 		{
   192 		jj=(jj+17)%KEntryCount;
   193 		test(!set.ContainsL(jj));
   194 		}
   195 
   196 	test.Next(_L("Delete items"));
   197 	for (;ii>1;--ii)
   198 		{
   199 		jj=(jj+17)%KEntryCount;
   200 //*		test(set.DeleteL(jj));
   201 		set.DeleteL(jj);
   202 		}
   203 	test(set.Count()==1);
   204 
   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);
   210 	TUint32 data; 
   211 	biter.ExtractAtL(data);
   212 	test(data == jj);
   213 	test(!biter.NextL());
   214 	test(biter.LastL());
   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);
   221 	test(data == jj);
   222 	test(!riter.NextL());
   223 
   224 //*	test(set.DeleteL(jj));
   225 	set.DeleteL(jj);
   226 	test(!iter.ResetL());
   227 	test(set.Count()==0);
   228 
   229 	test.End();
   230 
   231 	CleanupStack::PopAndDestroy();
   232 	}
   233 /**
   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
   239 @SYMREQ                 REQ0000
   240 */
   241 LOCAL_C void test3aL(RWriteStream& aStream,MPagePool *aPool,TInt aCount)
   242 	{
   243 	test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1123 "));
   244 	TPagedSet<TInt32> set;
   245 //*	set.Connect(aPool,TBtree::EQosFastest);
   246 	set.Connect(aPool);
   247 
   248 	for (TInt ii=0;ii<aCount;ii++)
   249 		{
   250 		TInt32 it=ii;
   251 //*		test(set.InsertL(it));
   252 		set.InsertL(it);
   253 		}
   254 	aStream<<set.Token();
   255 	}
   256 /**
   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
   262 @SYMREQ                 REQ0000
   263 */
   264 LOCAL_C void test3bL(RReadStream& aStream,MPagePool *aPool,TInt aCount)
   265 	{
   266 	test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1124 "));
   267 	TPagedSetToken token;
   268 	aStream>>token;
   269 	TPagedSet<TInt32> set(token);
   270 //*	set.Connect(aPool,TBtree::EQosFastest);
   271 	set.Connect(aPool);
   272 
   273 	test(set.Count()==aCount);
   274 	for (TInt ii=0;ii<aCount;ii++)
   275 		{
   276 		TInt32 it=ii;
   277 //*		test(set.DeleteL(it));
   278 		set.DeleteL(it);
   279 		}
   280 	test(set.Count()==0);
   281 	}
   282 
   283 /**
   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
   289 @SYMREQ                 REQ0000
   290 */
   291 LOCAL_C void test3L()
   292 	{
   293 	const TInt KEntryCount=1000;
   294 	MPagePool *pool=CMemPagePool::NewLC();
   295 	TUint8 stream[0x40];
   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);
   302 	test.End();
   303 	CleanupStack::PopAndDestroy();
   304 	}
   305 
   306 class CPersistentStoreHelper: public CPersistentStore
   307 	{
   308 	virtual MStreamBuf* DoReadL(TStreamId /*anId*/) const
   309 		{
   310 		return NULL;
   311 		}
   312 	virtual MStreamBuf* DoCreateL(TStreamId& /*anId*/)
   313 		{
   314 		return NULL;
   315 		}
   316 	void Help()
   317 		{
   318 		//just do nothing
   319 		return;
   320 		}
   321 	};
   322 
   323 /**
   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.
   328 						Test RepairL();
   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.
   332 @SYMDEF                 DEF135804
   333 */
   334 LOCAL_C void test4L()
   335 	{
   336 	const TInt KEntryCount=200;
   337 
   338 	test.Start(_L(" @SYMTestCaseID:PDS-STORE-CT-4015 Test untested APIs "));
   339 
   340 	TInt32 it=0;
   341 	TPagedMultiset<TInt32> set;
   342 	set.Connect(CMemPagePool::NewLC());
   343 	test.Next(_L("Duplicates"));
   344 	TInt ii, err;
   345 	for (ii=0;ii<KEntryCount;++ii)
   346 		{
   347 		TRAP(err, set.InsertL(it));
   348 		test(err==KErrNone);
   349 		}
   350 	test(set.Count()==KEntryCount);
   351 	TBool rc = set.IsEmpty();
   352 	test(!rc);
   353 	set.MarkDirty();
   354 	set.MarkCurrent();
   355 	TRAP(err, set.ContainsL(it));
   356 	test(err==KErrNone);
   357 	TRAP(err, set.InsertL(it));
   358 	test(err==KErrNone);
   359 		
   360 	for (ii=0;ii<KEntryCount;++ii)
   361 		{
   362 		TRAP(err, set.DeleteL(it));
   363 		test(err==KErrNone);
   364 		}
   365 		
   366 	TRAP(err, set.ContainsL(it));
   367 	test(err==KErrNone);
   368 	TRAP(err, set.DeleteL(it));
   369 	test(err==KErrNone);
   370 	test(set.Count()==0);
   371 	
   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();
   377 	TPageRef pref;
   378 	pref = mpp->AssignL(any, EPageReclaimable);
   379 	mpp->MPagePool::Delete(pref);
   380 	CleanupStack::PopAndDestroy();
   381 	
   382 	test.Next(_L("CPersistentStore DoSetRootL"));
   383 	CPersistentStoreHelper* ps = new (ELeave) CPersistentStoreHelper();
   384 	CleanupStack::PushL(ps);
   385 	ps->SetRootL(KNullStreamId);
   386 	CleanupStack::PopAndDestroy();
   387 	
   388 	test.Next(_L("HDirectStoreBuf::DoSeekL calls"));
   389 	HBufC8* buf = HBufC8::NewLC(1024);
   390 	RDesWriteStream wts;
   391 	
   392 	TPtr8 ptr(buf->Des());
   393 	wts.Open(ptr);
   394 	TStreamId id(5);
   395 	wts << id;
   396 	wts.CommitL();
   397 	wts.Close();
   398 	buf->Des().Append(_L8("Ala ma kota a kot ma futro. Futro jest dobre by chronic przed zimnem."));
   399 	RDesReadStream rts;
   400 	ptr.Set(buf->Des());
   401 	rts.Open(ptr);
   402 
   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);
   408 	rts.Close();
   409 	rstream.Close();
   410 	CleanupStack::PopAndDestroy(2);
   411 	
   412 	test.Next(_L("Calling TEmpty Constructor"));
   413 	TPagedSetToken set2(TBtreeToken::EEmpty);
   414 	test( set2.Count() == 0);
   415 	
   416 	test.Next(_L("Set function"));
   417 	set.Set(set2);
   418 	const TPagedSetToken& pst = set.Token();
   419 	test(pst.Count() == set2.Count());
   420 	
   421 	test.End();
   422 	CleanupStack::PopAndDestroy();
   423 	}
   424 
   425 /**
   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
   431 */
   432 void StreamPosTest()
   433 	{
   434 	TStreamPos pos1;
   435 	TStreamPos pos2(5);
   436 	pos1 = pos2;
   437 	test(pos1 == pos2);
   438 	
   439 	pos1 = 5 + pos2;
   440 	test(pos1 > pos2);
   441 	test(pos2 < pos1);
   442 	test(pos2 <= pos1);
   443 	test(pos1 != pos2);
   444 	pos1 = pos1 - 5;
   445 	test(pos1 == pos2);
   446 	
   447 	pos2 += 0;
   448 	test(pos1 == pos2);
   449 	pos2 -= 0;
   450 	test(pos1 == pos2);
   451 	}
   452 
   453 struct TTestEntry
   454 	{
   455 	inline TTestEntry() :
   456 		iKey(-1),
   457 		iData(-1)
   458 		{
   459 		}
   460 	inline TTestEntry(TInt aKey, TInt aData) :
   461 		iKey(aKey),
   462 		iData(aData)
   463 		{
   464 		}
   465 	TInt	iKey;
   466 	TInt	iData;
   467 	};
   468 
   469 /**
   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
   475 */
   476 void BTreeFixTestL()
   477 	{
   478 	CMemPagePool* pool = CMemPagePool::NewLC();
   479 		
   480 	TBtreeToken token(TBtreeToken::EEmpty);
   481 	TBool rc = token.IsEmpty();
   482 	test(rc);
   483 	rc = token.IsIntact();
   484 	test(rc);
   485 	
   486 	TBtreeFix<TTestEntry, TInt> bentry(token, EBtreeSecure);
   487 	TBtreeKey bkey(sizeof(TInt));
   488 	bentry.Connect(pool, &bkey);
   489 	
   490 	TBtreePos bpos;
   491 	rc = bentry.FindL(bpos, 1);
   492 	test(!rc);
   493 	rc = bentry.InsertL(bpos, TTestEntry(1, 101));
   494 	test(rc);
   495 	rc = bentry.FindL(bpos, 1);
   496 	test(rc);
   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);
   502 	
   503 	rc = bentry.InsertL(bpos, TTestEntry(3, 103));
   504 	test(rc);
   505 	rc = bentry.InsertL(bpos, TTestEntry(2, 102));
   506 	test(rc);
   507 	
   508 	rc = bentry.FindL(bpos, 2);
   509 	test(rc);
   510 	TTestEntry entry2;
   511 	bentry.ExtractAtL(bpos, entry2);
   512 	test(entry2.iKey == 2 && entry2.iData == 102);
   513 
   514 	rc = bentry.FindL(bpos, 3);
   515 	test(rc);
   516 	TTestEntry entry3;
   517 	bentry.ExtractAtL(bpos, entry3);
   518 	test(entry3.iKey == 3 && entry3.iData == 103);
   519 
   520 	//==============================================
   521 	
   522 	TBtreeMark bmark;
   523 	if(bentry.ResetL(bmark))
   524 		{
   525 		do
   526 			{
   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));
   532 		}
   533 
   534 	rc = bentry.NextL(bmark);
   535 	test(!rc);
   536 
   537 	//==============================================
   538 
   539 	rc = bentry.DeleteL(2);
   540 	test(rc);
   541 	rc = bentry.FindL(bpos, 2);
   542 	test(!rc);
   543 	rc = bentry.FindL(bpos, 3);
   544 	test(rc);
   545 	TRAPD(err, bentry.DeleteAtL(bpos));
   546 	test(err == KErrNone);
   547 	rc = bentry.FindL(bpos, 3);
   548 	test(!rc);
   549 	
   550 	bentry.MarkDirty();
   551 	rc = bentry.IsDirty();
   552 	test(rc);
   553 	bentry.MarkCurrent();
   554 	rc = bentry.IsDirty();
   555 	test(!rc);
   556 	
   557 	bentry.ClearL();
   558 	CleanupStack::PopAndDestroy(pool);
   559 	}
   560 
   561 LOCAL_C void doMainL()
   562 	{
   563 	test.Start(_L("Basic operations"));
   564 	test1L();
   565 	test.Next(_L("Large set TUint32"));
   566 	test2L();
   567 	test.Next(_L("Tokens and streaming"));
   568 	test3L();
   569 	test.Next(_L("Forgotten API"));
   570 	test4L();
   571 	test.Next(_L("@SYMTestCaseID:PDS-STORE-CT-4065: TStreamPos test"));
   572 	StreamPosTest();
   573 	test.Next(_L("@SYMTestCaseID:PDS-STORE-CT-4066: TBtreeFix test"));
   574 	BTreeFixTestL();
   575 	test.End();
   576 	}
   577 
   578 LOCAL_C void setupCleanup()
   579 //
   580 // Initialise the cleanup stack.
   581 //
   582     {
   583 	TheTrapCleanup=CTrapCleanup::New();
   584 	test(TheTrapCleanup!=NULL);
   585 	TRAPD(r,\
   586 		{\
   587 		for (TInt i=KTestCleanupStack;i>0;i--)\
   588 			CleanupStack::PushL((TAny*)1);\
   589 		test(r==KErrNone);\
   590 		CleanupStack::Pop(KTestCleanupStack);\
   591 		});
   592 	test(r==KErrNone);
   593 	}
   594 
   595 GLDEF_C TInt E32Main()
   596 	{
   597 	test.Title();
   598 	setupCleanup();
   599 	__UHEAP_MARK;
   600 //
   601 	TRAPD(r,doMainL());
   602 	test(r==KErrNone);
   603 //
   604 	__UHEAP_MARKEND;
   605 	delete TheTrapCleanup;
   606 	test.Close();
   607 	return 0;
   608 	}
   609