sl@0
|
1 |
// Copyright (c) 1997-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 |
// Written by Martin, May 1996
|
sl@0
|
15 |
//
|
sl@0
|
16 |
//
|
sl@0
|
17 |
|
sl@0
|
18 |
|
sl@0
|
19 |
#include <e32std.h>
|
sl@0
|
20 |
#include <e32base.h>
|
sl@0
|
21 |
#include <e32test.h>
|
sl@0
|
22 |
#include <s32mem.h>
|
sl@0
|
23 |
#include <bacell.h>
|
sl@0
|
24 |
|
sl@0
|
25 |
LOCAL_D RTest test(_L("T_CELL"));
|
sl@0
|
26 |
|
sl@0
|
27 |
class Test
|
sl@0
|
28 |
{
|
sl@0
|
29 |
public:
|
sl@0
|
30 |
static void Test1();
|
sl@0
|
31 |
static void Test2();
|
sl@0
|
32 |
static void Test3();
|
sl@0
|
33 |
static void Test4L();
|
sl@0
|
34 |
};
|
sl@0
|
35 |
|
sl@0
|
36 |
/**
|
sl@0
|
37 |
@SYMTestCaseID SYSLIB-BAFL-CT-0400
|
sl@0
|
38 |
@SYMTestCaseDesc Tests the functionality of TCellRef::operator ==() and !=()
|
sl@0
|
39 |
@SYMTestPriority High
|
sl@0
|
40 |
@SYMTestActions Test the equality of two cells defined by TCellRef's constructor
|
sl@0
|
41 |
Test the equality after changing the offsets of the cells already created
|
sl@0
|
42 |
@SYMTestExpectedResults Test must not fail
|
sl@0
|
43 |
@SYMREQ REQ0000
|
sl@0
|
44 |
*/
|
sl@0
|
45 |
void Test::Test1()
|
sl@0
|
46 |
{
|
sl@0
|
47 |
__UHEAP_MARK;
|
sl@0
|
48 |
test.Start(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0400 Cells "));
|
sl@0
|
49 |
TCellRef c1(0,0);
|
sl@0
|
50 |
TCellRef c2(0,0);
|
sl@0
|
51 |
TCellRef c3(1,1);
|
sl@0
|
52 |
TCellRef c4 = c3;
|
sl@0
|
53 |
TCellRef c5(100,100);
|
sl@0
|
54 |
|
sl@0
|
55 |
test(c1==c2);
|
sl@0
|
56 |
test(c3==c4);
|
sl@0
|
57 |
test(c1!=c3);
|
sl@0
|
58 |
|
sl@0
|
59 |
c4 = c5;
|
sl@0
|
60 |
test(c4==c5);
|
sl@0
|
61 |
|
sl@0
|
62 |
c2.Offset(1,1);
|
sl@0
|
63 |
test(c2==c3);
|
sl@0
|
64 |
c2.Offset(99,99);
|
sl@0
|
65 |
test(c2==c5);
|
sl@0
|
66 |
|
sl@0
|
67 |
c2 = c2 - TCellRef(48,40);
|
sl@0
|
68 |
test(c2==TCellRef(52,60));
|
sl@0
|
69 |
c2 = c2 + TCellRef(100,100);
|
sl@0
|
70 |
test(c2==TCellRef(152,160));
|
sl@0
|
71 |
|
sl@0
|
72 |
test.End();
|
sl@0
|
73 |
__UHEAP_MARKEND;
|
sl@0
|
74 |
}
|
sl@0
|
75 |
|
sl@0
|
76 |
/**
|
sl@0
|
77 |
@SYMTestCaseID SYSLIB-BAFL-CT-0401
|
sl@0
|
78 |
@SYMTestCaseDesc Tests the functionality of TRangeRef::NoRows(),NoCols(),NoCells(),Contains() functions
|
sl@0
|
79 |
@SYMTestPriority Medium
|
sl@0
|
80 |
@SYMTestActions Test the equality of two objects defined by TRangeRef's
|
sl@0
|
81 |
Test the no of rows & columns after a range is defined
|
sl@0
|
82 |
Test the existence of a cell after a range is defined.
|
sl@0
|
83 |
@SYMTestExpectedResults Test must not fail
|
sl@0
|
84 |
@SYMREQ REQ0000
|
sl@0
|
85 |
*/
|
sl@0
|
86 |
void Test::Test2()
|
sl@0
|
87 |
{
|
sl@0
|
88 |
__UHEAP_MARK;
|
sl@0
|
89 |
test.Start(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0401 Ranges "));
|
sl@0
|
90 |
|
sl@0
|
91 |
TRangeRef r1(TCellRef(2,3),TCellRef(3,5));
|
sl@0
|
92 |
TRangeRef r2(2,3,3,5);
|
sl@0
|
93 |
TRangeRef r3(2,4,3,6);
|
sl@0
|
94 |
TRangeRef r5(1,0,19,20);
|
sl@0
|
95 |
|
sl@0
|
96 |
test(r1==r2);
|
sl@0
|
97 |
test(r2!=r3);
|
sl@0
|
98 |
r2 = r3;
|
sl@0
|
99 |
test(r2==r3);
|
sl@0
|
100 |
|
sl@0
|
101 |
r2.SetRange(2,3,3,5);
|
sl@0
|
102 |
test(r2==r1);
|
sl@0
|
103 |
r2.SetRange(TCellRef(1,0),TCellRef(19,20));
|
sl@0
|
104 |
test(r2==r5);
|
sl@0
|
105 |
|
sl@0
|
106 |
{test(TRangeRef(TCellRef(2,3),TCellRef(3,5)).NoRows()==2);}
|
sl@0
|
107 |
{test(TRangeRef(TCellRef(2,3),TCellRef(3,5)).NoCols()==3);}
|
sl@0
|
108 |
{test(TRangeRef(TCellRef(2,3),TCellRef(3,5)).NoCells()==6);}
|
sl@0
|
109 |
|
sl@0
|
110 |
{test(TRangeRef(TCellRef(1,7),TCellRef(10,20)).NoRows()==10);}
|
sl@0
|
111 |
{test(TRangeRef(TCellRef(1,7),TCellRef(10,20)).NoCols()==14);}
|
sl@0
|
112 |
{test(TRangeRef(TCellRef(1,7),TCellRef(10,20)).NoCells()==140);}
|
sl@0
|
113 |
|
sl@0
|
114 |
{test(TRangeRef(TCellRef(2,3),TCellRef(3,5)).Contains(TCellRef(3,3)));}
|
sl@0
|
115 |
{test(TRangeRef(TCellRef(2,3),TCellRef(3,5)).Contains(TCellRef(2,3)));}
|
sl@0
|
116 |
{test(TRangeRef(TCellRef(2,3),TCellRef(3,5)).Contains(TCellRef(3,5)));}
|
sl@0
|
117 |
{test(!TRangeRef(TCellRef(2,3),TCellRef(3,5)).Contains(TCellRef(1,3)));}
|
sl@0
|
118 |
{test(!TRangeRef(TCellRef(2,3),TCellRef(3,5)).Contains(TCellRef(3,6)));}
|
sl@0
|
119 |
|
sl@0
|
120 |
test.End();
|
sl@0
|
121 |
__UHEAP_MARKEND;
|
sl@0
|
122 |
}
|
sl@0
|
123 |
|
sl@0
|
124 |
/**
|
sl@0
|
125 |
@SYMTestCaseID SYSLIB-BAFL-CT-0402
|
sl@0
|
126 |
@SYMTestCaseDesc TRangeRef class functionality test
|
sl@0
|
127 |
@SYMTestPriority Medium
|
sl@0
|
128 |
@SYMTestActions Test range of cells defined by TRangeRef by iteration and checking the count
|
sl@0
|
129 |
@SYMTestExpectedResults Tests must not fail
|
sl@0
|
130 |
@SYMREQ REQ0000
|
sl@0
|
131 |
*/
|
sl@0
|
132 |
void Test::Test3()
|
sl@0
|
133 |
{
|
sl@0
|
134 |
__UHEAP_MARK;
|
sl@0
|
135 |
test.Start(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0402 Range iterator "));
|
sl@0
|
136 |
|
sl@0
|
137 |
{TRangeRef range(TCellRef(2,3),TCellRef(10,24));
|
sl@0
|
138 |
TRangeRef::TIter iter(range);
|
sl@0
|
139 |
test(iter.iCurrent==range.iFrom);
|
sl@0
|
140 |
TInt count = 0;
|
sl@0
|
141 |
while (iter.InRange())
|
sl@0
|
142 |
{
|
sl@0
|
143 |
++iter;
|
sl@0
|
144 |
++count;
|
sl@0
|
145 |
}
|
sl@0
|
146 |
test(count==range.NoCells());
|
sl@0
|
147 |
test(iter.iCurrent==TCellRef(range.iTo.iRow+1,range.iFrom.iCol));}
|
sl@0
|
148 |
|
sl@0
|
149 |
{TRangeRef range(TCellRef(2,3),TCellRef(2,3));
|
sl@0
|
150 |
TRangeRef::TIter iter(range);
|
sl@0
|
151 |
test(iter.iCurrent==range.iFrom);
|
sl@0
|
152 |
TInt count = 0;
|
sl@0
|
153 |
while (iter.InRange())
|
sl@0
|
154 |
{
|
sl@0
|
155 |
++iter;
|
sl@0
|
156 |
++count;
|
sl@0
|
157 |
}
|
sl@0
|
158 |
test(count==1);}
|
sl@0
|
159 |
|
sl@0
|
160 |
|
sl@0
|
161 |
{TRangeRef range(TCellRef(2,3),TCellRef(2,-3));
|
sl@0
|
162 |
TRangeRef::TIter iter(range);
|
sl@0
|
163 |
test(iter.iCurrent==range.iFrom);
|
sl@0
|
164 |
TInt count = 0;
|
sl@0
|
165 |
while (iter.InRange())
|
sl@0
|
166 |
{
|
sl@0
|
167 |
++iter;
|
sl@0
|
168 |
++count;
|
sl@0
|
169 |
}
|
sl@0
|
170 |
test(count==0);}
|
sl@0
|
171 |
|
sl@0
|
172 |
test.End();
|
sl@0
|
173 |
__UHEAP_MARKEND;
|
sl@0
|
174 |
}
|
sl@0
|
175 |
|
sl@0
|
176 |
/**
|
sl@0
|
177 |
@SYMTestCaseID SYSLIB-BAFL-CT-0403
|
sl@0
|
178 |
@SYMTestCaseDesc Tests for RDesWriteStream and RDesReadStream classes
|
sl@0
|
179 |
@SYMTestPriority Medium
|
sl@0
|
180 |
@SYMTestActions Test the cell's info by writing and reading back from stream.
|
sl@0
|
181 |
@SYMTestExpectedResults Tests must not fail
|
sl@0
|
182 |
@SYMREQ REQ0000
|
sl@0
|
183 |
*/
|
sl@0
|
184 |
void Test::Test4L()
|
sl@0
|
185 |
{
|
sl@0
|
186 |
__UHEAP_MARK;
|
sl@0
|
187 |
test.Start(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0403 Streaming "));
|
sl@0
|
188 |
|
sl@0
|
189 |
TBuf8<64> buf;
|
sl@0
|
190 |
RDesWriteStream writeStream(buf);
|
sl@0
|
191 |
TCellRef cell1(2,5);
|
sl@0
|
192 |
TCellRef cell2(6,8);
|
sl@0
|
193 |
TRangeRef range1(12,13,2,5);
|
sl@0
|
194 |
writeStream << cell1;
|
sl@0
|
195 |
writeStream << cell2;
|
sl@0
|
196 |
writeStream.WriteInt32L(KMaxTInt32);
|
sl@0
|
197 |
writeStream.WriteInt32L(KMinTInt32);
|
sl@0
|
198 |
writeStream << range1;
|
sl@0
|
199 |
writeStream.Close();
|
sl@0
|
200 |
|
sl@0
|
201 |
RDesReadStream readStream(buf);
|
sl@0
|
202 |
readStream >> range1;
|
sl@0
|
203 |
test(range1==TRangeRef(cell1,cell2));
|
sl@0
|
204 |
readStream >> range1;
|
sl@0
|
205 |
test(range1.iFrom==TCellRef(KMaxTInt32,KMinTInt32));
|
sl@0
|
206 |
test(range1.iTo.iRow==12);
|
sl@0
|
207 |
test(range1.iTo.iCol==13);
|
sl@0
|
208 |
readStream >> cell2;
|
sl@0
|
209 |
test(cell1==cell2);
|
sl@0
|
210 |
readStream.Close();
|
sl@0
|
211 |
|
sl@0
|
212 |
test.End();
|
sl@0
|
213 |
__UHEAP_MARKEND;
|
sl@0
|
214 |
}
|
sl@0
|
215 |
|
sl@0
|
216 |
TInt E32Main()
|
sl@0
|
217 |
{
|
sl@0
|
218 |
__UHEAP_MARK;
|
sl@0
|
219 |
test.Title();
|
sl@0
|
220 |
|
sl@0
|
221 |
Test::Test1();
|
sl@0
|
222 |
Test::Test2();
|
sl@0
|
223 |
Test::Test3();
|
sl@0
|
224 |
Test::Test4L();
|
sl@0
|
225 |
|
sl@0
|
226 |
test.End();
|
sl@0
|
227 |
test.Close();
|
sl@0
|
228 |
|
sl@0
|
229 |
__UHEAP_MARKEND;
|
sl@0
|
230 |
return 0;
|
sl@0
|
231 |
}
|