sl@0: // Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // Written by Martin, May 1996 sl@0: // sl@0: // sl@0: sl@0: sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: sl@0: LOCAL_D RTest test(_L("T_CELL")); sl@0: sl@0: class Test sl@0: { sl@0: public: sl@0: static void Test1(); sl@0: static void Test2(); sl@0: static void Test3(); sl@0: static void Test4L(); sl@0: }; sl@0: sl@0: /** sl@0: @SYMTestCaseID SYSLIB-BAFL-CT-0400 sl@0: @SYMTestCaseDesc Tests the functionality of TCellRef::operator ==() and !=() sl@0: @SYMTestPriority High sl@0: @SYMTestActions Test the equality of two cells defined by TCellRef's constructor sl@0: Test the equality after changing the offsets of the cells already created sl@0: @SYMTestExpectedResults Test must not fail sl@0: @SYMREQ REQ0000 sl@0: */ sl@0: void Test::Test1() sl@0: { sl@0: __UHEAP_MARK; sl@0: test.Start(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0400 Cells ")); sl@0: TCellRef c1(0,0); sl@0: TCellRef c2(0,0); sl@0: TCellRef c3(1,1); sl@0: TCellRef c4 = c3; sl@0: TCellRef c5(100,100); sl@0: sl@0: test(c1==c2); sl@0: test(c3==c4); sl@0: test(c1!=c3); sl@0: sl@0: c4 = c5; sl@0: test(c4==c5); sl@0: sl@0: c2.Offset(1,1); sl@0: test(c2==c3); sl@0: c2.Offset(99,99); sl@0: test(c2==c5); sl@0: sl@0: c2 = c2 - TCellRef(48,40); sl@0: test(c2==TCellRef(52,60)); sl@0: c2 = c2 + TCellRef(100,100); sl@0: test(c2==TCellRef(152,160)); sl@0: sl@0: test.End(); sl@0: __UHEAP_MARKEND; sl@0: } sl@0: sl@0: /** sl@0: @SYMTestCaseID SYSLIB-BAFL-CT-0401 sl@0: @SYMTestCaseDesc Tests the functionality of TRangeRef::NoRows(),NoCols(),NoCells(),Contains() functions sl@0: @SYMTestPriority Medium sl@0: @SYMTestActions Test the equality of two objects defined by TRangeRef's sl@0: Test the no of rows & columns after a range is defined sl@0: Test the existence of a cell after a range is defined. sl@0: @SYMTestExpectedResults Test must not fail sl@0: @SYMREQ REQ0000 sl@0: */ sl@0: void Test::Test2() sl@0: { sl@0: __UHEAP_MARK; sl@0: test.Start(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0401 Ranges ")); sl@0: sl@0: TRangeRef r1(TCellRef(2,3),TCellRef(3,5)); sl@0: TRangeRef r2(2,3,3,5); sl@0: TRangeRef r3(2,4,3,6); sl@0: TRangeRef r5(1,0,19,20); sl@0: sl@0: test(r1==r2); sl@0: test(r2!=r3); sl@0: r2 = r3; sl@0: test(r2==r3); sl@0: sl@0: r2.SetRange(2,3,3,5); sl@0: test(r2==r1); sl@0: r2.SetRange(TCellRef(1,0),TCellRef(19,20)); sl@0: test(r2==r5); sl@0: sl@0: {test(TRangeRef(TCellRef(2,3),TCellRef(3,5)).NoRows()==2);} sl@0: {test(TRangeRef(TCellRef(2,3),TCellRef(3,5)).NoCols()==3);} sl@0: {test(TRangeRef(TCellRef(2,3),TCellRef(3,5)).NoCells()==6);} sl@0: sl@0: {test(TRangeRef(TCellRef(1,7),TCellRef(10,20)).NoRows()==10);} sl@0: {test(TRangeRef(TCellRef(1,7),TCellRef(10,20)).NoCols()==14);} sl@0: {test(TRangeRef(TCellRef(1,7),TCellRef(10,20)).NoCells()==140);} sl@0: sl@0: {test(TRangeRef(TCellRef(2,3),TCellRef(3,5)).Contains(TCellRef(3,3)));} sl@0: {test(TRangeRef(TCellRef(2,3),TCellRef(3,5)).Contains(TCellRef(2,3)));} sl@0: {test(TRangeRef(TCellRef(2,3),TCellRef(3,5)).Contains(TCellRef(3,5)));} sl@0: {test(!TRangeRef(TCellRef(2,3),TCellRef(3,5)).Contains(TCellRef(1,3)));} sl@0: {test(!TRangeRef(TCellRef(2,3),TCellRef(3,5)).Contains(TCellRef(3,6)));} sl@0: sl@0: test.End(); sl@0: __UHEAP_MARKEND; sl@0: } sl@0: sl@0: /** sl@0: @SYMTestCaseID SYSLIB-BAFL-CT-0402 sl@0: @SYMTestCaseDesc TRangeRef class functionality test sl@0: @SYMTestPriority Medium sl@0: @SYMTestActions Test range of cells defined by TRangeRef by iteration and checking the count sl@0: @SYMTestExpectedResults Tests must not fail sl@0: @SYMREQ REQ0000 sl@0: */ sl@0: void Test::Test3() sl@0: { sl@0: __UHEAP_MARK; sl@0: test.Start(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0402 Range iterator ")); sl@0: sl@0: {TRangeRef range(TCellRef(2,3),TCellRef(10,24)); sl@0: TRangeRef::TIter iter(range); sl@0: test(iter.iCurrent==range.iFrom); sl@0: TInt count = 0; sl@0: while (iter.InRange()) sl@0: { sl@0: ++iter; sl@0: ++count; sl@0: } sl@0: test(count==range.NoCells()); sl@0: test(iter.iCurrent==TCellRef(range.iTo.iRow+1,range.iFrom.iCol));} sl@0: sl@0: {TRangeRef range(TCellRef(2,3),TCellRef(2,3)); sl@0: TRangeRef::TIter iter(range); sl@0: test(iter.iCurrent==range.iFrom); sl@0: TInt count = 0; sl@0: while (iter.InRange()) sl@0: { sl@0: ++iter; sl@0: ++count; sl@0: } sl@0: test(count==1);} sl@0: sl@0: sl@0: {TRangeRef range(TCellRef(2,3),TCellRef(2,-3)); sl@0: TRangeRef::TIter iter(range); sl@0: test(iter.iCurrent==range.iFrom); sl@0: TInt count = 0; sl@0: while (iter.InRange()) sl@0: { sl@0: ++iter; sl@0: ++count; sl@0: } sl@0: test(count==0);} sl@0: sl@0: test.End(); sl@0: __UHEAP_MARKEND; sl@0: } sl@0: sl@0: /** sl@0: @SYMTestCaseID SYSLIB-BAFL-CT-0403 sl@0: @SYMTestCaseDesc Tests for RDesWriteStream and RDesReadStream classes sl@0: @SYMTestPriority Medium sl@0: @SYMTestActions Test the cell's info by writing and reading back from stream. sl@0: @SYMTestExpectedResults Tests must not fail sl@0: @SYMREQ REQ0000 sl@0: */ sl@0: void Test::Test4L() sl@0: { sl@0: __UHEAP_MARK; sl@0: test.Start(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0403 Streaming ")); sl@0: sl@0: TBuf8<64> buf; sl@0: RDesWriteStream writeStream(buf); sl@0: TCellRef cell1(2,5); sl@0: TCellRef cell2(6,8); sl@0: TRangeRef range1(12,13,2,5); sl@0: writeStream << cell1; sl@0: writeStream << cell2; sl@0: writeStream.WriteInt32L(KMaxTInt32); sl@0: writeStream.WriteInt32L(KMinTInt32); sl@0: writeStream << range1; sl@0: writeStream.Close(); sl@0: sl@0: RDesReadStream readStream(buf); sl@0: readStream >> range1; sl@0: test(range1==TRangeRef(cell1,cell2)); sl@0: readStream >> range1; sl@0: test(range1.iFrom==TCellRef(KMaxTInt32,KMinTInt32)); sl@0: test(range1.iTo.iRow==12); sl@0: test(range1.iTo.iCol==13); sl@0: readStream >> cell2; sl@0: test(cell1==cell2); sl@0: readStream.Close(); sl@0: sl@0: test.End(); sl@0: __UHEAP_MARKEND; sl@0: } sl@0: sl@0: TInt E32Main() sl@0: { sl@0: __UHEAP_MARK; sl@0: test.Title(); sl@0: sl@0: Test::Test1(); sl@0: Test::Test2(); sl@0: Test::Test3(); sl@0: Test::Test4L(); sl@0: sl@0: test.End(); sl@0: test.Close(); sl@0: sl@0: __UHEAP_MARKEND; sl@0: return 0; sl@0: }