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".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // RPermanentFileStoreIter functionality tests
20 #include <s32fileiter.h>
22 LOCAL_D RTest test(_L("t_storiter"));
23 LOCAL_D CTrapCleanup *TheTrapCleanup;
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
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)
35 __ASSERT_DEBUG(aCount >= 0 && aCount < KMaxTestStreamIds, User::Invariant());
37 for(;(i<aCount)&&(aStreamId!=::StreamIds[i]);i++)
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)
47 for(TInt i=0;i<aCount;i++)
49 for(TInt j=(i+1);j<aCount;j++)
51 test(aStoreStreamIds[i] != aStoreStreamIds[j]);
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)
60 in.OpenLC(aStore, aId);
61 CleanupStack::PopAndDestroy(&in);
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)
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);
78 while((id = iter.NextL()) != KNullStreamIdValue)
80 //verifying that it is a valid stream ID
81 ::AssertValidStreamIdL(id, aStore);
82 //Save stream ID in storeStreamIds array
83 storeStreamIds[count++] = id;
85 ::AssertStreamId(aCount, id);
87 test(count == aCount);
89 ::AssertStreamIdDuplication(storeStreamIds, count);
90 CleanupStack::PopAndDestroy(&iter);
94 @SYMTestCaseID SYSLIB-STORE-CT-1219
95 @SYMTestCaseDesc CPermanentFileStore-StreamId iteration tests
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
102 LOCAL_C void Test1L()
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()));
108 parse.Set(drive.Name(), &KFileLocationSpec, NULL);
111 test(file.Create(::TheFs, parse.FullName(), EFileWrite| EFileRead) == KErrNone);
112 CPermanentFileStore* store = CPermanentFileStore::NewLC(file);
113 store->SetTypeL(KPermanentFileStoreLayoutUid);
115 ::AssertStreamIdsL(*store, 0);
116 //Create 1 stream. Stream count: 1
117 RStoreWriteStream out;
118 ::StreamIds[0] = out.CreateLC(*store);
121 ::AssertStreamIdsL(*store, 1);
122 //Create 2 new streams. Stream count: 1 + 2
123 RStoreWriteStream out2;
124 ::StreamIds[1] = out2.CreateLC(*store);
126 RStoreWriteStream out3;
127 ::StreamIds[2] = out3.CreateLC(*store);
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]);
137 ::AssertStreamIdsL(*store, 2);
139 CleanupStack::PopAndDestroy(&out2);
140 CleanupStack::PopAndDestroy(&out);
141 CleanupStack::PopAndDestroy(store);
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
153 LOCAL_C void Test2L()
155 test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1220 CPermanentFileStore-StreamId iteration tests - 2 "));
157 TDriveUnit drive(static_cast<TUint>(RFs::GetSystemDrive()));
159 parse.Set(drive.Name(), &KFileLocationSpec, NULL);
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);
170 ::AssertStreamIdsL(*store, 3);
171 //Create 2 new streams. Stream count: 3 + 2
172 RStoreWriteStream out2;
173 ::StreamIds[3] = out2.CreateLC(*store);
175 RStoreWriteStream out3;
176 ::StreamIds[4] = out3.CreateLC(*store);
179 ::AssertStreamIdsL(*store, 5);
181 CleanupStack::PopAndDestroy(&out3);
182 CleanupStack::PopAndDestroy(&out2);
183 CleanupStack::PopAndDestroy(&out);
184 CleanupStack::PopAndDestroy(store);
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
196 LOCAL_C void Test3L()
198 test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1221 CPermanentFileStore-StreamId iteration tests - 3 "));
200 TDriveUnit drive(static_cast<TUint>(RFs::GetSystemDrive()));
202 parse.Set(drive.Name(), &KFileLocationSpec, NULL);
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);
213 while((id = iter.NextL()) != KNullStreamIdValue)
215 RStoreWriteStream out;
216 out.ReplaceLC(*store, id);
219 CleanupStack::PopAndDestroy(&out);
222 ::AssertStreamIdsL(*store, 5);
223 CleanupStack::PopAndDestroy(&iter);
224 //Read and test data from the streams. Stream count: 5
226 iter.ResetLC(*store);
227 while((id = iter.NextL()) != KNullStreamIdValue)
230 in.OpenLC(*store, id);
234 CleanupStack::PopAndDestroy(&in);
237 CleanupStack::PopAndDestroy(&iter);
238 CleanupStack::PopAndDestroy(store);
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
250 LOCAL_C void Test4L()
252 test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1222 CPermanentFileStore-StreamId iteration tests - 4 "));
254 TDriveUnit drive(static_cast<TUint>(RFs::GetSystemDrive()));
256 parse.Set(drive.Name(), &KFileLocationSpec, NULL);
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);
266 store->DeleteL(::StreamIds[i]);
269 ::AssertStreamIdsL(*store, 0);
270 //Create KMaxTestStreamIds/4 streams
271 for(i=0;i<(KMaxTestStreamIds/4);i++)
273 RStoreWriteStream out;
274 ::StreamIds[i] = out.CreateLC(*store);
276 CleanupStack::PopAndDestroy(&out);
279 ::AssertStreamIdsL(*store, KMaxTestStreamIds / 4);
280 //Delete last KMaxTestStreamIds/8 streams
281 for(i=(KMaxTestStreamIds/8);i<(KMaxTestStreamIds/4);i++)
283 store->DeleteL(::StreamIds[i]);
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++)
291 RStoreWriteStream out;
292 ::StreamIds[i] = out.CreateLC(*store);
294 CleanupStack::PopAndDestroy(&out);
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++)
302 store->DeleteL(::StreamIds[i]);
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);
321 //Delete created/used store files.
322 LOCAL_C void Cleanup()
324 TDriveUnit drive(static_cast<TUint>(RFs::GetSystemDrive()));
326 parse.Set(drive.Name(), &KFileLocationSpec, NULL);
327 ::TheFs.Delete(parse.FullName());
330 GLDEF_C TInt E32Main()
333 ::TheTrapCleanup = CTrapCleanup::New();
336 test(::TheFs.Connect() == KErrNone);
339 TRAPD(err, ::MainL());
340 test(err == KErrNone);
346 delete ::TheTrapCleanup;