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.
19 #define UNUSED_VAR(a) a = a
21 const TInt KTestCleanupStack=0x20;
22 const TPtrC KTestDir=_L("\\STOR-TST\\T_OOM\\");
25 const TPtrC desOriginalReverted2(_S("original/reverted A"),19);
26 const TPtrC desOriginalReverted3(_S("original/reverted B"),19);
27 const TPtrC desNewOverwritten2(_S("new/overwritten X"),17);
28 const TPtrC desNewOverwritten3(_S("new/overwritten Y"),17);
29 const TPtrC alphabet(_S("abcdefghijklmnopqrstuvwxyz"),26);
30 LOCAL_D CFileStore* store;
31 RStoreWriteStream out;
33 TInt KMemoryAllocsInTestFunction=1;
36 LOCAL_D CTrapCleanup* TheTrapCleanup;
37 LOCAL_D RTest test(_L("t_storoom"));
40 LOCAL_C void setupTestDirectory()
41 {// Prepare the test directory.
42 TInt r=TheFs.Connect();
45 r=TheFs.MkDirAll(KTestDir);
46 test(r==KErrNone||r==KErrAlreadyExists);
47 r=TheFs.SetSessionPath(KTestDir);
51 LOCAL_C void setupCleanup()
52 {// Initialise the cleanup stack
53 TheTrapCleanup=CTrapCleanup::New();
54 test(TheTrapCleanup!=NULL);
57 for (TInt i=KTestCleanupStack;i>0;i--)\
58 CleanupStack::PushL((TAny*)0);\
59 CleanupStack::Pop(KTestCleanupStack);\
65 LOCAL_D void CreateStoreSetRootAndDestroyStoreL()
67 TheFs.Delete(_L("pfs"));
68 store=CPermanentFileStore::CreateLC(TheFs,_L("pfs"),EFileWrite|EFileRead);
69 store->SetTypeL(KPermanentFileStoreLayoutUid);
70 TStreamId rootId = store->ExtendL();
71 store->SetRootL(rootId);
73 CleanupStack::PopAndDestroy();
76 LOCAL_D void AlterStoreL()
78 RStoreWriteStream out2;
79 RStoreWriteStream out3;
80 RStoreWriteStream out4;
83 TStreamId id2 = out.CreateLC(*store);
85 CleanupStack::PopAndDestroy();
87 TStreamId id3 = out.CreateLC(*store);
89 CleanupStack::PopAndDestroy();
91 TStreamId id4 = out.CreateLC(*store);
94 CleanupStack::PopAndDestroy();
96 out.ReplaceLC(*store,store->Root());
101 CleanupStack::PopAndDestroy();
103 in.OpenLC(*store,store->Root());// use the root for in and out streams
104 out.ReplaceLC(*store,store->Root());
107 CleanupStack::PopAndDestroy(2);
109 out.ReplaceLC(*store,store->Root());// swap the order
110 in.OpenLC(*store,store->Root());
112 out << _L("fromage");
114 CleanupStack::PopAndDestroy(2);
118 in.OpenLC(*store,store->Root());
122 in >> idZ;// id4 "mum"
123 CleanupStack::PopAndDestroy();
124 out.OpenLC(*store,idZ);
125 in.OpenLC(*store,idZ);
126 out2.OpenLC(*store,idZ);
127 out3.OpenLC(*store,idZ);
128 out4.OpenLC(*store,idZ);
131 CleanupStack::PopAndDestroy(5);
134 @SYMTestCaseID SYSLIB-STORE-CT-1170
135 @SYMTestCaseDesc Allocation failure in store test
136 @SYMTestPriority High
137 @SYMTestActions Tests for any memory errors during allocation of store
138 @SYMTestExpectedResults Test must not fail
141 LOCAL_D void AllocFailInSampleStoreCodeL()
143 test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1170 "));
144 test.Console()->Printf(_L("AllocFailInSampleStoreCodeL()\n"));
145 TRAPD(r,CreateStoreSetRootAndDestroyStoreL())
147 const TInt KAllocFail=15;
148 for (TInt ii=1;ii<=20;++ii)
150 store=CPermanentFileStore::OpenLC(TheFs,_L("pfs"),EFileWrite|EFileRead);
151 __UHEAP_FAILNEXT(ii);
152 TRAPD(r,AlterStoreL());
154 test(r==KErrNoMemory);
158 CleanupStack::PopAndDestroy();
160 TheFs.Delete(_L("pfs"));
163 LOCAL_D void InitialseStoreWithDataL()
165 TheFs.Delete(_L("pope"));
166 store=CPermanentFileStore::CreateLC(TheFs,_L("pope"),EFileWrite|EFileRead);
167 store->SetTypeL(KPermanentFileStoreLayoutUid);
168 TStreamId rootId = store->ExtendL();
169 store->SetRootL(rootId);
171 CleanupStack::PopAndDestroy();
173 store=CPermanentFileStore::OpenLC(TheFs,_L("pope"),EFileWrite|EFileRead);
174 TStreamId id2 = out.CreateLC(*store);
175 out << desOriginalReverted2;
177 CleanupStack::PopAndDestroy();
179 TStreamId id3 = out.CreateLC(*store);
180 out << desOriginalReverted3;
182 CleanupStack::PopAndDestroy();
184 out.ReplaceLC(*store,store->Root());
188 CleanupStack::PopAndDestroy();// out
191 CleanupStack::PopAndDestroy();// store
194 LOCAL_D void AlterStoreDuringOutOfMemoryL(TInt aFail)
196 store=CPermanentFileStore::OpenLC(TheFs,_L("pope"),EFileWrite|EFileRead);
197 in.OpenLC(*store,store->Root());
202 CleanupStack::PopAndDestroy();// in
204 out.ReplaceLC(*store,id2);
205 out << desNewOverwritten2;
207 CleanupStack::PopAndDestroy();// out
210 __UHEAP_FAILNEXT(aFail);// Out of memory
212 out.ReplaceLC(*store,id3);
213 out << desNewOverwritten3;
215 CleanupStack::PopAndDestroy();// out
218 CleanupStack::PopAndDestroy();// store
224 @SYMTestCaseID SYSLIB-STORE-CT-1346
225 @SYMTestCaseDesc Streaming of data test
226 @SYMTestPriority High
227 @SYMTestActions Tests for RStoreReadStream::>> operator
228 @SYMTestExpectedResults Test must not fail
231 LOCAL_D void TestStreamDataL(TInt aFail)
233 test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1346 "));
234 store=CPermanentFileStore::OpenLC(TheFs,_L("pope"),EFileWrite|EFileRead);
235 in.OpenLC(*store,store->Root());
240 CleanupStack::PopAndDestroy();// in
244 in.OpenLC(*store,id2);
246 test(buf==desNewOverwritten2);
248 CleanupStack::PopAndDestroy();// in
250 in.OpenLC(*store,id3);
252 if (aFail > KMemoryAllocsInTestFunction)
253 test(buf==desNewOverwritten3);
254 else if (aFail<=KMemoryAllocsInTestFunction)
255 test(buf==desOriginalReverted3);
257 CleanupStack::PopAndDestroy();// in
259 CleanupStack::PopAndDestroy();// store
262 LOCAL_D void ResetStreamDataL()
264 store=CPermanentFileStore::OpenLC(TheFs,_L("pope"),EFileWrite|EFileRead);
265 in.OpenLC(*store,store->Root());
270 CleanupStack::PopAndDestroy();// in
272 out.ReplaceLC(*store,id2);
273 out << desOriginalReverted2;
275 CleanupStack::PopAndDestroy();// out
277 out.ReplaceLC(*store,id3);
278 out << desOriginalReverted3;
280 CleanupStack::PopAndDestroy();// out
283 CleanupStack::PopAndDestroy();// store
286 @SYMTestCaseID SYSLIB-STORE-CT-1171
287 @SYMTestCaseDesc Out of memory errors test
288 @SYMTestPriority High
289 @SYMTestActions Tests for out of memory conditions before commiting to the store
290 @SYMTestExpectedResults Test must not fail
293 LOCAL_D void OutOfMemoryBeforeStoreCommitL()
295 test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1171 "));
296 test.Console()->Printf(_L("OutOfMemoryBeforeStoreCommitL()\n"));
297 InitialseStoreWithDataL();
298 for (TInt fail=1; fail<=5; ++ fail)
300 TRAPD(r,AlterStoreDuringOutOfMemoryL(fail));
301 if (fail<=KMemoryAllocsInTestFunction)
302 test(r==KErrNoMemory);// store saved when r!=KErrNone
305 TestStreamDataL(fail);
308 TheFs.Delete(_L("pope"));
312 LOCAL_D void OpenCloseStoreL(TInt aFail)
314 __UHEAP_FAILNEXT(aFail);
315 TheFs.Delete(_L("pope"));
316 store=CPermanentFileStore::CreateLC(TheFs,_L("pope"),EFileWrite|EFileRead);
317 store->SetTypeL(KPermanentFileStoreLayoutUid);
318 TStreamId rootId = store->ExtendL();
319 store->SetRootL(rootId);
321 CleanupStack::PopAndDestroy();
323 store=CPermanentFileStore::OpenLC(TheFs,_L("pope"),EFileWrite|EFileRead);
324 TStreamId id2 = out.CreateLC(*store);
325 out << desOriginalReverted2;
328 CleanupStack::PopAndDestroy(2);
331 @SYMTestCaseID SYSLIB-STORE-CT-1172
332 @SYMTestCaseDesc Out of memory test
333 @SYMTestPriority High
334 @SYMTestActions Test for memory errors during opening and closing of store operation.
335 @SYMTestExpectedResults Test must not fail
339 LOCAL_D void OutOfMemoryWhenOpeningClosingStoreL()
341 test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1172 "));
342 test.Console()->Printf(_L("OutOfMemoryWhenOpeningClosingStoreL()\n"));
343 const TInt KAllocs=12;
344 for (TInt fail=1; fail<=20; ++ fail)
346 TRAPD(r,OpenCloseStoreL(fail))
348 test(r==KErrNoMemory);
352 TheFs.Delete(_L("pope"));
357 GLDEF_C TInt E32Main()
358 {// Test permanent file store
360 setupTestDirectory();
365 test.Start(_L("Begin tests"));
366 TRAPD(r,AllocFailInSampleStoreCodeL());
368 TRAP(r,OutOfMemoryBeforeStoreCommitL());
370 TRAP(r,OutOfMemoryWhenOpeningClosingStoreL());
374 TheFs.Delete(_L("pope"));
375 TheFs.Delete(_L("pfs"));
381 test.Start(_L("The tests are not valid in release mode"));
384 delete TheTrapCleanup;