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 // This is a path specification and should not be used as is
22 _LIT(KFileLocationSpec, "Z:\\STOR-TST\\T_DELIM.DAT");
24 LOCAL_D CTrapCleanup* TheTrapCleanup;
25 LOCAL_D RTest test(_L("t_stordelim"));
28 LOCAL_C TInt ReadL(RReadStream& aStream,TUint8* aBuf,TInt aLength,TChar aDelim)
30 TPtr8 des(aBuf,aLength);
31 aStream.ReadL(des,aDelim);
35 LOCAL_C TInt ReadL(RReadStream& aStream,TUint16* aBuf,TInt aLength,TChar aDelim)
37 TPtr16 des(aBuf,aLength);
38 aStream.ReadL(des,aDelim);
42 LOCAL_C TPtrC8 KTestText8=_S8("One two three four five six seven eight nine ten eleven twelve.");
43 LOCAL_C TPtrC16 KTestText16=_S16("One two three four five six seven eight nine ten eleven twelve.");
44 LOCAL_C TPtrC8 KWhatever8=_S8("Whatever");
45 LOCAL_C TPtrC16 KWhatever16=_S16("Whatever");
47 const TInt KBufSize=0x20;
50 @SYMTestCaseID SYSLIB-STORE-CT-1181
51 @SYMTestCaseDesc Tests for reading from 8-bit delimited input
53 @SYMTestActions Tests for RReadStream::ReadL() function.Check for KErrEof error flag
54 @SYMTestExpectedResults Test must not fail
57 LOCAL_C void testInput8L()
60 RDesReadStream strm(KWhatever8);
61 TInt len=ReadL(strm,buf,KBufSize,'e');
63 test (TPtrC8(buf,len)==_L8("Whate"));
64 len=ReadL(strm,buf,KBufSize,'e');
66 test (TPtrC8(buf,len)==_L8("ve"));
67 len=ReadL(strm,buf,1,'q');
69 test (TPtrC8(buf,len)==_L8("r"));
70 TRAPD(r,ReadL(strm,buf,1,'r'));
72 strm.Source()->SeekL(MStreamBuf::ERead,KStreamBeginning);
73 TRAP(r,ReadL(strm,buf,KBufSize,'\n'));
76 TParsePtrC parse(KFileLocationSpec);
77 CFileStore* store=CDirectFileStore::ReplaceLC(TheFs,parse.NameAndExt(),EFileWrite|EFileRead);
78 store->SetTypeL(store->Layout());
79 RStoreWriteStream out;
80 TStreamId id=out.CreateLC(*store);
81 out.WriteL(KTestText8);
83 CleanupStack::PopAndDestroy();
91 TInt tot=KTestText8.Length();
92 TUint8 const* pp=KTestText8.Ptr();
95 len=ReadL(in,buf,Min(tot,KBufSize),' ');
97 test (Mem::Compare(buf,len,pp,len)==0);
102 test (buf[len-1]==' ');
104 test (buf[len-1]=='.');
105 TRAP(r,ReadL(in,buf,1,' '));
107 CleanupStack::PopAndDestroy();
109 in.OpenLC(*store,id);
113 len=ReadL(in,buf,KBufSize,'.');
115 } while (buf[len-1]!='.');
116 test (tot==KTestText8.Length());
117 TRAP(r,ReadL(in,buf,1,' '));
120 CleanupStack::PopAndDestroy(2);
124 @SYMTestCaseID SYSLIB-STORE-CT-1182
125 @SYMTestCaseDesc Tests for reading from 16-bit delimited input.
126 @SYMTestPriority High
127 @SYMTestActions Tests for RReadStream::ReadL() function.Check for KErrEof error flag.
128 @SYMTestExpectedResults Test must not fail
131 LOCAL_C void testInput16L()
133 TUint16 buf[KBufSize];
134 RDesReadStream strm(TPtrC8((TUint8 const*)KWhatever16.Ptr(),KWhatever16.Size()));
135 TInt len=ReadL(strm,buf,KBufSize,'e');
137 test (TPtrC16(buf,len)==_L16("Whate"));
138 len=ReadL(strm,buf,KBufSize,'e');
140 test (TPtrC16(buf,len)==_L16("ve"));
141 len=ReadL(strm,buf,1,'q');
143 test (TPtrC16(buf,len)==_L16("r"));
144 TRAPD(r,ReadL(strm,buf,1,'r'));
146 strm.Source()->SeekL(MStreamBuf::ERead,KStreamBeginning);
147 TRAP(r,ReadL(strm,buf,KBufSize,'\n'));
150 TParsePtrC parse(KFileLocationSpec);
151 CFileStore* store=CDirectFileStore::OpenLC(TheFs,parse.NameAndExt(),EFileWrite|EFileRead);
152 RStoreWriteStream out;
153 TStreamId id=out.CreateLC(*store);
154 out.WriteL(KTestText16);
156 CleanupStack::PopAndDestroy();
163 in.OpenLC(*store,id);
164 TInt tot=KTestText16.Length();
165 TUint16 const* pp=KTestText16.Ptr();
168 len=ReadL(in,buf,Min(tot,KBufSize),' ');
170 test (Mem::Compare(buf,len,pp,len)==0);
175 test (buf[len-1]==' ');
177 test (buf[len-1]=='.');
178 TRAP(r,ReadL(in,buf,1,' '));
180 CleanupStack::PopAndDestroy();
182 in.OpenLC(*store,id);
186 len=ReadL(in,buf,KBufSize,'.');
188 } while (buf[len-1]!='.');
189 test (tot==KTestText16.Length());
190 TRAP(r,ReadL(in,buf,1,' '));
193 CleanupStack::PopAndDestroy(2);
197 // Prepare the test directory.
199 LOCAL_C void setupTestDirectory()
201 TInt r=TheFs.Connect();
204 TDriveUnit drive(static_cast<TUint>(RFs::GetSystemDrive()));
206 parse.Set(drive.Name(), &KFileLocationSpec, NULL);
208 r=TheFs.MkDir(parse.DriveAndPath());
209 test(r==KErrNone||r==KErrAlreadyExists);
210 r=TheFs.SetSessionPath(parse.DriveAndPath());
215 // Initialise the cleanup stack.
217 LOCAL_C void setupCleanup()
219 TheTrapCleanup=CTrapCleanup::New();
220 test(TheTrapCleanup!=NULL);
223 for (TInt i=KTestCleanupStack;i>0;i--)\
224 CleanupStack::PushL((TAny*)1);\
226 CleanupStack::Pop(KTestCleanupStack);\
231 LOCAL_C void DeleteDataFile(const TDesC& aFullName)
234 TInt err = fsSession.Connect();
238 if(fsSession.Entry(aFullName, entry) == KErrNone)
240 RDebug::Print(_L("Deleting \"%S\" file.\n"), &aFullName);
241 err = fsSession.SetAtt(aFullName, 0, KEntryAttReadOnly);
244 RDebug::Print(_L("Error %d changing \"%S\" file attributes.\n"), err, &aFullName);
246 err = fsSession.Delete(aFullName);
249 RDebug::Print(_L("Error %d deleting \"%S\" file.\n"), err, &aFullName);
256 RDebug::Print(_L("Error %d connecting file session. File: %S.\n"), err, &aFullName);
261 // Test file-based streams.
263 GLDEF_C TInt E32Main()
266 setupTestDirectory();
270 test.Start(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1181 Test 8-bit delimited input "));
271 TRAPD(r,testInput8L());
273 test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1182 Test 16-bit delimited input "));
274 TRAP(r,testInput16L());
277 //deletion of data files must be before call to .End() - DEF047652
278 TDriveUnit drive(static_cast<TUint>(RFs::GetSystemDrive()));
280 parse.Set(drive.Name(), &KFileLocationSpec, NULL);
281 ::DeleteDataFile(parse.FullName());
287 delete TheTrapCleanup;