1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/ossrv/lowlevellibsandfws/pluginfw/Test_Bed/test_bed/TestManager.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 "TestManager.h"
1.20 +
1.21 +
1.22 +CTestManager::CTestManager(RPointerArray<CComponentInfo>* aTestList,
1.23 + CDataLogger& aDataLogger,
1.24 + MManagerObserver& aObserver,
1.25 + RTest* aRTest)
1.26 +: CActive(CActive::EPriorityStandard),
1.27 +iObserver(aObserver),
1.28 +iTestList(aTestList),
1.29 +iDataLogger(aDataLogger),
1.30 +iRTest(aRTest)
1.31 + {
1.32 + }
1.33 +
1.34 +
1.35 +CTestManager* CTestManager::NewL(RPointerArray<CComponentInfo>* aTestList,
1.36 + CDataLogger& aDataLogger,
1.37 + MManagerObserver& aObserver,
1.38 + RTest* aRTest)
1.39 + {
1.40 + CTestManager* self = new (ELeave) CTestManager(aTestList, aDataLogger, aObserver, aRTest);
1.41 + CleanupStack::PushL(self);
1.42 + self->ConstructL();
1.43 + CleanupStack::Pop();
1.44 + return self;
1.45 + }
1.46 +
1.47 +
1.48 +void CTestManager::ConstructL()
1.49 + {
1.50 + CActiveScheduler::Add(this);
1.51 +
1.52 + // Say we are stopping just in case RunTests never gets called
1.53 + // - if it does get called this will get unset
1.54 + iAmStopping = ETrue;
1.55 + }
1.56 +
1.57 +
1.58 +CTestManager::~CTestManager()
1.59 + {
1.60 + Cancel();
1.61 +
1.62 + delete iCurrentTester;
1.63 + }
1.64 +
1.65 +
1.66 +void CTestManager::RunL()
1.67 + {
1.68 + delete iCurrentTester;
1.69 + iCurrentTester = NULL;
1.70 +
1.71 + if((iCurrentTestLoad < iTestList->Count()) && !iAmStopping)
1.72 + {
1.73 + iStatus = KRequestPending;
1.74 + SetActive();
1.75 +
1.76 + TestComponentL(iCurrentTestLoad);
1.77 +
1.78 + // Next time run the next test
1.79 + ++iCurrentTestLoad;
1.80 + // Set the flag for the next state.
1.81 + iAmStopping = iCurrentTestLoad == iTestList->Count();
1.82 + }
1.83 + else if(iAmStopping)
1.84 + iObserver.TestsComplete();
1.85 + }
1.86 +
1.87 +TInt CTestManager::RunError(TInt /*aErrorCode*/)
1.88 + {
1.89 + // Do nothing because anything that needs to be cleaned up should be on the cleanup
1.90 + // stack. We want any remaining tests to carry on.
1.91 + return KErrNone;
1.92 + }
1.93 +
1.94 +
1.95 +void CTestManager::DoCancel()
1.96 + {
1.97 + _LIT(KTestsCancelled,"TestBed cancelled at user request.");
1.98 + iDataLogger.LogInformation(KTestsCancelled());
1.99 + iDataLogger.ReportInformation(KTestsCancelled());
1.100 +
1.101 + delete iCurrentTester;
1.102 + iCurrentTester = NULL;
1.103 +
1.104 + iObserver.TestsComplete();
1.105 + }
1.106 +
1.107 +
1.108 +void CTestManager::RunTests(RPointerArray<TTestInfo>* aTests)
1.109 + {
1.110 + iTestsToRun = aTests;
1.111 +
1.112 + if(iTestList->Count() >0)
1.113 + iAmStopping = EFalse;
1.114 + else
1.115 + {
1.116 + // If someone tried to call RunTests when there are no tests
1.117 + // complete immediately
1.118 + TRequestStatus* status = &iStatus;
1.119 + User::RequestComplete(status, KErrNone);
1.120 + }
1.121 +
1.122 + if(!IsActive())
1.123 + {
1.124 + SetActive();
1.125 + if(!iAmStopping)
1.126 + {
1.127 + TRequestStatus* status = &iStatus;
1.128 + User::RequestComplete(status, KErrNone);
1.129 + }
1.130 + else
1.131 + iStatus = KRequestPending;
1.132 + }
1.133 + }
1.134 +
1.135 +/**
1.136 + @fn CleanupTestArray(TAny* aArray)
1.137 + Intended Useage:The CleanupTestArray method is used for cleanup support
1.138 + of locally declared arrays
1.139 + @internalComponent
1.140 + @since 7.0
1.141 + @param aArray is the array whose contents should be destroyed
1.142 +*/
1.143 +static void CleanupTestArray(TAny* aArray)
1.144 + {
1.145 + // Whilst this array is an RPointerArray, it does not own the pointers
1.146 + // and therefor should not destroy them
1.147 + // This should be changed to an RArray
1.148 + RPointerArray<TTestInfo>* array = REINTERPRET_CAST(RPointerArray<TTestInfo>*, aArray);
1.149 + array->Reset();
1.150 + delete array;
1.151 + }
1.152 +
1.153 +
1.154 +void CTestManager::Complete(CComponentTester* /*aTester*/, TInt /*aUnitTestId*/)
1.155 + {
1.156 + TRequestStatus* status = &iStatus;
1.157 + User::RequestComplete(status, KErrNone);
1.158 + }
1.159 +
1.160 +void CTestManager::TestComponentL(TInt aComponentIndex)
1.161 + {
1.162 + // This should be changed to an RArray<TTestInfo*> and be typedefd
1.163 + RPointerArray<TTestInfo>* tests = NULL;
1.164 + if(iTestsToRun != NULL)
1.165 + {
1.166 + tests = new(ELeave) RPointerArray<TTestInfo>;
1.167 + TCleanupItem cleanup(CleanupTestArray, tests);
1.168 + CleanupStack::PushL(cleanup);
1.169 + // Work out which tests to run
1.170 + for(TInt index = 0; index < iTestsToRun->Count(); ++index)
1.171 + {
1.172 + if((*iTestsToRun)[index]->iComponentId == aComponentIndex)
1.173 + User::LeaveIfError(tests->Append((*iTestsToRun)[index]));
1.174 + }
1.175 + if(tests->Count() == 0)
1.176 + {
1.177 + CleanupStack::PopAndDestroy(); // cleanup
1.178 + Complete(NULL, 0);
1.179 + return;
1.180 + }
1.181 + }
1.182 + // Create the EXEs derived CComponentTester for this test iteration.
1.183 + ComponentTesterInitialiserLC createLC = (*iTestList)[aComponentIndex]->GlobalEntryFunc();
1.184 + iCurrentTester= createLC(iDataLogger, *this);
1.185 + CleanupStack::Pop(iCurrentTester);
1.186 + iCurrentTester->SetRTest(iRTest);
1.187 +
1.188 + if(iTestsToRun != NULL)
1.189 + CleanupStack::Pop(); // cleanup
1.190 + // Execute unit tests for the current component
1.191 + iCurrentTester->TestComponent(tests);
1.192 + }
1.193 +
1.194 +TBool CTestManager::StartedTests() const
1.195 + {
1.196 + return iCurrentTestLoad > 0;
1.197 + }
1.198 +