1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/ossrv/lowlevellibsandfws/apputils/tsrc/T_CELL.CPP Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,231 @@
1.4 +// Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
1.5 +// All rights reserved.
1.6 +// This component and the accompanying materials are made available
1.7 +// under the terms of "Eclipse Public License v1.0"
1.8 +// which accompanies this distribution, and is available
1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.10 +//
1.11 +// Initial Contributors:
1.12 +// Nokia Corporation - initial contribution.
1.13 +//
1.14 +// Contributors:
1.15 +//
1.16 +// Description:
1.17 +// Written by Martin, May 1996
1.18 +//
1.19 +//
1.20 +
1.21 +
1.22 +#include <e32std.h>
1.23 +#include <e32base.h>
1.24 +#include <e32test.h>
1.25 +#include <s32mem.h>
1.26 +#include <bacell.h>
1.27 +
1.28 +LOCAL_D RTest test(_L("T_CELL"));
1.29 +
1.30 +class Test
1.31 + {
1.32 +public:
1.33 + static void Test1();
1.34 + static void Test2();
1.35 + static void Test3();
1.36 + static void Test4L();
1.37 + };
1.38 +
1.39 +/**
1.40 +@SYMTestCaseID SYSLIB-BAFL-CT-0400
1.41 +@SYMTestCaseDesc Tests the functionality of TCellRef::operator ==() and !=()
1.42 +@SYMTestPriority High
1.43 +@SYMTestActions Test the equality of two cells defined by TCellRef's constructor
1.44 + Test the equality after changing the offsets of the cells already created
1.45 +@SYMTestExpectedResults Test must not fail
1.46 +@SYMREQ REQ0000
1.47 +*/
1.48 +void Test::Test1()
1.49 + {
1.50 + __UHEAP_MARK;
1.51 + test.Start(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0400 Cells "));
1.52 + TCellRef c1(0,0);
1.53 + TCellRef c2(0,0);
1.54 + TCellRef c3(1,1);
1.55 + TCellRef c4 = c3;
1.56 + TCellRef c5(100,100);
1.57 +
1.58 + test(c1==c2);
1.59 + test(c3==c4);
1.60 + test(c1!=c3);
1.61 +
1.62 + c4 = c5;
1.63 + test(c4==c5);
1.64 +
1.65 + c2.Offset(1,1);
1.66 + test(c2==c3);
1.67 + c2.Offset(99,99);
1.68 + test(c2==c5);
1.69 +
1.70 + c2 = c2 - TCellRef(48,40);
1.71 + test(c2==TCellRef(52,60));
1.72 + c2 = c2 + TCellRef(100,100);
1.73 + test(c2==TCellRef(152,160));
1.74 +
1.75 + test.End();
1.76 + __UHEAP_MARKEND;
1.77 + }
1.78 +
1.79 +/**
1.80 +@SYMTestCaseID SYSLIB-BAFL-CT-0401
1.81 +@SYMTestCaseDesc Tests the functionality of TRangeRef::NoRows(),NoCols(),NoCells(),Contains() functions
1.82 +@SYMTestPriority Medium
1.83 +@SYMTestActions Test the equality of two objects defined by TRangeRef's
1.84 + Test the no of rows & columns after a range is defined
1.85 + Test the existence of a cell after a range is defined.
1.86 +@SYMTestExpectedResults Test must not fail
1.87 +@SYMREQ REQ0000
1.88 +*/
1.89 +void Test::Test2()
1.90 + {
1.91 + __UHEAP_MARK;
1.92 + test.Start(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0401 Ranges "));
1.93 +
1.94 + TRangeRef r1(TCellRef(2,3),TCellRef(3,5));
1.95 + TRangeRef r2(2,3,3,5);
1.96 + TRangeRef r3(2,4,3,6);
1.97 + TRangeRef r5(1,0,19,20);
1.98 +
1.99 + test(r1==r2);
1.100 + test(r2!=r3);
1.101 + r2 = r3;
1.102 + test(r2==r3);
1.103 +
1.104 + r2.SetRange(2,3,3,5);
1.105 + test(r2==r1);
1.106 + r2.SetRange(TCellRef(1,0),TCellRef(19,20));
1.107 + test(r2==r5);
1.108 +
1.109 + {test(TRangeRef(TCellRef(2,3),TCellRef(3,5)).NoRows()==2);}
1.110 + {test(TRangeRef(TCellRef(2,3),TCellRef(3,5)).NoCols()==3);}
1.111 + {test(TRangeRef(TCellRef(2,3),TCellRef(3,5)).NoCells()==6);}
1.112 +
1.113 + {test(TRangeRef(TCellRef(1,7),TCellRef(10,20)).NoRows()==10);}
1.114 + {test(TRangeRef(TCellRef(1,7),TCellRef(10,20)).NoCols()==14);}
1.115 + {test(TRangeRef(TCellRef(1,7),TCellRef(10,20)).NoCells()==140);}
1.116 +
1.117 + {test(TRangeRef(TCellRef(2,3),TCellRef(3,5)).Contains(TCellRef(3,3)));}
1.118 + {test(TRangeRef(TCellRef(2,3),TCellRef(3,5)).Contains(TCellRef(2,3)));}
1.119 + {test(TRangeRef(TCellRef(2,3),TCellRef(3,5)).Contains(TCellRef(3,5)));}
1.120 + {test(!TRangeRef(TCellRef(2,3),TCellRef(3,5)).Contains(TCellRef(1,3)));}
1.121 + {test(!TRangeRef(TCellRef(2,3),TCellRef(3,5)).Contains(TCellRef(3,6)));}
1.122 +
1.123 + test.End();
1.124 + __UHEAP_MARKEND;
1.125 + }
1.126 +
1.127 +/**
1.128 +@SYMTestCaseID SYSLIB-BAFL-CT-0402
1.129 +@SYMTestCaseDesc TRangeRef class functionality test
1.130 +@SYMTestPriority Medium
1.131 +@SYMTestActions Test range of cells defined by TRangeRef by iteration and checking the count
1.132 +@SYMTestExpectedResults Tests must not fail
1.133 +@SYMREQ REQ0000
1.134 +*/
1.135 +void Test::Test3()
1.136 + {
1.137 + __UHEAP_MARK;
1.138 + test.Start(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0402 Range iterator "));
1.139 +
1.140 + {TRangeRef range(TCellRef(2,3),TCellRef(10,24));
1.141 + TRangeRef::TIter iter(range);
1.142 + test(iter.iCurrent==range.iFrom);
1.143 + TInt count = 0;
1.144 + while (iter.InRange())
1.145 + {
1.146 + ++iter;
1.147 + ++count;
1.148 + }
1.149 + test(count==range.NoCells());
1.150 + test(iter.iCurrent==TCellRef(range.iTo.iRow+1,range.iFrom.iCol));}
1.151 +
1.152 + {TRangeRef range(TCellRef(2,3),TCellRef(2,3));
1.153 + TRangeRef::TIter iter(range);
1.154 + test(iter.iCurrent==range.iFrom);
1.155 + TInt count = 0;
1.156 + while (iter.InRange())
1.157 + {
1.158 + ++iter;
1.159 + ++count;
1.160 + }
1.161 + test(count==1);}
1.162 +
1.163 +
1.164 + {TRangeRef range(TCellRef(2,3),TCellRef(2,-3));
1.165 + TRangeRef::TIter iter(range);
1.166 + test(iter.iCurrent==range.iFrom);
1.167 + TInt count = 0;
1.168 + while (iter.InRange())
1.169 + {
1.170 + ++iter;
1.171 + ++count;
1.172 + }
1.173 + test(count==0);}
1.174 +
1.175 + test.End();
1.176 + __UHEAP_MARKEND;
1.177 + }
1.178 +
1.179 +/**
1.180 +@SYMTestCaseID SYSLIB-BAFL-CT-0403
1.181 +@SYMTestCaseDesc Tests for RDesWriteStream and RDesReadStream classes
1.182 +@SYMTestPriority Medium
1.183 +@SYMTestActions Test the cell's info by writing and reading back from stream.
1.184 +@SYMTestExpectedResults Tests must not fail
1.185 +@SYMREQ REQ0000
1.186 +*/
1.187 +void Test::Test4L()
1.188 + {
1.189 + __UHEAP_MARK;
1.190 + test.Start(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0403 Streaming "));
1.191 +
1.192 + TBuf8<64> buf;
1.193 + RDesWriteStream writeStream(buf);
1.194 + TCellRef cell1(2,5);
1.195 + TCellRef cell2(6,8);
1.196 + TRangeRef range1(12,13,2,5);
1.197 + writeStream << cell1;
1.198 + writeStream << cell2;
1.199 + writeStream.WriteInt32L(KMaxTInt32);
1.200 + writeStream.WriteInt32L(KMinTInt32);
1.201 + writeStream << range1;
1.202 + writeStream.Close();
1.203 +
1.204 + RDesReadStream readStream(buf);
1.205 + readStream >> range1;
1.206 + test(range1==TRangeRef(cell1,cell2));
1.207 + readStream >> range1;
1.208 + test(range1.iFrom==TCellRef(KMaxTInt32,KMinTInt32));
1.209 + test(range1.iTo.iRow==12);
1.210 + test(range1.iTo.iCol==13);
1.211 + readStream >> cell2;
1.212 + test(cell1==cell2);
1.213 + readStream.Close();
1.214 +
1.215 + test.End();
1.216 + __UHEAP_MARKEND;
1.217 + }
1.218 +
1.219 +TInt E32Main()
1.220 + {
1.221 + __UHEAP_MARK;
1.222 + test.Title();
1.223 +
1.224 + Test::Test1();
1.225 + Test::Test2();
1.226 + Test::Test3();
1.227 + Test::Test4L();
1.228 +
1.229 + test.End();
1.230 + test.Close();
1.231 +
1.232 + __UHEAP_MARKEND;
1.233 + return 0;
1.234 + }