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.
20 const TInt KTestCleanupStack=0x20;
21 const TInt KTestExpandSize=0x20;
22 const TInt KTestGranularity=0x02;
24 // This is a path specification and should not be used as is
25 _LIT(KFileLocationSpec, "Z:\\STOR-TST\\T_STRM.DAT");
27 LOCAL_D RTest test(_L("t_storstrm"));
28 LOCAL_D CTrapCleanup* TheTrapCleanup;
30 LOCAL_D CFileStore* TheStore;
31 LOCAL_D CBufStore* TheBufStore;
32 LOCAL_D RStoreWriteStream TheSink;
33 LOCAL_D RStoreReadStream TheSource;
35 class THexEncodeFilter : public TStreamFilter
38 void Set(MStreamBuf* aBuf,TInt aMode);
40 TInt Capacity(TInt aMaxLength);
41 TInt FilterL(TAny* aPtr,TInt aMaxLength,const TUint8*& aFrom,const TUint8* anEnd);
44 static TText8 HexDigit(TUint aNibble);
45 static TText8 HexMSN(TUint aByte);
46 static TText8 HexLSN(TUint aByte);
51 class RHexDumpStream : public RWriteStream
55 RHexDumpStream(RWriteStream& aStream);
56 void Open(RWriteStream& aStream);
58 THexEncodeFilter iFilter;
60 class RHexLoadStream : public RReadStream
64 RHexLoadStream(RReadStream& aStream);
65 void Open(RReadStream& aStream);
67 THexEncodeFilter iFilter;
71 @SYMTestCaseID SYSLIB-STORE-CT-1205
72 @SYMTestCaseDesc Streaming in and out tests
74 @SYMTestActions Tests for copying and filtering
75 @SYMTestExpectedResults Test must not fail
78 LOCAL_C void testFixL(CArrayFix< TBuf<16> >& aFix)
80 test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1205 Test streaming in and out "));
81 TBuf<16> aa(_L("aa"));
83 TBuf<16> bb(_L("bbbb"));
85 TStreamId id=TheSink.CreateL(*TheStore);
87 TBuf<16> cc(_L("cccccc"));
90 id=TheSink.CreateL(*TheStore);
93 TheStore->SetRootL(id);
96 TheSource.OpenL(*TheStore,TheStore->Root());
99 test(aFix[0]==aa&&aFix[1]==bb&&aFix[2]==cc);
100 test.Printf(_L("%S %S %S\n"),&aa,&bb,&cc);
101 test.Printf(_L("%S %S %S\n"),&aFix[0],&aFix[1],&aFix[2]);
103 // Test copying and filtering.
105 CBufSeg* bufp=CBufSeg::NewL(KTestExpandSize);
106 CleanupStack::PushL(bufp);
108 TheSource.OpenL(*TheStore,id);
109 id=TheSink.CreateL(*TheStore);
111 RBufWriteStream bout(*bufp);
112 RHexDumpStream hout(bout);
113 hout.WriteL(TheSource,10);
114 RHexLoadStream hin(TheSource);
118 RBufReadStream bin(*bufp);
124 CleanupStack::PopAndDestroy();
129 @SYMTestCaseID PDS-STORE-CT-4018
130 @SYMTestCaseDesc Testing RStoreWriteStream::Append API
131 @SYMTestPriority High
132 @SYMTestActions Open file for append, add data to Store
133 @SYMTestExpectedResults Data is succesfully added to store
136 LOCAL_C void testAppendL()
138 test.Next(_L("PDS-STORE-CT-4018: Testing Append API"));
139 TheBufStore=CBufStore::NewLC(KTestExpandSize);
141 //TStreamId id=TheSink.CreateL(*TheBufStore);
142 TStreamId id = TheBufStore->ExtendL();
143 TRAPD(r, TheSink.AppendL(*TheBufStore, id));
145 TBuf<16> inbuf(_L("appendL"));
152 TheSource.OpenL(*TheBufStore,id);
157 test.Printf(_L("Write Buf: %S\n"),&inbuf);
158 test.Printf(_L("Read Buf: %S\n"),&outbuf);
160 CleanupStack::PopAndDestroy(TheBufStore);
164 RHexDumpStream::RHexDumpStream(RWriteStream& aStream)
169 void RHexDumpStream::Open(RWriteStream& aStream)
171 iFilter.Set(aStream.Sink(),THexEncodeFilter::EWrite);
172 RWriteStream::Attach(&iFilter);
175 RHexLoadStream::RHexLoadStream(RReadStream& aStream)
180 void RHexLoadStream::Open(RReadStream& aStream)
182 iFilter.Set(aStream.Source(),THexEncodeFilter::ERead);
183 RReadStream::Attach(&iFilter);
186 void THexEncodeFilter::Set(MStreamBuf* aBuf,TInt aMode)
188 TStreamFilter::Set(aBuf,aMode);
192 TInt THexEncodeFilter::Capacity(TInt aMaxLength)
194 __ASSERT_DEBUG(aMaxLength>0,User::Panic(_L("aargh!"),0));
195 return (iSpare.Eos()?aMaxLength+1:aMaxLength)>>1;
198 TInt THexEncodeFilter::FilterL(TAny* aPtr,TInt aMaxLength,const TUint8*& aFrom,const TUint8* anEnd)
200 __ASSERT_DEBUG(aMaxLength>0,User::Panic(_L("aargh!"),0));
201 TPtr8 hex((TText8*)aPtr,aMaxLength);
202 const TUint8* bin=aFrom;
208 TInt n=Min(aMaxLength>>1,anEnd-bin);
209 for (const TUint8* end=bin+n;bin<end;bin++)
212 hex.Append(HexMSN(byte));
213 hex.Append(HexLSN(byte));
215 if (aMaxLength>(n<<1)&&bin<anEnd)
218 hex.Append(HexMSN(byte));
223 __ASSERT_DEBUG(hex.Length()==hex.MaxLength()||bin==anEnd,User::Panic(_L("aargh!"),0));
228 void THexEncodeFilter::DoSynchL()
235 TText8 c=TText8(iSpare);
239 TStreamFilter::DoSynchL();
242 TText8 THexEncodeFilter::HexDigit(TUint aNibble)
244 return TText8(aNibble+(aNibble<10?'0':('a'-10)));
247 TText8 THexEncodeFilter::HexMSN(TUint aByte)
249 return HexDigit(aByte>>4);
252 TText8 THexEncodeFilter::HexLSN(TUint aByte)
254 return HexDigit(aByte&0x0f);
257 LOCAL_C void doMainL()
259 test.Start(_L("Creating Store"));
260 TParsePtrC parse(KFileLocationSpec);
262 // TheStore=CBufStore::NewLC(KTestExpandSize);
263 TheStore=CDirectFileStore::ReplaceLC(TheFs,parse.NameAndExt(),EFileRead|EFileWrite);
264 TheStore->SetTypeL(TUidType(KDirectFileStoreLayoutUid,TUid::Uid('H'|('E'<<8)|('X'<<16))));
266 test.Next(_L("Creating CArrayFixFlat"));
267 CArrayFixFlat< TBuf<16> >* pFixFlat=new(ELeave) CArrayFixFlat< TBuf<16> >(KTestGranularity);
268 CleanupStack::PushL(pFixFlat);
273 CleanupStack::PopAndDestroy(2,TheStore);
277 // Prepare the test directory.
279 LOCAL_C void setupTestDirectory()
281 TInt r=TheFs.Connect();
284 TDriveUnit drive(static_cast<TUint>(RFs::GetSystemDrive()));
286 parse.Set(drive.Name(), &KFileLocationSpec, NULL);
288 r=TheFs.MkDir(parse.DriveAndPath());
289 test(r==KErrNone||r==KErrAlreadyExists);
290 r=TheFs.SetSessionPath(parse.DriveAndPath());
295 // Initialise the cleanup stack.
297 LOCAL_C void setupCleanup()
299 TheTrapCleanup=CTrapCleanup::New();
300 test(TheTrapCleanup!=NULL);
303 for (TInt i=KTestCleanupStack;i>0;i--)\
304 CleanupStack::PushL((TAny*)1);\
306 CleanupStack::Pop(KTestCleanupStack);\
311 LOCAL_C void DeleteDataFile(const TDesC& aFullName)
314 TInt err = fsSession.Connect();
318 if(fsSession.Entry(aFullName, entry) == KErrNone)
320 RDebug::Print(_L("Deleting \"%S\" file.\n"), &aFullName);
321 err = fsSession.SetAtt(aFullName, 0, KEntryAttReadOnly);
324 RDebug::Print(_L("Error %d changing \"%S\" file attributes.\n"), err, &aFullName);
326 err = fsSession.Delete(aFullName);
329 RDebug::Print(_L("Error %d deleting \"%S\" file.\n"), err, &aFullName);
336 RDebug::Print(_L("Error %d connecting file session. File: %S.\n"), err, &aFullName);
341 // Test the streaming framework.
343 GLDEF_C TInt E32Main()
346 setupTestDirectory();
353 //deletion of data files must be before call to .End() - DEF047652
354 TDriveUnit drive(static_cast<TUint>(RFs::GetSystemDrive()));
356 parse.Set(drive.Name(), &KFileLocationSpec, NULL);
357 ::DeleteDataFile(parse.FullName());
363 delete TheTrapCleanup;