1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/security/cryptomgmtlibs/securitytestfw/test/testhandler2/Thardcodedsetup.cpp Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,102 @@
1.4 +/*
1.5 +* Copyright (c) 1998-2009 Nokia Corporation and/or its subsidiary(-ies).
1.6 +* All rights reserved.
1.7 +* This component and the accompanying materials are made available
1.8 +* under the terms of the License "Eclipse Public License v1.0"
1.9 +* which accompanies this distribution, and is available
1.10 +* at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.11 +*
1.12 +* Initial Contributors:
1.13 +* Nokia Corporation - initial contribution.
1.14 +*
1.15 +* Contributors:
1.16 +*
1.17 +* Description:
1.18 +*
1.19 +*/
1.20 +
1.21 +
1.22 +#include "tHardcodedTests.h"
1.23 +#include "Thardcodedsetup.h"
1.24 +
1.25 +#include "t_input.h"
1.26 +#include "t_certstoreactionmemfail.h"
1.27 +#include "tcancel.h"
1.28 +#include "t_message.h"
1.29 +#include "t_output.h"
1.30 +#include "tTestSpec.h"
1.31 +#include "t_testactionspec.h"
1.32 +#include "t_logger.h"
1.33 +
1.34 +
1.35 +EXPORT_C CHardcodedSetup* CHardcodedSetup::NewLC(void)
1.36 + {
1.37 + CHardcodedSetup* self = new(ELeave) CHardcodedSetup();
1.38 + CleanupStack::PushL(self);
1.39 + self->ConstructL();
1.40 + return self;
1.41 + }
1.42 +
1.43 +EXPORT_C void CHardcodedSetup::SetupTestsL(RFs& aFs,
1.44 + CTestSpec& aTestSpec,
1.45 + THardcodedTests theHardcodedTests[],
1.46 + const CTestHandlerSettings& aCommandLineSettings)
1.47 + {
1.48 + TInt err = KErrNone;
1.49 + for (TInt i = 0; theHardcodedTests[i].action!=NULL; i++)
1.50 + {
1.51 +
1.52 + TInt groupings= theHardcodedTests[i].groupings;
1.53 + TTestActionSpec actionSpec;
1.54 + actionSpec.HardcodedInit(theHardcodedTests[i].name);
1.55 + //Start off checking Exhaustive and Smoke flags, then calls groupings
1.56 + if (!CheckAllFlags(aCommandLineSettings, groupings))
1.57 + //The current test should not be run
1.58 + continue;
1.59 +
1.60 +
1.61 + CTestAction* newAction = 0;
1.62 + TRAP(err,
1.63 + newAction = theHardcodedTests[i].action(aFs, *iConsole, *iLogFile, actionSpec));
1.64 +
1.65 + if (err != KErrNone)
1.66 + {
1.67 + // We warn the user that an error occured
1.68 + // IMPROVEMENT : we should give more details because this won't be enough
1.69 + PRINTANDLOG(_L("void CHardcoded::SetupTestsL(RPointerArray<CTestAction>& aTestActions)\n"));
1.70 + PRINTANDLOG1(_L("An error occurred while creating action %D\n"), i);
1.71 + User::Leave(err);
1.72 + }
1.73 + CleanupStack::PushL(newAction);
1.74 + User::LeaveIfError(aTestSpec.AddNextTest(newAction));
1.75 + CleanupStack::Pop(newAction);
1.76 + }
1.77 + }
1.78 +
1.79 +
1.80 +CHardcodedSetup::~CHardcodedSetup()
1.81 + {
1.82 + }
1.83 +
1.84 +CHardcodedSetup::CHardcodedSetup(void)
1.85 +: CTestSetup(NULL)
1.86 + {
1.87 + }
1.88 +
1.89 +EXPORT_C TBool CHardcodedSetup::InitialiseL(RFs &aFs, const TDesC& aDefaultLog)
1.90 + {
1.91 + TRAPD(err, OpenLogFileL(aFs, 0, aDefaultLog));
1.92 +
1.93 + if (err != KErrNone)
1.94 + {
1.95 + // We warn the user that an error occured
1.96 + // IMPROVEMENT : we should give more details because this won't be enough
1.97 + PRINTANDLOG1(_L("void CHardcodedSetup::InitialiseL: Failed to open log file: %D\n"), err);
1.98 + User::Leave(err);
1.99 + }
1.100 +
1.101 + return(ETrue);
1.102 + }
1.103 +
1.104 +
1.105 +