sl@0: /* sl@0: * Copyright (c) 1998-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 the License "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: sl@0: sl@0: #include "tHardcodedTests.h" sl@0: #include "Thardcodedsetup.h" sl@0: sl@0: #include "t_input.h" sl@0: #include "t_certstoreactionmemfail.h" sl@0: #include "tcancel.h" sl@0: #include "t_message.h" sl@0: #include "t_output.h" sl@0: #include "tTestSpec.h" sl@0: #include "t_testactionspec.h" sl@0: #include "t_logger.h" sl@0: sl@0: sl@0: EXPORT_C CHardcodedSetup* CHardcodedSetup::NewLC(void) sl@0: { sl@0: CHardcodedSetup* self = new(ELeave) CHardcodedSetup(); sl@0: CleanupStack::PushL(self); sl@0: self->ConstructL(); sl@0: return self; sl@0: } sl@0: sl@0: EXPORT_C void CHardcodedSetup::SetupTestsL(RFs& aFs, sl@0: CTestSpec& aTestSpec, sl@0: THardcodedTests theHardcodedTests[], sl@0: const CTestHandlerSettings& aCommandLineSettings) sl@0: { sl@0: TInt err = KErrNone; sl@0: for (TInt i = 0; theHardcodedTests[i].action!=NULL; i++) sl@0: { sl@0: sl@0: TInt groupings= theHardcodedTests[i].groupings; sl@0: TTestActionSpec actionSpec; sl@0: actionSpec.HardcodedInit(theHardcodedTests[i].name); sl@0: //Start off checking Exhaustive and Smoke flags, then calls groupings sl@0: if (!CheckAllFlags(aCommandLineSettings, groupings)) sl@0: //The current test should not be run sl@0: continue; sl@0: sl@0: sl@0: CTestAction* newAction = 0; sl@0: TRAP(err, sl@0: newAction = theHardcodedTests[i].action(aFs, *iConsole, *iLogFile, actionSpec)); sl@0: sl@0: if (err != KErrNone) sl@0: { sl@0: // We warn the user that an error occured sl@0: // IMPROVEMENT : we should give more details because this won't be enough sl@0: PRINTANDLOG(_L("void CHardcoded::SetupTestsL(RPointerArray& aTestActions)\n")); sl@0: PRINTANDLOG1(_L("An error occurred while creating action %D\n"), i); sl@0: User::Leave(err); sl@0: } sl@0: CleanupStack::PushL(newAction); sl@0: User::LeaveIfError(aTestSpec.AddNextTest(newAction)); sl@0: CleanupStack::Pop(newAction); sl@0: } sl@0: } sl@0: sl@0: sl@0: CHardcodedSetup::~CHardcodedSetup() sl@0: { sl@0: } sl@0: sl@0: CHardcodedSetup::CHardcodedSetup(void) sl@0: : CTestSetup(NULL) sl@0: { sl@0: } sl@0: sl@0: EXPORT_C TBool CHardcodedSetup::InitialiseL(RFs &aFs, const TDesC& aDefaultLog) sl@0: { sl@0: TRAPD(err, OpenLogFileL(aFs, 0, aDefaultLog)); sl@0: sl@0: if (err != KErrNone) sl@0: { sl@0: // We warn the user that an error occured sl@0: // IMPROVEMENT : we should give more details because this won't be enough sl@0: PRINTANDLOG1(_L("void CHardcodedSetup::InitialiseL: Failed to open log file: %D\n"), err); sl@0: User::Leave(err); sl@0: } sl@0: sl@0: return(ETrue); sl@0: } sl@0: sl@0: sl@0: