sl@0: // Copyright (c) 2003-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: // sl@0: sl@0: // Epoc includes sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: //TestBed includes sl@0: #include "TestController.h" sl@0: #include "ComponentInfo.h" sl@0: //ECom includes sl@0: #include sl@0: // sl@0: #include "TestHarnessTemplate.h" sl@0: sl@0: /** sl@0: @internalComponent sl@0: @fn void DoTestingL(RTest& aRTest, TNewComponentTestLC aNewComponentTestLC) sl@0: Intended Usage : Run the tests discovered by the TestController. sl@0: @param aRTest A RTest instance. sl@0: @param aNewComponentTestLC A pointer to defined into ECOM test app global sl@0: function. It should create derived CComponentTester object which sl@0: knows about the tests required. sl@0: @return void. sl@0: @leave KErrNoMemory, Any other codes possible from a test. sl@0: @pre aNewComponentTestLC != NULL. sl@0: Error Condition : None sl@0: @since 7.0s sl@0: */ sl@0: LOCAL_C void DoTestingL(RTest& aRTest, TNewComponentTestLC aNewComponentTestLC) sl@0: { sl@0: _LIT(KLogFileDirectory, "C:\\Logs\\TestBed\\"); sl@0: _LIT(KUnitTestMessage, "Unit Test %d: %S\n"); sl@0: _LIT(KNoTestsMessage, "No Tests found\n"); sl@0: sl@0: // Avoid cleanup stack heap allocation expansion problems sl@0: // when testing for heap allocation leaks within the test sl@0: // harnesses, by expanding the stack now. sl@0: const TInt KMaxCleanupFrames = 20; sl@0: for (TInt i = 0; i < KMaxCleanupFrames; ++i) sl@0: CleanupStack::PushL((TAny*)0); sl@0: CleanupStack::Pop(KMaxCleanupFrames); sl@0: sl@0: // Check that the logging directory exists, and if it doesn't then create it sl@0: RFs fs; sl@0: User::LeaveIfError(fs.Connect()); sl@0: TInt err = fs.MkDirAll(KLogFileDirectory); sl@0: if(err != KErrAlreadyExists) // Don't leave if it already exists sl@0: User::LeaveIfError(err); sl@0: fs.Close(); sl@0: sl@0: // Set up the logging configuration information sl@0: _LIT(KLogTitle, "Test Bed Test"); sl@0: TLoggingInfo* loggingInfo = new(ELeave) TLoggingInfo; sl@0: CleanupStack::PushL(loggingInfo); sl@0: loggingInfo->iTitle = &(KLogTitle); sl@0: loggingInfo->iUseRDebug = ETrue; sl@0: loggingInfo->iLogOutput = 0; sl@0: loggingInfo->iReportOutput = 0; sl@0: loggingInfo->iStyle = EHtml; sl@0: sl@0: // Create the test controller object and start the test sl@0: #ifdef LOG_PANIC_UNIT_TEST_FAILURE sl@0: CTestController* theController = CTestController::NewLC(NULL, aNewComponentTestLC, &aRTest, loggingInfo); sl@0: #else sl@0: CTestController* theController = CTestController::NewLC(NULL, aNewComponentTestLC, NULL, loggingInfo); sl@0: #endif //LOG_PANIC_UNIT_TEST_FAILURE sl@0: sl@0: _LIT(KControllerBuilt,"Test Controller built with the following tests...\n"); sl@0: aRTest.Printf(KControllerBuilt); sl@0: sl@0: // Get a list of the available tests and display them sl@0: const RPointerArray& testList = theController->FindComponents(); sl@0: TInt numTests = testList.Count(); sl@0: if(numTests) sl@0: { sl@0: for(TInt index = 0; index < numTests; ++index) sl@0: { sl@0: //Print all the unit tests sl@0: const RPointerArray& transList = testList[index]->UnitTestsInfo(); sl@0: TInt numTrans = transList.Count(); sl@0: if(numTrans) sl@0: { sl@0: for(TInt transIndex = 0; transIndex < numTrans; ++transIndex) sl@0: { sl@0: //Print the test component name sl@0: aRTest.Printf(KUnitTestMessage, sl@0: transIndex+1, &(transList[transIndex]->UnitTestId())); sl@0: } sl@0: } sl@0: else sl@0: aRTest.Printf(KNoTestsMessage); // No tests found sl@0: } sl@0: sl@0: // Run the tests sl@0: theController->Start(); sl@0: } sl@0: else sl@0: aRTest.Printf(KNoTestsMessage); // No tests found sl@0: sl@0: CleanupStack::PopAndDestroy(2, loggingInfo); sl@0: } sl@0: sl@0: sl@0: /** sl@0: @fn TInt E32Main_TestHarness(TNewComponentTestLC aNewComponentTestLC) sl@0: Intended Usage : Main entry point to the console app called by E32 sl@0: @param aNewComponentTestLC A pointer to defined into ECOM test app global sl@0: function. It should create derived CComponentTester object which sl@0: knows about the tests required. sl@0: @return TInt KErrNone. sl@0: @leave KErrNoMemory, Any other codes possible from a test. sl@0: @pre aNewComponentTestLC != NULL. sl@0: @since 7.0s sl@0: */ sl@0: EXPORT_C TInt E32Main_TestHarness(TNewComponentTestLC aNewComponentTestLC) sl@0: { sl@0: // Set up for heap leak checking sl@0: __UHEAP_MARK; sl@0: sl@0: // Obtain for the system the exeutable filename of this process sl@0: RProcess current; sl@0: TParse exeFilename; sl@0: exeFilename.SetNoWild(current.FileName(), NULL, NULL); sl@0: sl@0: // Startup the RTest framework sl@0: RTest rTest(exeFilename.Name()); sl@0: rTest.Title(); sl@0: rTest.Start(_L(" @SYMTestCaseID:SYSLIB-FORM-LEGACY-TESTHARNESSTEMPLATE-0001 Test Bed Tester EXE ")); sl@0: sl@0: // Leaking thread handles sl@0: TInt startProcessHandleCount; sl@0: TInt startThreadHandleCount; sl@0: TInt endProcessHandleCount; sl@0: TInt endThreadHandleCount; sl@0: sl@0: RThread thisThread; sl@0: thisThread.HandleCount(startProcessHandleCount, startThreadHandleCount); sl@0: sl@0: // Create the clean up stack. sl@0: CTrapCleanup* cleanup = CTrapCleanup::New(); sl@0: sl@0: // Call the main function and trap the result sl@0: TRAPD(retCode, DoTestingL(rTest, aNewComponentTestLC)); // perform test sl@0: rTest(retCode==KErrNone); sl@0: sl@0: // This line added to close handles associated to last plugin loaded. sl@0: // The last plugin DLL is only unloaded when the client makes another call into ECom sl@0: // (assuming the client has destroyed the implementation). sl@0: // TLS area cleaned up only when DLL unloaded or thread ends. sl@0: // FinalClose() ensures that the last DLL is unloaded and TLS cleaned up. sl@0: // Memory leaks/open handles will occur if this is not called. sl@0: // sl@0: // If ECom is not used should have no effect. sl@0: REComSession::FinalClose(); sl@0: sl@0: // Destroy the curernt cleanup stack sl@0: delete cleanup; sl@0: sl@0: // Check for open handles sl@0: thisThread.HandleCount(endProcessHandleCount, endThreadHandleCount); sl@0: if(startThreadHandleCount != endThreadHandleCount) sl@0: {__DEBUGGER()} // Oops leaked some handles sl@0: sl@0: // End the testing sl@0: rTest.Next(_L("/n")); sl@0: rTest.End(); sl@0: //rTest.Getch(); sl@0: rTest.Close(); sl@0: sl@0: // End heap leak checking and exit sl@0: __UHEAP_MARKEND; sl@0: return KErrNone; sl@0: }