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.
20 const TInt KTestCleanupStack=0x20;
22 // This is a path specification and should not be used as is
23 _LIT(KFileLocationSpec, "Z:\\STOR-TST\\T_FSTRM.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_storfstrm"));
32 LOCAL_D TFileName TheTempFile;
34 @SYMTestCaseID SYSLIB-STORE-CT-1162
35 @SYMTestCaseDesc Tests for writing to a stream.
37 @SYMTestActions Attempt for writing to a stream
38 @SYMTestExpectedResults Test must not fail
41 LOCAL_C void testWriteL(RWriteStream& aStream)
43 test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1162 Writing... "));
44 for (TInt i=0;i<=KTestLength;++i)
46 aStream.WriteL(KTestDes,i);
47 aStream.WriteL(&KTestData[i],KTestLength-i);
51 @SYMTestCaseID SYSLIB-STORE-CT-1163
52 @SYMTestCaseDesc Tests for reading from a stream.
54 @SYMTestActions Attempt for reading from a stream
55 @SYMTestExpectedResults Test must not fail
58 LOCAL_C void testReadL(RReadStream& aStream)
60 test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1163 Reading... "));
61 for (TInt i=KTestLength;i>=0;--i)
63 TBuf8<KTestLength+1> buf;
65 test(buf.Length()==i);
67 aStream.ReadL(&buf[i],KTestLength-i);
68 buf.SetLength(KTestLength);
73 @SYMTestCaseID SYSLIB-STORE-CT-1164
74 @SYMTestCaseDesc Tests for skipping data on a stream.
76 @SYMTestActions Tests for skipping data while reading from a stream
77 @SYMTestExpectedResults Test must not fail
80 LOCAL_C void testSkipL(RReadStream& aStream)
82 test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1164 Skipping... "));
83 for (TInt i=0;i<=KTestLength;++i)
86 aStream.ReadL(KTestLength-i);
90 @SYMTestCaseID SYSLIB-STORE-CT-1165
91 @SYMTestCaseDesc Tests a stream is at end-of-file.
93 @SYMTestActions Tests for end of file while reading from a stream
94 @SYMTestExpectedResults Test must not fail
97 LOCAL_C void testEofL(RReadStream& aStream)
99 test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1165 At end "));
101 test(aStream.Source()->ReadL(&b,1)==0);
105 // Test copying from one stream to another.
107 LOCAL_C void testCopyL(RWriteStream& aWriteStream,RReadStream& aReadStream)
109 test.Next(_L("Copying"));
110 for (TInt i=KTestLength;i>=0;--i)
112 aWriteStream.WriteL(aReadStream,i);
113 aReadStream.ReadL(aWriteStream,KTestLength-i);
117 @SYMTestCaseID SYSLIB-STORE-CT-1166
118 @SYMTestCaseDesc Tests for writing to a file stream.
119 Tests RFileWriteStream::WriteL() function
120 @SYMTestPriority High
121 @SYMTestActions Tests for writing to replaced,temporary,opened,created file.
122 Tests for creating an already existing file.
123 Tests for panic while deleting a file.
124 @SYMTestExpectedResults Test must not fail
127 LOCAL_C void testWriteL()
129 test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1166 Writing to attached file "));
132 TDriveUnit drive(static_cast<TUint>(RFs::GetSystemDrive()));
134 parse.Set(drive.Name(), &KFileLocationSpec, NULL);
136 if (file.Replace(TheFs,parse.NameAndExt(),EFileWrite)!=KErrNone)
137 test.Panic(_L("Replacing file"));
139 RFileWriteStream out(f);
146 test.Next(_L("Writing to replaced file"));
147 test(out.Replace(TheFs,parse.NameAndExt(),EFileWrite)==KErrNone);
151 test.Next(_L("Writing to temp file"));
152 test(out.Temp(TheFs,parse.DriveAndPath(),TheTempFile,EFileWrite)==KErrNone);
157 test.Next(_L("Writing to opened file"));
158 test(out.Open(TheFs,parse.NameAndExt(),EFileWrite)==KErrNone);
161 test.Next(_L("Failing to create existing file"));
162 test(out.Create(TheFs,TheTempFile,EFileWrite)==KErrAlreadyExists);
165 if (TheFs.Delete(parse.NameAndExt())!=KErrNone)
166 test.Panic(_L("Deleting file"));
168 test.Next(_L("Writing to created file"));
169 test(out.Create(TheFs,parse.NameAndExt(),EFileWrite)==KErrNone);
175 @SYMTestCaseID SYSLIB-STORE-CT-1167
176 @SYMTestCaseDesc Tests reading from a file stream.
177 @SYMTestPriority High
178 @SYMTestActions Attempt for reading from an attached file
179 Attempt for reading from opened file
180 Attempt for reading from temp file.Test for end of file error
181 @SYMTestExpectedResults Test must not fail
184 LOCAL_C void testReadL()
186 test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1167 Reading from attached file "));
188 TParsePtrC parse(KFileLocationSpec);
191 if (file.Open(TheFs,parse.NameAndExt(),EFileRead)!=KErrNone)
192 test.Panic(_L("Opening file"));
194 RFileReadStream in(f);
202 test.Next(_L("Reading from opened file"));
203 test(in.Open(TheFs,parse.NameAndExt(),EFileRead)==KErrNone);
208 test.Next(_L("Reading from temp file"));
209 test(in.Open(TheFs,TheTempFile,EFileRead)==KErrNone);
215 @SYMTestCaseID SYSLIB-STORE-CT-1168
216 @SYMTestCaseDesc Skipping on a file stream test
217 @SYMTestPriority High
218 @SYMTestActions Attempt for skipping data while reading from a stream
219 @SYMTestExpectedResults Test must not fail
222 LOCAL_C void testSkipL()
224 test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1168 Skipping using small transfers "));
226 TParsePtrC parse(KFileLocationSpec);
229 test(in.Open(TheFs,parse.NameAndExt(),EFileRead)==KErrNone);
234 test.Next(_L("Skipping using a single big transfer"));
235 test(in.Open(TheFs,parse.NameAndExt(),EFileRead)==KErrNone);
236 in.ReadL(KTestTotal);
241 @SYMTestCaseID SYSLIB-STORE-CT-1169
242 @SYMTestCaseDesc Copying from one file stream to another test
243 @SYMTestPriority High
244 @SYMTestActions Attempt for copying using small transfers.
245 Attempt for copying until end of file.
246 Attempt for end of file error
247 @SYMTestExpectedResults Test must not fail
250 LOCAL_C void testCopyL()
252 test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1169 Copying using small transfers "));
254 TParsePtrC parse(KFileLocationSpec);
257 RFileWriteStream out;
258 test(in.Open(TheFs,parse.NameAndExt(),EFileRead)==KErrNone);
259 test(out.Replace(TheFs,TheTempFile,EFileWrite)==KErrNone);
265 test(in.Open(TheFs,TheTempFile,EFileRead)==KErrNone);
270 test.Next(_L("Copying using a single big transfer"));
271 test(out.Replace(TheFs,TheTempFile,EFileWrite)==KErrNone);
272 test(in.Open(TheFs,parse.NameAndExt(),EFileRead)==KErrNone);
273 in.ReadL(out,KTestTotal);
276 test(in.Open(TheFs,parse.NameAndExt(),EFileRead)==KErrNone);
277 out.WriteL(in,KTestTotal);
282 test(in.Open(TheFs,TheTempFile,EFileRead)==KErrNone);
288 test.Next(_L("Copying until end of file"));
289 test(out.Replace(TheFs,TheTempFile,EFileWrite)==KErrNone);
290 test(in.Open(TheFs,parse.NameAndExt(),EFileRead)==KErrNone);
294 test(in.Open(TheFs,parse.NameAndExt(),EFileRead)==KErrNone);
300 test(in.Open(TheFs,TheTempFile,EFileRead)==KErrNone);
308 // Prepare the test directory.
310 LOCAL_C void setupTestDirectory()
312 TInt r=TheFs.Connect();
315 TDriveUnit drive(static_cast<TUint>(RFs::GetSystemDrive()));
317 parse.Set(drive.Name(), &KFileLocationSpec, NULL);
319 r=TheFs.MkDir(parse.DriveAndPath());
320 test(r==KErrNone||r==KErrAlreadyExists);
321 r=TheFs.SetSessionPath(parse.DriveAndPath());
326 // Initialise the cleanup stack.
328 LOCAL_C void setupCleanup()
330 TheTrapCleanup=CTrapCleanup::New();
331 test(TheTrapCleanup!=NULL);
334 for (TInt i=KTestCleanupStack;i>0;i--)\
335 CleanupStack::PushL((TAny*)1);\
337 CleanupStack::Pop(KTestCleanupStack);\
342 LOCAL_C void DeleteDataFile(const TDesC& aFullName)
345 TInt err = fsSession.Connect();
349 if(fsSession.Entry(aFullName, entry) == KErrNone)
351 RDebug::Print(_L("Deleting \"%S\" file.\n"), &aFullName);
352 err = fsSession.SetAtt(aFullName, 0, KEntryAttReadOnly);
355 RDebug::Print(_L("Error %d changing \"%S\" file attributes.\n"), err, &aFullName);
357 err = fsSession.Delete(aFullName);
360 RDebug::Print(_L("Error %d deleting \"%S\" file.\n"), err, &aFullName);
367 RDebug::Print(_L("Error %d connecting file session. File: %S.\n"), err, &aFullName);
371 class RTestReadStream : public RReadStream
374 RTestReadStream(MStreamBuf* aSource) :
378 void Attach(MStreamBuf* aSource)
380 RReadStream::Attach(aSource);
384 RReadStream::Detach();
388 class RTestWriteStream : public RWriteStream
391 RTestWriteStream(MStreamBuf* aSink) :
395 void Attach(MStreamBuf* aSink)
397 RWriteStream::Attach(aSink);
401 RWriteStream::Detach();
406 @SYMTestCaseID PDS-STORE-CT-4064
407 @SYMTestCaseDesc RReadStream, RWriteStream, Pop() and Detach() test.
408 @SYMTestActions The test calls Pop() and Detach() methods of RReadStream and RWriteStream classes.
409 @SYMTestPriority High
410 @SYMTestExpectedResults Test must not fail
412 void StreamDetachTestL()
414 test.Next(_L("@SYMTestCaseID:PDS-STORE-CT-4064: RReadStream, RWriteStream, Pop() and Detach() test"));
419 MStreamBuf* mbuf = &desBuf;
421 _LIT8(KStr, "1234567890");
423 RTestWriteStream wstrm(mbuf);
427 TRAPD(err, wstrm.WriteL(KStr));
428 test(err == KErrNone);
429 TRAP(err, wstrm.CommitL());
430 test(err == KErrNone);
434 RTestReadStream rstrm(mbuf);
439 TRAP(err, rstrm.ReadL(buf2, KStr().Length()));
440 test(err == KErrNone);
444 test(KStr() == buf2);
448 // Test file-based streams.
450 GLDEF_C TInt E32Main()
453 setupTestDirectory();
457 test.Start(_L("Test file-based streams"));
458 TRAPD(r,testWriteL());
466 TRAP(r, StreamDetachTestL());
469 //deletion of data files must be before call to .End() - DEF047652
470 TDriveUnit drive(static_cast<TUint>(RFs::GetSystemDrive()));
472 parse.Set(drive.Name(), &KFileLocationSpec, NULL);
473 ::DeleteDataFile(parse.FullName());
479 delete TheTrapCleanup;
480 if (TheFs.Delete(TheTempFile)!=KErrNone)
481 test.Panic(_L("Deleting temp file"));