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.
21 // This is a path specification and should not be used as is
22 _LIT(KFileLocationSpec, "Z:\\STOR-TST\\T_FRECL.DAT");
23 const TPtrC KTestText=_L("Reclamation testing in progress...");
24 const TInt KTestStreams=1000;
25 const TInt KTestReplicas=5000;
27 TFileName TheFileName;
29 RTest TheTest(_L("t_storfrecl"));
33 ///////////////////////////////////////////////////////////////////////////////////////
35 void DeleteDataFile(const TDesC& aFullName)
38 TInt err = fsSession.Connect();
42 if(fsSession.Entry(aFullName, entry) == KErrNone)
44 RDebug::Print(_L("Deleting \"%S\" file.\n"), &aFullName);
45 err = fsSession.SetAtt(aFullName, 0, KEntryAttReadOnly);
48 RDebug::Print(_L("Error %d changing \"%S\" file attributes.\n"), err, &aFullName);
50 err = fsSession.Delete(aFullName);
53 RDebug::Print(_L("Error %d deleting \"%S\" file.\n"), err, &aFullName);
60 RDebug::Print(_L("Error %d connecting file session. File: %S.\n"), err, &aFullName);
64 ///////////////////////////////////////////////////////////////////////////////////////
65 //Test macros and functions
66 void Check(TInt aValue, TInt aLine)
70 TheTest.Printf(_L("*** Boolean expression evaluated to false\r\n"));
71 DeleteDataFile(TheFileName);
72 TheTest(EFalse, aLine);
75 void Check(TInt aValue, TInt aExpected, TInt aLine)
77 if(aValue != aExpected)
79 DeleteDataFile(TheFileName);
80 TheTest.Printf(_L("*** Expected error: %d, got: %d\r\n"), aExpected, aValue);
81 TheTest(EFalse, aLine);
84 #define TEST(arg) ::Check((arg), __LINE__)
85 #define TEST2(aValue, aExpected) ::Check(aValue, aExpected, __LINE__)
87 ///////////////////////////////////////////////////////////////////////////////////////
89 static TInt TheCounterFreq = -10000000;
90 const TInt KMicroSecIn1Sec = 1000000;
92 TUint32 CalcTickDiff(TUint32 aStartTicks, TUint32 aEndTicks)
94 TInt64 diffTicks = (TInt64)aEndTicks - (TInt64)aStartTicks;
97 diffTicks = KMaxTUint32 + diffTicks + 1;
99 return (TUint32)diffTicks;
102 //Prints aFastCount parameter (converted to us) and the bytes count
103 void PrintFcDiffAsUs2(const TDesC& aFormatStr, TInt aBytes, TUint32 aFastCount)
105 if(TheCounterFreq <= 0)
107 TEST2(HAL::Get(HAL::EFastCounterFrequency, TheCounterFreq), KErrNone);
108 TheTest.Printf(_L("Counter frequency=%d Hz\r\n"), TheCounterFreq);
110 double v = ((double)aFastCount * KMicroSecIn1Sec) / (double)TheCounterFreq;
112 TheTest.Printf(aFormatStr, aBytes, v2);
115 ///////////////////////////////////////////////////////////////////////////////////////
117 TInt ReclaimL(CStreamStore& aStore)
119 TUint32 fc = User::FastCounter();
120 TInt total = aStore.ReclaimL();
121 TUint32 time = CalcTickDiff(fc, User::FastCounter());
122 PrintFcDiffAsUs2(_L("### CStreamStore::ReclaimL(), %d bytes reclaimable, Time=%d us\r\n"), total, time);
126 @SYMTestCaseID SYSLIB-STORE-CT-1159
127 @SYMTestCaseDesc Tests CStreamStore::ReclaimL() function
128 @SYMTestPriority High
129 @SYMTestActions Tests for reclaiming the space on the store.
130 Tests for an empty store,simple and a complex store.
131 @SYMTestExpectedResults Test must not fail
136 TheTest.Start(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1159 CPermanentFileStore::ReclaimL()"));
138 TheTest.Printf(_L(" Empty store\r\n"));
139 CFileStore* store = CPermanentFileStore::ReplaceLC(TheFs, TheFileName, EFileRead | EFileWrite);
140 store->SetTypeL(store->Layout());
141 TInt bytes = ReclaimL(*store);
144 TheTest.Printf(_L(" Simple store\r\n"));
145 RStoreWriteStream strm;
146 TStreamId id=strm.CreateLC(*store);
151 (void)ReclaimL(*store);
153 TheTest.Printf(_L(" Complex store\r\n"));
155 for (ii=0;ii<KTestStreams;++ii)
157 id=strm.CreateL(*store);
158 TInt val=Math::Rand(TheSeed);
159 TInt len=(val>>11)%(KTestText.Length()+1);
161 strm<<KTestText.Left(len-1);
168 (void)ReclaimL(*store);
170 TheTest.Printf(_L(" Large stream\r\n"));
171 id=strm.CreateL(*store);
172 for (ii=0;ii<KTestReplicas;++ii)
177 (void)ReclaimL(*store);
179 TheTest.Printf(_L(" Deleted large stream\r\n"));
182 (void)ReclaimL(*store);
184 TheTest.Printf(_L(" Mixed reclaim and commit\r\n"));
185 RStoreReclaim reclaim;
187 reclaim.OpenLC(*store,step);
188 TRequestStatus status;
189 TPckgBuf<TInt> pckgStep(step);
190 TRAPD(r, reclaim.NextL(pckgStep,status));
192 User::WaitForRequest(status);
193 TEST2(status.Int(), KErrNone);
195 strm.CreateL(*store);
199 TRAP(r, reclaim.NextL(step));
201 reclaim.ResetL(step);
202 r = reclaim.Next(step);
205 TPckgBuf<TInt> pckgStep1(step);
206 reclaim.Next(pckgStep1,status) ;
207 User::WaitForRequest(status);
208 TEST(status.Int() != KErrNone);
209 reclaim.ResetL(step);
212 r = reclaim.Next(step);
216 TInt total=reclaim.Available();
217 CleanupStack::PopAndDestroy();
218 TheTest.Printf(_L(" %d byte(s) reclaimable\n"),total);
220 CleanupStack::Pop(); // strm
221 CleanupStack::PopAndDestroy(); // store
224 //Initialize TheFileName. RFs::Connect(). Prepare the test directory.
227 TDriveUnit drive(static_cast<TUint>(RFs::GetSystemDrive()));
229 parse.Set(drive.Name(), &KFileLocationSpec, NULL);
230 TheFileName.Copy(parse.FullName());
231 TheTest.Printf(_L("### Test file: %S\r\n"), &TheFileName);
233 TInt err = TheFs.Connect();
234 TheTest(err == KErrNone);
236 err = TheFs.MkDirAll(TheFileName);
237 TEST(err == KErrNone || err == KErrAlreadyExists);
244 CTrapCleanup* tc = CTrapCleanup::New();
251 TRAPD(err, ReclaimTestL());
252 ::DeleteDataFile(TheFileName);
254 TEST2(err, KErrNone);