os/ossrv/lowlevellibsandfws/pluginfw/Test_Bed/test_bed/TestController.cpp
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/ossrv/lowlevellibsandfws/pluginfw/Test_Bed/test_bed/TestController.cpp	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,195 @@
     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 +//
    1.18 +
    1.19 +#include <e32std.h>
    1.20 +#include <e32uid.h>
    1.21 +
    1.22 +#include "TestController.h"
    1.23 +#include "ComponentTester.h"
    1.24 +#include <ecom/test_bed/testbeddefinitions.h>
    1.25 +#include <ecom/test_bed/datalogger.h>
    1.26 +
    1.27 +
    1.28 +CTestController::CTestController(CActiveScheduler* aScheduler, RTest* aRTest)
    1.29 +: CBase(),
    1.30 +iScheduler(aScheduler),
    1.31 +iRTest(aRTest)
    1.32 +	{
    1.33 +	}
    1.34 +
    1.35 +
    1.36 +EXPORT_C CTestController::~CTestController()
    1.37 +	{
    1.38 +	// Cancel any outstanding tests
    1.39 +	Cancel();
    1.40 +
    1.41 +	iTestList.ResetAndDestroy();
    1.42 +	delete iTestManager;
    1.43 +	if(iOwnScheduler)
    1.44 +		delete iScheduler;
    1.45 +	Dll::SetTls(NULL);
    1.46 +	delete iDataLogger;
    1.47 +	}
    1.48 +
    1.49 +
    1.50 +EXPORT_C CTestController* CTestController::NewLC(CActiveScheduler* aScheduler,
    1.51 +												 ComponentTesterInitialiserLC aEntryPoint,
    1.52 +												 RTest* aRTest,
    1.53 +												 TLoggingInfo* aLogInfo)
    1.54 +	{
    1.55 +	CTestController* self = new (ELeave) CTestController(aScheduler, aRTest);
    1.56 +	CleanupStack::PushL(self);
    1.57 +	self->ConstructL(aLogInfo, aEntryPoint);
    1.58 +	return self;
    1.59 +	}
    1.60 +
    1.61 +
    1.62 +EXPORT_C CTestController* CTestController::NewL(CActiveScheduler* aScheduler,
    1.63 +												ComponentTesterInitialiserLC aEntryPoint,
    1.64 +												RTest* aRTest,
    1.65 +												TLoggingInfo* aLogInfo)
    1.66 +	{
    1.67 +	CTestController* self = NewLC(aScheduler, aEntryPoint, aRTest, aLogInfo);
    1.68 +	CleanupStack::Pop();
    1.69 +	return self;
    1.70 +	}
    1.71 +
    1.72 +
    1.73 +void CTestController::ConstructL(TLoggingInfo* aLogInfo, ComponentTesterInitialiserLC aEntryPoint)
    1.74 +	{
    1.75 +	if(iScheduler == NULL)
    1.76 +		{
    1.77 +		  // Construct and install the active scheduler
    1.78 +		iScheduler = new (ELeave) CActiveScheduler;
    1.79 +		iOwnScheduler = ETrue;
    1.80 +		CActiveScheduler::Install(iScheduler); 
    1.81 +		}
    1.82 +
    1.83 +	// Create a logging channel
    1.84 +	iDataLogger = CDataLogger::NewL(aLogInfo);
    1.85 +	Dll::SetTls(iDataLogger);
    1.86 +
    1.87 +	// Create the component tester object required for testing
    1.88 +	InitialiseComponentTesterL(aEntryPoint);
    1.89 +
    1.90 +	_LIT(KCreatingTestManager,"Creating a test manager");
    1.91 +	iDataLogger->LogInformation(KCreatingTestManager());
    1.92 +
    1.93 +	iTestManager = CTestManager::NewL(&iTestList, *iDataLogger, *this, iRTest);
    1.94 +	}
    1.95 +
    1.96 +
    1.97 +EXPORT_C void CTestController::Start()
    1.98 +	{
    1.99 +	iTestManager->RunTests(NULL);
   1.100 +	iScheduler->Start();
   1.101 +	}
   1.102 +
   1.103 +EXPORT_C void CTestController::Start(RPointerArray<TTestInfo>* aTests)
   1.104 +	{
   1.105 +	iTestManager->RunTests(aTests);
   1.106 +	iScheduler->Start();
   1.107 +	}
   1.108 +
   1.109 +EXPORT_C void CTestController::Start(TRequestStatus* aStatus)
   1.110 +	{
   1.111 +	Start(aStatus, NULL);
   1.112 +	}
   1.113 +
   1.114 +EXPORT_C void CTestController::Start(TRequestStatus* aStatus, RPointerArray<TTestInfo>* aTests)
   1.115 +	{
   1.116 +	__ASSERT_DEBUG(CActiveScheduler::Current(), User::Invariant());
   1.117 +	iClientStatus = aStatus;
   1.118 +	iTestManager->RunTests(aTests);
   1.119 +	}
   1.120 +
   1.121 +
   1.122 +EXPORT_C const RPointerArray<CComponentInfo>& CTestController::FindComponents() const
   1.123 +	{
   1.124 +	// Return the list of classes that can be tested
   1.125 +	return iTestList;
   1.126 +	}
   1.127 +
   1.128 +/**
   1.129 +	@fn				CleanupArray(TAny* aArray)
   1.130 +	Intended Useage:The CleanupArray method is used for cleanup support 
   1.131 +					of locally declared arrays
   1.132 +	@internalComponent
   1.133 +	@since			7.0
   1.134 +	@param			aArray is the array whose contents should be destroyed
   1.135 +*/
   1.136 +static void CleanupArray(TAny* aArray)
   1.137 +	{
   1.138 +	RPointerArray<CUnitTestInfo>* array = 
   1.139 +		REINTERPRET_CAST(RPointerArray<CUnitTestInfo>*, aArray);
   1.140 +	array->ResetAndDestroy();
   1.141 +	delete array;
   1.142 +	}
   1.143 +
   1.144 +void CTestController::InitialiseComponentTesterL(ComponentTesterInitialiserLC aEntryPointLC)
   1.145 +	{
   1.146 +	_LIT(KInitCompTester, "Initialising derived component tester object");
   1.147 +	iDataLogger->LogInformation(KInitCompTester());
   1.148 +	// Invoking the function passed in will result in a derived 
   1.149 +	// CComponentTester object being created and pushed on the clean up 
   1.150 +	// stack. Therefore we need to do a pop and destroy later.
   1.151 +	CComponentTester* componentTesterFromEXE =  aEntryPointLC(*iDataLogger,*iTestManager);
   1.152 +   
   1.153 +	_LIT(KCreateTranSets,"Creating component tester & Building Unit Test information.");
   1.154 +	iDataLogger->LogInformation(KCreateTranSets());
   1.155 +	RPointerArray<CUnitTestInfo>* unitTests = componentTesterFromEXE->TransitionSetsL();
   1.156 +
   1.157 +	CleanupStack::PopAndDestroy(componentTesterFromEXE);	//componentTester as pushed by aEntryPoint
   1.158 +
   1.159 +	TCleanupItem cleanup(CleanupArray, unitTests);
   1.160 +	CleanupStack::PushL(cleanup);
   1.161 +	
   1.162 +	CComponentInfo* info = CComponentInfo::NewL(aEntryPointLC, unitTests);
   1.163 +	CleanupStack::Pop(unitTests);	// unitTests, now owned by info
   1.164 +	CleanupStack::PushL(info);
   1.165 +	User::LeaveIfError(iTestList.Append(info));		// pass ownership onto the list.
   1.166 +	CleanupStack::Pop(info); // now owned by iTestList
   1.167 +	}
   1.168 +
   1.169 +EXPORT_C CDataLogger& CTestController::DataLogger()
   1.170 +	{
   1.171 +	return *(REINTERPRET_CAST(CDataLogger*,Dll::Tls()));
   1.172 +	}
   1.173 +
   1.174 +EXPORT_C void CTestController::Cancel()
   1.175 +	{
   1.176 +	if(iTestManager)
   1.177 +		{
   1.178 +		iTestManager->Cancel();
   1.179 +
   1.180 +		if(!iTestManager->StartedTests() && iClientStatus)
   1.181 +			{
   1.182 +			User::RequestComplete(iClientStatus, KTestBedTestCancel);
   1.183 +			iClientStatus = NULL;
   1.184 +			}
   1.185 +		}
   1.186 +	}
   1.187 +
   1.188 +void CTestController::TestsComplete()
   1.189 +	{
   1.190 +	if(iClientStatus)
   1.191 +		{
   1.192 +		User::RequestComplete(iClientStatus, KErrNone);
   1.193 +		iClientStatus = NULL;
   1.194 +		}
   1.195 +	else
   1.196 +		CActiveScheduler::Stop();
   1.197 +	}
   1.198 +