os/ossrv/lowlevellibsandfws/pluginfw/Test_Bed/console_app/TestHarnessTemplate.cpp
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
sl@0
     1
// Copyright (c) 2003-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
// All rights reserved.
sl@0
     3
// This component and the accompanying materials are made available
sl@0
     4
// under the terms of "Eclipse Public License v1.0"
sl@0
     5
// which accompanies this distribution, and is available
sl@0
     6
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
//
sl@0
     8
// Initial Contributors:
sl@0
     9
// Nokia Corporation - initial contribution.
sl@0
    10
//
sl@0
    11
// Contributors:
sl@0
    12
//
sl@0
    13
// Description:
sl@0
    14
//
sl@0
    15
sl@0
    16
// Epoc includes
sl@0
    17
#include <f32file.h>
sl@0
    18
#include <e32base.h>
sl@0
    19
#include <e32cons.h>
sl@0
    20
#include <e32test.h>
sl@0
    21
//TestBed includes
sl@0
    22
#include "TestController.h"
sl@0
    23
#include "ComponentInfo.h"
sl@0
    24
//ECom includes
sl@0
    25
#include <ecom/ecom.h>
sl@0
    26
//
sl@0
    27
#include "TestHarnessTemplate.h"
sl@0
    28
sl@0
    29
/**
sl@0
    30
	@internalComponent
sl@0
    31
	@fn				void DoTestingL(RTest& aRTest, TNewComponentTestLC aNewComponentTestLC)
sl@0
    32
	Intended Usage	: Run the tests discovered by the TestController.
sl@0
    33
	@param			aRTest A RTest instance.
sl@0
    34
	@param			aNewComponentTestLC A pointer to defined into ECOM test app global
sl@0
    35
					function. It should create derived CComponentTester object which
sl@0
    36
					knows about the tests required.
sl@0
    37
	@return			void.
sl@0
    38
	@leave  		KErrNoMemory, Any other codes possible from a test.
sl@0
    39
	@pre 			aNewComponentTestLC != NULL.
sl@0
    40
	Error Condition	: None
sl@0
    41
	@since			7.0s
sl@0
    42
 */
sl@0
    43
LOCAL_C void DoTestingL(RTest& aRTest, TNewComponentTestLC aNewComponentTestLC)
sl@0
    44
	{
sl@0
    45
	_LIT(KLogFileDirectory, "C:\\Logs\\TestBed\\");
sl@0
    46
	_LIT(KUnitTestMessage, "Unit Test %d: %S\n");
sl@0
    47
	_LIT(KNoTestsMessage, "No Tests found\n");
sl@0
    48
sl@0
    49
	// Avoid cleanup stack heap allocation expansion problems
sl@0
    50
	// when testing for heap allocation leaks within the test
sl@0
    51
	// harnesses, by expanding the stack now.
sl@0
    52
	const TInt KMaxCleanupFrames = 20;
sl@0
    53
	for (TInt i = 0; i < KMaxCleanupFrames; ++i)
sl@0
    54
		CleanupStack::PushL((TAny*)0);
sl@0
    55
	CleanupStack::Pop(KMaxCleanupFrames);
sl@0
    56
sl@0
    57
	// Check that the logging directory exists, and if it doesn't then create it
sl@0
    58
	RFs fs;
sl@0
    59
	User::LeaveIfError(fs.Connect());
sl@0
    60
	TInt err = fs.MkDirAll(KLogFileDirectory);
sl@0
    61
	if(err != KErrAlreadyExists)	// Don't leave if it already exists
sl@0
    62
		User::LeaveIfError(err);
sl@0
    63
	fs.Close();
sl@0
    64
sl@0
    65
	// Set up the logging configuration information
sl@0
    66
	_LIT(KLogTitle, "Test Bed Test");
sl@0
    67
	TLoggingInfo* loggingInfo = new(ELeave) TLoggingInfo;
sl@0
    68
	CleanupStack::PushL(loggingInfo);
sl@0
    69
	loggingInfo->iTitle = &(KLogTitle);
sl@0
    70
	loggingInfo->iUseRDebug = ETrue;
sl@0
    71
	loggingInfo->iLogOutput = 0;
sl@0
    72
	loggingInfo->iReportOutput = 0;
sl@0
    73
	loggingInfo->iStyle = EHtml;
sl@0
    74
sl@0
    75
	// Create the test controller object and start the test
sl@0
    76
#ifdef LOG_PANIC_UNIT_TEST_FAILURE
sl@0
    77
	CTestController* theController = CTestController::NewLC(NULL, aNewComponentTestLC, &aRTest, loggingInfo);
sl@0
    78
#else
sl@0
    79
	CTestController* theController = CTestController::NewLC(NULL, aNewComponentTestLC, NULL, loggingInfo);
sl@0
    80
#endif //LOG_PANIC_UNIT_TEST_FAILURE
sl@0
    81
sl@0
    82
	_LIT(KControllerBuilt,"Test Controller built with the following tests...\n");
sl@0
    83
	aRTest.Printf(KControllerBuilt);
sl@0
    84
sl@0
    85
	// Get a list of the available tests and display them
sl@0
    86
	const RPointerArray<CComponentInfo>& testList = theController->FindComponents();
sl@0
    87
	TInt numTests = testList.Count();
sl@0
    88
	if(numTests)
sl@0
    89
		{
sl@0
    90
		for(TInt index = 0; index < numTests; ++index)
sl@0
    91
			{
sl@0
    92
			//Print all the unit tests
sl@0
    93
			const RPointerArray<CUnitTestInfo>& transList = testList[index]->UnitTestsInfo();
sl@0
    94
			TInt numTrans = transList.Count();
sl@0
    95
			if(numTrans)
sl@0
    96
				{
sl@0
    97
				for(TInt transIndex = 0; transIndex < numTrans; ++transIndex)
sl@0
    98
					{
sl@0
    99
					//Print the test component name
sl@0
   100
					aRTest.Printf(KUnitTestMessage,
sl@0
   101
						transIndex+1, &(transList[transIndex]->UnitTestId()));
sl@0
   102
					}
sl@0
   103
				}
sl@0
   104
			else
sl@0
   105
				aRTest.Printf(KNoTestsMessage);			// No tests found
sl@0
   106
			}
sl@0
   107
sl@0
   108
		// Run the tests
sl@0
   109
		theController->Start();
sl@0
   110
		}
sl@0
   111
	else
sl@0
   112
		aRTest.Printf(KNoTestsMessage);			// No tests found
sl@0
   113
sl@0
   114
	CleanupStack::PopAndDestroy(2, loggingInfo);
sl@0
   115
	}
sl@0
   116
sl@0
   117
sl@0
   118
/**
sl@0
   119
 	@fn				TInt E32Main_TestHarness(TNewComponentTestLC aNewComponentTestLC)
sl@0
   120
	Intended Usage	: Main entry point to the console app called by E32
sl@0
   121
	@param			aNewComponentTestLC A pointer to defined into ECOM test app global
sl@0
   122
					function. It should create derived CComponentTester object which
sl@0
   123
					knows about the tests required.
sl@0
   124
	@return			TInt KErrNone.
sl@0
   125
	@leave  		KErrNoMemory, Any other codes possible from a test.
sl@0
   126
	@pre 			aNewComponentTestLC != NULL.
sl@0
   127
	@since			7.0s
sl@0
   128
*/
sl@0
   129
EXPORT_C TInt E32Main_TestHarness(TNewComponentTestLC aNewComponentTestLC)
sl@0
   130
    {
sl@0
   131
	// Set up for heap leak checking
sl@0
   132
	__UHEAP_MARK;
sl@0
   133
sl@0
   134
	// Obtain for the system the exeutable filename of this process
sl@0
   135
	RProcess current;
sl@0
   136
	TParse exeFilename;
sl@0
   137
	exeFilename.SetNoWild(current.FileName(), NULL, NULL);
sl@0
   138
sl@0
   139
	// Startup the RTest framework
sl@0
   140
	RTest rTest(exeFilename.Name());
sl@0
   141
	rTest.Title();
sl@0
   142
	rTest.Start(_L(" @SYMTestCaseID:SYSLIB-FORM-LEGACY-TESTHARNESSTEMPLATE-0001 Test Bed Tester EXE "));
sl@0
   143
sl@0
   144
	// Leaking thread handles
sl@0
   145
	TInt startProcessHandleCount;
sl@0
   146
	TInt startThreadHandleCount;
sl@0
   147
	TInt endProcessHandleCount;
sl@0
   148
	TInt endThreadHandleCount;
sl@0
   149
sl@0
   150
	RThread thisThread;
sl@0
   151
	thisThread.HandleCount(startProcessHandleCount, startThreadHandleCount);
sl@0
   152
sl@0
   153
	// Create the clean up stack.
sl@0
   154
	CTrapCleanup* cleanup = CTrapCleanup::New();
sl@0
   155
sl@0
   156
	// Call the main function and trap the result
sl@0
   157
	TRAPD(retCode, DoTestingL(rTest, aNewComponentTestLC)); // perform test
sl@0
   158
	rTest(retCode==KErrNone);
sl@0
   159
sl@0
   160
 	// This line added to close handles associated to last plugin loaded.
sl@0
   161
 	// The last plugin DLL is only unloaded when the client makes another call into ECom
sl@0
   162
 	//   (assuming the client has destroyed the implementation).
sl@0
   163
 	// TLS area cleaned up only when DLL unloaded or thread ends.
sl@0
   164
 	// FinalClose() ensures that the last DLL is unloaded and TLS cleaned up.
sl@0
   165
 	// Memory leaks/open handles will occur if this is not called.
sl@0
   166
 	//
sl@0
   167
 	// If ECom is not used should have no effect.
sl@0
   168
 	REComSession::FinalClose();
sl@0
   169
sl@0
   170
	// Destroy the curernt cleanup stack
sl@0
   171
	delete cleanup;
sl@0
   172
sl@0
   173
	// Check for open handles
sl@0
   174
	thisThread.HandleCount(endProcessHandleCount, endThreadHandleCount);
sl@0
   175
	if(startThreadHandleCount != endThreadHandleCount)
sl@0
   176
		{__DEBUGGER()}							// Oops leaked some handles
sl@0
   177
sl@0
   178
	// End the testing
sl@0
   179
	rTest.Next(_L("/n"));
sl@0
   180
	rTest.End();
sl@0
   181
	//rTest.Getch();
sl@0
   182
	rTest.Close();
sl@0
   183
sl@0
   184
	// End heap leak checking and exit
sl@0
   185
	__UHEAP_MARKEND;
sl@0
   186
	return KErrNone;
sl@0
   187
    }