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: // Started by DWW, April 1996 sl@0: // Tests descriptor arrays sl@0: // sl@0: // sl@0: sl@0: #include sl@0: #include sl@0: sl@0: LOCAL_D RTest test(_L("T_DESCA")); sl@0: sl@0: class TestDesca sl@0: { sl@0: public: sl@0: void MainTestL(CDesCArray* aDescA); sl@0: void ComparisonTest(CDesCArray* aDescA1,CDesCArray* aDescA2); sl@0: void FoldTestL(CDesCArray* aDescA); sl@0: void MixableTestL(); sl@0: void DoMixableTest(MDesCArray* aDescA); sl@0: void InSequenceTestL(CDesCArray* aDescA); sl@0: }; sl@0: sl@0: /** sl@0: @SYMTestCaseID SYSLIB-BAFL-CT-0408 sl@0: @SYMTestCaseDesc Tests for folded and non-folded find sl@0: @SYMTestPriority Medium sl@0: @SYMTestActions Tests by appending few descriptors and find the position for the target. sl@0: @SYMTestExpectedResults Tests must not fail sl@0: @SYMREQ REQ0000 sl@0: */ sl@0: void TestDesca::FoldTestL(CDesCArray* aDescA) sl@0: { sl@0: test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0408 Test folded and non-folded find ")); sl@0: TPtrC target=_L("abcdefg"); sl@0: aDescA->AppendL(target); sl@0: aDescA->AppendL(_L("aBcDeFg")); sl@0: aDescA->InsertL(0,_L("ABCDEFG")); sl@0: test(aDescA->Count()==3); sl@0: TInt pos=(-1); sl@0: aDescA->Find(target,pos); sl@0: test(pos==0); sl@0: aDescA->Find(target,pos,ECmpNormal); sl@0: test(pos==1); sl@0: test.Next(_L("Test reset")); sl@0: aDescA->Reset(); sl@0: test(!aDescA->Count()); sl@0: } sl@0: sl@0: /** sl@0: @SYMTestCaseID SYSLIB-BAFL-CT-0409 sl@0: @SYMTestCaseDesc CDesCArray class functionality test sl@0: @SYMTestPriority Medium sl@0: @SYMTestActions Add month names to the descriptor array and tests with the find. sl@0: @SYMTestExpectedResults Tests must not fail sl@0: @SYMREQ REQ0000 sl@0: */ sl@0: void TestDesca::MainTestL(CDesCArray* aDescA) sl@0: { sl@0: TMonthName name; sl@0: test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0409 Add 12 month names ")); sl@0: for (TInt ii=0; ii<12; ii++) sl@0: { sl@0: name.Set((TMonth)ii); sl@0: aDescA->AppendL(name); sl@0: } sl@0: test.Next(_L("Check 12 names exist")); sl@0: test(aDescA->Count()==12); sl@0: test.Next(_L("Print the 12 names")); sl@0: for (TInt jj=0; jj<12; jj++) sl@0: test.Printf((*aDescA)[jj]); sl@0: test.Printf(_L("\r\n")); sl@0: test.Next(_L("Find")); sl@0: for (TInt kk=3; kk<12; kk+=3) sl@0: { sl@0: name.Set((TMonth)kk); sl@0: TInt pos=0; sl@0: aDescA->Find(name,pos); sl@0: test(pos==kk); sl@0: } sl@0: test.Next(_L("Delete")); sl@0: aDescA->Delete(2); sl@0: aDescA->Delete(4); sl@0: aDescA->Delete(6); sl@0: test(aDescA->Count()==9); sl@0: test((*aDescA)[6]==name); sl@0: test.Next(_L("Sort")); sl@0: aDescA->Sort(); sl@0: test(aDescA->Count()==9); sl@0: for (TInt ll=0; ll<9; ll++) sl@0: test.Printf((*aDescA)[ll]); sl@0: test.Printf(_L("\r\n")); sl@0: test.End(); sl@0: } sl@0: sl@0: /** sl@0: @SYMTestCaseID SYSLIB-BAFL-CT-0410 sl@0: @SYMTestCaseDesc Comparision of two CDesCArray objects test sl@0: @SYMTestPriority Medium sl@0: @SYMTestActions Check if two descriptor arrays are equal. sl@0: @SYMTestExpectedResults Tests must not fail sl@0: @SYMREQ REQ0000 sl@0: */ sl@0: void TestDesca::ComparisonTest(CDesCArray* aDescA1,CDesCArray* aDescA2) sl@0: { sl@0: test.Start(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0410 Test comparisons ")); sl@0: TInt count=aDescA1->Count(); sl@0: test(aDescA2->Count()==count); sl@0: for (TInt ii=0; iiMdcaCount()==12); sl@0: test.Next(_L("Print the 12 names")); sl@0: for (TInt jj=0; jj<12; jj++) sl@0: test.Printf(aDescA->MdcaPoint(jj)); sl@0: test.Printf(_L("\r\n")); sl@0: delete(aDescA); sl@0: } sl@0: sl@0: /** sl@0: @SYMTestCaseID SYSLIB-BAFL-CT-0412 sl@0: @SYMTestCaseDesc Tests for CDesCArray sequences sl@0: @SYMTestPriority Medium sl@0: @SYMTestActions Checks for the sequence of the literals. sl@0: @SYMTestExpectedResults Tests must not fail sl@0: @SYMREQ REQ0000 sl@0: */ sl@0: void TestDesca::InSequenceTestL(CDesCArray* aDescA) sl@0: { sl@0: test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0412 In Sequence Tests ")); sl@0: aDescA->Reset(); sl@0: TPtrC hello(_S("Hello")); sl@0: TPtrC bye(_S("Bye")); sl@0: TPtrC world(_S("World")); sl@0: TPtrC middle(_S("middle")); sl@0: TPtrC extra(_S("extra")); sl@0: TBuf<32> buffer; sl@0: TInt pos; sl@0: aDescA->AppendL(hello); sl@0: aDescA->AppendL(bye); sl@0: aDescA->AppendL(world); sl@0: aDescA->AppendL(middle); sl@0: test(aDescA->MdcaPoint(0)==hello); sl@0: test(aDescA->MdcaPoint(2)==world); sl@0: // sl@0: aDescA->Sort(ECmpFolded); sl@0: buffer=aDescA->MdcaPoint(2); sl@0: test(buffer==middle); sl@0: test(aDescA->Find(middle,pos,ECmpFolded)==KErrNone); sl@0: test(pos==2); sl@0: test(aDescA->FindIsq(middle,pos,ECmpFolded)==KErrNone); sl@0: test(pos==2); sl@0: test(aDescA->FindIsq(middle,pos,ECmpNormal)==KErrNone); // !! should this fail for non-sorted array?? sl@0: // test(pos==??); sl@0: pos=aDescA->InsertIsqL(extra,ECmpFolded); sl@0: test(pos==1); sl@0: TRAP(pos,aDescA->InsertIsqL(extra,ECmpFolded)); sl@0: test(pos==KErrAlreadyExists); sl@0: pos=aDescA->InsertIsqAllowDuplicatesL(extra,ECmpFolded); sl@0: test(pos==2); sl@0: aDescA->Delete(pos--); sl@0: aDescA->Delete(pos); sl@0: test(aDescA->MdcaCount()==4); sl@0: // sl@0: // Different sort order because of case sl@0: aDescA->Sort(ECmpNormal); sl@0: buffer=aDescA->MdcaPoint(2); sl@0: test(buffer==world); sl@0: test(aDescA->Find(world,pos,ECmpNormal)==KErrNone); sl@0: test(pos==2); sl@0: test(aDescA->FindIsq(world,pos,ECmpNormal)==KErrNone); sl@0: test(pos==2); sl@0: } sl@0: sl@0: class CMonthNameArray : public CArrayFixFlat, public MDesCArray sl@0: { sl@0: public: sl@0: CMonthNameArray() :CArrayFixFlat(4) { } sl@0: private: sl@0: TInt MdcaCount() const { return(Count()); } sl@0: TPtrC MdcaPoint(TInt aIndex) const { return((*this)[aIndex]); } sl@0: }; sl@0: sl@0: /** sl@0: @SYMTestCaseID SYSLIB-BAFL-CT-0413 sl@0: @SYMTestCaseDesc Tests for mixability sl@0: @SYMTestPriority Medium sl@0: @SYMTestActions Tests the mix of setting and appending of month names to the descriptor array sl@0: @SYMTestExpectedResults Tests must not fail sl@0: @SYMREQ REQ0000 sl@0: */ sl@0: void TestDesca::MixableTestL() sl@0: { sl@0: test.Start(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0413 Test mixability ")); sl@0: CMonthNameArray* array=new(ELeave) CMonthNameArray; sl@0: TMonthName name; sl@0: test.Next(_L("Add 12 month names")); sl@0: for (TInt ii=0; ii<12; ii++) sl@0: { sl@0: name.Set((TMonth)ii); sl@0: array->AppendL(name); sl@0: } sl@0: DoMixableTest(array); sl@0: test.End(); sl@0: } sl@0: sl@0: /** sl@0: @SYMTestCaseID SYSLIB-BAFL-CT-0414 sl@0: @SYMTestCaseDesc Descriptor arrays tests sl@0: @SYMTestPriority Medium sl@0: @SYMTestActions Executes all the CDesCArray tests sl@0: @SYMTestExpectedResults Tests must not fail sl@0: @SYMREQ REQ0000 sl@0: */ sl@0: void DoTestsL() sl@0: { sl@0: TestDesca t; sl@0: test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0414 Test CDesCArrayFlat ")); sl@0: CDesCArrayFlat* descFlatArray=new(ELeave) CDesCArrayFlat(4); sl@0: TRAPD(errCode, t.FoldTestL(descFlatArray)); sl@0: test(errCode==KErrNone); sl@0: TRAP(errCode, t.MainTestL(descFlatArray)); sl@0: test(errCode==KErrNone); sl@0: test.Start(_L("Test CDesCArraySeg")); sl@0: CDesCArraySeg* descSegArray=new(ELeave) CDesCArraySeg(3); sl@0: TRAP(errCode, t.FoldTestL(descSegArray)); sl@0: test(errCode==KErrNone); sl@0: TRAP(errCode, t.MainTestL(descSegArray)); sl@0: test(errCode==KErrNone); sl@0: t.ComparisonTest(descFlatArray,descSegArray); sl@0: TRAP(errCode, t.InSequenceTestL(descSegArray)); sl@0: test(errCode==KErrNone); sl@0: TRAP(errCode, t.InSequenceTestL(descFlatArray)); sl@0: test(errCode==KErrNone); sl@0: delete(descFlatArray); sl@0: delete(descSegArray); sl@0: t.MixableTestL(); sl@0: } sl@0: sl@0: GLDEF_C TInt E32Main() sl@0: { sl@0: __UHEAP_MARK; sl@0: CTrapCleanup *cleanup=CTrapCleanup::New(); sl@0: test.Title(); sl@0: test.Start(_L(" Testing descriptor arrays ")); sl@0: TRAPD(err,DoTestsL()); sl@0: test(err==KErrNone); sl@0: test.End(); sl@0: test.Close(); sl@0: delete cleanup; sl@0: __UHEAP_MARKEND; sl@0: return(0); sl@0: }