os/ossrv/lowlevellibsandfws/pluginfw/Test_Bed/console_app/TestHarnessTemplate.cpp
First public contribution.
1 // Copyright (c) 2003-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
22 #include "TestController.h"
23 #include "ComponentInfo.h"
25 #include <ecom/ecom.h>
27 #include "TestHarnessTemplate.h"
31 @fn void DoTestingL(RTest& aRTest, TNewComponentTestLC aNewComponentTestLC)
32 Intended Usage : Run the tests discovered by the TestController.
33 @param aRTest A RTest instance.
34 @param aNewComponentTestLC A pointer to defined into ECOM test app global
35 function. It should create derived CComponentTester object which
36 knows about the tests required.
38 @leave KErrNoMemory, Any other codes possible from a test.
39 @pre aNewComponentTestLC != NULL.
40 Error Condition : None
43 LOCAL_C void DoTestingL(RTest& aRTest, TNewComponentTestLC aNewComponentTestLC)
45 _LIT(KLogFileDirectory, "C:\\Logs\\TestBed\\");
46 _LIT(KUnitTestMessage, "Unit Test %d: %S\n");
47 _LIT(KNoTestsMessage, "No Tests found\n");
49 // Avoid cleanup stack heap allocation expansion problems
50 // when testing for heap allocation leaks within the test
51 // harnesses, by expanding the stack now.
52 const TInt KMaxCleanupFrames = 20;
53 for (TInt i = 0; i < KMaxCleanupFrames; ++i)
54 CleanupStack::PushL((TAny*)0);
55 CleanupStack::Pop(KMaxCleanupFrames);
57 // Check that the logging directory exists, and if it doesn't then create it
59 User::LeaveIfError(fs.Connect());
60 TInt err = fs.MkDirAll(KLogFileDirectory);
61 if(err != KErrAlreadyExists) // Don't leave if it already exists
62 User::LeaveIfError(err);
65 // Set up the logging configuration information
66 _LIT(KLogTitle, "Test Bed Test");
67 TLoggingInfo* loggingInfo = new(ELeave) TLoggingInfo;
68 CleanupStack::PushL(loggingInfo);
69 loggingInfo->iTitle = &(KLogTitle);
70 loggingInfo->iUseRDebug = ETrue;
71 loggingInfo->iLogOutput = 0;
72 loggingInfo->iReportOutput = 0;
73 loggingInfo->iStyle = EHtml;
75 // Create the test controller object and start the test
76 #ifdef LOG_PANIC_UNIT_TEST_FAILURE
77 CTestController* theController = CTestController::NewLC(NULL, aNewComponentTestLC, &aRTest, loggingInfo);
79 CTestController* theController = CTestController::NewLC(NULL, aNewComponentTestLC, NULL, loggingInfo);
80 #endif //LOG_PANIC_UNIT_TEST_FAILURE
82 _LIT(KControllerBuilt,"Test Controller built with the following tests...\n");
83 aRTest.Printf(KControllerBuilt);
85 // Get a list of the available tests and display them
86 const RPointerArray<CComponentInfo>& testList = theController->FindComponents();
87 TInt numTests = testList.Count();
90 for(TInt index = 0; index < numTests; ++index)
92 //Print all the unit tests
93 const RPointerArray<CUnitTestInfo>& transList = testList[index]->UnitTestsInfo();
94 TInt numTrans = transList.Count();
97 for(TInt transIndex = 0; transIndex < numTrans; ++transIndex)
99 //Print the test component name
100 aRTest.Printf(KUnitTestMessage,
101 transIndex+1, &(transList[transIndex]->UnitTestId()));
105 aRTest.Printf(KNoTestsMessage); // No tests found
109 theController->Start();
112 aRTest.Printf(KNoTestsMessage); // No tests found
114 CleanupStack::PopAndDestroy(2, loggingInfo);
119 @fn TInt E32Main_TestHarness(TNewComponentTestLC aNewComponentTestLC)
120 Intended Usage : Main entry point to the console app called by E32
121 @param aNewComponentTestLC A pointer to defined into ECOM test app global
122 function. It should create derived CComponentTester object which
123 knows about the tests required.
124 @return TInt KErrNone.
125 @leave KErrNoMemory, Any other codes possible from a test.
126 @pre aNewComponentTestLC != NULL.
129 EXPORT_C TInt E32Main_TestHarness(TNewComponentTestLC aNewComponentTestLC)
131 // Set up for heap leak checking
134 // Obtain for the system the exeutable filename of this process
137 exeFilename.SetNoWild(current.FileName(), NULL, NULL);
139 // Startup the RTest framework
140 RTest rTest(exeFilename.Name());
142 rTest.Start(_L(" @SYMTestCaseID:SYSLIB-FORM-LEGACY-TESTHARNESSTEMPLATE-0001 Test Bed Tester EXE "));
144 // Leaking thread handles
145 TInt startProcessHandleCount;
146 TInt startThreadHandleCount;
147 TInt endProcessHandleCount;
148 TInt endThreadHandleCount;
151 thisThread.HandleCount(startProcessHandleCount, startThreadHandleCount);
153 // Create the clean up stack.
154 CTrapCleanup* cleanup = CTrapCleanup::New();
156 // Call the main function and trap the result
157 TRAPD(retCode, DoTestingL(rTest, aNewComponentTestLC)); // perform test
158 rTest(retCode==KErrNone);
160 // This line added to close handles associated to last plugin loaded.
161 // The last plugin DLL is only unloaded when the client makes another call into ECom
162 // (assuming the client has destroyed the implementation).
163 // TLS area cleaned up only when DLL unloaded or thread ends.
164 // FinalClose() ensures that the last DLL is unloaded and TLS cleaned up.
165 // Memory leaks/open handles will occur if this is not called.
167 // If ECom is not used should have no effect.
168 REComSession::FinalClose();
170 // Destroy the curernt cleanup stack
173 // Check for open handles
174 thisThread.HandleCount(endProcessHandleCount, endThreadHandleCount);
175 if(startThreadHandleCount != endThreadHandleCount)
176 {__DEBUGGER()} // Oops leaked some handles
179 rTest.Next(_L("/n"));
184 // End heap leak checking and exit