1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/persistentdata/loggingservices/eventlogger/test/src/t_logutil.cpp Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,140 @@
1.4 +// Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies).
1.5 +// All rights reserved.
1.6 +// This component and the accompanying materials are made available
1.7 +// under the terms of "Eclipse Public License v1.0"
1.8 +// which accompanies this distribution, and is available
1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.10 +//
1.11 +// Initial Contributors:
1.12 +// Nokia Corporation - initial contribution.
1.13 +//
1.14 +// Contributors:
1.15 +//
1.16 +// Description:
1.17 +//
1.18 +#include "t_logutil.h"
1.19 +
1.20 +//Define "TheTest" variable used in the test cpp files
1.21 +extern RTest TheTest;
1.22 +
1.23 +TPtrC FileName(const TText* aFile)
1.24 + {
1.25 + TPtrC p(aFile);
1.26 + TInt ix=p.LocateReverse('\\');
1.27 + if (ix<0)
1.28 + ix=p.LocateReverse('/');
1.29 + if (ix>=0)
1.30 + p.Set(p.Mid(1+ix));
1.31 + return p;
1.32 + }
1.33 +
1.34 +void LogTestBoolExpr(TBool aRes, const TText* aFile, TInt aLine, TBool aPrintThreadName)
1.35 + {
1.36 + if(!aRes)
1.37 + {
1.38 + TPtrC fname(FileName(aFile));
1.39 + if(aPrintThreadName)
1.40 + {
1.41 + RThread th;
1.42 + TName name = th.Name();
1.43 + RDebug::Print(_L("*** Boolean expression evaluated to false, file: %S-%d\r\n"), &fname, aLine);
1.44 + User::Panic(_L("t_logutil-1"), 1);
1.45 + }
1.46 + else
1.47 + {
1.48 + TheTest.Printf(_L("*** Boolean expression evaluated to false, file: %S-%d\r\n"), &fname, aLine);
1.49 + TheTest(EFalse, aLine);
1.50 + }
1.51 + }
1.52 + }
1.53 +
1.54 +void LogCheck(TInt aValue, TInt aExpected, const TText* aFile, TInt aLine, TBool aPrintThreadName)
1.55 + {
1.56 + if(aValue != aExpected)
1.57 + {
1.58 + TPtrC fname(FileName(aFile));
1.59 + if(aPrintThreadName)
1.60 + {
1.61 + RThread th;
1.62 + TName name = th.Name();
1.63 + RDebug::Print(_L("*** Expected error: %d, got: %d, file: %S-%d\r\n"), aExpected, aValue, &fname, aLine);
1.64 + User::Panic(_L("t_logutil-2"), 2);
1.65 + }
1.66 + else
1.67 + {
1.68 + TheTest.Printf(_L("*** Expected error: %d, got: %d, file: %S-%d\r\n"), aExpected, aValue, &fname, aLine);
1.69 + TheTest(EFalse, aLine);
1.70 + }
1.71 + }
1.72 + }
1.73 +
1.74 +void LogCheckU(TUint aValue, TUint aExpected, const TText* aFile, TInt aLine, TBool aPrintThreadName)
1.75 + {
1.76 + if(aValue != aExpected)
1.77 + {
1.78 + TPtrC fname(FileName(aFile));
1.79 + if(aPrintThreadName)
1.80 + {
1.81 + RThread th;
1.82 + TName name = th.Name();
1.83 + RDebug::Print(_L("*** Expected error: %u, got: %u, file: %S-%d\r\n"), aExpected, aValue, &fname, aLine);
1.84 + User::Panic(_L("t_logutil-3"), 3);
1.85 + }
1.86 + else
1.87 + {
1.88 + TheTest.Printf(_L("*** Expected error: %u, got: %u, file: %S-%d\r\n"), aExpected, aValue, &fname, aLine);
1.89 + TheTest(EFalse, aLine);
1.90 + }
1.91 + }
1.92 + }
1.93 +
1.94 +void LogLeave(TInt aErr, const TText* aFile, const TInt aLine)
1.95 + {
1.96 + TPtrC fname(FileName(aFile));
1.97 + TheTest.Printf(_L("*** LogEng test leave, err=%d, file: %S-%d\r\n"), aErr, &fname, aLine);
1.98 + User::Leave(aErr);
1.99 + }
1.100 +
1.101 +void LogPanic(const TDesC& aCategory, TInt aErr, const TText* aFile, TInt aLine)
1.102 + {
1.103 + TPtrC fname(FileName(aFile));
1.104 + TheTest.Printf(_L("*** LogEng test panic'd with err=%d, category=%S, file: %S-%d\r\n"), aErr, &aCategory, &fname, aLine);
1.105 + User::Panic(aCategory, aErr);
1.106 + }
1.107 +
1.108 +TInt KillProcess(const TDesC& aProcessName)
1.109 + {
1.110 + TFullName name;
1.111 +
1.112 + TheTest.Printf(_L("Find and kill \"%S\" process.\n"), &aProcessName);
1.113 +
1.114 + TBuf<64> pattern(aProcessName);
1.115 + TInt length = pattern.Length();
1.116 + pattern += _L("*");
1.117 + TFindProcess procFinder(pattern);
1.118 +
1.119 + while (procFinder.Next(name) == KErrNone)
1.120 + {
1.121 + if (name.Length() > length)
1.122 + {//If found name is a string containing aProcessName string.
1.123 + TChar c(name[length]);
1.124 + if (c.IsAlphaDigit() ||
1.125 + c == TChar('_') ||
1.126 + c == TChar('-'))
1.127 + {
1.128 + // If the found name is other valid application name
1.129 + // starting with aProcessName string.
1.130 + TheTest.Printf(_L(":: Process name: \"%S\".\n"), &name);
1.131 + continue;
1.132 + }
1.133 + }
1.134 + RProcess proc;
1.135 + if (proc.Open(name) == KErrNone)
1.136 + {
1.137 + proc.Kill(0);
1.138 + TheTest.Printf(_L("\"%S\" process killed.\n"), &name);
1.139 + }
1.140 + proc.Close();
1.141 + }
1.142 + return KErrNone;
1.143 + }