1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/security/cryptomgmtlibs/securitytestfw/test/testhandler2/tScriptSetup.cpp Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,318 @@
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 "tScriptSetup.h"
1.23 +#include "tScriptTests.h"
1.24 +
1.25 +#include "t_testactionspec.h"
1.26 +#include "t_input.h"
1.27 +#include "t_tefinput.h"
1.28 +#include "t_certstoreactionmemfail.h"
1.29 +#include "tcancel.h"
1.30 +#include "t_sleep.h"
1.31 +#include "t_message.h"
1.32 +#include "t_output.h"
1.33 +#include "tTestSpec.h"
1.34 +
1.35 +#include <s32file.h>
1.36 +
1.37 +#include "t_logger.h"
1.38 +
1.39 +_LIT8(KStartMemFail, "startmemfailure");
1.40 +_LIT8(KStopMemFail, "stopmemfailure");
1.41 +_LIT8(KCancelStart, "startcancellation");
1.42 +_LIT8(KCancelStop, "stopcancellation");
1.43 +_LIT8(KMessage, "message");
1.44 +_LIT8(KSleep, "sleep");
1.45 +
1.46 +#include "t_policy.h"
1.47 +_LIT8(KPolicyTest, "policytest");
1.48 +
1.49 +EXPORT_C CScriptSetup* CScriptSetup::NewLC(CConsoleBase* aConsole)
1.50 + {
1.51 + CScriptSetup* self = new (ELeave) CScriptSetup(aConsole);
1.52 + CleanupStack::PushL(self);
1.53 + self->ConstructL();
1.54 + return self;
1.55 + }
1.56 +
1.57 +CScriptSetup::CScriptSetup(CConsoleBase* aConsole) : CTestSetup(aConsole)
1.58 + {
1.59 + }
1.60 +
1.61 +EXPORT_C CScriptSetup::~CScriptSetup()
1.62 + {
1.63 + delete iTestInput;
1.64 + delete iScriptPath;
1.65 + }
1.66 +
1.67 +EXPORT_C void CScriptSetup::SetupTestsL(RFs& aFs,
1.68 + CTestSpec& aTestSpec,
1.69 + TScriptTests theTestTypes[],
1.70 + const CTestHandlerSettings& aCommandLineSettings)
1.71 + {
1.72 + TInt pos = 0;
1.73 + TInt err = KErrNone;
1.74 + TBuf8<256> testCaseID;
1.75 + TBuf8<256> prevtestCaseID;
1.76 + TBuf8<512> scriptResult;
1.77 + TBuf8<512> actionType;
1.78 + TBool runtest = EFalse;
1.79 + TBool iniFile = EFalse;
1.80 + TBool startTest = EFalse;
1.81 + TBool endTest = EFalse;
1.82 +
1.83 + for (TInt i = 1 ; ; ++i)
1.84 + {
1.85 + TPtrC8 runTestStep;
1.86 + TPtrC8 testDescription;
1.87 + TPtrC8 actionData;
1.88 +
1.89 + if (iTefScript)
1.90 + {
1.91 +
1.92 + if(endTest)
1.93 + {
1.94 + startTest = EFalse;
1.95 + runtest = EFalse;
1.96 + testCaseID.Copy(Tefinput::ParseTestCaseID(*iTestInput, KStartTestStep, prevtestCaseID, pos, err, runtest, startTest));
1.97 + prevtestCaseID.Copy(testCaseID);
1.98 + }
1.99 + if(runtest)
1.100 + {
1.101 + if(endTest && startTest)
1.102 + {
1.103 + startTest = ETrue;
1.104 + }
1.105 + else
1.106 + {
1.107 + startTest = EFalse;
1.108 + }
1.109 + endTest = EFalse;
1.110 + testCaseID.Copy(prevtestCaseID);
1.111 + }
1.112 + else
1.113 + {
1.114 + testCaseID.Copy(Tefinput::ParseTestCaseID(*iTestInput, KStartTestStep, prevtestCaseID, pos, err, runtest, startTest));
1.115 + prevtestCaseID.Copy(testCaseID);
1.116 + }
1.117 + runTestStep.Set(Tefinput::ParseRunTestStep(*iTestInput, KRunTestStep, pos, err));
1.118 + endTest = Tefinput::EndTestCase(*iTestInput, runTestStep, KEndTestStep, pos);
1.119 + }
1.120 + else
1.121 + {
1.122 + actionData.Set(Input::ParseElement(*iTestInput, KActionStart, KActionEnd, pos, err));
1.123 + }
1.124 + if (err != KErrNone)
1.125 + {
1.126 + break;
1.127 + }
1.128 +
1.129 + TInt relativePos = 0;
1.130 + TInt scriptGroupings= DEFAULTGROUPING;
1.131 + TTestActionSpec actionSpec;
1.132 + //Parse the file to create action name, type , body and result
1.133 + if (iTefScript)
1.134 + {
1.135 + User::LeaveIfError(actionSpec.TEFInit(aFs, runTestStep, testCaseID, prevtestCaseID, iTefScript, runtest, iniFile, scriptResult, actionType, *iScriptPath, *iConsole, *iLogFile));
1.136 + }
1.137 + else
1.138 + {
1.139 + User::LeaveIfError(actionSpec.Init(actionData, relativePos, *iConsole, *iLogFile, scriptGroupings));
1.140 + }
1.141 +
1.142 + //Start off checking Exhaustive and Smoke flags, then calls groupings
1.143 + if (!CheckAllFlags(aCommandLineSettings, scriptGroupings))
1.144 + //The current test should not be run
1.145 + continue;
1.146 +
1.147 +
1.148 + CTestAction* newAction = 0;
1.149 + TRAP(err, newAction = CreateActionL(aFs, actionSpec, theTestTypes));
1.150 +
1.151 +
1.152 +
1.153 +
1.154 + if (err != KErrNone)
1.155 + {
1.156 + iLogFile->write(_L("CScriptSetup::CreateActionL failed: "));
1.157 + iLogFile->writeError(err);
1.158 + iLogFile->writeNewLine();
1.159 +
1.160 + iLogFile->write(_L("Action name: "));
1.161 + iLogFile->writeString(actionSpec.iActionName);
1.162 + iLogFile->writeNewLine();
1.163 +
1.164 + iLogFile->write(_L("Action type: "));
1.165 + iLogFile->writeString(actionSpec.iActionType);
1.166 + iLogFile->writeNewLine();
1.167 +
1.168 + iLogFile->write(_L("1 tests failed out of 1\r\n"));
1.169 +
1.170 + User::Leave(err);
1.171 + }
1.172 +
1.173 + if(newAction->ScriptError() != CTestAction::ENone)
1.174 + {
1.175 + TBuf<KMaxErrorSize> scriptError;
1.176 + newAction->ScriptError(scriptError);
1.177 +
1.178 + iLogFile->write(_L("Script error \"%S\" in test %s\r\n"), &scriptError, i);
1.179 +
1.180 + delete newAction;
1.181 + User::Leave(KErrArgument);
1.182 + }
1.183 +
1.184 + CleanupStack::PushL(newAction);
1.185 + User::LeaveIfError(aTestSpec.AddNextTest(newAction));
1.186 + CleanupStack::Pop(newAction);
1.187 +
1.188 + if(iniFile)
1.189 + {
1.190 + CleanupStack::PopAndDestroy(1);
1.191 + }
1.192 + }
1.193 + }
1.194 +
1.195 +EXPORT_C TBool CScriptSetup::InitialiseL(RFs &aFs, const TDesC& aDefaultScript, const TDesC& aDefaultLog, TBool aUseCommandLine)
1.196 + {
1.197 + // gets the script file argument
1.198 + iScriptPath = NULL;
1.199 + iTefScript = EFalse;
1.200 +
1.201 + if (aUseCommandLine)
1.202 + {
1.203 + iScriptPath = GetArgument();
1.204 + if(iScriptPath->Length()==0)
1.205 + {
1.206 + delete iScriptPath;
1.207 + iScriptPath = NULL;
1.208 + }
1.209 + else
1.210 + {
1.211 + TPtr scriptFileNameDes = iScriptPath->Des();
1.212 + if (scriptFileNameDes.Right(8) == _L(".script1") || scriptFileNameDes.Right(7) == _L(".script"))
1.213 + {
1.214 + iTefScript = ETrue;
1.215 + }
1.216 + }
1.217 + }
1.218 +
1.219 + if(iScriptPath == NULL)
1.220 + {
1.221 + if(aDefaultScript.Length() == 0)
1.222 + {
1.223 + PRINTANDLOG(_L("No script file specified on command line and no default given"));
1.224 + return(EFalse);
1.225 + }
1.226 + else
1.227 + {
1.228 + iScriptPath = aDefaultScript.AllocLC();
1.229 + }
1.230 + };
1.231 +
1.232 + PRINTANDLOG1(_L("Script file: %S"), iScriptPath);
1.233 +
1.234 + // open the script file
1.235 + RFile scriptFile;
1.236 + TInt err = scriptFile.Open(aFs, *iScriptPath, EFileStream | EFileRead | EFileShareReadersOnly);
1.237 + if (err != KErrNone)
1.238 + {
1.239 + PRINTANDLOG1(_L("Error opening script file: %d"), err);
1.240 + delete iScriptPath;
1.241 + iScriptPath = NULL;
1.242 + return(EFalse);
1.243 + }
1.244 + CleanupClosePushL(scriptFile);
1.245 +
1.246 + TRAP(err, OpenLogFileL(aFs, 1, aDefaultLog, aUseCommandLine));
1.247 + if (err != KErrNone)
1.248 + {
1.249 + PRINTANDLOG1(_L("Error opening log file: %d"), err);
1.250 + delete iScriptPath;
1.251 + iScriptPath = NULL;
1.252 + CleanupStack::PopAndDestroy(1);// scripFile
1.253 + return(EFalse);
1.254 + }
1.255 +
1.256 + // gets size of script file
1.257 + TInt size;
1.258 + scriptFile.Size(size);
1.259 + CleanupStack::PopAndDestroy(); // scriptFile
1.260 +
1.261 + // reads script into iTestInput
1.262 + iTestInput = HBufC8::NewL(size);
1.263 + TPtr8 pInput(iTestInput->Des());
1.264 + pInput.SetLength(size);
1.265 +
1.266 + RFileReadStream stream;
1.267 + User::LeaveIfError(stream.Open(aFs, *iScriptPath, EFileStream | EFileRead | EFileShareReadersOnly));
1.268 + CleanupClosePushL(stream);
1.269 + stream.ReadL(pInput, size);
1.270 + CleanupStack::PopAndDestroy(1); // stream
1.271 + return(ETrue);
1.272 + }
1.273 +
1.274 +EXPORT_C CTestAction* CScriptSetup::CreateActionL(RFs& aFs,
1.275 + const TTestActionSpec& aTestActionSpec,
1.276 + const TScriptTests theTestTypes[]) const
1.277 + {
1.278 + // Instantiate built in test actions
1.279 + if (aTestActionSpec.iActionType == KStartMemFail)
1.280 + {
1.281 + return CMemFailStart::NewL(*iTestConsole, *iLogFile, aTestActionSpec);
1.282 + }
1.283 + else if (aTestActionSpec.iActionType == KStopMemFail)
1.284 + {
1.285 + return CMemFailStop::NewL(*iTestConsole, *iLogFile, aTestActionSpec);
1.286 + }
1.287 + else if (aTestActionSpec.iActionType == KCancelStart)
1.288 + {
1.289 + return CCancelStart::NewL(*iTestConsole, *iLogFile, aTestActionSpec);
1.290 + }
1.291 + else if (aTestActionSpec.iActionType == KCancelStop)
1.292 + {
1.293 + return CCancelStop::NewL(*iTestConsole, *iLogFile, aTestActionSpec);
1.294 + }
1.295 + else if (aTestActionSpec.iActionType == KMessage)
1.296 + {
1.297 + return CTestActionMessage::NewL(*iTestConsole, *iLogFile, aTestActionSpec);
1.298 + }
1.299 + else if (aTestActionSpec.iActionType == KSleep)
1.300 + {
1.301 + return CSleep::NewL(*iTestConsole, *iLogFile, aTestActionSpec);
1.302 + }
1.303 + else if (aTestActionSpec.iActionType == KPolicyTest)
1.304 + {
1.305 + return CPolicyTest::NewL(*iTestConsole, *iLogFile, aTestActionSpec);
1.306 + }
1.307 +
1.308 + // Look through the array of tests in order to find the correct class to return
1.309 + TInt loop=0;
1.310 + while (theTestTypes[loop].action!=NULL)
1.311 + {
1.312 + if (aTestActionSpec.iActionType == theTestTypes[loop].name)
1.313 + {
1.314 + return theTestTypes[loop].action(aFs, *iTestConsole, *iLogFile, aTestActionSpec);
1.315 + }
1.316 + loop++;
1.317 + }
1.318 +
1.319 + User::Leave(KErrNotSupported);
1.320 + return NULL;
1.321 + }