os/persistentdata/persistentstorage/store/TSTOR/t_storiter.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 // Copyright (c) 2004-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".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 // RPermanentFileStoreIter functionality tests
    15 // 
    16 //
    17 
    18 #include <e32test.h>
    19 #include <s32file.h>
    20 #include <s32fileiter.h>
    21 
    22 LOCAL_D RTest test(_L("t_storiter"));
    23 LOCAL_D CTrapCleanup *TheTrapCleanup;
    24 LOCAL_D RFs TheFs;
    25 
    26 // This is a path specification and should not be used as is
    27 _LIT(KFileLocationSpec, "Z:\\T_ITER1.DAT");
    28 const TInt KMaxTestStreamIds = 512;
    29 LOCAL_D TStreamId StreamIds[KMaxTestStreamIds];//Test stream IDs - used in test functions
    30 
    31 //aCount - there should be aCount valid stream IDs in StreamIds array.
    32 //The function aborts program's execution if aStreamId is not in StreamIds array.
    33 LOCAL_C void AssertStreamId(TInt aCount, TStreamId aStreamId)
    34 	{
    35 	__ASSERT_DEBUG(aCount >= 0 && aCount < KMaxTestStreamIds, User::Invariant());
    36 	TInt i = 0;
    37 	for(;(i<aCount)&&(aStreamId!=::StreamIds[i]);i++)
    38 		{
    39 		}
    40 	test(i < aCount);
    41 	}
    42 
    43 //aStoreStreamIds array has aCount valid elements.
    44 //The function aborts program's execution if aStoreStreamIds array has duplicated elements.
    45 LOCAL_C void AssertStreamIdDuplication(TStreamId aStoreStreamIds[], TInt aCount)
    46 	{
    47 	for(TInt i=0;i<aCount;i++)
    48 		{
    49 		for(TInt j=(i+1);j<aCount;j++)
    50 			{
    51 			test(aStoreStreamIds[i] != aStoreStreamIds[j]);
    52 			}
    53 		}
    54 	}
    55 
    56 //The function leaves if it fails to open aStore's stream with aId stream ID.
    57 LOCAL_C void AssertValidStreamIdL(TStreamId aId, CPermanentFileStore& aStore)
    58 	{
    59 	RStoreReadStream in;
    60 	in.OpenLC(aStore, aId);
    61 	CleanupStack::PopAndDestroy(&in);
    62 	}
    63 
    64 //aCount - there should be aCount valid stream Ids in StreamIds array.
    65 //The function aborts program's execution if StreamIds items and count don't match
    66 //aStore stream IDs and count or there are duplicated stream IDs.
    67 //The function leaves if it fails to open aStore's streams.
    68 LOCAL_C void AssertStreamIdsL(CPermanentFileStore& aStore, TInt aCount)
    69 	{
    70 	__ASSERT_DEBUG(aCount >= 0 && aCount < KMaxTestStreamIds, User::Invariant());
    71 	TStreamId storeStreamIds[KMaxTestStreamIds];
    72 	Mem::FillZ(storeStreamIds, sizeof(storeStreamIds));
    73 	RPermanentFileStoreIter iter;
    74 	::CleanupClosePushL(iter);
    75 	TInt count = 0;
    76 	iter.ResetL(aStore);
    77 	TStreamId id;
    78 	while((id = iter.NextL()) != KNullStreamIdValue)
    79 		{
    80 		//verifying that it is a valid stream ID
    81 		::AssertValidStreamIdL(id, aStore);
    82 		//Save stream ID in storeStreamIds array
    83 		storeStreamIds[count++] = id;
    84 		//Assert stream ID
    85 		::AssertStreamId(aCount, id);
    86 		}
    87 	test(count == aCount);
    88 	//Assert duplications
    89 	::AssertStreamIdDuplication(storeStreamIds, count);
    90 	CleanupStack::PopAndDestroy(&iter);
    91 	}
    92 
    93 /**
    94 @SYMTestCaseID          SYSLIB-STORE-CT-1219
    95 @SYMTestCaseDesc	    CPermanentFileStore-StreamId iteration tests
    96 @SYMTestPriority 	    High
    97 @SYMTestActions  	    Tests by creating file store instance with stream count to zero.
    98 						Assert if StreamIds items and count don't match
    99 @SYMTestExpectedResults Test must not fail
   100 @SYMREQ                 REQ0000
   101 */
   102 LOCAL_C void Test1L()
   103 	{
   104 	test.Start(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1219 CPermanentFileStore-StreamId iteration tests - 1 "));
   105 	//Create CPermanentFileStore instance. Stream count should be 0
   106 	TDriveUnit drive(static_cast<TUint>(RFs::GetSystemDrive()));	
   107 	TParse parse;
   108 	parse.Set(drive.Name(), &KFileLocationSpec, NULL);
   109 	
   110 	RFile file;
   111 	test(file.Create(::TheFs, parse.FullName(), EFileWrite| EFileRead) == KErrNone);
   112 	CPermanentFileStore* store = CPermanentFileStore::NewLC(file);
   113 	store->SetTypeL(KPermanentFileStoreLayoutUid);
   114 	store->CommitL();
   115 	::AssertStreamIdsL(*store, 0);
   116 	//Create 1 stream. Stream count: 1
   117 	RStoreWriteStream out;
   118 	::StreamIds[0] = out.CreateLC(*store);
   119 	out.CommitL();
   120 	store->CommitL();
   121 	::AssertStreamIdsL(*store, 1);
   122 	//Create 2 new streams. Stream count: 1 + 2
   123 	RStoreWriteStream out2;
   124 	::StreamIds[1] = out2.CreateLC(*store);
   125 	out2.CommitL();
   126 	RStoreWriteStream out3;
   127 	::StreamIds[2] = out3.CreateLC(*store);
   128 	out3.CommitL();
   129 	store->CommitL();
   130 	::AssertStreamIdsL(*store, 3);
   131 	//Close 1 stream. Stream count: 3
   132 	CleanupStack::PopAndDestroy(&out3);
   133 	::AssertStreamIdsL(*store, 3);
   134 	//Delete 1 stream. Stream count: 2
   135 	store->DeleteL(::StreamIds[2]);
   136 	store->CommitL();
   137 	::AssertStreamIdsL(*store, 2);
   138 	//Cleanup
   139 	CleanupStack::PopAndDestroy(&out2);
   140 	CleanupStack::PopAndDestroy(&out);
   141 	CleanupStack::PopAndDestroy(store);
   142 	}
   143 
   144 /**
   145 @SYMTestCaseID          SYSLIB-STORE-CT-1220
   146 @SYMTestCaseDesc	    CPermanentFileStore-StreamId iteration tests
   147 @SYMTestPriority 	    High
   148 @SYMTestActions  	    Test by creating file store instance with stream count to two.
   149                         Assert if StreamIds items and count don't match
   150 @SYMTestExpectedResults Test must not fail
   151 @SYMREQ                 REQ0000
   152 */
   153 LOCAL_C void Test2L()
   154 	{
   155 	test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1220 CPermanentFileStore-StreamId iteration tests - 2 "));
   156 
   157 	TDriveUnit drive(static_cast<TUint>(RFs::GetSystemDrive()));	
   158 	TParse parse;
   159 	parse.Set(drive.Name(), &KFileLocationSpec, NULL);
   160 	
   161 	//Create CPermanentFileStore instance with an existing store file . Stream count: 2
   162 	CPermanentFileStore* store = CPermanentFileStore::OpenLC(::TheFs, parse.FullName(), EFileWrite | EFileRead);
   163 	store->SetTypeL(KPermanentFileStoreLayoutUid);
   164 	::AssertStreamIdsL(*store, 2);
   165 	//Create new stream. Stream count: 3
   166 	RStoreWriteStream out;
   167 	::StreamIds[2] = out.CreateLC(*store);
   168 	out.CommitL();
   169 	store->CommitL();
   170 	::AssertStreamIdsL(*store, 3);
   171 	//Create 2 new streams. Stream count: 3 + 2
   172 	RStoreWriteStream out2;
   173 	::StreamIds[3] = out2.CreateLC(*store);
   174 	out2.CommitL();
   175 	RStoreWriteStream out3;
   176 	::StreamIds[4] = out3.CreateLC(*store);
   177 	out3.CommitL();
   178 	store->CommitL();
   179 	::AssertStreamIdsL(*store, 5);
   180 	//Cleanup
   181 	CleanupStack::PopAndDestroy(&out3);
   182 	CleanupStack::PopAndDestroy(&out2);
   183 	CleanupStack::PopAndDestroy(&out);
   184 	CleanupStack::PopAndDestroy(store);
   185 	}
   186 
   187 /**
   188 @SYMTestCaseID          SYSLIB-STORE-CT-1221
   189 @SYMTestCaseDesc	    CPermanentFileStore-StreamId iteration tests
   190 @SYMTestPriority 	    High
   191 @SYMTestActions  	    Test by creating file store instance with stream count to five.
   192                         Assert if StreamIds items and count don't match.Read and test data from the streams
   193 @SYMTestExpectedResults Test must not fail
   194 @SYMREQ                 REQ0000
   195 */
   196 LOCAL_C void Test3L()
   197 	{
   198 	test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1221 CPermanentFileStore-StreamId iteration tests - 3 "));
   199 
   200 	TDriveUnit drive(static_cast<TUint>(RFs::GetSystemDrive()));	
   201 	TParse parse;
   202 	parse.Set(drive.Name(), &KFileLocationSpec, NULL);
   203 	
   204 	//Create CPermanentFileStore instance with an existing store file . Stream count: 5
   205 	CPermanentFileStore* store = CPermanentFileStore::OpenLC(::TheFs, parse.FullName(), EFileWrite | EFileRead);
   206 	store->SetTypeL(KPermanentFileStoreLayoutUid);
   207 	::AssertStreamIdsL(*store, 5);
   208 	//Save some data to the streams. Stream count: 5
   209 	RPermanentFileStoreIter iter;
   210 	iter.ResetLC(*store);
   211 	TStreamId id;
   212 	TInt i = 0;
   213 	while((id = iter.NextL()) != KNullStreamIdValue)
   214 		{
   215 		RStoreWriteStream out;
   216 		out.ReplaceLC(*store, id);
   217 		out << TInt32(++i);
   218 		out.CommitL();
   219 		CleanupStack::PopAndDestroy(&out);
   220 		}
   221 	store->CommitL();
   222 	::AssertStreamIdsL(*store, 5);
   223 	CleanupStack::PopAndDestroy(&iter);
   224 	//Read and test data from the streams. Stream count: 5
   225 	i = 0;
   226 	iter.ResetLC(*store);
   227 	while((id = iter.NextL()) != KNullStreamIdValue)
   228 		{
   229 		RStoreReadStream in;
   230 		in.OpenLC(*store, id);
   231 		TInt32 v = 0;
   232 		in >> v;
   233 		test(v == ++i);
   234 		CleanupStack::PopAndDestroy(&in);
   235 		}
   236 	//Cleanup
   237 	CleanupStack::PopAndDestroy(&iter);
   238 	CleanupStack::PopAndDestroy(store);
   239 	}
   240 
   241 /**
   242 @SYMTestCaseID          SYSLIB-STORE-CT-1222
   243 @SYMTestCaseDesc	    CPermanentFileStore-StreamId iteration tests
   244 @SYMTestPriority 	    High
   245 @SYMTestActions  	    Test by creating file store instance with stream count to five and delete all the streams.
   246 						Assert if StreamIds items and count don't match
   247 @SYMTestExpectedResults Test must not fail
   248 @SYMREQ                 REQ0000
   249 */
   250 LOCAL_C void Test4L()
   251 	{
   252 	test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1222 CPermanentFileStore-StreamId iteration tests - 4 "));
   253 
   254 	TDriveUnit drive(static_cast<TUint>(RFs::GetSystemDrive()));	
   255 	TParse parse;
   256 	parse.Set(drive.Name(), &KFileLocationSpec, NULL);
   257 	
   258 	//Create CPermanentFileStore instance with an existing store file . Stream count: 5
   259 	CPermanentFileStore* store = CPermanentFileStore::OpenLC(::TheFs, parse.FullName(), EFileWrite | EFileRead);
   260 	store->SetTypeL(KPermanentFileStoreLayoutUid);
   261 	::AssertStreamIdsL(*store, 5);
   262 	TInt i;
   263 	//Delete all streams
   264 	for(i=0;i<5;i++)
   265 		{
   266 		store->DeleteL(::StreamIds[i]);
   267 		}
   268 	store->CommitL();
   269 	::AssertStreamIdsL(*store, 0);
   270 	//Create KMaxTestStreamIds/4 streams
   271 	for(i=0;i<(KMaxTestStreamIds/4);i++)
   272 		{
   273 		RStoreWriteStream out;
   274 		::StreamIds[i] = out.CreateLC(*store);
   275 		out.CommitL();
   276 		CleanupStack::PopAndDestroy(&out);
   277 		}
   278 	store->CommitL();
   279 	::AssertStreamIdsL(*store, KMaxTestStreamIds / 4);
   280 	//Delete last KMaxTestStreamIds/8 streams
   281 	for(i=(KMaxTestStreamIds/8);i<(KMaxTestStreamIds/4);i++)
   282 		{
   283 		store->DeleteL(::StreamIds[i]);
   284 		}
   285 	store->CommitL();
   286 	//There are KMaxTestStreamIds/8 streams in store
   287 	::AssertStreamIdsL(*store, KMaxTestStreamIds / 8);
   288 	//Create KMaxTestStreamIds/2 streams
   289 	for(i=(KMaxTestStreamIds/8);i<(KMaxTestStreamIds/8+KMaxTestStreamIds/2);i++)
   290 		{
   291 		RStoreWriteStream out;
   292 		::StreamIds[i] = out.CreateLC(*store);
   293 		out.CommitL();
   294 		CleanupStack::PopAndDestroy(&out);
   295 		}
   296 	store->CommitL();
   297 	//There are KMaxTestStreamIds / 2 + KMaxTestStreamIds / 8 streams in store
   298 	::AssertStreamIdsL(*store, KMaxTestStreamIds / 2 + KMaxTestStreamIds / 8);
   299 	//Delete first KMaxTestStreamIds/4 streams
   300 	for(i=0;i<(KMaxTestStreamIds/4);i++)
   301 		{
   302 		store->DeleteL(::StreamIds[i]);
   303 		}
   304 	store->CommitL();
   305 	//There are KMaxTestStreamIds / 8 + KMaxTestStreamIds / 4 streams in store
   306 	Mem::Move(::StreamIds, &::StreamIds[KMaxTestStreamIds / 4], sizeof(TStreamId) * (KMaxTestStreamIds / 8 + KMaxTestStreamIds / 4));
   307 	::AssertStreamIdsL(*store, KMaxTestStreamIds / 8 + KMaxTestStreamIds / 4);
   308 	CleanupStack::PopAndDestroy(store);
   309 	}
   310 
   311 //Run tests
   312 LOCAL_C void MainL()
   313 	{
   314 	::Test1L();
   315 	::Test2L();
   316 	::Test3L();
   317 	::Test4L();
   318 	test.End();
   319 	}
   320 
   321 //Delete created/used store files.
   322 LOCAL_C void Cleanup()
   323 	{
   324 	TDriveUnit drive(static_cast<TUint>(RFs::GetSystemDrive()));	
   325 	TParse parse;
   326 	parse.Set(drive.Name(), &KFileLocationSpec, NULL);
   327 	::TheFs.Delete(parse.FullName());
   328 	}
   329 
   330 GLDEF_C TInt E32Main()
   331     {
   332 	test.Title();
   333 	::TheTrapCleanup = CTrapCleanup::New();
   334 
   335 	__UHEAP_MARK;
   336 	test(::TheFs.Connect() == KErrNone);
   337 
   338 	::Cleanup();
   339 	TRAPD(err, ::MainL());
   340 	test(err == KErrNone);
   341 	test.Close();
   342 	::Cleanup();
   343 
   344 	::TheFs.Close();
   345 	__UHEAP_MARKEND;
   346 	delete ::TheTrapCleanup;
   347 	return 0;
   348     }
   349