sl@0: /* sl@0: * Copyright (c) 2007-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: * Wrapper for RTest which logs to a file, coun1ts failures (without panicing) and sl@0: * generates a final result line the ONB will parse. sl@0: * sl@0: */ sl@0: sl@0: sl@0: sl@0: sl@0: /** sl@0: @file sl@0: */ sl@0: #include "rtestwrapper.h" sl@0: #include sl@0: #include sl@0: sl@0: class CTestConsole: public CConsoleBase sl@0: { sl@0: public: sl@0: static CTestConsole* NewL(CConsoleBase* aCon, const TDesC &aFileName); sl@0: TInt Create(const TDesC16& aTitle,TSize aSize) {return iCon->Create(aTitle,aSize);}; sl@0: void Read(TRequestStatus& aStatus) {iCon->Read(aStatus);}; sl@0: void ReadCancel(void) {iCon->ReadCancel();}; sl@0: void Write(const TDesC16& aString); sl@0: TPoint CursorPos(void) const {return iCon->CursorPos();}; sl@0: void SetCursorPosAbs(const TPoint& aPos) {iCon->SetCursorPosAbs(aPos);}; sl@0: void SetCursorPosRel(const TPoint& aPos) {iCon->SetCursorPosRel(aPos);}; sl@0: void SetCursorHeight(TInt aHeight) {iCon->SetCursorHeight(aHeight);}; sl@0: void SetTitle(const TDesC16& aTitle) {iCon->SetTitle(aTitle);}; sl@0: void ClearScreen(void) {iCon->ClearScreen();}; sl@0: void ClearToEndOfLine(void) {iCon->ClearToEndOfLine();}; sl@0: TSize ScreenSize(void) const {return iCon->ScreenSize();}; sl@0: TKeyCode KeyCode(void) const {return iCon->KeyCode();}; sl@0: TUint KeyModifiers(void) const {return iCon->KeyModifiers();}; sl@0: ~CTestConsole(void); sl@0: private: sl@0: void ConstructL(const TDesC &aFileName); sl@0: CTestConsole(void); sl@0: CConsoleBase* iCon; sl@0: RFs iFs; sl@0: RFile iFile; sl@0: }; sl@0: sl@0: CTestConsole* CTestConsole::NewL(CConsoleBase* aCon, const TDesC &aFileName) sl@0: { sl@0: CTestConsole* self; sl@0: self=new (ELeave) CTestConsole; sl@0: CleanupStack::PushL(self); sl@0: self->iCon=aCon; sl@0: self->ConstructL(aFileName); sl@0: CleanupStack::Pop(self); sl@0: return self; sl@0: } sl@0: sl@0: void CTestConsole::ConstructL(const TDesC &aFileName) sl@0: { sl@0: User::LeaveIfError(iFs.Connect()); sl@0: (void) iFs.Delete(aFileName); sl@0: User::LeaveIfError(iFile.Create(iFs, aFileName, EFileShareAny | EFileWrite)); sl@0: } sl@0: sl@0: sl@0: CTestConsole::CTestConsole(void):CConsoleBase() sl@0: { sl@0: } sl@0: sl@0: CTestConsole::~CTestConsole(void) sl@0: sl@0: { sl@0: delete iCon; sl@0: iFile.Close(); sl@0: iFs.Close(); sl@0: } sl@0: sl@0: void CTestConsole::Write(const TDesC16& aString) sl@0: sl@0: { sl@0: iCon->Write(aString); sl@0: TUint8 space[200]; sl@0: TPtr8 ptr(space,200); sl@0: ptr.Copy(aString); sl@0: iFile.Write(ptr); sl@0: } sl@0: sl@0: EXPORT_C RTestWrapper::RTestWrapper(const TDesC &aTitle,TInt aThrowaway,const TText* anOtherThrowaway) sl@0: : RTest(aTitle, aThrowaway, anOtherThrowaway), sl@0: iNestLevel(0), sl@0: iTestCount(0), sl@0: iThisTestFailed(EFalse), sl@0: iFailedCount(0), sl@0: iTitle(aTitle) sl@0: { sl@0: } sl@0: sl@0: EXPORT_C void RTestWrapper::operator()(TInt aResult,TInt aLineNum,const TText* aFileName) sl@0: { sl@0: if(!aResult) sl@0: { sl@0: RTest::Printf(_L("RTEST: Test FAILED %s:%d\n"), aFileName, aLineNum); sl@0: if(!iThisTestFailed) sl@0: { sl@0: ++iFailedCount; sl@0: } sl@0: iThisTestFailed = ETrue; sl@0: } sl@0: } sl@0: sl@0: EXPORT_C void RTestWrapper::Title(const TDesC &aFileName) sl@0: { sl@0: // CheckConsoleCreated(); // Can not use this because they forgot to export it! sl@0: RTest::Title(); // Make sure console is created before we try and wrap it sl@0: CConsoleBase *console(0); sl@0: TRAPD(err, console = CTestConsole::NewL(RTest::Console(), aFileName)); sl@0: if(err == KErrNone) sl@0: { sl@0: RTest::SetConsole(console); sl@0: } sl@0: sl@0: RTest::Title(); sl@0: } sl@0: sl@0: sl@0: EXPORT_C void RTestWrapper::Start(const TDesC16 &aHeading) sl@0: { sl@0: RTest::Start(aHeading); sl@0: ++iNestLevel; sl@0: ++iTestCount; sl@0: iThisTestFailed = EFalse; sl@0: } sl@0: sl@0: EXPORT_C void RTestWrapper::Next(const TDesC16 &aHeading) sl@0: { sl@0: RTest::Next(aHeading); sl@0: ++iTestCount; sl@0: iThisTestFailed = EFalse; sl@0: } sl@0: sl@0: EXPORT_C void RTestWrapper::End() sl@0: { sl@0: RTest::End(); sl@0: --iNestLevel; sl@0: if(iNestLevel == 0) sl@0: { sl@0: RTest::Printf(_L("\r\n%d tests failed out of %d\r\n"), iFailedCount, iTestCount); sl@0: } sl@0: } sl@0: sl@0: // End of file