sl@0
|
1 |
// Copyright (c) 1998-2010 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 <e32test.h>
|
sl@0
|
18 |
#include <s32btree.h>
|
sl@0
|
19 |
#include "UB_STD.H"
|
sl@0
|
20 |
|
sl@0
|
21 |
const TInt KTestCleanupStack=0x20;
|
sl@0
|
22 |
const TInt KTestExpandSize=0x20;
|
sl@0
|
23 |
const TInt KTestGranularity=0x02;
|
sl@0
|
24 |
|
sl@0
|
25 |
const TUint8 KMidTUint8=KMaxTUint8/2;
|
sl@0
|
26 |
const TUint16 KMidTUint16=KMaxTUint16/2;
|
sl@0
|
27 |
const TUint32 KMidTUint32=KMaxTUint32/2;
|
sl@0
|
28 |
|
sl@0
|
29 |
LOCAL_D CTrapCleanup* TheTrapCleanup;
|
sl@0
|
30 |
LOCAL_D RTest test(_L("t_storconv"));
|
sl@0
|
31 |
|
sl@0
|
32 |
|
sl@0
|
33 |
template <class T1,class T2>
|
sl@0
|
34 |
void testCopyL(T1& aCopy,const T2& anOriginal)
|
sl@0
|
35 |
{
|
sl@0
|
36 |
CBufSeg* buf=0;
|
sl@0
|
37 |
TRAPD(r,buf=CBufSeg::NewL(KTestExpandSize));
|
sl@0
|
38 |
if (r!=KErrNone)
|
sl@0
|
39 |
test.Panic(_L("Allocating buffer"));
|
sl@0
|
40 |
//
|
sl@0
|
41 |
// Write anOriginal out to the buffer.
|
sl@0
|
42 |
//
|
sl@0
|
43 |
RBufWriteStream out;
|
sl@0
|
44 |
out.Append(*buf);
|
sl@0
|
45 |
TRAP(r,out<<anOriginal);
|
sl@0
|
46 |
test(r==KErrNone);
|
sl@0
|
47 |
TRAP(r,out.CommitL());
|
sl@0
|
48 |
if (r!=KErrNone)
|
sl@0
|
49 |
test.Panic(_L("Committing write stream"));
|
sl@0
|
50 |
//
|
sl@0
|
51 |
// Read anOriginal in from the buffer.
|
sl@0
|
52 |
//
|
sl@0
|
53 |
RBufReadStream in(*buf);
|
sl@0
|
54 |
TRAP(r,in>>aCopy);
|
sl@0
|
55 |
test(r==KErrNone);
|
sl@0
|
56 |
//
|
sl@0
|
57 |
// See if it's consumed the lot.
|
sl@0
|
58 |
//
|
sl@0
|
59 |
TUint8 b;
|
sl@0
|
60 |
test(in.Source()->ReadL(&b,1)==0);
|
sl@0
|
61 |
//
|
sl@0
|
62 |
delete buf;
|
sl@0
|
63 |
}
|
sl@0
|
64 |
|
sl@0
|
65 |
//
|
sl@0
|
66 |
// Clone aDes using memory-based streams.
|
sl@0
|
67 |
//
|
sl@0
|
68 |
template <class T>
|
sl@0
|
69 |
HBufC8* testClone_HBufC8L(const T& aDes,TInt aMaxLength)
|
sl@0
|
70 |
{
|
sl@0
|
71 |
CBufSeg* buf=0;
|
sl@0
|
72 |
TRAPD(r,buf=CBufSeg::NewL(KTestExpandSize));
|
sl@0
|
73 |
if (r!=KErrNone)
|
sl@0
|
74 |
test.Panic(_L("Allocating buffer"));
|
sl@0
|
75 |
//
|
sl@0
|
76 |
// Write anOriginal out to the buffer.
|
sl@0
|
77 |
//
|
sl@0
|
78 |
RBufWriteStream out;
|
sl@0
|
79 |
out.Append(*buf);
|
sl@0
|
80 |
TRAP(r,out<<aDes);
|
sl@0
|
81 |
test(r==KErrNone);
|
sl@0
|
82 |
TRAP(r,out.CommitL());
|
sl@0
|
83 |
if (r!=KErrNone)
|
sl@0
|
84 |
test.Panic(_L("Committing write stream"));
|
sl@0
|
85 |
//
|
sl@0
|
86 |
// Read anOriginal in from the buffer.
|
sl@0
|
87 |
//
|
sl@0
|
88 |
RBufReadStream in(*buf);
|
sl@0
|
89 |
HBufC8* clone=NULL;
|
sl@0
|
90 |
TRAP(r,clone=HBufC8::NewL(in,aMaxLength));
|
sl@0
|
91 |
if (aMaxLength<aDes.Length())
|
sl@0
|
92 |
test(r==KErrOverflow);
|
sl@0
|
93 |
else
|
sl@0
|
94 |
{
|
sl@0
|
95 |
test(r==KErrNone);
|
sl@0
|
96 |
test(clone!=NULL);
|
sl@0
|
97 |
//
|
sl@0
|
98 |
// See if it's consumed the lot.
|
sl@0
|
99 |
//
|
sl@0
|
100 |
TUint8 b;
|
sl@0
|
101 |
test(in.Source()->ReadL(&b,1)==0);
|
sl@0
|
102 |
}
|
sl@0
|
103 |
//
|
sl@0
|
104 |
delete buf;
|
sl@0
|
105 |
return clone;
|
sl@0
|
106 |
}
|
sl@0
|
107 |
|
sl@0
|
108 |
//
|
sl@0
|
109 |
// Clone aDes using memory-based streams.
|
sl@0
|
110 |
//
|
sl@0
|
111 |
template <class T>
|
sl@0
|
112 |
HBufC16* testClone_HBufC16L(const T& aDes,TInt aMaxLength)
|
sl@0
|
113 |
{
|
sl@0
|
114 |
CBufSeg* buf=0;
|
sl@0
|
115 |
TRAPD(r,buf=CBufSeg::NewL(KTestExpandSize));
|
sl@0
|
116 |
if (r!=KErrNone)
|
sl@0
|
117 |
test.Panic(_L("Allocating buffer"));
|
sl@0
|
118 |
//
|
sl@0
|
119 |
// Write anOriginal out to the buffer.
|
sl@0
|
120 |
//
|
sl@0
|
121 |
RBufWriteStream out;
|
sl@0
|
122 |
out.Append(*buf);
|
sl@0
|
123 |
TRAP(r,out<<aDes);
|
sl@0
|
124 |
test(r==KErrNone);
|
sl@0
|
125 |
TRAP(r,out.CommitL());
|
sl@0
|
126 |
if (r!=KErrNone)
|
sl@0
|
127 |
test.Panic(_L("Committing write stream"));
|
sl@0
|
128 |
//
|
sl@0
|
129 |
// Read anOriginal in from the buffer.
|
sl@0
|
130 |
//
|
sl@0
|
131 |
RBufReadStream in(*buf);
|
sl@0
|
132 |
HBufC16* clone=NULL;
|
sl@0
|
133 |
TRAP(r,clone=HBufC16::NewL(in,aMaxLength));
|
sl@0
|
134 |
if (aMaxLength<aDes.Length())
|
sl@0
|
135 |
test(r==KErrOverflow);
|
sl@0
|
136 |
else
|
sl@0
|
137 |
{
|
sl@0
|
138 |
test(r==KErrNone);
|
sl@0
|
139 |
test(clone!=NULL);
|
sl@0
|
140 |
//
|
sl@0
|
141 |
// See if it's consumed the lot.
|
sl@0
|
142 |
//
|
sl@0
|
143 |
TUint8 b;
|
sl@0
|
144 |
test(in.Source()->ReadL(&b,1)==0);
|
sl@0
|
145 |
}
|
sl@0
|
146 |
//
|
sl@0
|
147 |
delete buf;
|
sl@0
|
148 |
return clone;
|
sl@0
|
149 |
}
|
sl@0
|
150 |
|
sl@0
|
151 |
//
|
sl@0
|
152 |
// Clone aDes exactly using memory-based streams.
|
sl@0
|
153 |
//
|
sl@0
|
154 |
template <class T>
|
sl@0
|
155 |
HBufC8* testClone_HBufC8L(const T& aDes)
|
sl@0
|
156 |
{
|
sl@0
|
157 |
return testClone_HBufC8L(aDes,aDes.Length());
|
sl@0
|
158 |
}
|
sl@0
|
159 |
|
sl@0
|
160 |
//
|
sl@0
|
161 |
// Clone aDes exactly using memory-based streams.
|
sl@0
|
162 |
//
|
sl@0
|
163 |
template <class T>
|
sl@0
|
164 |
HBufC16* testClone_HBufC16L(const T& aDes)
|
sl@0
|
165 |
{
|
sl@0
|
166 |
return testClone_HBufC16L(aDes,aDes.Length());
|
sl@0
|
167 |
}
|
sl@0
|
168 |
|
sl@0
|
169 |
/**
|
sl@0
|
170 |
@SYMTestCaseID SYSLIB-STORE-CT-1207
|
sl@0
|
171 |
@SYMTestCaseDesc Streaming signed integers test
|
sl@0
|
172 |
@SYMTestPriority High
|
sl@0
|
173 |
@SYMTestActions Tests for streaming 8,16,32,64 bit signed integers.
|
sl@0
|
174 |
@SYMTestExpectedResults Test must not fail
|
sl@0
|
175 |
@SYMREQ REQ0000
|
sl@0
|
176 |
*/
|
sl@0
|
177 |
LOCAL_C void testIntL()
|
sl@0
|
178 |
{
|
sl@0
|
179 |
test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1207 Streaming TInt8 "));
|
sl@0
|
180 |
TInt8 int8=0;
|
sl@0
|
181 |
testCopyL(int8,TInt8(KMinTInt8));
|
sl@0
|
182 |
test(int8==KMinTInt8);
|
sl@0
|
183 |
testCopyL(int8,TInt8(KMinTInt8+1));
|
sl@0
|
184 |
test(int8==KMinTInt8+1);
|
sl@0
|
185 |
testCopyL(int8,TInt8(-2));
|
sl@0
|
186 |
test(int8==-2);
|
sl@0
|
187 |
testCopyL(int8,TInt8(-1));
|
sl@0
|
188 |
test(int8==-1);
|
sl@0
|
189 |
testCopyL(int8,TInt8(0));
|
sl@0
|
190 |
test(int8==0);
|
sl@0
|
191 |
testCopyL(int8,TInt8(1));
|
sl@0
|
192 |
test(int8==1);
|
sl@0
|
193 |
testCopyL(int8,TInt8(2));
|
sl@0
|
194 |
test(int8==2);
|
sl@0
|
195 |
testCopyL(int8,TInt8(KMaxTInt8-1));
|
sl@0
|
196 |
test(int8==KMaxTInt8-1);
|
sl@0
|
197 |
testCopyL(int8,TInt8(KMaxTInt8));
|
sl@0
|
198 |
test(int8==KMaxTInt8);
|
sl@0
|
199 |
//
|
sl@0
|
200 |
test.Next(_L("Streaming TInt16"));
|
sl@0
|
201 |
TInt16 int16=0;
|
sl@0
|
202 |
testCopyL(int16,TInt16(KMinTInt16));
|
sl@0
|
203 |
test(int16==KMinTInt16);
|
sl@0
|
204 |
testCopyL(int16,TInt16(KMinTInt16+1));
|
sl@0
|
205 |
test(int16==KMinTInt16+1);
|
sl@0
|
206 |
testCopyL(int16,TInt16(-2));
|
sl@0
|
207 |
test(int16==-2);
|
sl@0
|
208 |
testCopyL(int16,TInt16(-1));
|
sl@0
|
209 |
test(int16==-1);
|
sl@0
|
210 |
testCopyL(int16,TInt16(0));
|
sl@0
|
211 |
test(int16==0);
|
sl@0
|
212 |
testCopyL(int16,TInt16(1));
|
sl@0
|
213 |
test(int16==1);
|
sl@0
|
214 |
testCopyL(int16,TInt16(2));
|
sl@0
|
215 |
test(int16==2);
|
sl@0
|
216 |
testCopyL(int16,TInt16(KMaxTInt16-1));
|
sl@0
|
217 |
test(int16==KMaxTInt16-1);
|
sl@0
|
218 |
testCopyL(int16,TInt16(KMaxTInt16));
|
sl@0
|
219 |
test(int16==KMaxTInt16);
|
sl@0
|
220 |
//
|
sl@0
|
221 |
test.Next(_L("Streaming TInt32"));
|
sl@0
|
222 |
TInt32 int32=0;
|
sl@0
|
223 |
testCopyL(int32,TInt32(KMinTInt32));
|
sl@0
|
224 |
test(int32==KMinTInt32);
|
sl@0
|
225 |
testCopyL(int32,TInt32(KMinTInt32+1));
|
sl@0
|
226 |
test(int32==KMinTInt32+1);
|
sl@0
|
227 |
testCopyL(int32,TInt32(-2));
|
sl@0
|
228 |
test(int32==-2);
|
sl@0
|
229 |
testCopyL(int32,TInt32(-1));
|
sl@0
|
230 |
test(int32==-1);
|
sl@0
|
231 |
testCopyL(int32,TInt32(0));
|
sl@0
|
232 |
test(int32==0);
|
sl@0
|
233 |
testCopyL(int32,TInt32(1));
|
sl@0
|
234 |
test(int32==1);
|
sl@0
|
235 |
testCopyL(int32,TInt32(2));
|
sl@0
|
236 |
test(int32==2);
|
sl@0
|
237 |
testCopyL(int32,TInt32(KMaxTInt32-1));
|
sl@0
|
238 |
test(int32==KMaxTInt32-1);
|
sl@0
|
239 |
testCopyL(int32,TInt32(KMaxTInt32));
|
sl@0
|
240 |
test(int32==KMaxTInt32);
|
sl@0
|
241 |
//
|
sl@0
|
242 |
test.Next(_L("Streaming TInt64"));
|
sl@0
|
243 |
TInt64 int64=0;
|
sl@0
|
244 |
testCopyL(int64,KMinTInt64);
|
sl@0
|
245 |
test(int64==KMinTInt64);
|
sl@0
|
246 |
testCopyL(int64,KMinTInt64+1);
|
sl@0
|
247 |
test(int64==KMinTInt64+1);
|
sl@0
|
248 |
testCopyL(int64,TInt64(-2));
|
sl@0
|
249 |
test(int64==-2);
|
sl@0
|
250 |
testCopyL(int64,TInt64(-1));
|
sl@0
|
251 |
test(int64==-1);
|
sl@0
|
252 |
testCopyL(int64,TInt64(0));
|
sl@0
|
253 |
test(int64==0);
|
sl@0
|
254 |
testCopyL(int64,TInt64(1));
|
sl@0
|
255 |
test(int64==1);
|
sl@0
|
256 |
testCopyL(int64,TInt64(2));
|
sl@0
|
257 |
test(int64==2);
|
sl@0
|
258 |
testCopyL(int64,KMaxTInt64-1);
|
sl@0
|
259 |
test(int64==KMaxTInt64-1);
|
sl@0
|
260 |
testCopyL(int64,KMaxTInt64);
|
sl@0
|
261 |
test(int64==KMaxTInt64);
|
sl@0
|
262 |
}
|
sl@0
|
263 |
|
sl@0
|
264 |
/**
|
sl@0
|
265 |
@SYMTestCaseID SYSLIB-STORE-CT-1208
|
sl@0
|
266 |
@SYMTestCaseDesc Streaming unsigned integers test
|
sl@0
|
267 |
@SYMTestPriority High
|
sl@0
|
268 |
@SYMTestActions Tests for streaming 8,16,32 bit unsigned integers.
|
sl@0
|
269 |
@SYMTestExpectedResults Test must not fail
|
sl@0
|
270 |
@SYMREQ REQ0000
|
sl@0
|
271 |
*/
|
sl@0
|
272 |
LOCAL_C void testUintL()
|
sl@0
|
273 |
{
|
sl@0
|
274 |
test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1208 Streaming TUint8 "));
|
sl@0
|
275 |
TUint8 uint8=KMidTUint8;
|
sl@0
|
276 |
testCopyL(uint8,TUint8(0));
|
sl@0
|
277 |
test(uint8==0);
|
sl@0
|
278 |
testCopyL(uint8,TUint8(1));
|
sl@0
|
279 |
test(uint8==1);
|
sl@0
|
280 |
testCopyL(uint8,TUint8(KMidTUint8-2));
|
sl@0
|
281 |
test(uint8==KMidTUint8-2);
|
sl@0
|
282 |
testCopyL(uint8,TUint8(KMidTUint8-1));
|
sl@0
|
283 |
test(uint8==KMidTUint8-1);
|
sl@0
|
284 |
testCopyL(uint8,TUint8(KMidTUint8));
|
sl@0
|
285 |
test(uint8==KMidTUint8);
|
sl@0
|
286 |
testCopyL(uint8,TUint8(KMidTUint8+1));
|
sl@0
|
287 |
test(uint8==KMidTUint8+1);
|
sl@0
|
288 |
testCopyL(uint8,TUint8(KMidTUint8+2));
|
sl@0
|
289 |
test(uint8==KMidTUint8+2);
|
sl@0
|
290 |
testCopyL(uint8,TUint8(KMaxTUint8-1));
|
sl@0
|
291 |
test(uint8==KMaxTUint8-1);
|
sl@0
|
292 |
testCopyL(uint8,TUint8(KMaxTUint8));
|
sl@0
|
293 |
test(uint8==KMaxTUint8);
|
sl@0
|
294 |
//
|
sl@0
|
295 |
test.Next(_L("Streaming TUint16"));
|
sl@0
|
296 |
TUint16 uint16=KMidTUint16;
|
sl@0
|
297 |
testCopyL(uint16,TUint16(0));
|
sl@0
|
298 |
test(uint16==0);
|
sl@0
|
299 |
testCopyL(uint16,TUint16(1));
|
sl@0
|
300 |
test(uint16==1);
|
sl@0
|
301 |
testCopyL(uint16,TUint16(KMidTUint16-2));
|
sl@0
|
302 |
test(uint16==KMidTUint16-2);
|
sl@0
|
303 |
testCopyL(uint16,TUint16(KMidTUint16-1));
|
sl@0
|
304 |
test(uint16==KMidTUint16-1);
|
sl@0
|
305 |
testCopyL(uint16,TUint16(KMidTUint16));
|
sl@0
|
306 |
test(uint16==KMidTUint16);
|
sl@0
|
307 |
testCopyL(uint16,TUint16(KMidTUint16+1));
|
sl@0
|
308 |
test(uint16==KMidTUint16+1);
|
sl@0
|
309 |
testCopyL(uint16,TUint16(KMidTUint16+2));
|
sl@0
|
310 |
test(uint16==KMidTUint16+2);
|
sl@0
|
311 |
testCopyL(uint16,TUint16(KMaxTUint16-1));
|
sl@0
|
312 |
test(uint16==KMaxTUint16-1);
|
sl@0
|
313 |
testCopyL(uint16,TUint16(KMaxTUint16));
|
sl@0
|
314 |
test(uint16==KMaxTUint16);
|
sl@0
|
315 |
//
|
sl@0
|
316 |
test.Next(_L("Streaming TUint32"));
|
sl@0
|
317 |
TUint32 uint32=KMidTUint32;
|
sl@0
|
318 |
testCopyL(uint32,TUint32(0));
|
sl@0
|
319 |
test(uint32==0);
|
sl@0
|
320 |
testCopyL(uint32,TUint32(1));
|
sl@0
|
321 |
test(uint32==1);
|
sl@0
|
322 |
testCopyL(uint32,TUint32(KMidTUint32-2));
|
sl@0
|
323 |
test(uint32==KMidTUint32-2);
|
sl@0
|
324 |
testCopyL(uint32,TUint32(KMidTUint32-1));
|
sl@0
|
325 |
test(uint32==KMidTUint32-1);
|
sl@0
|
326 |
testCopyL(uint32,TUint32(KMidTUint32));
|
sl@0
|
327 |
test(uint32==KMidTUint32);
|
sl@0
|
328 |
testCopyL(uint32,TUint32(KMidTUint32+1));
|
sl@0
|
329 |
test(uint32==KMidTUint32+1);
|
sl@0
|
330 |
testCopyL(uint32,TUint32(KMidTUint32+2));
|
sl@0
|
331 |
test(uint32==KMidTUint32+2);
|
sl@0
|
332 |
testCopyL(uint32,TUint32(KMaxTUint32-1));
|
sl@0
|
333 |
test(uint32==KMaxTUint32-1);
|
sl@0
|
334 |
testCopyL(uint32,TUint32(KMaxTUint32));
|
sl@0
|
335 |
test(uint32==KMaxTUint32);
|
sl@0
|
336 |
}
|
sl@0
|
337 |
|
sl@0
|
338 |
/**
|
sl@0
|
339 |
@SYMTestCaseID SYSLIB-STORE-CT-1209
|
sl@0
|
340 |
@SYMTestCaseDesc Streaming Real numbers test
|
sl@0
|
341 |
@SYMTestPriority High
|
sl@0
|
342 |
@SYMTestActions Tests for streaming TReal32,TReal64 bit unsigned integers.
|
sl@0
|
343 |
@SYMTestExpectedResults Test must not fail
|
sl@0
|
344 |
@SYMREQ REQ0000
|
sl@0
|
345 |
*/
|
sl@0
|
346 |
LOCAL_C void testRealL()
|
sl@0
|
347 |
{
|
sl@0
|
348 |
test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1209 Streaming TReal32 "));
|
sl@0
|
349 |
TReal32 real32=TReal32(0);
|
sl@0
|
350 |
testCopyL(real32,TReal32(-31416.3));
|
sl@0
|
351 |
test(real32==TReal32(-31416.3));
|
sl@0
|
352 |
testCopyL(real32,TReal32(-0.0001));
|
sl@0
|
353 |
test(real32==TReal32(-0.0001));
|
sl@0
|
354 |
testCopyL(real32,TReal32(0));
|
sl@0
|
355 |
test(real32==TReal32(0));
|
sl@0
|
356 |
testCopyL(real32,TReal32(0.0001));
|
sl@0
|
357 |
test(real32==TReal32(0.0001));
|
sl@0
|
358 |
testCopyL(real32,TReal32(31416.3));
|
sl@0
|
359 |
test(real32==TReal32(31416.3));
|
sl@0
|
360 |
//
|
sl@0
|
361 |
test.Next(_L("Streaming TReal64"));
|
sl@0
|
362 |
TReal64 real64=TReal64(0);
|
sl@0
|
363 |
testCopyL(real64,TReal64(-31416.3));
|
sl@0
|
364 |
test(real64==TReal64(-31416.3));
|
sl@0
|
365 |
testCopyL(real64,TReal64(-0.0001));
|
sl@0
|
366 |
test(real64==TReal64(-0.0001));
|
sl@0
|
367 |
testCopyL(real64,TReal64(0));
|
sl@0
|
368 |
test(real64==TReal64(0));
|
sl@0
|
369 |
testCopyL(real64,TReal64(0.0001));
|
sl@0
|
370 |
test(real64==TReal64(0.0001));
|
sl@0
|
371 |
testCopyL(real64,TReal64(31416.3));
|
sl@0
|
372 |
test(real64==TReal64(31416.3));
|
sl@0
|
373 |
}
|
sl@0
|
374 |
|
sl@0
|
375 |
/**
|
sl@0
|
376 |
@SYMTestCaseID SYSLIB-STORE-CT-1210
|
sl@0
|
377 |
@SYMTestCaseDesc Streaming TPoint test
|
sl@0
|
378 |
@SYMTestPriority High
|
sl@0
|
379 |
@SYMTestActions Tests for copying two TPoint objects and test for integrity of copied object
|
sl@0
|
380 |
@SYMTestExpectedResults Test must not fail
|
sl@0
|
381 |
@SYMREQ REQ0000
|
sl@0
|
382 |
*/
|
sl@0
|
383 |
LOCAL_C void testPointL()
|
sl@0
|
384 |
{
|
sl@0
|
385 |
test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1210 Streaming TPoint "));
|
sl@0
|
386 |
TPoint point=TPoint(0,0);
|
sl@0
|
387 |
testCopyL(point,TPoint(13,65));
|
sl@0
|
388 |
test(point==TPoint(13,65));
|
sl@0
|
389 |
testCopyL(point,TPoint(1,-1));
|
sl@0
|
390 |
test(point==TPoint(1,-1));
|
sl@0
|
391 |
testCopyL(point,TPoint(0,0));
|
sl@0
|
392 |
test(point==TPoint(0,0));
|
sl@0
|
393 |
testCopyL(point,TPoint(7,-666));
|
sl@0
|
394 |
test(point==TPoint(7,-666));
|
sl@0
|
395 |
testCopyL(point,TPoint(-13,-13));
|
sl@0
|
396 |
test(point==TPoint(-13,-13));
|
sl@0
|
397 |
testCopyL(point,TPoint(KMinTInt,KMaxTInt));
|
sl@0
|
398 |
test(point==TPoint(KMinTInt,KMaxTInt));
|
sl@0
|
399 |
}
|
sl@0
|
400 |
|
sl@0
|
401 |
/**
|
sl@0
|
402 |
@SYMTestCaseID SYSLIB-STORE-CT-1211
|
sl@0
|
403 |
@SYMTestCaseDesc Streaming TSize objects test
|
sl@0
|
404 |
@SYMTestPriority High
|
sl@0
|
405 |
@SYMTestActions Tests for copying two TSize objects and test for integrity of copied object
|
sl@0
|
406 |
@SYMTestExpectedResults Test must not fail
|
sl@0
|
407 |
@SYMREQ REQ0000
|
sl@0
|
408 |
*/
|
sl@0
|
409 |
LOCAL_C void testSizeL()
|
sl@0
|
410 |
{
|
sl@0
|
411 |
test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1211 Streaming TSize "));
|
sl@0
|
412 |
TSize point=TSize(0,0);
|
sl@0
|
413 |
testCopyL(point,TSize(13,65));
|
sl@0
|
414 |
test(point==TSize(13,65));
|
sl@0
|
415 |
testCopyL(point,TSize(1,-1));
|
sl@0
|
416 |
test(point==TSize(1,-1));
|
sl@0
|
417 |
testCopyL(point,TSize(0,0));
|
sl@0
|
418 |
test(point==TSize(0,0));
|
sl@0
|
419 |
testCopyL(point,TSize(7,-666));
|
sl@0
|
420 |
test(point==TSize(7,-666));
|
sl@0
|
421 |
testCopyL(point,TSize(-13,-13));
|
sl@0
|
422 |
test(point==TSize(-13,-13));
|
sl@0
|
423 |
testCopyL(point,TSize(KMinTInt,KMaxTInt));
|
sl@0
|
424 |
test(point==TSize(KMinTInt,KMaxTInt));
|
sl@0
|
425 |
}
|
sl@0
|
426 |
|
sl@0
|
427 |
/**
|
sl@0
|
428 |
@SYMTestCaseID SYSLIB-STORE-CT-1212
|
sl@0
|
429 |
@SYMTestCaseDesc Streaming TRect objects test
|
sl@0
|
430 |
@SYMTestPriority High
|
sl@0
|
431 |
@SYMTestActions Tests for copying two TRect objects and test for integrity of copied object
|
sl@0
|
432 |
@SYMTestExpectedResults Test must not fail
|
sl@0
|
433 |
@SYMREQ REQ0000
|
sl@0
|
434 |
*/
|
sl@0
|
435 |
LOCAL_C void testRectL()
|
sl@0
|
436 |
{
|
sl@0
|
437 |
test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1212 Streaming TRect"));
|
sl@0
|
438 |
TRect point=TRect(0,0,0,0);
|
sl@0
|
439 |
testCopyL(point,TRect(13,65,84,72));
|
sl@0
|
440 |
test(point==TRect(13,65,84,72));
|
sl@0
|
441 |
testCopyL(point,TRect(-13,-65,84,72));
|
sl@0
|
442 |
test(point==TRect(-13,-65,84,72));
|
sl@0
|
443 |
testCopyL(point,TRect(0,0,0,0));
|
sl@0
|
444 |
test(point==TRect(0,0,0,0));
|
sl@0
|
445 |
testCopyL(point,TRect(-1,1,1,-1));
|
sl@0
|
446 |
test(point==TRect(-1,1,1,-1));
|
sl@0
|
447 |
testCopyL(point,TRect(KMinTInt,KMinTInt,KMaxTInt,KMaxTInt));
|
sl@0
|
448 |
test(point==TRect(KMinTInt,KMinTInt,KMaxTInt,KMaxTInt));
|
sl@0
|
449 |
}
|
sl@0
|
450 |
|
sl@0
|
451 |
/**
|
sl@0
|
452 |
@SYMTestCaseID SYSLIB-STORE-CT-1213
|
sl@0
|
453 |
@SYMTestCaseDesc Streaming descriptors tests
|
sl@0
|
454 |
@SYMTestPriority High
|
sl@0
|
455 |
@SYMTestActions Tests for copying TDes8,TDes16 descriptors
|
sl@0
|
456 |
@SYMTestExpectedResults Test must not fail
|
sl@0
|
457 |
@SYMREQ REQ0000
|
sl@0
|
458 |
*/
|
sl@0
|
459 |
LOCAL_C void testDesL()
|
sl@0
|
460 |
{
|
sl@0
|
461 |
test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1213 Streaming TDes8 "));
|
sl@0
|
462 |
TBuf8<0x100> des8,copy8;
|
sl@0
|
463 |
des8=_L8("test1");
|
sl@0
|
464 |
testCopyL(copy8,des8);
|
sl@0
|
465 |
test(copy8==des8);
|
sl@0
|
466 |
des8.Append(_L8(" add some more text"));
|
sl@0
|
467 |
testCopyL(copy8,des8);
|
sl@0
|
468 |
test(copy8==des8);
|
sl@0
|
469 |
des8.SetMax();
|
sl@0
|
470 |
des8.Fill('?');
|
sl@0
|
471 |
testCopyL(copy8,des8);
|
sl@0
|
472 |
test(copy8==des8);
|
sl@0
|
473 |
des8.Zero();
|
sl@0
|
474 |
testCopyL(copy8,des8);
|
sl@0
|
475 |
test(copy8==des8);
|
sl@0
|
476 |
//
|
sl@0
|
477 |
test.Next(_L("Streaming TDes16"));
|
sl@0
|
478 |
TBuf16<0x100> des16,copy16;
|
sl@0
|
479 |
des16=_L16("test1");
|
sl@0
|
480 |
testCopyL(copy16,des16);
|
sl@0
|
481 |
test(copy16==des16);
|
sl@0
|
482 |
des16.Append(_L16(" add some more text"));
|
sl@0
|
483 |
testCopyL(copy16,des16);
|
sl@0
|
484 |
test(copy16==des16);
|
sl@0
|
485 |
des16.SetMax();
|
sl@0
|
486 |
des16.Fill('?');
|
sl@0
|
487 |
testCopyL(copy16,des16);
|
sl@0
|
488 |
test(copy16==des16);
|
sl@0
|
489 |
des16.Zero();
|
sl@0
|
490 |
testCopyL(copy16,des16);
|
sl@0
|
491 |
test(copy16==des16);
|
sl@0
|
492 |
//
|
sl@0
|
493 |
test.Next(_L("Streaming out TDes8 and streaming in TDes16"));
|
sl@0
|
494 |
des8=_L8("test1");
|
sl@0
|
495 |
testCopyL(copy16,des8);
|
sl@0
|
496 |
copy8.Copy(copy16);
|
sl@0
|
497 |
test(copy8==des8);
|
sl@0
|
498 |
des8.Append(_L8(" add some more text"));
|
sl@0
|
499 |
testCopyL(copy16,des8);
|
sl@0
|
500 |
copy8.Copy(copy16);
|
sl@0
|
501 |
test(copy8==des8);
|
sl@0
|
502 |
des8.SetMax();
|
sl@0
|
503 |
des8.Fill('?');
|
sl@0
|
504 |
testCopyL(copy16,des8);
|
sl@0
|
505 |
copy8.Copy(copy16);
|
sl@0
|
506 |
test(copy8==des8);
|
sl@0
|
507 |
des8.Zero();
|
sl@0
|
508 |
testCopyL(copy16,des8);
|
sl@0
|
509 |
copy8.Copy(copy16);
|
sl@0
|
510 |
test(copy8==des8);
|
sl@0
|
511 |
//
|
sl@0
|
512 |
test.Next(_L("Streaming out TDes16 and streaming in TDes8"));
|
sl@0
|
513 |
des16=_L16("test1");
|
sl@0
|
514 |
testCopyL(copy8,des16);
|
sl@0
|
515 |
copy16.Copy(copy8);
|
sl@0
|
516 |
test(copy16==des16);
|
sl@0
|
517 |
des16.Append(_L16(" add some more text"));
|
sl@0
|
518 |
testCopyL(copy8,des16);
|
sl@0
|
519 |
copy16.Copy(copy8);
|
sl@0
|
520 |
test(copy16==des16);
|
sl@0
|
521 |
des16.SetMax();
|
sl@0
|
522 |
des16.Fill('?');
|
sl@0
|
523 |
testCopyL(copy8,des16);
|
sl@0
|
524 |
copy16.Copy(copy8);
|
sl@0
|
525 |
test(copy16==des16);
|
sl@0
|
526 |
des16.Zero();
|
sl@0
|
527 |
testCopyL(copy8,des16);
|
sl@0
|
528 |
copy16.Copy(copy8);
|
sl@0
|
529 |
test(copy16==des16);
|
sl@0
|
530 |
}
|
sl@0
|
531 |
|
sl@0
|
532 |
/**
|
sl@0
|
533 |
@SYMTestCaseID SYSLIB-STORE-CT-1214
|
sl@0
|
534 |
@SYMTestCaseDesc Streaming HBufC test
|
sl@0
|
535 |
@SYMTestPriority High
|
sl@0
|
536 |
@SYMTestActions Tests by cloning and check for the integrity of the cloned object.
|
sl@0
|
537 |
@SYMTestExpectedResults Test must not fail
|
sl@0
|
538 |
@SYMREQ REQ0000
|
sl@0
|
539 |
*/
|
sl@0
|
540 |
LOCAL_C void testHBufCL()
|
sl@0
|
541 |
{
|
sl@0
|
542 |
test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1214 Streaming HBufC8 "));
|
sl@0
|
543 |
TBuf8<0x100> des8,copy8;
|
sl@0
|
544 |
HBufC8* buf8;
|
sl@0
|
545 |
des8=_L8("test1");
|
sl@0
|
546 |
buf8=testClone_HBufC8L(des8);
|
sl@0
|
547 |
test(*buf8==des8);
|
sl@0
|
548 |
User::Free(buf8);
|
sl@0
|
549 |
des8.Append(_L8(" add some more text"));
|
sl@0
|
550 |
buf8=testClone_HBufC8L(des8);
|
sl@0
|
551 |
test(*buf8==des8);
|
sl@0
|
552 |
User::Free(buf8);
|
sl@0
|
553 |
des8.SetMax();
|
sl@0
|
554 |
des8.Fill('?');
|
sl@0
|
555 |
buf8=testClone_HBufC8L(des8);
|
sl@0
|
556 |
test(*buf8==des8);
|
sl@0
|
557 |
User::Free(buf8);
|
sl@0
|
558 |
des8.Zero();
|
sl@0
|
559 |
buf8=testClone_HBufC8L(des8);
|
sl@0
|
560 |
test(*buf8==des8);
|
sl@0
|
561 |
User::Free(buf8);
|
sl@0
|
562 |
//
|
sl@0
|
563 |
test.Next(_L("Streaming HBufC16"));
|
sl@0
|
564 |
TBuf16<0x100> des16,copy16;
|
sl@0
|
565 |
HBufC16* buf16;
|
sl@0
|
566 |
des16=_L16("test1");
|
sl@0
|
567 |
buf16=testClone_HBufC16L(des16);
|
sl@0
|
568 |
test(*buf16==des16);
|
sl@0
|
569 |
User::Free(buf16);
|
sl@0
|
570 |
des16.Append(_L16(" add some more text"));
|
sl@0
|
571 |
buf16=testClone_HBufC16L(des16);
|
sl@0
|
572 |
test(*buf16==des16);
|
sl@0
|
573 |
User::Free(buf16);
|
sl@0
|
574 |
des16.SetMax();
|
sl@0
|
575 |
des16.Fill('?');
|
sl@0
|
576 |
buf16=testClone_HBufC16L(des16);
|
sl@0
|
577 |
test(*buf16==des16);
|
sl@0
|
578 |
User::Free(buf16);
|
sl@0
|
579 |
des16.Zero();
|
sl@0
|
580 |
buf16=testClone_HBufC16L(des16);
|
sl@0
|
581 |
test(*buf16==des16);
|
sl@0
|
582 |
User::Free(buf16);
|
sl@0
|
583 |
//
|
sl@0
|
584 |
test.Next(_L("Streaming out TDes8 and streaming in HBufC16"));
|
sl@0
|
585 |
des8=_L8("test1");
|
sl@0
|
586 |
buf16=testClone_HBufC16L(des8);
|
sl@0
|
587 |
copy8.Copy(*buf16);
|
sl@0
|
588 |
test(copy8==des8);
|
sl@0
|
589 |
User::Free(buf16);
|
sl@0
|
590 |
des8.Append(_L8(" add some more text"));
|
sl@0
|
591 |
buf16=testClone_HBufC16L(des8);
|
sl@0
|
592 |
copy8.Copy(*buf16);
|
sl@0
|
593 |
test(copy8==des8);
|
sl@0
|
594 |
User::Free(buf16);
|
sl@0
|
595 |
des8.SetMax();
|
sl@0
|
596 |
des8.Fill('?');
|
sl@0
|
597 |
buf16=testClone_HBufC16L(des8);
|
sl@0
|
598 |
copy8.Copy(*buf16);
|
sl@0
|
599 |
test(copy8==des8);
|
sl@0
|
600 |
User::Free(buf16);
|
sl@0
|
601 |
des8.Zero();
|
sl@0
|
602 |
buf16=testClone_HBufC16L(des8);
|
sl@0
|
603 |
copy8.Copy(*buf16);
|
sl@0
|
604 |
test(copy8==des8);
|
sl@0
|
605 |
User::Free(buf16);
|
sl@0
|
606 |
//
|
sl@0
|
607 |
test.Next(_L("Streaming out TDes16 and streaming in HBufC8"));
|
sl@0
|
608 |
des16=_L16("test1");
|
sl@0
|
609 |
buf8=testClone_HBufC8L(des16);
|
sl@0
|
610 |
copy16.Copy(*buf8);
|
sl@0
|
611 |
test(copy16==des16);
|
sl@0
|
612 |
User::Free(buf8);
|
sl@0
|
613 |
des16.Append(_L16(" add some more text"));
|
sl@0
|
614 |
buf8=testClone_HBufC8L(des16);
|
sl@0
|
615 |
copy16.Copy(*buf8);
|
sl@0
|
616 |
test(copy16==des16);
|
sl@0
|
617 |
User::Free(buf8);
|
sl@0
|
618 |
des16.SetMax();
|
sl@0
|
619 |
des16.Fill('?');
|
sl@0
|
620 |
buf8=testClone_HBufC8L(des16);
|
sl@0
|
621 |
copy16.Copy(*buf8);
|
sl@0
|
622 |
test(copy16==des16);
|
sl@0
|
623 |
User::Free(buf8);
|
sl@0
|
624 |
des16.Zero();
|
sl@0
|
625 |
buf8=testClone_HBufC8L(des16);
|
sl@0
|
626 |
copy16.Copy(*buf8);
|
sl@0
|
627 |
test(copy16==des16);
|
sl@0
|
628 |
User::Free(buf8);
|
sl@0
|
629 |
//
|
sl@0
|
630 |
test.Next(_L("Overflowing and over-allocating HBufC8"));
|
sl@0
|
631 |
des8.SetMax();
|
sl@0
|
632 |
buf8=testClone_HBufC8L(des8,0x80);
|
sl@0
|
633 |
test(buf8==NULL);
|
sl@0
|
634 |
buf8=testClone_HBufC8L(des8,0x200);
|
sl@0
|
635 |
test(buf8!=NULL);
|
sl@0
|
636 |
test(User::AllocLen(buf8)==sizeof(TBufC8<0x100>));
|
sl@0
|
637 |
User::Free(buf8);
|
sl@0
|
638 |
//
|
sl@0
|
639 |
test.Next(_L("Overflowing and over-allocating HBufC16"));
|
sl@0
|
640 |
des16.SetMax();
|
sl@0
|
641 |
buf16=testClone_HBufC16L(des16,0x80);
|
sl@0
|
642 |
test(buf16==NULL);
|
sl@0
|
643 |
buf16=testClone_HBufC16L(des16,0x200);
|
sl@0
|
644 |
test(buf16!=NULL);
|
sl@0
|
645 |
test(User::AllocLen(buf16)==sizeof(TBufC16<0x100>));
|
sl@0
|
646 |
User::Free(buf16);
|
sl@0
|
647 |
}
|
sl@0
|
648 |
|
sl@0
|
649 |
//
|
sl@0
|
650 |
// Compare two buffers.
|
sl@0
|
651 |
//
|
sl@0
|
652 |
TBool operator==(const CBufBase& aBuf,const CBufBase& anotherBuf)
|
sl@0
|
653 |
{
|
sl@0
|
654 |
TInt s=aBuf.Size();
|
sl@0
|
655 |
if (s!=anotherBuf.Size())
|
sl@0
|
656 |
return EFalse;
|
sl@0
|
657 |
//
|
sl@0
|
658 |
for (TInt i=0;i<s;)
|
sl@0
|
659 |
{
|
sl@0
|
660 |
TPtr8 p1=((CBufBase&)aBuf).Ptr(i);
|
sl@0
|
661 |
TPtr8 p2=((CBufBase&)anotherBuf).Ptr(i);
|
sl@0
|
662 |
TInt n=Min(p1.Size(),p2.Size());
|
sl@0
|
663 |
if (Mem::Compare(p1.Ptr(),n,p2.Ptr(),n)!=0)
|
sl@0
|
664 |
return EFalse;
|
sl@0
|
665 |
//
|
sl@0
|
666 |
i+=n;
|
sl@0
|
667 |
}
|
sl@0
|
668 |
return ETrue;
|
sl@0
|
669 |
}
|
sl@0
|
670 |
|
sl@0
|
671 |
/**
|
sl@0
|
672 |
@SYMTestCaseID SYSLIB-STORE-CT-1215
|
sl@0
|
673 |
@SYMTestCaseDesc Streaming CBufFlat,CBufSeg buffers test
|
sl@0
|
674 |
@SYMTestPriority High
|
sl@0
|
675 |
@SYMTestActions Attempt for copying two buffer objects
|
sl@0
|
676 |
@SYMTestExpectedResults Test must not fail
|
sl@0
|
677 |
@SYMREQ REQ0000
|
sl@0
|
678 |
*/
|
sl@0
|
679 |
LOCAL_C void testBufL()
|
sl@0
|
680 |
{
|
sl@0
|
681 |
test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1215 Streaming CBufFlat "));
|
sl@0
|
682 |
const TText8* data=_S8("0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ");
|
sl@0
|
683 |
CBufBase* bufOrg=CBufFlat::NewL(36);
|
sl@0
|
684 |
CleanupStack::PushL(bufOrg);
|
sl@0
|
685 |
CBufBase* buf=CBufFlat::NewL(36);
|
sl@0
|
686 |
CleanupStack::PushL(buf);
|
sl@0
|
687 |
bufOrg->InsertL(0,data,36);
|
sl@0
|
688 |
testCopyL(*buf,*bufOrg);
|
sl@0
|
689 |
test(*buf==*bufOrg);
|
sl@0
|
690 |
buf->Delete(0,10);
|
sl@0
|
691 |
testCopyL(*buf,*bufOrg);
|
sl@0
|
692 |
test(*buf==*bufOrg);
|
sl@0
|
693 |
buf->Delete(0,10);
|
sl@0
|
694 |
buf->InsertL(26,data,10);
|
sl@0
|
695 |
testCopyL(*buf,*bufOrg);
|
sl@0
|
696 |
test(*buf==*bufOrg);
|
sl@0
|
697 |
buf->InsertL(0,data+10,26);
|
sl@0
|
698 |
testCopyL(*buf,*bufOrg);
|
sl@0
|
699 |
test(*buf==*bufOrg);
|
sl@0
|
700 |
CleanupStack::PopAndDestroy(2);
|
sl@0
|
701 |
//
|
sl@0
|
702 |
test.Next(_L("Streaming CBufSeg"));
|
sl@0
|
703 |
bufOrg=CBufSeg::NewL(7);
|
sl@0
|
704 |
CleanupStack::PushL(bufOrg);
|
sl@0
|
705 |
buf=CBufSeg::NewL(11);
|
sl@0
|
706 |
CleanupStack::PushL(buf);
|
sl@0
|
707 |
bufOrg->InsertL(0,data,36);
|
sl@0
|
708 |
testCopyL(*buf,*bufOrg);
|
sl@0
|
709 |
test(*buf==*bufOrg);
|
sl@0
|
710 |
buf->Delete(0,10);
|
sl@0
|
711 |
testCopyL(*buf,*bufOrg);
|
sl@0
|
712 |
test(*buf==*bufOrg);
|
sl@0
|
713 |
buf->Delete(0,10);
|
sl@0
|
714 |
buf->InsertL(26,data,10);
|
sl@0
|
715 |
testCopyL(*buf,*bufOrg);
|
sl@0
|
716 |
test(*buf==*bufOrg);
|
sl@0
|
717 |
testCopyL(*buf,*bufOrg);
|
sl@0
|
718 |
test(*buf==*bufOrg);
|
sl@0
|
719 |
CleanupStack::PopAndDestroy(2);
|
sl@0
|
720 |
}
|
sl@0
|
721 |
|
sl@0
|
722 |
template <class T>
|
sl@0
|
723 |
TBool operator==(const CArrayFix<T>& anArray,const CArrayFix<T>& anotherArray);
|
sl@0
|
724 |
#if defined(__GCC32__)
|
sl@0
|
725 |
template <class T>
|
sl@0
|
726 |
inline TBool operator==(const CArrayFixFlat<T>& anArray,const CArrayFixFlat<T>& anotherArray)
|
sl@0
|
727 |
{return (const CArrayFix<T>&)anArray==(const CArrayFix<T>&)anotherArray;}
|
sl@0
|
728 |
#endif
|
sl@0
|
729 |
|
sl@0
|
730 |
//
|
sl@0
|
731 |
// Compare two arrays.
|
sl@0
|
732 |
//
|
sl@0
|
733 |
template <class T>
|
sl@0
|
734 |
TBool operator==(const CArrayFix<T>& anArray,const CArrayFix<T>& anotherArray)
|
sl@0
|
735 |
{
|
sl@0
|
736 |
TInt n=anArray.Count();
|
sl@0
|
737 |
if (n!=anotherArray.Count())
|
sl@0
|
738 |
return EFalse;
|
sl@0
|
739 |
//
|
sl@0
|
740 |
for (TInt i=0;i<n;i++)
|
sl@0
|
741 |
{
|
sl@0
|
742 |
if (anArray[i]!=anotherArray[i])
|
sl@0
|
743 |
return EFalse;
|
sl@0
|
744 |
}
|
sl@0
|
745 |
return ETrue;
|
sl@0
|
746 |
}
|
sl@0
|
747 |
|
sl@0
|
748 |
/**
|
sl@0
|
749 |
@SYMTestCaseID SYSLIB-STORE-CT-1216
|
sl@0
|
750 |
@SYMTestCaseDesc Streaming fixed arrays test
|
sl@0
|
751 |
@SYMTestPriority High
|
sl@0
|
752 |
@SYMTestActions Tests by copying two fixed array objects.Tests for the integrity of the data.
|
sl@0
|
753 |
@SYMTestExpectedResults Test must not fail
|
sl@0
|
754 |
@SYMREQ REQ0000
|
sl@0
|
755 |
*/
|
sl@0
|
756 |
LOCAL_C void testArrayFixL()
|
sl@0
|
757 |
{
|
sl@0
|
758 |
//* test.Next(_L("Streaming CArrayFix<TUint32>"));
|
sl@0
|
759 |
//#pragma message ( __FILE__ " : 'testArrayFix()' not entirely implemented")
|
sl@0
|
760 |
//
|
sl@0
|
761 |
test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1216 Streaming CArrayFix<TDes> "));
|
sl@0
|
762 |
TBuf<16> des[]={_L("aa"),_L("bbbb"),_L("cccccc")};
|
sl@0
|
763 |
CArrayFixFlat< TBuf<16> >* fixDesOrg=new(ELeave) CArrayFixFlat< TBuf<16> >(KTestGranularity);
|
sl@0
|
764 |
CleanupStack::PushL(fixDesOrg);
|
sl@0
|
765 |
CArrayFixFlat< TBuf<16> >* fixDes=new(ELeave) CArrayFixFlat< TBuf<16> >(KTestGranularity);
|
sl@0
|
766 |
CleanupStack::PushL(fixDes);
|
sl@0
|
767 |
fixDesOrg->AppendL(des+1,2);
|
sl@0
|
768 |
testCopyL(*fixDes,*fixDesOrg);
|
sl@0
|
769 |
test(*fixDes==*fixDesOrg);
|
sl@0
|
770 |
fixDesOrg->InsertL(0,des[0]);
|
sl@0
|
771 |
testCopyL(*fixDes,*fixDesOrg);
|
sl@0
|
772 |
test(*fixDes==*fixDesOrg);
|
sl@0
|
773 |
CleanupStack::PopAndDestroy(2);
|
sl@0
|
774 |
}
|
sl@0
|
775 |
|
sl@0
|
776 |
/**
|
sl@0
|
777 |
@SYMTestCaseID PDS-STORE-CT-4011
|
sl@0
|
778 |
@SYMTestCaseDesc Test for US_SHARE.CPP file. RShareReadStream.
|
sl@0
|
779 |
@SYMTestPriority High
|
sl@0
|
780 |
@SYMTestActions Test for creating and opening, read, write functions in RShareReadStream.
|
sl@0
|
781 |
@SYMTestExpectedResults Creation and opening must not fail.
|
sl@0
|
782 |
Written data, and read data should be equal.
|
sl@0
|
783 |
@SYMDEF DEF135804
|
sl@0
|
784 |
*/
|
sl@0
|
785 |
LOCAL_C void testFileL()
|
sl@0
|
786 |
{
|
sl@0
|
787 |
|
sl@0
|
788 |
_LIT8(KTestString, "Test String test");
|
sl@0
|
789 |
test.Next(_L("PDS-STORE-CT-4011 testUS_SHARE_FileL"));
|
sl@0
|
790 |
|
sl@0
|
791 |
HBufC8* rwbuf = HBufC8::NewLC(1024*10);
|
sl@0
|
792 |
HBufC8* buf = HBufC8::NewLC(1024);
|
sl@0
|
793 |
TPtr8 des = buf->Des();
|
sl@0
|
794 |
TDesBuf tdb;
|
sl@0
|
795 |
TPtr8 des2 = rwbuf->Des();
|
sl@0
|
796 |
tdb.Set( des2 );
|
sl@0
|
797 |
|
sl@0
|
798 |
TStreamExchange se(&tdb);
|
sl@0
|
799 |
|
sl@0
|
800 |
RShareWriteStream wstream(se);
|
sl@0
|
801 |
wstream.WriteL(KTestString);
|
sl@0
|
802 |
wstream.CommitL();
|
sl@0
|
803 |
wstream.Close();
|
sl@0
|
804 |
|
sl@0
|
805 |
RShareReadStream rstream(se);
|
sl@0
|
806 |
rstream.ReadL(des, buf->Length());
|
sl@0
|
807 |
rstream.Close();
|
sl@0
|
808 |
|
sl@0
|
809 |
test( des.Compare(KTestString) );
|
sl@0
|
810 |
|
sl@0
|
811 |
RShareWriteStream wstream2;
|
sl@0
|
812 |
wstream2.Open(se);
|
sl@0
|
813 |
wstream2.WriteL(KTestString);
|
sl@0
|
814 |
wstream2.CommitL();
|
sl@0
|
815 |
wstream2.Close();
|
sl@0
|
816 |
|
sl@0
|
817 |
RShareReadStream rstream2;
|
sl@0
|
818 |
rstream2.Open(se);
|
sl@0
|
819 |
rstream2.ReadL(des, buf->Length());
|
sl@0
|
820 |
rstream2.Close();
|
sl@0
|
821 |
|
sl@0
|
822 |
test(des.Compare(KTestString));
|
sl@0
|
823 |
|
sl@0
|
824 |
CleanupStack::PopAndDestroy(2, rwbuf);
|
sl@0
|
825 |
|
sl@0
|
826 |
}
|
sl@0
|
827 |
|
sl@0
|
828 |
/**
|
sl@0
|
829 |
@SYMTestCaseID PDS-STORE-CT-4012
|
sl@0
|
830 |
@SYMTestCaseDesc Test for US_SHARE.CPP file. RShareBuf.
|
sl@0
|
831 |
@SYMTestPriority High
|
sl@0
|
832 |
@SYMTestActions Writing, reading and seeking in RShareBuf
|
sl@0
|
833 |
@SYMTestExpectedResults Written data and read data (after seek to the beggining of the bufer)
|
sl@0
|
834 |
should equal. Read, write and seek operation must not fail.
|
sl@0
|
835 |
@SYMDEF DEF135804
|
sl@0
|
836 |
*/
|
sl@0
|
837 |
class RShareBufTest : public RShareBuf
|
sl@0
|
838 |
{
|
sl@0
|
839 |
public:
|
sl@0
|
840 |
TInt DoReadL(TAny* aPtr,TInt aMaxLength){return RShareBuf::DoReadL(aPtr, aMaxLength);}
|
sl@0
|
841 |
TInt DoReadL(TDes8& aDes,TInt aMaxLength,TRequestStatus& aStatus){return RShareBuf::DoReadL(aDes, aMaxLength, aStatus);}
|
sl@0
|
842 |
TStreamTransfer DoReadL(MStreamInput& anInput,TStreamTransfer aTransfer){return RShareBuf::DoReadL(anInput, aTransfer);}
|
sl@0
|
843 |
void DoWriteL(const TAny* aPtr,TInt aLength){RShareBuf::DoWriteL(aPtr, aLength);}
|
sl@0
|
844 |
TInt DoWriteL(const TDesC8& aDes,TInt aMaxLength,TRequestStatus& aStatus){return RShareBuf::DoWriteL(aDes,aMaxLength, aStatus);}
|
sl@0
|
845 |
TStreamTransfer DoWriteL(MStreamOutput& anOutput,TStreamTransfer aTransfer){return RShareBuf::DoWriteL(anOutput, aTransfer);}
|
sl@0
|
846 |
TStreamPos DoSeekL(TMark aMark,TStreamLocation aLocation,TInt anOffset){return RShareBuf::DoSeekL(aMark,aLocation,anOffset);}
|
sl@0
|
847 |
};
|
sl@0
|
848 |
|
sl@0
|
849 |
LOCAL_C void testFileRShareBufL()
|
sl@0
|
850 |
{
|
sl@0
|
851 |
_LIT8(KTestString, "Test String test very long to have something to seek for");
|
sl@0
|
852 |
HBufC8* rwbuf = HBufC8::NewLC(1024*10);
|
sl@0
|
853 |
HBufC8* buf = HBufC8::NewLC(1024);
|
sl@0
|
854 |
TDesBuf tdb;
|
sl@0
|
855 |
TPtr8 des2 = rwbuf->Des();
|
sl@0
|
856 |
tdb.Set( des2 );
|
sl@0
|
857 |
|
sl@0
|
858 |
TStreamExchange se(&tdb);
|
sl@0
|
859 |
|
sl@0
|
860 |
test.Next(_L("PDS-STORE-CT-4012 RShareBuf tests"));
|
sl@0
|
861 |
RShareBufTest rsb;
|
sl@0
|
862 |
rsb.Release();
|
sl@0
|
863 |
rsb.Open(se, RShareBuf::ERead|RShareBuf::EWrite);
|
sl@0
|
864 |
rsb.WriteL(KTestString().Ptr(), KTestString().Length());
|
sl@0
|
865 |
TInt dupa = rsb.SizeL();
|
sl@0
|
866 |
|
sl@0
|
867 |
TStreamPos spos = rsb.DoSeekL(RShareBuf::ERead, EStreamBeginning, 20);
|
sl@0
|
868 |
test(spos.Offset() == 20);
|
sl@0
|
869 |
spos = rsb.DoSeekL(RShareBuf::ERead, EStreamMark, 5);
|
sl@0
|
870 |
test(spos.Offset()== 25);
|
sl@0
|
871 |
spos = rsb.DoSeekL(RShareBuf::EWrite, EStreamEnd, -5);
|
sl@0
|
872 |
test(spos.Offset()==rsb.SizeL()-5 );
|
sl@0
|
873 |
|
sl@0
|
874 |
TUint8* tempBuf = new TUint8[1024];
|
sl@0
|
875 |
CleanupStack::PushL(tempBuf);
|
sl@0
|
876 |
test(tempBuf != NULL);
|
sl@0
|
877 |
for(TInt i=0;i<1024;i++)
|
sl@0
|
878 |
tempBuf[i]=0;
|
sl@0
|
879 |
|
sl@0
|
880 |
spos = rsb.DoSeekL(RShareBuf::ERead, EStreamBeginning, 0);
|
sl@0
|
881 |
test(spos.Offset() == 0);
|
sl@0
|
882 |
TInt bytesread = rsb.DoReadL((void*)tempBuf, rsb.SizeL());
|
sl@0
|
883 |
test(bytesread == rsb.SizeL());
|
sl@0
|
884 |
buf->Des().Copy(tempBuf);
|
sl@0
|
885 |
test(buf->Des().Compare(KTestString)==0);
|
sl@0
|
886 |
|
sl@0
|
887 |
spos = rsb.DoSeekL(RShareBuf::EWrite, EStreamBeginning, 0);
|
sl@0
|
888 |
test(spos.Offset() == 0);
|
sl@0
|
889 |
|
sl@0
|
890 |
TRequestStatus status;
|
sl@0
|
891 |
rsb.DoWriteL(KTestString(), KTestString().Length(), status);
|
sl@0
|
892 |
User::WaitForRequest(status);
|
sl@0
|
893 |
test(status == KErrNone);
|
sl@0
|
894 |
|
sl@0
|
895 |
buf->Des().Zero();
|
sl@0
|
896 |
TPtr8 pbuf2 = buf->Des();
|
sl@0
|
897 |
|
sl@0
|
898 |
spos = rsb.DoSeekL(RShareBuf::ERead, EStreamBeginning, 0);
|
sl@0
|
899 |
test(spos.Offset() == 0);
|
sl@0
|
900 |
bytesread = rsb.ReadL(pbuf2, buf->Des().MaxLength(), status);
|
sl@0
|
901 |
test(bytesread == buf->Des().MaxLength());
|
sl@0
|
902 |
User::WaitForRequest(status);
|
sl@0
|
903 |
test(status == KErrNone);
|
sl@0
|
904 |
test(buf->Des().Compare(KTestString)==0);
|
sl@0
|
905 |
|
sl@0
|
906 |
/**
|
sl@0
|
907 |
* Unable to test those functions:
|
sl@0
|
908 |
* TStreamTransfer DoWriteL(MStreamOutput& anOutput,TStreamTransfer aTransfer)
|
sl@0
|
909 |
* TStreamTransfer DoReadL(MStreamInput& anInput,TStreamTransfer aTransfer);
|
sl@0
|
910 |
* because all MStreamOutput/MStreamInput derived class are not exported
|
sl@0
|
911 |
* thus it can't be used outside theis DLL
|
sl@0
|
912 |
*/
|
sl@0
|
913 |
|
sl@0
|
914 |
rsb.Close();
|
sl@0
|
915 |
CleanupStack::PopAndDestroy(3, rwbuf);
|
sl@0
|
916 |
}
|
sl@0
|
917 |
|
sl@0
|
918 |
/**
|
sl@0
|
919 |
@SYMTestCaseID PDS-STORE-CT-4013
|
sl@0
|
920 |
@SYMTestCaseDesc Test for US_HOST.CPP file. TStreamExchange and TStreamMark.
|
sl@0
|
921 |
@SYMTestPriority High
|
sl@0
|
922 |
@SYMTestActions Read and write on TStreamExchange. Reading and writing on TStreamMark.
|
sl@0
|
923 |
@SYMTestExpectedResults Read and write operation should not leave.
|
sl@0
|
924 |
@SYMDEF DEF135804
|
sl@0
|
925 |
*/
|
sl@0
|
926 |
LOCAL_C void testTStreamExchangeAndMarkL()
|
sl@0
|
927 |
{
|
sl@0
|
928 |
test.Next(_L("PDS-STORE-CT-4013 testTStreamExchangeAndMarkL"));
|
sl@0
|
929 |
_LIT8(KTestString, "Test String test very long to have something to seek for");
|
sl@0
|
930 |
HBufC8* rwbuf = HBufC8::NewLC(1024*10);
|
sl@0
|
931 |
HBufC8* buf = HBufC8::NewLC(1024);
|
sl@0
|
932 |
TDesBuf tdb;
|
sl@0
|
933 |
TPtr8 des2 = rwbuf->Des();
|
sl@0
|
934 |
tdb.Set( des2 );
|
sl@0
|
935 |
TStreamExchange se(&tdb);
|
sl@0
|
936 |
RShareBufTest rsb;
|
sl@0
|
937 |
rsb.Open(se, RShareBuf::ERead|RShareBuf::EWrite);
|
sl@0
|
938 |
test( se.HostL() == &tdb );
|
sl@0
|
939 |
|
sl@0
|
940 |
TStreamMark sm(0);
|
sl@0
|
941 |
TInt bytesprocessed;
|
sl@0
|
942 |
sm.WriteL(se, KTestString().Ptr(),KTestString().Length() );
|
sl@0
|
943 |
TRequestStatus rstatus;
|
sl@0
|
944 |
|
sl@0
|
945 |
TStreamMark sm2(0);
|
sl@0
|
946 |
bytesprocessed = sm2.WriteL(se, KTestString(), KTestString().Length(), rstatus);
|
sl@0
|
947 |
test (bytesprocessed == KTestString().Length());
|
sl@0
|
948 |
User::WaitForRequest(rstatus);
|
sl@0
|
949 |
test(rstatus == KErrNone);
|
sl@0
|
950 |
|
sl@0
|
951 |
TBool rc = sm == sm2;
|
sl@0
|
952 |
test(!rc);
|
sl@0
|
953 |
rc = sm == (const TStreamMark*)&sm2;
|
sl@0
|
954 |
test(!rc);
|
sl@0
|
955 |
|
sl@0
|
956 |
rc = sm != sm2;
|
sl@0
|
957 |
test(rc);
|
sl@0
|
958 |
rc = sm != (const TStreamMark*)&sm2;
|
sl@0
|
959 |
test(rc);
|
sl@0
|
960 |
|
sl@0
|
961 |
rc = sm.IsWith(se);
|
sl@0
|
962 |
test(!rc);
|
sl@0
|
963 |
rc = sm2.IsWith(se);
|
sl@0
|
964 |
test(rc);
|
sl@0
|
965 |
|
sl@0
|
966 |
TStreamMark sm3(0);
|
sl@0
|
967 |
TPtr8 des = buf->Des();
|
sl@0
|
968 |
bytesprocessed = sm3.ReadL(se, des, des.MaxLength(), rstatus);
|
sl@0
|
969 |
RDebug::Printf("Written: %d, Length: %d",bytesprocessed,des.MaxLength());
|
sl@0
|
970 |
test (bytesprocessed == des.MaxLength());
|
sl@0
|
971 |
User::WaitForRequest(rstatus);
|
sl@0
|
972 |
test(rstatus == KErrNone);
|
sl@0
|
973 |
|
sl@0
|
974 |
TStreamMark sm4(0);
|
sl@0
|
975 |
buf->Des().Zero();
|
sl@0
|
976 |
des.Set(buf->Des());
|
sl@0
|
977 |
bytesprocessed = sm4.ReadL(se, des, rstatus);
|
sl@0
|
978 |
RDebug::Printf("Written: %d, Length: %d",bytesprocessed,des.MaxLength());
|
sl@0
|
979 |
test (bytesprocessed == des.MaxLength());
|
sl@0
|
980 |
sm4.ExtractL(se);
|
sl@0
|
981 |
User::WaitForRequest(rstatus);
|
sl@0
|
982 |
test(rstatus == KErrNone);
|
sl@0
|
983 |
|
sl@0
|
984 |
TStreamMark sm5(0);
|
sl@0
|
985 |
bytesprocessed = sm5.WriteL(se, KTestString(), rstatus);
|
sl@0
|
986 |
RDebug::Printf("Written: %d, Length: %d",bytesprocessed,KTestString().Length());
|
sl@0
|
987 |
test (bytesprocessed == KTestString().Length());
|
sl@0
|
988 |
User::WaitForRequest(rstatus);
|
sl@0
|
989 |
test(rstatus == KErrNone);
|
sl@0
|
990 |
sm5.ExtractL(se);
|
sl@0
|
991 |
|
sl@0
|
992 |
rsb.Close();
|
sl@0
|
993 |
CleanupStack::PopAndDestroy(2, rwbuf);
|
sl@0
|
994 |
}
|
sl@0
|
995 |
|
sl@0
|
996 |
const TInt KMinTestHeapSize = 0x10000;
|
sl@0
|
997 |
const TInt KMaxTestHeapSize = 0x100000;
|
sl@0
|
998 |
|
sl@0
|
999 |
/**
|
sl@0
|
1000 |
* Helper function for PDS-STORE-CT-4014
|
sl@0
|
1001 |
*/
|
sl@0
|
1002 |
LOCAL_C void DoTBtreeKeyPanicL(TInt aCase)
|
sl@0
|
1003 |
{
|
sl@0
|
1004 |
//those will panic, and should be tested if they will panic
|
sl@0
|
1005 |
switch(aCase)
|
sl@0
|
1006 |
{
|
sl@0
|
1007 |
case 0:
|
sl@0
|
1008 |
{
|
sl@0
|
1009 |
TBtreeKey key27(0,ECmpTUint);
|
sl@0
|
1010 |
}
|
sl@0
|
1011 |
case 1:
|
sl@0
|
1012 |
{
|
sl@0
|
1013 |
TBtreeKey key23(0,ECmpTInt);
|
sl@0
|
1014 |
}
|
sl@0
|
1015 |
case 2:
|
sl@0
|
1016 |
{
|
sl@0
|
1017 |
TBtreeKey key9(0,ECmpCollated);
|
sl@0
|
1018 |
}
|
sl@0
|
1019 |
case 3:
|
sl@0
|
1020 |
{
|
sl@0
|
1021 |
TBtreeKey key6(0,ECmpFolded);
|
sl@0
|
1022 |
}
|
sl@0
|
1023 |
case 4:
|
sl@0
|
1024 |
{
|
sl@0
|
1025 |
TBtreeKey key3(0,ECmpNormal);
|
sl@0
|
1026 |
}
|
sl@0
|
1027 |
case 5:
|
sl@0
|
1028 |
{
|
sl@0
|
1029 |
TBtreeKey key91(0,ECmpCollated,10);
|
sl@0
|
1030 |
}
|
sl@0
|
1031 |
case 6:
|
sl@0
|
1032 |
{
|
sl@0
|
1033 |
TBtreeKey key61(0,ECmpFolded,10);
|
sl@0
|
1034 |
}
|
sl@0
|
1035 |
case 7:
|
sl@0
|
1036 |
{
|
sl@0
|
1037 |
TBtreeKey key31(0,ECmpNormal,10);
|
sl@0
|
1038 |
}
|
sl@0
|
1039 |
}
|
sl@0
|
1040 |
}
|
sl@0
|
1041 |
/**
|
sl@0
|
1042 |
* Helper function for PDS-STORE-CT-4014
|
sl@0
|
1043 |
*/
|
sl@0
|
1044 |
LOCAL_C TInt DoPanicingThread(TAny* aTestCase)
|
sl@0
|
1045 |
{
|
sl@0
|
1046 |
User::SetJustInTime(EFalse); // disable debugger panic handling
|
sl@0
|
1047 |
TInt tcase = *((TInt*)aTestCase);
|
sl@0
|
1048 |
TRAP_IGNORE(DoTBtreeKeyPanicL(tcase));
|
sl@0
|
1049 |
return 0;
|
sl@0
|
1050 |
}
|
sl@0
|
1051 |
|
sl@0
|
1052 |
/**
|
sl@0
|
1053 |
@SYMTestCaseID PDS-STORE-CT-4014
|
sl@0
|
1054 |
@SYMTestCaseDesc Test for UB_KEY.CPP file. TBtreeKey constructors, comparators, function Between().
|
sl@0
|
1055 |
@SYMTestPriority High
|
sl@0
|
1056 |
@SYMTestActions Create instance of TBtreeKey using all available constructors with
|
sl@0
|
1057 |
all possible parameters. Run comparation and between functions.
|
sl@0
|
1058 |
@SYMTestExpectedResults Objects must be created properly. Comparators must return proper values.
|
sl@0
|
1059 |
MBtreeKey Between function, not fully implemented. See comments inside test.
|
sl@0
|
1060 |
@SYMDEF DEF135804
|
sl@0
|
1061 |
*/
|
sl@0
|
1062 |
LOCAL_C void testMBtreeKeyL()
|
sl@0
|
1063 |
{
|
sl@0
|
1064 |
test.Next(_L("PDS-STORE-CT-4014 MBtreeKey Constructors"));
|
sl@0
|
1065 |
TBtreeKey key;
|
sl@0
|
1066 |
TBtreeKey key_1(0);
|
sl@0
|
1067 |
TBtreeKey key2(0, ECmpTInt16);
|
sl@0
|
1068 |
//cmp text
|
sl@0
|
1069 |
|
sl@0
|
1070 |
for(TInt i=0;i<8;i++)
|
sl@0
|
1071 |
{
|
sl@0
|
1072 |
RThread thread;
|
sl@0
|
1073 |
TInt tcase = i;
|
sl@0
|
1074 |
TRequestStatus rst;
|
sl@0
|
1075 |
TFileName name;
|
sl@0
|
1076 |
name.Copy(_L("MyPanic "));
|
sl@0
|
1077 |
name.AppendNum(i);
|
sl@0
|
1078 |
TInt err = thread.Create(name, DoPanicingThread, KDefaultStackSize, KMinTestHeapSize, KMaxTestHeapSize, &tcase, EOwnerThread);
|
sl@0
|
1079 |
test(err == KErrNone);
|
sl@0
|
1080 |
TRequestStatus status;
|
sl@0
|
1081 |
thread.Logon(status);
|
sl@0
|
1082 |
test(status.Int() == KRequestPending);
|
sl@0
|
1083 |
thread.Resume();
|
sl@0
|
1084 |
User::WaitForRequest(status);
|
sl@0
|
1085 |
User::SetJustInTime(ETrue); // enable debugger panic handling
|
sl@0
|
1086 |
test(thread.ExitType() == EExitPanic);
|
sl@0
|
1087 |
test(thread.ExitReason() == EInvalidKeyComparison );
|
sl@0
|
1088 |
RDebug::Printf("Thread %d paniced as design with correct panic code", i);
|
sl@0
|
1089 |
}
|
sl@0
|
1090 |
|
sl@0
|
1091 |
test.Next(_L("MBtreeKey Comparators"));
|
sl@0
|
1092 |
//prepare 8bit descriptor
|
sl@0
|
1093 |
TBuf8<50> textKey1;
|
sl@0
|
1094 |
TBuf8<50> textKey2;
|
sl@0
|
1095 |
textKey1.Copy(_L(" Ala ma kota"));
|
sl@0
|
1096 |
textKey2.Copy(_L(" Ala ma kota"));
|
sl@0
|
1097 |
TUint8* ptr = const_cast<TUint8*>(textKey1.PtrZ());
|
sl@0
|
1098 |
*ptr = textKey1.Length();
|
sl@0
|
1099 |
ptr = const_cast<TUint8*>(textKey2.PtrZ());
|
sl@0
|
1100 |
*ptr = textKey2.Length();
|
sl@0
|
1101 |
|
sl@0
|
1102 |
//prepare 16bit descriptor
|
sl@0
|
1103 |
TBuf16<50> text16Key1;
|
sl@0
|
1104 |
TBuf16<50> text16Key2;
|
sl@0
|
1105 |
text16Key1.Copy(_L(" Ala ma kota"));
|
sl@0
|
1106 |
text16Key2.Copy(_L(" Ala ma kota"));
|
sl@0
|
1107 |
TUint16* ptr16 = const_cast<TUint16*>(text16Key1.PtrZ());
|
sl@0
|
1108 |
*ptr16 = text16Key1.Length();
|
sl@0
|
1109 |
ptr16 = const_cast<TUint16*>(text16Key2.PtrZ());
|
sl@0
|
1110 |
*ptr16 = text16Key2.Length();
|
sl@0
|
1111 |
|
sl@0
|
1112 |
|
sl@0
|
1113 |
TBtreeKey key4(0,ECmpNormal8);
|
sl@0
|
1114 |
test(key4.Compare(textKey1.PtrZ(),textKey2.PtrZ()) == 0);
|
sl@0
|
1115 |
TBtreeKey key4_1(0,ECmpNormal8,13);
|
sl@0
|
1116 |
test(key4_1.Compare(textKey1.PtrZ(),textKey2.PtrZ()) == 0);
|
sl@0
|
1117 |
|
sl@0
|
1118 |
TBtreeKey key5(0,ECmpNormal16);
|
sl@0
|
1119 |
test(key5.Compare(text16Key1.PtrZ(),text16Key2.PtrZ()) == 0);
|
sl@0
|
1120 |
TBtreeKey key5_1(0,ECmpNormal16,13);
|
sl@0
|
1121 |
test(key5_1.Compare(text16Key1.PtrZ(),text16Key2.PtrZ()) == 0);
|
sl@0
|
1122 |
|
sl@0
|
1123 |
TBtreeKey key7(0,ECmpFolded8);
|
sl@0
|
1124 |
test(key7.Compare(textKey1.PtrZ(),textKey2.PtrZ()) == 0);
|
sl@0
|
1125 |
TBtreeKey key7_1(0,ECmpFolded8,13);
|
sl@0
|
1126 |
test(key7_1.Compare(textKey1.PtrZ(),textKey2.PtrZ()) == 0);
|
sl@0
|
1127 |
|
sl@0
|
1128 |
TBtreeKey key8(0,ECmpFolded16);
|
sl@0
|
1129 |
test(key8.Compare(text16Key1.PtrZ(),text16Key2.PtrZ()) == 0);
|
sl@0
|
1130 |
TBtreeKey key8_1(0,ECmpFolded16,13);
|
sl@0
|
1131 |
test(key8_1.Compare(text16Key1.PtrZ(),text16Key2.PtrZ()) == 0);
|
sl@0
|
1132 |
|
sl@0
|
1133 |
TBtreeKey key10(0,ECmpCollated8);
|
sl@0
|
1134 |
test(key10.Compare(textKey1.PtrZ(),textKey2.PtrZ()) == 0);
|
sl@0
|
1135 |
TBtreeKey key10_1(0,ECmpCollated8,13);
|
sl@0
|
1136 |
test(key10_1.Compare(textKey1.PtrZ(),textKey2.PtrZ()) == 0);
|
sl@0
|
1137 |
|
sl@0
|
1138 |
TBtreeKey key11(0,ECmpCollated16);
|
sl@0
|
1139 |
test(key11.Compare(text16Key1.PtrZ(),text16Key2.PtrZ()) == 0);
|
sl@0
|
1140 |
TBtreeKey key11_1(0,ECmpCollated16,13);
|
sl@0
|
1141 |
test(key11_1.Compare(text16Key1.PtrZ(),text16Key2.PtrZ()) == 0);
|
sl@0
|
1142 |
|
sl@0
|
1143 |
//cmp numeric
|
sl@0
|
1144 |
TInt8 int8_1 = 123;
|
sl@0
|
1145 |
TInt8 int8_2 = 123;
|
sl@0
|
1146 |
TInt16 int16_1 = 32000;
|
sl@0
|
1147 |
TInt16 int16_2 = 32000;
|
sl@0
|
1148 |
TInt32 int32_1 = 2147480000;
|
sl@0
|
1149 |
TInt32 int32_2 = 2147480000;
|
sl@0
|
1150 |
TInt64 int64_1 = 9223372036854770000;
|
sl@0
|
1151 |
TInt64 int64_2 = 9223372036854770000;
|
sl@0
|
1152 |
|
sl@0
|
1153 |
TBtreeKey key20(0,ECmpTInt8);
|
sl@0
|
1154 |
test( key20.Compare(&int8_1, &int8_2)==0);
|
sl@0
|
1155 |
TBtreeKey key21(0,ECmpTInt16);
|
sl@0
|
1156 |
test( key21.Compare(&int16_1, &int16_2)==0);
|
sl@0
|
1157 |
TBtreeKey key22(0,ECmpTInt32);
|
sl@0
|
1158 |
test( key22.Compare(&int32_1, &int32_2)==0);
|
sl@0
|
1159 |
|
sl@0
|
1160 |
TBtreeKey key24(0,ECmpTUint8);
|
sl@0
|
1161 |
test( key24.Compare(&int8_1, &int8_2)==0);
|
sl@0
|
1162 |
TBtreeKey key25(0,ECmpTUint16);
|
sl@0
|
1163 |
test( key25.Compare(&int16_1, &int16_2)==0);
|
sl@0
|
1164 |
TBtreeKey key26(0,ECmpTUint32);
|
sl@0
|
1165 |
test( key26.Compare(&int32_1, &int32_2)==0);
|
sl@0
|
1166 |
TBtreeKey key28(0,ECmpTInt64);
|
sl@0
|
1167 |
test( key28.Compare(&int64_1, &int64_2)==0);
|
sl@0
|
1168 |
|
sl@0
|
1169 |
//one is bigger
|
sl@0
|
1170 |
int32_1+=4;
|
sl@0
|
1171 |
int64_1+=54;
|
sl@0
|
1172 |
test( key22.Compare(&int32_1, &int32_2)==1);
|
sl@0
|
1173 |
test( key22.Compare(&int32_2, &int32_1)==-1);
|
sl@0
|
1174 |
test( key26.Compare(&int32_1, &int32_2)==1);
|
sl@0
|
1175 |
test( key26.Compare(&int32_2, &int32_1)==-1);
|
sl@0
|
1176 |
test( key28.Compare(&int64_1, &int64_2)==1);
|
sl@0
|
1177 |
test( key28.Compare(&int64_2, &int64_1)==-1);
|
sl@0
|
1178 |
|
sl@0
|
1179 |
//prepare second 16bit descriptor to be greater than first one
|
sl@0
|
1180 |
text16Key2.Copy(_L(" Ala mb kotb"));
|
sl@0
|
1181 |
ptr16 = const_cast<TUint16*>(text16Key2.PtrZ());
|
sl@0
|
1182 |
*ptr16 = text16Key2.Length();
|
sl@0
|
1183 |
|
sl@0
|
1184 |
//prepare second 8bit descriptor to be greater than first one
|
sl@0
|
1185 |
textKey2.Copy(_L(" Ala mb kotb"));
|
sl@0
|
1186 |
ptr = const_cast<TUint8*>(textKey2.PtrZ());
|
sl@0
|
1187 |
*ptr = textKey2.Length();
|
sl@0
|
1188 |
|
sl@0
|
1189 |
//testing Between function
|
sl@0
|
1190 |
TBtreePivot pivot;
|
sl@0
|
1191 |
|
sl@0
|
1192 |
test.Next(_L("MBtreeKey Between function, not fully implemented. See comments."));
|
sl@0
|
1193 |
/**
|
sl@0
|
1194 |
* For all tests bellow we should made tests if
|
sl@0
|
1195 |
* pivot > textKey1 && pivot < textKey2
|
sl@0
|
1196 |
* but function between is not properly implemented yet
|
sl@0
|
1197 |
* then we don't check result
|
sl@0
|
1198 |
*/
|
sl@0
|
1199 |
|
sl@0
|
1200 |
//TBtreeKey key4(0,ECmpNormal8);
|
sl@0
|
1201 |
key4.Between(textKey1.PtrZ(),textKey2.PtrZ(),pivot);
|
sl@0
|
1202 |
//TBtreeKey key4_1(0,ECmpNormal8,13);
|
sl@0
|
1203 |
key4_1.Between(textKey1.PtrZ(),textKey2.PtrZ(),pivot);
|
sl@0
|
1204 |
|
sl@0
|
1205 |
//TBtreeKey key5(0,ECmpNormal16);
|
sl@0
|
1206 |
key5.Between(text16Key1.PtrZ(),text16Key2.PtrZ(),pivot);
|
sl@0
|
1207 |
//TBtreeKey key5_1(0,ECmpNormal16,13);
|
sl@0
|
1208 |
key5_1.Between(text16Key1.PtrZ(),text16Key2.PtrZ(),pivot);
|
sl@0
|
1209 |
|
sl@0
|
1210 |
//TBtreeKey key7(0,ECmpFolded8);
|
sl@0
|
1211 |
key7.Between(textKey1.PtrZ(),textKey2.PtrZ(),pivot);
|
sl@0
|
1212 |
//TBtreeKey key7_1(0,ECmpFolded8,13);
|
sl@0
|
1213 |
key7_1.Between(textKey1.PtrZ(),textKey2.PtrZ(),pivot);
|
sl@0
|
1214 |
|
sl@0
|
1215 |
//TBtreeKey key8(0,ECmpFolded16);
|
sl@0
|
1216 |
key8.Between(text16Key1.PtrZ(),text16Key2.PtrZ(),pivot);
|
sl@0
|
1217 |
//TBtreeKey key8_1(0,ECmpFolded16,13);
|
sl@0
|
1218 |
key8_1.Between(text16Key1.PtrZ(),text16Key2.PtrZ(),pivot);
|
sl@0
|
1219 |
|
sl@0
|
1220 |
//TBtreeKey key10(0,ECmpCollated8);
|
sl@0
|
1221 |
key10.Between(textKey1.PtrZ(),textKey2.PtrZ(),pivot);
|
sl@0
|
1222 |
//TBtreeKey key10_1(0,ECmpCollated8,13);
|
sl@0
|
1223 |
key10_1.Between(textKey1.PtrZ(),textKey2.PtrZ(),pivot);
|
sl@0
|
1224 |
|
sl@0
|
1225 |
//TBtreeKey key11(0,ECmpCollated16);
|
sl@0
|
1226 |
key11.Between(text16Key1.PtrZ(),text16Key2.PtrZ(),pivot);
|
sl@0
|
1227 |
//TBtreeKey key11_1(0,ECmpCollated16,13);
|
sl@0
|
1228 |
key11_1.Between(text16Key1.PtrZ(),text16Key2.PtrZ(),pivot);
|
sl@0
|
1229 |
|
sl@0
|
1230 |
//TBtreeKey key20(0,ECmpTInt8);
|
sl@0
|
1231 |
key20.Between(&int8_1, &int8_2,pivot);
|
sl@0
|
1232 |
//TBtreeKey key21(0,ECmpTInt16);
|
sl@0
|
1233 |
key21.Between(&int16_1, &int16_2,pivot);
|
sl@0
|
1234 |
//TBtreeKey key22(0,ECmpTInt32);
|
sl@0
|
1235 |
key22.Between(&int32_1, &int32_2,pivot);
|
sl@0
|
1236 |
|
sl@0
|
1237 |
//TBtreeKey key24(0,ECmpTUint8);
|
sl@0
|
1238 |
key24.Between(&int8_1, &int8_2,pivot);
|
sl@0
|
1239 |
//TBtreeKey key25(0,ECmpTUint16);
|
sl@0
|
1240 |
key25.Between(&int16_1, &int16_2,pivot);
|
sl@0
|
1241 |
//TBtreeKey key26(0,ECmpTUint32);
|
sl@0
|
1242 |
key26.Between(&int32_1, &int32_2,pivot);
|
sl@0
|
1243 |
//TBtreeKey key28(0,ECmpTInt64);
|
sl@0
|
1244 |
key28.Between(&int64_1, &int64_2,pivot);
|
sl@0
|
1245 |
|
sl@0
|
1246 |
}
|
sl@0
|
1247 |
|
sl@0
|
1248 |
//
|
sl@0
|
1249 |
// Initialise the cleanup stack.
|
sl@0
|
1250 |
//
|
sl@0
|
1251 |
LOCAL_C void setupCleanup()
|
sl@0
|
1252 |
{
|
sl@0
|
1253 |
TheTrapCleanup=CTrapCleanup::New();
|
sl@0
|
1254 |
test(TheTrapCleanup!=NULL);
|
sl@0
|
1255 |
TRAPD(r,\
|
sl@0
|
1256 |
{\
|
sl@0
|
1257 |
for (TInt i=KTestCleanupStack;i>0;i--)\
|
sl@0
|
1258 |
CleanupStack::PushL((TAny*)1);\
|
sl@0
|
1259 |
test(r==KErrNone);\
|
sl@0
|
1260 |
CleanupStack::Pop(KTestCleanupStack);\
|
sl@0
|
1261 |
});
|
sl@0
|
1262 |
test(r==KErrNone);
|
sl@0
|
1263 |
}
|
sl@0
|
1264 |
|
sl@0
|
1265 |
//
|
sl@0
|
1266 |
// Test streaming conversions.
|
sl@0
|
1267 |
//
|
sl@0
|
1268 |
GLDEF_C TInt E32Main()
|
sl@0
|
1269 |
{
|
sl@0
|
1270 |
test.Title();
|
sl@0
|
1271 |
setupCleanup();
|
sl@0
|
1272 |
__UHEAP_MARK;
|
sl@0
|
1273 |
//
|
sl@0
|
1274 |
test.Start(_L("Test streaming conversions"));
|
sl@0
|
1275 |
TRAPD(r,testIntL());
|
sl@0
|
1276 |
test(r==KErrNone);
|
sl@0
|
1277 |
TRAP(r,testUintL());
|
sl@0
|
1278 |
test(r==KErrNone);
|
sl@0
|
1279 |
TRAP(r,testRealL());
|
sl@0
|
1280 |
test(r==KErrNone);
|
sl@0
|
1281 |
TRAP(r,testDesL());
|
sl@0
|
1282 |
test(r==KErrNone);
|
sl@0
|
1283 |
TRAP(r,testHBufCL());
|
sl@0
|
1284 |
test(r==KErrNone);
|
sl@0
|
1285 |
TRAP(r,testBufL());
|
sl@0
|
1286 |
test(r==KErrNone);
|
sl@0
|
1287 |
TRAP(r,testArrayFixL());
|
sl@0
|
1288 |
test(r==KErrNone);
|
sl@0
|
1289 |
TRAP(r,testPointL());
|
sl@0
|
1290 |
test(r==KErrNone);
|
sl@0
|
1291 |
TRAP(r,testSizeL());
|
sl@0
|
1292 |
test(r==KErrNone);
|
sl@0
|
1293 |
TRAP(r,testRectL());
|
sl@0
|
1294 |
test(r==KErrNone);
|
sl@0
|
1295 |
//
|
sl@0
|
1296 |
TRAP(r,testFileL());
|
sl@0
|
1297 |
test(r==KErrNone);
|
sl@0
|
1298 |
TRAP(r,testFileRShareBufL());
|
sl@0
|
1299 |
test(r==KErrNone);
|
sl@0
|
1300 |
TRAP(r,testTStreamExchangeAndMarkL());
|
sl@0
|
1301 |
test(r==KErrNone);
|
sl@0
|
1302 |
TRAP(r,testMBtreeKeyL());
|
sl@0
|
1303 |
test(r==KErrNone);
|
sl@0
|
1304 |
test.End();
|
sl@0
|
1305 |
//
|
sl@0
|
1306 |
__UHEAP_MARKEND;
|
sl@0
|
1307 |
delete TheTrapCleanup;
|
sl@0
|
1308 |
test.Close();
|
sl@0
|
1309 |
return 0;
|
sl@0
|
1310 |
}
|
sl@0
|
1311 |
|