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 "tScriptSetup.h" sl@0: #include "tScriptTests.h" sl@0: sl@0: #include "t_testactionspec.h" sl@0: #include "t_input.h" sl@0: #include "t_tefinput.h" sl@0: #include "t_certstoreactionmemfail.h" sl@0: #include "tcancel.h" sl@0: #include "t_sleep.h" sl@0: #include "t_message.h" sl@0: #include "t_output.h" sl@0: #include "tTestSpec.h" sl@0: sl@0: #include sl@0: sl@0: #include "t_logger.h" sl@0: sl@0: _LIT8(KStartMemFail, "startmemfailure"); sl@0: _LIT8(KStopMemFail, "stopmemfailure"); sl@0: _LIT8(KCancelStart, "startcancellation"); sl@0: _LIT8(KCancelStop, "stopcancellation"); sl@0: _LIT8(KMessage, "message"); sl@0: _LIT8(KSleep, "sleep"); sl@0: sl@0: #include "t_policy.h" sl@0: _LIT8(KPolicyTest, "policytest"); sl@0: sl@0: EXPORT_C CScriptSetup* CScriptSetup::NewLC(CConsoleBase* aConsole) sl@0: { sl@0: CScriptSetup* self = new (ELeave) CScriptSetup(aConsole); sl@0: CleanupStack::PushL(self); sl@0: self->ConstructL(); sl@0: return self; sl@0: } sl@0: sl@0: CScriptSetup::CScriptSetup(CConsoleBase* aConsole) : CTestSetup(aConsole) sl@0: { sl@0: } sl@0: sl@0: EXPORT_C CScriptSetup::~CScriptSetup() sl@0: { sl@0: delete iTestInput; sl@0: delete iScriptPath; sl@0: } sl@0: sl@0: EXPORT_C void CScriptSetup::SetupTestsL(RFs& aFs, sl@0: CTestSpec& aTestSpec, sl@0: TScriptTests theTestTypes[], sl@0: const CTestHandlerSettings& aCommandLineSettings) sl@0: { sl@0: TInt pos = 0; sl@0: TInt err = KErrNone; sl@0: TBuf8<256> testCaseID; sl@0: TBuf8<256> prevtestCaseID; sl@0: TBuf8<512> scriptResult; sl@0: TBuf8<512> actionType; sl@0: TBool runtest = EFalse; sl@0: TBool iniFile = EFalse; sl@0: TBool startTest = EFalse; sl@0: TBool endTest = EFalse; sl@0: sl@0: for (TInt i = 1 ; ; ++i) sl@0: { sl@0: TPtrC8 runTestStep; sl@0: TPtrC8 testDescription; sl@0: TPtrC8 actionData; sl@0: sl@0: if (iTefScript) sl@0: { sl@0: sl@0: if(endTest) sl@0: { sl@0: startTest = EFalse; sl@0: runtest = EFalse; sl@0: testCaseID.Copy(Tefinput::ParseTestCaseID(*iTestInput, KStartTestStep, prevtestCaseID, pos, err, runtest, startTest)); sl@0: prevtestCaseID.Copy(testCaseID); sl@0: } sl@0: if(runtest) sl@0: { sl@0: if(endTest && startTest) sl@0: { sl@0: startTest = ETrue; sl@0: } sl@0: else sl@0: { sl@0: startTest = EFalse; sl@0: } sl@0: endTest = EFalse; sl@0: testCaseID.Copy(prevtestCaseID); sl@0: } sl@0: else sl@0: { sl@0: testCaseID.Copy(Tefinput::ParseTestCaseID(*iTestInput, KStartTestStep, prevtestCaseID, pos, err, runtest, startTest)); sl@0: prevtestCaseID.Copy(testCaseID); sl@0: } sl@0: runTestStep.Set(Tefinput::ParseRunTestStep(*iTestInput, KRunTestStep, pos, err)); sl@0: endTest = Tefinput::EndTestCase(*iTestInput, runTestStep, KEndTestStep, pos); sl@0: } sl@0: else sl@0: { sl@0: actionData.Set(Input::ParseElement(*iTestInput, KActionStart, KActionEnd, pos, err)); sl@0: } sl@0: if (err != KErrNone) sl@0: { sl@0: break; sl@0: } sl@0: sl@0: TInt relativePos = 0; sl@0: TInt scriptGroupings= DEFAULTGROUPING; sl@0: TTestActionSpec actionSpec; sl@0: //Parse the file to create action name, type , body and result sl@0: if (iTefScript) sl@0: { sl@0: User::LeaveIfError(actionSpec.TEFInit(aFs, runTestStep, testCaseID, prevtestCaseID, iTefScript, runtest, iniFile, scriptResult, actionType, *iScriptPath, *iConsole, *iLogFile)); sl@0: } sl@0: else sl@0: { sl@0: User::LeaveIfError(actionSpec.Init(actionData, relativePos, *iConsole, *iLogFile, scriptGroupings)); sl@0: } sl@0: sl@0: //Start off checking Exhaustive and Smoke flags, then calls groupings sl@0: if (!CheckAllFlags(aCommandLineSettings, scriptGroupings)) 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, newAction = CreateActionL(aFs, actionSpec, theTestTypes)); sl@0: sl@0: sl@0: sl@0: sl@0: if (err != KErrNone) sl@0: { sl@0: iLogFile->write(_L("CScriptSetup::CreateActionL failed: ")); sl@0: iLogFile->writeError(err); sl@0: iLogFile->writeNewLine(); sl@0: sl@0: iLogFile->write(_L("Action name: ")); sl@0: iLogFile->writeString(actionSpec.iActionName); sl@0: iLogFile->writeNewLine(); sl@0: sl@0: iLogFile->write(_L("Action type: ")); sl@0: iLogFile->writeString(actionSpec.iActionType); sl@0: iLogFile->writeNewLine(); sl@0: sl@0: iLogFile->write(_L("1 tests failed out of 1\r\n")); sl@0: sl@0: User::Leave(err); sl@0: } sl@0: sl@0: if(newAction->ScriptError() != CTestAction::ENone) sl@0: { sl@0: TBuf scriptError; sl@0: newAction->ScriptError(scriptError); sl@0: sl@0: iLogFile->write(_L("Script error \"%S\" in test %s\r\n"), &scriptError, i); sl@0: sl@0: delete newAction; sl@0: User::Leave(KErrArgument); sl@0: } sl@0: sl@0: CleanupStack::PushL(newAction); sl@0: User::LeaveIfError(aTestSpec.AddNextTest(newAction)); sl@0: CleanupStack::Pop(newAction); sl@0: sl@0: if(iniFile) sl@0: { sl@0: CleanupStack::PopAndDestroy(1); sl@0: } sl@0: } sl@0: } sl@0: sl@0: EXPORT_C TBool CScriptSetup::InitialiseL(RFs &aFs, const TDesC& aDefaultScript, const TDesC& aDefaultLog, TBool aUseCommandLine) sl@0: { sl@0: // gets the script file argument sl@0: iScriptPath = NULL; sl@0: iTefScript = EFalse; sl@0: sl@0: if (aUseCommandLine) sl@0: { sl@0: iScriptPath = GetArgument(); sl@0: if(iScriptPath->Length()==0) sl@0: { sl@0: delete iScriptPath; sl@0: iScriptPath = NULL; sl@0: } sl@0: else sl@0: { sl@0: TPtr scriptFileNameDes = iScriptPath->Des(); sl@0: if (scriptFileNameDes.Right(8) == _L(".script1") || scriptFileNameDes.Right(7) == _L(".script")) sl@0: { sl@0: iTefScript = ETrue; sl@0: } sl@0: } sl@0: } sl@0: sl@0: if(iScriptPath == NULL) sl@0: { sl@0: if(aDefaultScript.Length() == 0) sl@0: { sl@0: PRINTANDLOG(_L("No script file specified on command line and no default given")); sl@0: return(EFalse); sl@0: } sl@0: else sl@0: { sl@0: iScriptPath = aDefaultScript.AllocLC(); sl@0: } sl@0: }; sl@0: sl@0: PRINTANDLOG1(_L("Script file: %S"), iScriptPath); sl@0: sl@0: // open the script file sl@0: RFile scriptFile; sl@0: TInt err = scriptFile.Open(aFs, *iScriptPath, EFileStream | EFileRead | EFileShareReadersOnly); sl@0: if (err != KErrNone) sl@0: { sl@0: PRINTANDLOG1(_L("Error opening script file: %d"), err); sl@0: delete iScriptPath; sl@0: iScriptPath = NULL; sl@0: return(EFalse); sl@0: } sl@0: CleanupClosePushL(scriptFile); sl@0: sl@0: TRAP(err, OpenLogFileL(aFs, 1, aDefaultLog, aUseCommandLine)); sl@0: if (err != KErrNone) sl@0: { sl@0: PRINTANDLOG1(_L("Error opening log file: %d"), err); sl@0: delete iScriptPath; sl@0: iScriptPath = NULL; sl@0: CleanupStack::PopAndDestroy(1);// scripFile sl@0: return(EFalse); sl@0: } sl@0: sl@0: // gets size of script file sl@0: TInt size; sl@0: scriptFile.Size(size); sl@0: CleanupStack::PopAndDestroy(); // scriptFile sl@0: sl@0: // reads script into iTestInput sl@0: iTestInput = HBufC8::NewL(size); sl@0: TPtr8 pInput(iTestInput->Des()); sl@0: pInput.SetLength(size); sl@0: sl@0: RFileReadStream stream; sl@0: User::LeaveIfError(stream.Open(aFs, *iScriptPath, EFileStream | EFileRead | EFileShareReadersOnly)); sl@0: CleanupClosePushL(stream); sl@0: stream.ReadL(pInput, size); sl@0: CleanupStack::PopAndDestroy(1); // stream sl@0: return(ETrue); sl@0: } sl@0: sl@0: EXPORT_C CTestAction* CScriptSetup::CreateActionL(RFs& aFs, sl@0: const TTestActionSpec& aTestActionSpec, sl@0: const TScriptTests theTestTypes[]) const sl@0: { sl@0: // Instantiate built in test actions sl@0: if (aTestActionSpec.iActionType == KStartMemFail) sl@0: { sl@0: return CMemFailStart::NewL(*iTestConsole, *iLogFile, aTestActionSpec); sl@0: } sl@0: else if (aTestActionSpec.iActionType == KStopMemFail) sl@0: { sl@0: return CMemFailStop::NewL(*iTestConsole, *iLogFile, aTestActionSpec); sl@0: } sl@0: else if (aTestActionSpec.iActionType == KCancelStart) sl@0: { sl@0: return CCancelStart::NewL(*iTestConsole, *iLogFile, aTestActionSpec); sl@0: } sl@0: else if (aTestActionSpec.iActionType == KCancelStop) sl@0: { sl@0: return CCancelStop::NewL(*iTestConsole, *iLogFile, aTestActionSpec); sl@0: } sl@0: else if (aTestActionSpec.iActionType == KMessage) sl@0: { sl@0: return CTestActionMessage::NewL(*iTestConsole, *iLogFile, aTestActionSpec); sl@0: } sl@0: else if (aTestActionSpec.iActionType == KSleep) sl@0: { sl@0: return CSleep::NewL(*iTestConsole, *iLogFile, aTestActionSpec); sl@0: } sl@0: else if (aTestActionSpec.iActionType == KPolicyTest) sl@0: { sl@0: return CPolicyTest::NewL(*iTestConsole, *iLogFile, aTestActionSpec); sl@0: } sl@0: sl@0: // Look through the array of tests in order to find the correct class to return sl@0: TInt loop=0; sl@0: while (theTestTypes[loop].action!=NULL) sl@0: { sl@0: if (aTestActionSpec.iActionType == theTestTypes[loop].name) sl@0: { sl@0: return theTestTypes[loop].action(aFs, *iTestConsole, *iLogFile, aTestActionSpec); sl@0: } sl@0: loop++; sl@0: } sl@0: sl@0: User::Leave(KErrNotSupported); sl@0: return NULL; sl@0: }