os/ossrv/lowlevellibsandfws/pluginfw/Test_Bed/TestManagerTest/TestManagerTest.cpp
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/ossrv/lowlevellibsandfws/pluginfw/Test_Bed/TestManagerTest/TestManagerTest.cpp Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,187 @@
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 CTestManager 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 +#include "TestManagerUnitTest.h"
1.25 +#include "ComponentTester.h"
1.26 +
1.27 +RTest test(_L("TestManagerTest.cpp"));
1.28 +
1.29 +// ______________________________________________________________________________
1.30 +//
1.31 +/**
1.32 + @internalComponent
1.33 +
1.34 + Comments : Test the CTestManager class.
1.35 + */
1.36 +class CTestManager_ComponentTest : public CComponentTester
1.37 + {
1.38 +public:
1.39 + /**
1.40 + @fn NewLC(CDataLogger& aDataLogger,
1.41 + MComponentTestObserver& aObserver)
1.42 + Intended Usage : Standard two-phase construction which leaves nothing on the
1.43 + cleanup stack.
1.44 + Error Condition : Leaves with the error code.
1.45 + @leave KErrNoMemory
1.46 + @since 6.0
1.47 + @param aDataLogger The output logging object.
1.48 + @param aObserver The observer of this component test.
1.49 + @return CTestManager_ComponentTest* The constructed object.
1.50 + @pre None.
1.51 + @post CTestManager_ComponentTest is fully constructed.
1.52 + */
1.53 + static CTestManager_ComponentTest* NewLC(CDataLogger& aDataLogger,
1.54 + MComponentTestObserver& aObserver);
1.55 +
1.56 +private:
1.57 + /**
1.58 + @fn CTestManager_ComponentTest(CDataLogger& aDataLogger,
1.59 + MComponentTestObserver& aObserver)
1.60 + Intended Usage : Standard c'tor method.
1.61 + Error Condition : None.
1.62 + @since 6.0
1.63 + @param aDataLogger The logging object.
1.64 + @param aObserver The observer of this component test.
1.65 + @pre None.
1.66 + @post CTestManager_ComponentTest is fully constructed.
1.67 + */
1.68 + inline CTestManager_ComponentTest(CDataLogger& aDataLogger,
1.69 + MComponentTestObserver& aObserver);
1.70 + /**
1.71 + @fn void ConstructL()
1.72 + Intended Usage : Second phase of safe two phase construction,
1.73 + to complete the object initialisation.
1.74 + Error Condition : Leaves with an error code.
1.75 + @leave KErrNoMemory.
1.76 + @since 6.0
1.77 + @return None
1.78 + @pre CTestManager_ComponentTest is fully constructed.
1.79 + @post CTestManager_ComponentTest is fully initialised.
1.80 + */
1.81 + inline void ConstructL();
1.82 +
1.83 + }; // CTestManager_ComponentTest
1.84 +
1.85 +// ______________________________________________________________________________
1.86 +//
1.87 +inline CTestManager_ComponentTest* CTestManager_ComponentTest::NewLC(CDataLogger& aDataLogger, MComponentTestObserver& aObserver)
1.88 + {
1.89 + CTestManager_ComponentTest* self = new (ELeave) CTestManager_ComponentTest(aDataLogger, aObserver);
1.90 + CleanupStack::PushL(self);
1.91 + self->ConstructL();
1.92 + return self;
1.93 + }
1.94 +
1.95 +inline CTestManager_ComponentTest::CTestManager_ComponentTest(CDataLogger& aDataLogger,
1.96 + MComponentTestObserver& aObserver)
1.97 +: CComponentTester(aDataLogger, aObserver)
1.98 + {
1.99 + // Do nothing here.
1.100 + }
1.101 +
1.102 +inline void CTestManager_ComponentTest::ConstructL()
1.103 + {
1.104 + // Perform base class initialization
1.105 + ComponentTesterConstructL();
1.106 +
1.107 + AddUnitTestL(CTestManager_CreateAndDestroy_UnitTest::NewL(iDataLogger, *this));
1.108 + AddUnitTestL(CTestManager_ManageTests_UnitTest::NewL(iDataLogger, *this));
1.109 + }
1.110 +
1.111 +// ______________________________________________________________________________
1.112 +//
1.113 +EXPORT_C CComponentTester* NewComponentTestLC(CDataLogger& aDataLogger,
1.114 + MComponentTestObserver& aComponentTestObserver)
1.115 + {
1.116 + return CTestManager_ComponentTest::NewLC(aDataLogger, aComponentTestObserver);
1.117 + }
1.118 +
1.119 +// ______________________________________________________________________________
1.120 +//
1.121 +class CTestManager_ComponentTest_STUB : public CComponentTester
1.122 + {
1.123 +public:
1.124 + static CTestManager_ComponentTest_STUB* NewLC(CDataLogger& aDataLogger, MComponentTestObserver& aObserver);
1.125 +
1.126 +private:
1.127 + inline CTestManager_ComponentTest_STUB(CDataLogger& aDataLogger, MComponentTestObserver& aObserver);
1.128 + inline void ConstructL();
1.129 + };
1.130 +
1.131 +// ______________________________________________________________________________
1.132 +//
1.133 +inline CTestManager_ComponentTest_STUB* CTestManager_ComponentTest_STUB::NewLC(CDataLogger& aDataLogger, MComponentTestObserver& aObserver)
1.134 + {
1.135 + CTestManager_ComponentTest_STUB* self = new (ELeave) CTestManager_ComponentTest_STUB(aDataLogger, aObserver);
1.136 + CleanupStack::PushL(self);
1.137 + self->ConstructL();
1.138 + return self;
1.139 + }
1.140 +
1.141 +inline CTestManager_ComponentTest_STUB::CTestManager_ComponentTest_STUB(CDataLogger& aDataLogger,
1.142 + MComponentTestObserver& aObserver)
1.143 +: CComponentTester(aDataLogger, aObserver)
1.144 + {
1.145 + // Do nothing here.
1.146 + }
1.147 +
1.148 +/**
1.149 +@SYMTestCaseID SYSLIB-ECOM-CT-0781
1.150 +@SYMTestCaseDesc Tests for the implementations of CTestManager class
1.151 +@SYMTestPriority High
1.152 +@SYMTestActions Tests for create and destroy operations
1.153 +@SYMTestExpectedResults Test must not fail
1.154 +@SYMREQ REQ0000
1.155 +*/
1.156 +inline void CTestManager_ComponentTest_STUB::ConstructL()
1.157 + {
1.158 + // Perform base class initialization
1.159 + ComponentTesterConstructL();
1.160 +
1.161 + AddUnitTestL(CTestManager_CreateAndDestroy_UnitTest_STUB::NewL(iDataLogger, *this));
1.162 + }
1.163 +
1.164 +// ______________________________________________________________________________
1.165 +//
1.166 +EXPORT_C CComponentTester* NewComponentTestLC_STUB(CDataLogger& aDataLogger,
1.167 + MComponentTestObserver& aComponentTestObserver)
1.168 + {
1.169 + return CTestManager_ComponentTest_STUB::NewLC(aDataLogger, aComponentTestObserver);
1.170 + }
1.171 +
1.172 +// ___________________________________________________________________________
1.173 +//
1.174 +// This section of the module simply includes the exported test harness template which
1.175 +// makes this a "whole" CPP file with a E32Main entry point below. The test MMP
1.176 +// project file can then produce a EXE for the test project instead of a DLL.
1.177 +
1.178 +#include <ecom/test_bed/testharnesstemplate.h>
1.179 +
1.180 +GLDEF_C TInt E32Main()
1.181 + {
1.182 + test.Title();
1.183 + test.Start(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-0781 "));
1.184 +
1.185 + test.End();
1.186 + test.Close();
1.187 +
1.188 + return E32Main_TestHarness(NewComponentTestLC);
1.189 + }
1.190 +