Update contrib.
2 * Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of the License "Eclipse Public License v1.0"
6 * which accompanies this distribution, and is available
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
15 * Wrapper for RTest which logs to a file, coun1ts failures (without panicing) and
16 * generates a final result line the ONB will parse.
26 #include "rtestwrapper.h"
30 class CTestConsole: public CConsoleBase
33 static CTestConsole* NewL(CConsoleBase* aCon, const TDesC &aFileName);
34 TInt Create(const TDesC16& aTitle,TSize aSize) {return iCon->Create(aTitle,aSize);};
35 void Read(TRequestStatus& aStatus) {iCon->Read(aStatus);};
36 void ReadCancel(void) {iCon->ReadCancel();};
37 void Write(const TDesC16& aString);
38 TPoint CursorPos(void) const {return iCon->CursorPos();};
39 void SetCursorPosAbs(const TPoint& aPos) {iCon->SetCursorPosAbs(aPos);};
40 void SetCursorPosRel(const TPoint& aPos) {iCon->SetCursorPosRel(aPos);};
41 void SetCursorHeight(TInt aHeight) {iCon->SetCursorHeight(aHeight);};
42 void SetTitle(const TDesC16& aTitle) {iCon->SetTitle(aTitle);};
43 void ClearScreen(void) {iCon->ClearScreen();};
44 void ClearToEndOfLine(void) {iCon->ClearToEndOfLine();};
45 TSize ScreenSize(void) const {return iCon->ScreenSize();};
46 TKeyCode KeyCode(void) const {return iCon->KeyCode();};
47 TUint KeyModifiers(void) const {return iCon->KeyModifiers();};
50 void ConstructL(const TDesC &aFileName);
57 CTestConsole* CTestConsole::NewL(CConsoleBase* aCon, const TDesC &aFileName)
60 self=new (ELeave) CTestConsole;
61 CleanupStack::PushL(self);
63 self->ConstructL(aFileName);
64 CleanupStack::Pop(self);
68 void CTestConsole::ConstructL(const TDesC &aFileName)
70 User::LeaveIfError(iFs.Connect());
71 (void) iFs.Delete(aFileName);
72 User::LeaveIfError(iFile.Create(iFs, aFileName, EFileShareAny | EFileWrite));
76 CTestConsole::CTestConsole(void):CConsoleBase()
80 CTestConsole::~CTestConsole(void)
88 void CTestConsole::Write(const TDesC16& aString)
98 EXPORT_C RTestWrapper::RTestWrapper(const TDesC &aTitle,TInt aThrowaway,const TText* anOtherThrowaway)
99 : RTest(aTitle, aThrowaway, anOtherThrowaway),
102 iThisTestFailed(EFalse),
108 EXPORT_C void RTestWrapper::operator()(TInt aResult,TInt aLineNum,const TText* aFileName)
112 RTest::Printf(_L("RTEST: Test FAILED %s:%d\n"), aFileName, aLineNum);
117 iThisTestFailed = ETrue;
121 EXPORT_C void RTestWrapper::Title(const TDesC &aFileName)
123 // CheckConsoleCreated(); // Can not use this because they forgot to export it!
124 RTest::Title(); // Make sure console is created before we try and wrap it
125 CConsoleBase *console(0);
126 TRAPD(err, console = CTestConsole::NewL(RTest::Console(), aFileName));
129 RTest::SetConsole(console);
136 EXPORT_C void RTestWrapper::Start(const TDesC16 &aHeading)
138 RTest::Start(aHeading);
141 iThisTestFailed = EFalse;
144 EXPORT_C void RTestWrapper::Next(const TDesC16 &aHeading)
146 RTest::Next(aHeading);
148 iThisTestFailed = EFalse;
151 EXPORT_C void RTestWrapper::End()
157 RTest::Printf(_L("\r\n%d tests failed out of %d\r\n"), iFailedCount, iTestCount);