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".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
19 const TInt KTestCleanupStack=0x20;
22 // This is a path specification and should not be used as is
23 _LIT(KFileLocationSpec, "Z:\\STOR-TST\\T_EMBED.DAT");
24 const TUint8* KTestData=_S8("0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ");
25 const TInt KTestLength=36;
26 const TInt KTestTotal=KTestLength*(KTestLength+1);
27 const TPtrC8 KTestDes(KTestData,KTestLength);
29 LOCAL_D CTrapCleanup* TheTrapCleanup;
30 LOCAL_D RTest test(_L("t_storembed"));
32 LOCAL_D TStreamId TheTempId;
33 LOCAL_D TBuf8<KTestLength+1> TheBuf;
36 @SYMTestCaseID SYSLIB-STORE-CT-1192
37 @SYMTestCaseDesc Writing to a store test
39 @SYMTestActions Write a test data to a stream.
40 @SYMTestExpectedResults Test must not fail
43 LOCAL_C void testWriteL(CPersistentStore& aStore)
45 test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1192 Writing... "));
46 RStoreWriteStream out;
47 TStreamId id=out.CreateLC(aStore);
48 for (TInt i=0;i<=KTestLength;++i)
50 out.WriteL(KTestDes,i);
51 out.WriteL(&KTestData[i],KTestLength-i);
55 aStore.SetRootL(out.CreateL(aStore));
59 CleanupStack::PopAndDestroy();
63 @SYMTestCaseID SYSLIB-STORE-CT-1193
64 @SYMTestCaseDesc Reading from a stream test
66 @SYMTestActions Attempt for reading from stream for a specific length of data
67 @SYMTestExpectedResults Test must not fail
70 LOCAL_C void testReadL(RReadStream& aStream)
72 test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1193 "));
73 for (TInt i=KTestLength;i>=0;--i)
75 aStream.ReadL(TheBuf,i);
76 test(TheBuf.Length()==i);
78 aStream.ReadL(&TheBuf[i],KTestLength-i);
79 TheBuf.SetLength(KTestLength);
80 test(TheBuf==KTestDes);
85 @SYMTestCaseID SYSLIB-STORE-CT-1194
86 @SYMTestCaseDesc Reading from a persistent store test
88 @SYMTestActions Tests for reading from a stream
89 @SYMTestExpectedResults Test must not fail
92 LOCAL_C void testReadL(const CPersistentStore& aStore)
94 test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1194 Reading... "));
96 in.OpenLC(aStore,aStore.Root());
103 CleanupStack::PopAndDestroy();
107 @SYMTestCaseID SYSLIB-STORE-CT-1195
108 @SYMTestCaseDesc Copying from one stream to another stream test
109 @SYMTestPriority High
110 @SYMTestActions Attempt for copying two streams
111 @SYMTestExpectedResults Test must not fail
114 LOCAL_C void testCopyL(RWriteStream& aWriteStream,RReadStream& aReadStream)
116 test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1195 Copying "));
117 for (TInt i=KTestLength;i>=0;--i)
119 aWriteStream.WriteL(aReadStream,i);
120 aReadStream.ReadL(aWriteStream,KTestLength-i);
125 @SYMTestCaseID SYSLIB-STORE-CT-1196
126 @SYMTestCaseDesc Writing to a write once file store created using CEmbeddedStore test
127 @SYMTestPriority High
128 @SYMTestActions Attempt for writing to a newly created store and a temporary store.
129 @SYMTestExpectedResults Test must not fail
132 LOCAL_C void testWriteL()
134 test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1196 Replacing host file "));
135 TParsePtrC parse(KFileLocationSpec);
137 CFileStore* file=CPermanentFileStore::ReplaceLC(TheFs,parse.NameAndExt(),EFileWrite);
138 file->SetTypeL(file->Layout());
140 test.Next(_L("Writing root store"));
141 RStoreWriteStream stream;
142 TStreamId root=stream.CreateLC(*file);
143 stream.WriteL(_L8(" root"));
145 CEmbeddedStore* store=CEmbeddedStore::NewL(stream);
146 CleanupStack::PushL(store);
149 CleanupStack::PopAndDestroy();
150 file->SetRootL(root);
152 test.Next(_L("Writing temp store"));
153 TheTempId=stream.CreateLC(*file);
154 stream.WriteL(_L8(" temp"));
156 store=CEmbeddedStore::NewLC(stream);
159 CleanupStack::PopAndDestroy();
162 CleanupStack::PopAndDestroy();
166 @SYMTestCaseID SYSLIB-STORE-CT-1197
167 @SYMTestCaseDesc Reading from a file buffer test
168 @SYMTestPriority High
169 @SYMTestActions Tests for reading from root and temporary store.
170 @SYMTestExpectedResults Test must not fail
173 LOCAL_C void testReadL()
175 test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1197 Opening host file "));
176 TParsePtrC parse(KFileLocationSpec);
178 CFileStore* file=CFileStore::OpenLC(TheFs,parse.NameAndExt(),EFileRead);
180 test.Next(_L("Reading from root store"));
181 TStreamId root=file->Root();
183 RStoreReadStream stream;
184 stream.OpenLC(*file,root);
187 test(b==_L8(" root"));
188 CleanupStack::Pop(&stream);
189 CEmbeddedStore* store=CEmbeddedStore::FromL(stream);
190 CleanupStack::PushL(store);
192 CleanupStack::PopAndDestroy(store);
194 stream.OpenLC(*file,root);
196 test(b==_L8(" root"));
197 CleanupStack::Pop(&stream);
198 store=CEmbeddedStore::FromLC(stream);
200 CleanupStack::PopAndDestroy();
202 test.Next(_L("Reading from temp store"));
203 stream.OpenLC(*file,TheTempId);
205 test(b==_L8(" temp"));
207 store=CEmbeddedStore::FromLC(stream);
210 CleanupStack::PopAndDestroy(2);
214 @SYMTestCaseID SYSLIB-STORE-CT-1198
215 @SYMTestCaseDesc Copying in a single file store test.
216 @SYMTestPriority High
217 @SYMTestActions Tests for copying using different buffer sizes
218 @SYMTestExpectedResults Test must not fail
221 LOCAL_C void testCopyL()
223 test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1198 Opening host file "));
224 TParsePtrC parse(KFileLocationSpec);
226 CFileStore* file=CFileStore::OpenLC(TheFs,parse.NameAndExt(),EFileRead|EFileWrite);
228 test.Next(_L("Opening source (root) store"));
229 TStreamId root=file->Root();
230 RStoreReadStream src;
231 src.OpenLC(*file,root);
234 test(b==_L8(" root"));
236 CEmbeddedStore* source=CEmbeddedStore::FromLC(src);
238 test.Next(_L("Duplicating source store"));
239 RStoreWriteStream trg;
241 MStreamBuf* host=source->Host();
242 TStreamPos pos=CEmbeddedStore::Position(source->Root());
243 host->SeekL(host->ERead,EStreamBeginning);
244 RReadStream stream(host);
245 trg.WriteL(stream,pos.Offset());
249 test(host->TellL(host->ERead).Offset()==host->SizeL());
255 source->Reattach(trg.Sink());
259 test.Next(_L("Creating target store"));
261 trg.WriteL(_L8(" target"));
263 CEmbeddedStore* target=CEmbeddedStore::NewLC(trg);
265 test.Next(_L("Copying using small transfers"));
267 in.OpenL(*source,source->Root());
272 in.OpenL(*source,copyId);
273 RStoreWriteStream out;
274 id=out.CreateL(*target);
279 in.OpenL(*target,id);
283 test.Next(_L("Copying using a single big transfer"));
284 in.OpenL(*source,copyId);
285 id=out.CreateL(*target);
286 in.ReadL(out,KTestTotal);
290 in.OpenL(*target,id);
293 in.OpenL(*source,copyId);
294 id=out.CreateL(*target);
295 out.WriteL(in,KTestTotal);
299 in.OpenL(*target,id);
303 CleanupStack::PopAndDestroy(3);
307 // Prepare the test directory.
309 LOCAL_C void setupTestDirectory()
311 TInt r=TheFs.Connect();
314 TDriveUnit drive(static_cast<TUint>(RFs::GetSystemDrive()));
316 parse.Set(drive.Name(), &KFileLocationSpec, NULL);
318 r=TheFs.MkDir(parse.DriveAndPath());
319 test(r==KErrNone||r==KErrAlreadyExists);
320 r=TheFs.SetSessionPath(parse.DriveAndPath());
325 // Initialise the cleanup stack.
327 LOCAL_C void setupCleanup()
329 TheTrapCleanup=CTrapCleanup::New();
330 test(TheTrapCleanup!=NULL);
333 for (TInt i=KTestCleanupStack;i>0;i--)\
334 CleanupStack::PushL((TAny*)0);\
335 CleanupStack::Pop(KTestCleanupStack);\
340 LOCAL_C void DeleteDataFile(const TDesC& aFullName)
343 TInt err = fsSession.Connect();
347 if(fsSession.Entry(aFullName, entry) == KErrNone)
349 RDebug::Print(_L("Deleting \"%S\" file.\n"), &aFullName);
350 err = fsSession.SetAtt(aFullName, 0, KEntryAttReadOnly);
353 RDebug::Print(_L("Error %d changing \"%S\" file attributes.\n"), err, &aFullName);
355 err = fsSession.Delete(aFullName);
358 RDebug::Print(_L("Error %d deleting \"%S\" file.\n"), err, &aFullName);
365 RDebug::Print(_L("Error %d connecting file session. File: %S.\n"), err, &aFullName);
370 // Test streaming conversions.
372 GLDEF_C TInt E32Main()
375 setupTestDirectory();
379 test.Start(_L("Test direct file store"));
380 TRAPD(r,testWriteL());
387 //deletion of data files must be before call to .End() - DEF047652
388 TDriveUnit drive(static_cast<TUint>(RFs::GetSystemDrive()));
390 parse.Set(drive.Name(), &KFileLocationSpec, NULL);
391 ::DeleteDataFile(parse.FullName());
397 delete TheTrapCleanup;