sl@0: // Copyright (c) 2010 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 "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: #include "t_logutil.h" sl@0: sl@0: //Define "TheTest" variable used in the test cpp files sl@0: extern RTest TheTest; sl@0: sl@0: TPtrC FileName(const TText* aFile) sl@0: { sl@0: TPtrC p(aFile); sl@0: TInt ix=p.LocateReverse('\\'); sl@0: if (ix<0) sl@0: ix=p.LocateReverse('/'); sl@0: if (ix>=0) sl@0: p.Set(p.Mid(1+ix)); sl@0: return p; sl@0: } sl@0: sl@0: void LogTestBoolExpr(TBool aRes, const TText* aFile, TInt aLine, TBool aPrintThreadName) sl@0: { sl@0: if(!aRes) sl@0: { sl@0: TPtrC fname(FileName(aFile)); sl@0: if(aPrintThreadName) sl@0: { sl@0: RThread th; sl@0: TName name = th.Name(); sl@0: RDebug::Print(_L("*** Boolean expression evaluated to false, file: %S-%d\r\n"), &fname, aLine); sl@0: User::Panic(_L("t_logutil-1"), 1); sl@0: } sl@0: else sl@0: { sl@0: TheTest.Printf(_L("*** Boolean expression evaluated to false, file: %S-%d\r\n"), &fname, aLine); sl@0: TheTest(EFalse, aLine); sl@0: } sl@0: } sl@0: } sl@0: sl@0: void LogCheck(TInt aValue, TInt aExpected, const TText* aFile, TInt aLine, TBool aPrintThreadName) sl@0: { sl@0: if(aValue != aExpected) sl@0: { sl@0: TPtrC fname(FileName(aFile)); sl@0: if(aPrintThreadName) sl@0: { sl@0: RThread th; sl@0: TName name = th.Name(); sl@0: RDebug::Print(_L("*** Expected error: %d, got: %d, file: %S-%d\r\n"), aExpected, aValue, &fname, aLine); sl@0: User::Panic(_L("t_logutil-2"), 2); sl@0: } sl@0: else sl@0: { sl@0: TheTest.Printf(_L("*** Expected error: %d, got: %d, file: %S-%d\r\n"), aExpected, aValue, &fname, aLine); sl@0: TheTest(EFalse, aLine); sl@0: } sl@0: } sl@0: } sl@0: sl@0: void LogCheckU(TUint aValue, TUint aExpected, const TText* aFile, TInt aLine, TBool aPrintThreadName) sl@0: { sl@0: if(aValue != aExpected) sl@0: { sl@0: TPtrC fname(FileName(aFile)); sl@0: if(aPrintThreadName) sl@0: { sl@0: RThread th; sl@0: TName name = th.Name(); sl@0: RDebug::Print(_L("*** Expected error: %u, got: %u, file: %S-%d\r\n"), aExpected, aValue, &fname, aLine); sl@0: User::Panic(_L("t_logutil-3"), 3); sl@0: } sl@0: else sl@0: { sl@0: TheTest.Printf(_L("*** Expected error: %u, got: %u, file: %S-%d\r\n"), aExpected, aValue, &fname, aLine); sl@0: TheTest(EFalse, aLine); sl@0: } sl@0: } sl@0: } sl@0: sl@0: void LogLeave(TInt aErr, const TText* aFile, const TInt aLine) sl@0: { sl@0: TPtrC fname(FileName(aFile)); sl@0: TheTest.Printf(_L("*** LogEng test leave, err=%d, file: %S-%d\r\n"), aErr, &fname, aLine); sl@0: User::Leave(aErr); sl@0: } sl@0: sl@0: void LogPanic(const TDesC& aCategory, TInt aErr, const TText* aFile, TInt aLine) sl@0: { sl@0: TPtrC fname(FileName(aFile)); sl@0: TheTest.Printf(_L("*** LogEng test panic'd with err=%d, category=%S, file: %S-%d\r\n"), aErr, &aCategory, &fname, aLine); sl@0: User::Panic(aCategory, aErr); sl@0: } sl@0: sl@0: TInt KillProcess(const TDesC& aProcessName) sl@0: { sl@0: TFullName name; sl@0: sl@0: TheTest.Printf(_L("Find and kill \"%S\" process.\n"), &aProcessName); sl@0: sl@0: TBuf<64> pattern(aProcessName); sl@0: TInt length = pattern.Length(); sl@0: pattern += _L("*"); sl@0: TFindProcess procFinder(pattern); sl@0: sl@0: while (procFinder.Next(name) == KErrNone) sl@0: { sl@0: if (name.Length() > length) sl@0: {//If found name is a string containing aProcessName string. sl@0: TChar c(name[length]); sl@0: if (c.IsAlphaDigit() || sl@0: c == TChar('_') || sl@0: c == TChar('-')) sl@0: { sl@0: // If the found name is other valid application name sl@0: // starting with aProcessName string. sl@0: TheTest.Printf(_L(":: Process name: \"%S\".\n"), &name); sl@0: continue; sl@0: } sl@0: } sl@0: RProcess proc; sl@0: if (proc.Open(name) == KErrNone) sl@0: { sl@0: proc.Kill(0); sl@0: TheTest.Printf(_L("\"%S\" process killed.\n"), &name); sl@0: } sl@0: proc.Close(); sl@0: } sl@0: return KErrNone; sl@0: }