1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/ossrv/lowlevellibsandfws/apputils/tsrc/t_strings/T_StringPoolTest.cpp Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,156 @@
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 +// Demonstrates a simple set of derived class implementations to
1.18 +// test the RStringPool class using the test bed.
1.19 +// It may be used as a basis to develop a full test bed dll.
1.20 +// For support and comment please contact the authors.
1.21 +//
1.22 +//
1.23 +
1.24 +#ifdef __WINS__
1.25 +#pragma warning(disable : 4097) // disable typedef warning
1.26 +#endif
1.27 +
1.28 +#include "StringPoolUnitTest.h"
1.29 +#include <ecom/test_bed/componenttester.h>
1.30 +
1.31 +// ______________________________________________________________________________
1.32 +//
1.33 +/**
1.34 + @internalComponent
1.35 + Comments : Test the RStringPool class.
1.36 + */
1.37 +class CStringPool_ComponentTest : public CComponentTester
1.38 + {
1.39 +public:
1.40 + /**
1.41 + @fn NewLC(CDataLogger& aDataLogger,
1.42 + MComponentTestObserver& aObserver)
1.43 + Intended Usage : Standard two-phase construction which leaves nothing on the
1.44 + cleanup stack.
1.45 + Error Condition : Leaves with the error code.
1.46 + @leave KErrNoMemory
1.47 + @since 6.0
1.48 + @param aDataLogger The output logging object.
1.49 + @param aObserver The observer of this component test.
1.50 + @return CStringPool_ComponentTest* The constructed object.
1.51 + @pre None.
1.52 + @post CStringPool_ComponentTest is fully constructed.
1.53 + */
1.54 + static CStringPool_ComponentTest* NewLC(CDataLogger& aDataLogger,
1.55 + MComponentTestObserver& aObserver);
1.56 +
1.57 +private:
1.58 + /**
1.59 + @fn CStringPool_ComponentTest(CDataLogger& aDataLogger,
1.60 + MComponentTestObserver& aObserver)
1.61 + Intended Usage : Standard c'tor method.
1.62 + Error Condition : None.
1.63 + @since 6.0
1.64 + @param aDataLogger The logging object.
1.65 + @param aObserver The observer of this component test.
1.66 + @pre None.
1.67 + @post CStringPool_ComponentTest is fully constructed.
1.68 + */
1.69 + inline CStringPool_ComponentTest(CDataLogger& aDataLogger,
1.70 + MComponentTestObserver& aObserver);
1.71 + /**
1.72 + @fn void ConstructL()
1.73 + Intended Usage : Second phase of safe two phase construction,
1.74 + to complete the object initialisation.
1.75 + Error Condition : Leaves with an error code.
1.76 + @leave KErrNoMemory.
1.77 + @since 6.0
1.78 + @return None
1.79 + @pre CStringPool_ComponentTest is fully constructed.
1.80 + @post CStringPool_ComponentTest is fully initialised.
1.81 + */
1.82 + inline void ConstructL();
1.83 +
1.84 + }; // CStringPool_ComponentTest
1.85 +
1.86 +// ______________________________________________________________________________
1.87 +//
1.88 +inline CStringPool_ComponentTest* CStringPool_ComponentTest::NewLC(CDataLogger& aDataLogger, MComponentTestObserver& aObserver)
1.89 + {
1.90 + CStringPool_ComponentTest* self = new (ELeave) CStringPool_ComponentTest(aDataLogger, aObserver);
1.91 + CleanupStack::PushL(self);
1.92 + self->ConstructL();
1.93 + return self;
1.94 + }
1.95 +
1.96 +inline CStringPool_ComponentTest::CStringPool_ComponentTest(CDataLogger& aDataLogger,
1.97 + MComponentTestObserver& aObserver)
1.98 +: CComponentTester(aDataLogger, aObserver)
1.99 + {
1.100 + // Do nothing here.
1.101 + }
1.102 +
1.103 +/**
1.104 +@SYMTestCaseID SYSLIB-BAFL-CT-0493
1.105 +@SYMTestCaseDesc Tests the functionality of RStringPool class
1.106 +@SYMTestPriority High
1.107 +@SYMTestActions Attempt to load short,large,multiple and irrelevant tables
1.108 +@SYMTestExpectedResults Test must not fail
1.109 +@SYMREQ REQ0000
1.110 +*/
1.111 +inline void CStringPool_ComponentTest::ConstructL()
1.112 + {
1.113 + // Perform base class initialization
1.114 + ComponentTesterConstructL();
1.115 + // CI tests with no table loaded
1.116 + AddUnitTestL(CStringPool_CaseInsensitive_UnitTest::NewL(iDataLogger, *this));
1.117 + // CS tests with a Short table loaded
1.118 + AddUnitTestL(CStringPool_CaseSensitive_UnitTest::NewL(iDataLogger, *this));
1.119 + // CI tests with a Short table loaded, and callback test
1.120 + //.Also tested defects : BEU-55DJG3 , KRN-56NDEZ, APY-57TEH3, HAD57SK27OK
1.121 + AddUnitTestL(CStringPool_ShortTable_UnitTest::NewL(iDataLogger, *this));
1.122 + // CS tests with a Short table loaded
1.123 + AddUnitTestL(CStringPool_ShortTableCS_UnitTest::NewL(iDataLogger, *this));
1.124 + // CI tests with a Irrelevant table loaded
1.125 + AddUnitTestL(CStringPool_IrrelevantTable_UnitTest::NewL(iDataLogger, *this));
1.126 + // CS tests with a Irrelevant table loaded
1.127 + AddUnitTestL(CStringPool_IrrelevantTableCS_UnitTest::NewL(iDataLogger, *this));
1.128 + // CI tests with a Large table loaded
1.129 + AddUnitTestL(CStringPool_LongTable_UnitTest::NewL(iDataLogger, *this));
1.130 + // CS tests with a Large table loaded
1.131 + AddUnitTestL(CStringPool_LongTableCS_UnitTest::NewL(iDataLogger, *this));
1.132 + // CI tests with a Multiple Tables
1.133 + AddUnitTestL(CStringPool_MultipleTableShortCI_UnitTest::NewL(iDataLogger, *this));
1.134 + // CS tests with a Multiple Tables
1.135 + AddUnitTestL(CStringPool_MultipleTableShortCS_UnitTest::NewL(iDataLogger, *this));
1.136 +
1.137 + }
1.138 +
1.139 +// ______________________________________________________________________________
1.140 +//
1.141 +EXPORT_C CComponentTester* NewComponentTestLC(CDataLogger& aDataLogger,
1.142 + MComponentTestObserver& aComponentTestObserver)
1.143 + {
1.144 + return CStringPool_ComponentTest::NewLC(aDataLogger, aComponentTestObserver);
1.145 + }
1.146 +
1.147 +
1.148 +// ___________________________________________________________________________
1.149 +//
1.150 +// This section of the module simply includes the exported test harness template which
1.151 +// makes this a "whole" CPP file with a E32Main entry point below. The test MMP
1.152 +// project file can then produce a EXE for the test project instead of a DLL.
1.153 +
1.154 +#include "ecom/test_bed/testharnesstemplate.h"
1.155 +
1.156 +GLDEF_C TInt E32Main()
1.157 + {
1.158 + return E32Main_TestHarness(NewComponentTestLC);
1.159 + }