sl@0
|
1 |
// Copyright (c) 1998-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
// All rights reserved.
|
sl@0
|
3 |
// This component and the accompanying materials are made available
|
sl@0
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
sl@0
|
5 |
// which accompanies this distribution, and is available
|
sl@0
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
//
|
sl@0
|
8 |
// Initial Contributors:
|
sl@0
|
9 |
// Nokia Corporation - initial contribution.
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// Contributors:
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// Description:
|
sl@0
|
14 |
//
|
sl@0
|
15 |
|
sl@0
|
16 |
#include <s32mem.h>
|
sl@0
|
17 |
#include <s32file.h>
|
sl@0
|
18 |
#include <e32test.h>
|
sl@0
|
19 |
|
sl@0
|
20 |
const TInt KTestCleanupStack=0x20;
|
sl@0
|
21 |
// This is a path specification and should not be used as is
|
sl@0
|
22 |
_LIT(KFileLocationSpec, "Z:\\STOR-TST\\T_DELIM.DAT");
|
sl@0
|
23 |
|
sl@0
|
24 |
LOCAL_D CTrapCleanup* TheTrapCleanup;
|
sl@0
|
25 |
LOCAL_D RTest test(_L("t_stordelim"));
|
sl@0
|
26 |
LOCAL_D RFs TheFs;
|
sl@0
|
27 |
|
sl@0
|
28 |
LOCAL_C TInt ReadL(RReadStream& aStream,TUint8* aBuf,TInt aLength,TChar aDelim)
|
sl@0
|
29 |
{
|
sl@0
|
30 |
TPtr8 des(aBuf,aLength);
|
sl@0
|
31 |
aStream.ReadL(des,aDelim);
|
sl@0
|
32 |
return des.Length();
|
sl@0
|
33 |
}
|
sl@0
|
34 |
|
sl@0
|
35 |
LOCAL_C TInt ReadL(RReadStream& aStream,TUint16* aBuf,TInt aLength,TChar aDelim)
|
sl@0
|
36 |
{
|
sl@0
|
37 |
TPtr16 des(aBuf,aLength);
|
sl@0
|
38 |
aStream.ReadL(des,aDelim);
|
sl@0
|
39 |
return des.Length();
|
sl@0
|
40 |
}
|
sl@0
|
41 |
|
sl@0
|
42 |
LOCAL_C TPtrC8 KTestText8=_S8("One two three four five six seven eight nine ten eleven twelve.");
|
sl@0
|
43 |
LOCAL_C TPtrC16 KTestText16=_S16("One two three four five six seven eight nine ten eleven twelve.");
|
sl@0
|
44 |
LOCAL_C TPtrC8 KWhatever8=_S8("Whatever");
|
sl@0
|
45 |
LOCAL_C TPtrC16 KWhatever16=_S16("Whatever");
|
sl@0
|
46 |
|
sl@0
|
47 |
const TInt KBufSize=0x20;
|
sl@0
|
48 |
|
sl@0
|
49 |
/**
|
sl@0
|
50 |
@SYMTestCaseID SYSLIB-STORE-CT-1181
|
sl@0
|
51 |
@SYMTestCaseDesc Tests for reading from 8-bit delimited input
|
sl@0
|
52 |
@SYMTestPriority High
|
sl@0
|
53 |
@SYMTestActions Tests for RReadStream::ReadL() function.Check for KErrEof error flag
|
sl@0
|
54 |
@SYMTestExpectedResults Test must not fail
|
sl@0
|
55 |
@SYMREQ REQ0000
|
sl@0
|
56 |
*/
|
sl@0
|
57 |
LOCAL_C void testInput8L()
|
sl@0
|
58 |
{
|
sl@0
|
59 |
TUint8 buf[KBufSize];
|
sl@0
|
60 |
RDesReadStream strm(KWhatever8);
|
sl@0
|
61 |
TInt len=ReadL(strm,buf,KBufSize,'e');
|
sl@0
|
62 |
test (len==5);
|
sl@0
|
63 |
test (TPtrC8(buf,len)==_L8("Whate"));
|
sl@0
|
64 |
len=ReadL(strm,buf,KBufSize,'e');
|
sl@0
|
65 |
test (len==2);
|
sl@0
|
66 |
test (TPtrC8(buf,len)==_L8("ve"));
|
sl@0
|
67 |
len=ReadL(strm,buf,1,'q');
|
sl@0
|
68 |
test (len==1);
|
sl@0
|
69 |
test (TPtrC8(buf,len)==_L8("r"));
|
sl@0
|
70 |
TRAPD(r,ReadL(strm,buf,1,'r'));
|
sl@0
|
71 |
test (r==KErrEof);
|
sl@0
|
72 |
strm.Source()->SeekL(MStreamBuf::ERead,KStreamBeginning);
|
sl@0
|
73 |
TRAP(r,ReadL(strm,buf,KBufSize,'\n'));
|
sl@0
|
74 |
test (r==KErrEof);
|
sl@0
|
75 |
|
sl@0
|
76 |
TParsePtrC parse(KFileLocationSpec);
|
sl@0
|
77 |
CFileStore* store=CDirectFileStore::ReplaceLC(TheFs,parse.NameAndExt(),EFileWrite|EFileRead);
|
sl@0
|
78 |
store->SetTypeL(store->Layout());
|
sl@0
|
79 |
RStoreWriteStream out;
|
sl@0
|
80 |
TStreamId id=out.CreateLC(*store);
|
sl@0
|
81 |
out.WriteL(KTestText8);
|
sl@0
|
82 |
out.CommitL();
|
sl@0
|
83 |
CleanupStack::PopAndDestroy();
|
sl@0
|
84 |
|
sl@0
|
85 |
// small buffer
|
sl@0
|
86 |
store->CommitL();
|
sl@0
|
87 |
store->Reset(11);
|
sl@0
|
88 |
//
|
sl@0
|
89 |
RStoreReadStream in;
|
sl@0
|
90 |
in.OpenLC(*store,id);
|
sl@0
|
91 |
TInt tot=KTestText8.Length();
|
sl@0
|
92 |
TUint8 const* pp=KTestText8.Ptr();
|
sl@0
|
93 |
for (;;)
|
sl@0
|
94 |
{
|
sl@0
|
95 |
len=ReadL(in,buf,Min(tot,KBufSize),' ');
|
sl@0
|
96 |
test (len<=tot);
|
sl@0
|
97 |
test (Mem::Compare(buf,len,pp,len)==0);
|
sl@0
|
98 |
pp+=len;
|
sl@0
|
99 |
tot-=len;
|
sl@0
|
100 |
if (tot==0)
|
sl@0
|
101 |
break;
|
sl@0
|
102 |
test (buf[len-1]==' ');
|
sl@0
|
103 |
}
|
sl@0
|
104 |
test (buf[len-1]=='.');
|
sl@0
|
105 |
TRAP(r,ReadL(in,buf,1,' '));
|
sl@0
|
106 |
test (r==KErrEof);
|
sl@0
|
107 |
CleanupStack::PopAndDestroy();
|
sl@0
|
108 |
//
|
sl@0
|
109 |
in.OpenLC(*store,id);
|
sl@0
|
110 |
tot=0;
|
sl@0
|
111 |
do
|
sl@0
|
112 |
{
|
sl@0
|
113 |
len=ReadL(in,buf,KBufSize,'.');
|
sl@0
|
114 |
tot+=len;
|
sl@0
|
115 |
} while (buf[len-1]!='.');
|
sl@0
|
116 |
test (tot==KTestText8.Length());
|
sl@0
|
117 |
TRAP(r,ReadL(in,buf,1,' '));
|
sl@0
|
118 |
test (r==KErrEof);
|
sl@0
|
119 |
//
|
sl@0
|
120 |
CleanupStack::PopAndDestroy(2);
|
sl@0
|
121 |
}
|
sl@0
|
122 |
|
sl@0
|
123 |
/**
|
sl@0
|
124 |
@SYMTestCaseID SYSLIB-STORE-CT-1182
|
sl@0
|
125 |
@SYMTestCaseDesc Tests for reading from 16-bit delimited input.
|
sl@0
|
126 |
@SYMTestPriority High
|
sl@0
|
127 |
@SYMTestActions Tests for RReadStream::ReadL() function.Check for KErrEof error flag.
|
sl@0
|
128 |
@SYMTestExpectedResults Test must not fail
|
sl@0
|
129 |
@SYMREQ REQ0000
|
sl@0
|
130 |
*/
|
sl@0
|
131 |
LOCAL_C void testInput16L()
|
sl@0
|
132 |
{
|
sl@0
|
133 |
TUint16 buf[KBufSize];
|
sl@0
|
134 |
RDesReadStream strm(TPtrC8((TUint8 const*)KWhatever16.Ptr(),KWhatever16.Size()));
|
sl@0
|
135 |
TInt len=ReadL(strm,buf,KBufSize,'e');
|
sl@0
|
136 |
test (len==5);
|
sl@0
|
137 |
test (TPtrC16(buf,len)==_L16("Whate"));
|
sl@0
|
138 |
len=ReadL(strm,buf,KBufSize,'e');
|
sl@0
|
139 |
test (len==2);
|
sl@0
|
140 |
test (TPtrC16(buf,len)==_L16("ve"));
|
sl@0
|
141 |
len=ReadL(strm,buf,1,'q');
|
sl@0
|
142 |
test (len==1);
|
sl@0
|
143 |
test (TPtrC16(buf,len)==_L16("r"));
|
sl@0
|
144 |
TRAPD(r,ReadL(strm,buf,1,'r'));
|
sl@0
|
145 |
test (r==KErrEof);
|
sl@0
|
146 |
strm.Source()->SeekL(MStreamBuf::ERead,KStreamBeginning);
|
sl@0
|
147 |
TRAP(r,ReadL(strm,buf,KBufSize,'\n'));
|
sl@0
|
148 |
test (r==KErrEof);
|
sl@0
|
149 |
|
sl@0
|
150 |
TParsePtrC parse(KFileLocationSpec);
|
sl@0
|
151 |
CFileStore* store=CDirectFileStore::OpenLC(TheFs,parse.NameAndExt(),EFileWrite|EFileRead);
|
sl@0
|
152 |
RStoreWriteStream out;
|
sl@0
|
153 |
TStreamId id=out.CreateLC(*store);
|
sl@0
|
154 |
out.WriteL(KTestText16);
|
sl@0
|
155 |
out.CommitL();
|
sl@0
|
156 |
CleanupStack::PopAndDestroy();
|
sl@0
|
157 |
|
sl@0
|
158 |
// small buffer
|
sl@0
|
159 |
store->CommitL();
|
sl@0
|
160 |
store->Reset(11);
|
sl@0
|
161 |
//
|
sl@0
|
162 |
RStoreReadStream in;
|
sl@0
|
163 |
in.OpenLC(*store,id);
|
sl@0
|
164 |
TInt tot=KTestText16.Length();
|
sl@0
|
165 |
TUint16 const* pp=KTestText16.Ptr();
|
sl@0
|
166 |
for (;;)
|
sl@0
|
167 |
{
|
sl@0
|
168 |
len=ReadL(in,buf,Min(tot,KBufSize),' ');
|
sl@0
|
169 |
test (len<=tot);
|
sl@0
|
170 |
test (Mem::Compare(buf,len,pp,len)==0);
|
sl@0
|
171 |
pp+=len;
|
sl@0
|
172 |
tot-=len;
|
sl@0
|
173 |
if (tot==0)
|
sl@0
|
174 |
break;
|
sl@0
|
175 |
test (buf[len-1]==' ');
|
sl@0
|
176 |
}
|
sl@0
|
177 |
test (buf[len-1]=='.');
|
sl@0
|
178 |
TRAP(r,ReadL(in,buf,1,' '));
|
sl@0
|
179 |
test (r==KErrEof);
|
sl@0
|
180 |
CleanupStack::PopAndDestroy();
|
sl@0
|
181 |
//
|
sl@0
|
182 |
in.OpenLC(*store,id);
|
sl@0
|
183 |
tot=0;
|
sl@0
|
184 |
do
|
sl@0
|
185 |
{
|
sl@0
|
186 |
len=ReadL(in,buf,KBufSize,'.');
|
sl@0
|
187 |
tot+=len;
|
sl@0
|
188 |
} while (buf[len-1]!='.');
|
sl@0
|
189 |
test (tot==KTestText16.Length());
|
sl@0
|
190 |
TRAP(r,ReadL(in,buf,1,' '));
|
sl@0
|
191 |
test (r==KErrEof);
|
sl@0
|
192 |
//
|
sl@0
|
193 |
CleanupStack::PopAndDestroy(2);
|
sl@0
|
194 |
}
|
sl@0
|
195 |
|
sl@0
|
196 |
//
|
sl@0
|
197 |
// Prepare the test directory.
|
sl@0
|
198 |
//
|
sl@0
|
199 |
LOCAL_C void setupTestDirectory()
|
sl@0
|
200 |
{
|
sl@0
|
201 |
TInt r=TheFs.Connect();
|
sl@0
|
202 |
test(r==KErrNone);
|
sl@0
|
203 |
//
|
sl@0
|
204 |
TDriveUnit drive(static_cast<TUint>(RFs::GetSystemDrive()));
|
sl@0
|
205 |
TParse parse;
|
sl@0
|
206 |
parse.Set(drive.Name(), &KFileLocationSpec, NULL);
|
sl@0
|
207 |
|
sl@0
|
208 |
r=TheFs.MkDir(parse.DriveAndPath());
|
sl@0
|
209 |
test(r==KErrNone||r==KErrAlreadyExists);
|
sl@0
|
210 |
r=TheFs.SetSessionPath(parse.DriveAndPath());
|
sl@0
|
211 |
test(r==KErrNone);
|
sl@0
|
212 |
}
|
sl@0
|
213 |
|
sl@0
|
214 |
//
|
sl@0
|
215 |
// Initialise the cleanup stack.
|
sl@0
|
216 |
//
|
sl@0
|
217 |
LOCAL_C void setupCleanup()
|
sl@0
|
218 |
{
|
sl@0
|
219 |
TheTrapCleanup=CTrapCleanup::New();
|
sl@0
|
220 |
test(TheTrapCleanup!=NULL);
|
sl@0
|
221 |
TRAPD(r,\
|
sl@0
|
222 |
{\
|
sl@0
|
223 |
for (TInt i=KTestCleanupStack;i>0;i--)\
|
sl@0
|
224 |
CleanupStack::PushL((TAny*)1);\
|
sl@0
|
225 |
test(r==KErrNone);\
|
sl@0
|
226 |
CleanupStack::Pop(KTestCleanupStack);\
|
sl@0
|
227 |
});
|
sl@0
|
228 |
test(r==KErrNone);
|
sl@0
|
229 |
}
|
sl@0
|
230 |
|
sl@0
|
231 |
LOCAL_C void DeleteDataFile(const TDesC& aFullName)
|
sl@0
|
232 |
{
|
sl@0
|
233 |
RFs fsSession;
|
sl@0
|
234 |
TInt err = fsSession.Connect();
|
sl@0
|
235 |
if(err == KErrNone)
|
sl@0
|
236 |
{
|
sl@0
|
237 |
TEntry entry;
|
sl@0
|
238 |
if(fsSession.Entry(aFullName, entry) == KErrNone)
|
sl@0
|
239 |
{
|
sl@0
|
240 |
RDebug::Print(_L("Deleting \"%S\" file.\n"), &aFullName);
|
sl@0
|
241 |
err = fsSession.SetAtt(aFullName, 0, KEntryAttReadOnly);
|
sl@0
|
242 |
if(err != KErrNone)
|
sl@0
|
243 |
{
|
sl@0
|
244 |
RDebug::Print(_L("Error %d changing \"%S\" file attributes.\n"), err, &aFullName);
|
sl@0
|
245 |
}
|
sl@0
|
246 |
err = fsSession.Delete(aFullName);
|
sl@0
|
247 |
if(err != KErrNone)
|
sl@0
|
248 |
{
|
sl@0
|
249 |
RDebug::Print(_L("Error %d deleting \"%S\" file.\n"), err, &aFullName);
|
sl@0
|
250 |
}
|
sl@0
|
251 |
}
|
sl@0
|
252 |
fsSession.Close();
|
sl@0
|
253 |
}
|
sl@0
|
254 |
else
|
sl@0
|
255 |
{
|
sl@0
|
256 |
RDebug::Print(_L("Error %d connecting file session. File: %S.\n"), err, &aFullName);
|
sl@0
|
257 |
}
|
sl@0
|
258 |
}
|
sl@0
|
259 |
|
sl@0
|
260 |
//
|
sl@0
|
261 |
// Test file-based streams.
|
sl@0
|
262 |
//
|
sl@0
|
263 |
GLDEF_C TInt E32Main()
|
sl@0
|
264 |
{
|
sl@0
|
265 |
test.Title();
|
sl@0
|
266 |
setupTestDirectory();
|
sl@0
|
267 |
setupCleanup();
|
sl@0
|
268 |
__UHEAP_MARK;
|
sl@0
|
269 |
//
|
sl@0
|
270 |
test.Start(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1181 Test 8-bit delimited input "));
|
sl@0
|
271 |
TRAPD(r,testInput8L());
|
sl@0
|
272 |
test (r==KErrNone);
|
sl@0
|
273 |
test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1182 Test 16-bit delimited input "));
|
sl@0
|
274 |
TRAP(r,testInput16L());
|
sl@0
|
275 |
test (r==KErrNone);
|
sl@0
|
276 |
|
sl@0
|
277 |
//deletion of data files must be before call to .End() - DEF047652
|
sl@0
|
278 |
TDriveUnit drive(static_cast<TUint>(RFs::GetSystemDrive()));
|
sl@0
|
279 |
TParse parse;
|
sl@0
|
280 |
parse.Set(drive.Name(), &KFileLocationSpec, NULL);
|
sl@0
|
281 |
::DeleteDataFile(parse.FullName());
|
sl@0
|
282 |
|
sl@0
|
283 |
test.End();
|
sl@0
|
284 |
//
|
sl@0
|
285 |
__UHEAP_MARKEND;
|
sl@0
|
286 |
|
sl@0
|
287 |
delete TheTrapCleanup;
|
sl@0
|
288 |
TheFs.Close();
|
sl@0
|
289 |
test.Close();
|
sl@0
|
290 |
return 0;
|
sl@0
|
291 |
}
|
sl@0
|
292 |
|