sl@0
|
1 |
// Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
// All rights reserved.
|
sl@0
|
3 |
// This component and the accompanying materials are made available
|
sl@0
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
sl@0
|
5 |
// which accompanies this distribution, and is available
|
sl@0
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
//
|
sl@0
|
8 |
// Initial Contributors:
|
sl@0
|
9 |
// Nokia Corporation - initial contribution.
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// Contributors:
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// Description:
|
sl@0
|
14 |
//
|
sl@0
|
15 |
#include "t_logutil.h"
|
sl@0
|
16 |
|
sl@0
|
17 |
//Define "TheTest" variable used in the test cpp files
|
sl@0
|
18 |
extern RTest TheTest;
|
sl@0
|
19 |
|
sl@0
|
20 |
TPtrC FileName(const TText* aFile)
|
sl@0
|
21 |
{
|
sl@0
|
22 |
TPtrC p(aFile);
|
sl@0
|
23 |
TInt ix=p.LocateReverse('\\');
|
sl@0
|
24 |
if (ix<0)
|
sl@0
|
25 |
ix=p.LocateReverse('/');
|
sl@0
|
26 |
if (ix>=0)
|
sl@0
|
27 |
p.Set(p.Mid(1+ix));
|
sl@0
|
28 |
return p;
|
sl@0
|
29 |
}
|
sl@0
|
30 |
|
sl@0
|
31 |
void LogTestBoolExpr(TBool aRes, const TText* aFile, TInt aLine, TBool aPrintThreadName)
|
sl@0
|
32 |
{
|
sl@0
|
33 |
if(!aRes)
|
sl@0
|
34 |
{
|
sl@0
|
35 |
TPtrC fname(FileName(aFile));
|
sl@0
|
36 |
if(aPrintThreadName)
|
sl@0
|
37 |
{
|
sl@0
|
38 |
RThread th;
|
sl@0
|
39 |
TName name = th.Name();
|
sl@0
|
40 |
RDebug::Print(_L("*** Boolean expression evaluated to false, file: %S-%d\r\n"), &fname, aLine);
|
sl@0
|
41 |
User::Panic(_L("t_logutil-1"), 1);
|
sl@0
|
42 |
}
|
sl@0
|
43 |
else
|
sl@0
|
44 |
{
|
sl@0
|
45 |
TheTest.Printf(_L("*** Boolean expression evaluated to false, file: %S-%d\r\n"), &fname, aLine);
|
sl@0
|
46 |
TheTest(EFalse, aLine);
|
sl@0
|
47 |
}
|
sl@0
|
48 |
}
|
sl@0
|
49 |
}
|
sl@0
|
50 |
|
sl@0
|
51 |
void LogCheck(TInt aValue, TInt aExpected, const TText* aFile, TInt aLine, TBool aPrintThreadName)
|
sl@0
|
52 |
{
|
sl@0
|
53 |
if(aValue != aExpected)
|
sl@0
|
54 |
{
|
sl@0
|
55 |
TPtrC fname(FileName(aFile));
|
sl@0
|
56 |
if(aPrintThreadName)
|
sl@0
|
57 |
{
|
sl@0
|
58 |
RThread th;
|
sl@0
|
59 |
TName name = th.Name();
|
sl@0
|
60 |
RDebug::Print(_L("*** Expected error: %d, got: %d, file: %S-%d\r\n"), aExpected, aValue, &fname, aLine);
|
sl@0
|
61 |
User::Panic(_L("t_logutil-2"), 2);
|
sl@0
|
62 |
}
|
sl@0
|
63 |
else
|
sl@0
|
64 |
{
|
sl@0
|
65 |
TheTest.Printf(_L("*** Expected error: %d, got: %d, file: %S-%d\r\n"), aExpected, aValue, &fname, aLine);
|
sl@0
|
66 |
TheTest(EFalse, aLine);
|
sl@0
|
67 |
}
|
sl@0
|
68 |
}
|
sl@0
|
69 |
}
|
sl@0
|
70 |
|
sl@0
|
71 |
void LogCheckU(TUint aValue, TUint aExpected, const TText* aFile, TInt aLine, TBool aPrintThreadName)
|
sl@0
|
72 |
{
|
sl@0
|
73 |
if(aValue != aExpected)
|
sl@0
|
74 |
{
|
sl@0
|
75 |
TPtrC fname(FileName(aFile));
|
sl@0
|
76 |
if(aPrintThreadName)
|
sl@0
|
77 |
{
|
sl@0
|
78 |
RThread th;
|
sl@0
|
79 |
TName name = th.Name();
|
sl@0
|
80 |
RDebug::Print(_L("*** Expected error: %u, got: %u, file: %S-%d\r\n"), aExpected, aValue, &fname, aLine);
|
sl@0
|
81 |
User::Panic(_L("t_logutil-3"), 3);
|
sl@0
|
82 |
}
|
sl@0
|
83 |
else
|
sl@0
|
84 |
{
|
sl@0
|
85 |
TheTest.Printf(_L("*** Expected error: %u, got: %u, file: %S-%d\r\n"), aExpected, aValue, &fname, aLine);
|
sl@0
|
86 |
TheTest(EFalse, aLine);
|
sl@0
|
87 |
}
|
sl@0
|
88 |
}
|
sl@0
|
89 |
}
|
sl@0
|
90 |
|
sl@0
|
91 |
void LogLeave(TInt aErr, const TText* aFile, const TInt aLine)
|
sl@0
|
92 |
{
|
sl@0
|
93 |
TPtrC fname(FileName(aFile));
|
sl@0
|
94 |
TheTest.Printf(_L("*** LogEng test leave, err=%d, file: %S-%d\r\n"), aErr, &fname, aLine);
|
sl@0
|
95 |
User::Leave(aErr);
|
sl@0
|
96 |
}
|
sl@0
|
97 |
|
sl@0
|
98 |
void LogPanic(const TDesC& aCategory, TInt aErr, const TText* aFile, TInt aLine)
|
sl@0
|
99 |
{
|
sl@0
|
100 |
TPtrC fname(FileName(aFile));
|
sl@0
|
101 |
TheTest.Printf(_L("*** LogEng test panic'd with err=%d, category=%S, file: %S-%d\r\n"), aErr, &aCategory, &fname, aLine);
|
sl@0
|
102 |
User::Panic(aCategory, aErr);
|
sl@0
|
103 |
}
|
sl@0
|
104 |
|
sl@0
|
105 |
TInt KillProcess(const TDesC& aProcessName)
|
sl@0
|
106 |
{
|
sl@0
|
107 |
TFullName name;
|
sl@0
|
108 |
|
sl@0
|
109 |
TheTest.Printf(_L("Find and kill \"%S\" process.\n"), &aProcessName);
|
sl@0
|
110 |
|
sl@0
|
111 |
TBuf<64> pattern(aProcessName);
|
sl@0
|
112 |
TInt length = pattern.Length();
|
sl@0
|
113 |
pattern += _L("*");
|
sl@0
|
114 |
TFindProcess procFinder(pattern);
|
sl@0
|
115 |
|
sl@0
|
116 |
while (procFinder.Next(name) == KErrNone)
|
sl@0
|
117 |
{
|
sl@0
|
118 |
if (name.Length() > length)
|
sl@0
|
119 |
{//If found name is a string containing aProcessName string.
|
sl@0
|
120 |
TChar c(name[length]);
|
sl@0
|
121 |
if (c.IsAlphaDigit() ||
|
sl@0
|
122 |
c == TChar('_') ||
|
sl@0
|
123 |
c == TChar('-'))
|
sl@0
|
124 |
{
|
sl@0
|
125 |
// If the found name is other valid application name
|
sl@0
|
126 |
// starting with aProcessName string.
|
sl@0
|
127 |
TheTest.Printf(_L(":: Process name: \"%S\".\n"), &name);
|
sl@0
|
128 |
continue;
|
sl@0
|
129 |
}
|
sl@0
|
130 |
}
|
sl@0
|
131 |
RProcess proc;
|
sl@0
|
132 |
if (proc.Open(name) == KErrNone)
|
sl@0
|
133 |
{
|
sl@0
|
134 |
proc.Kill(0);
|
sl@0
|
135 |
TheTest.Printf(_L("\"%S\" process killed.\n"), &name);
|
sl@0
|
136 |
}
|
sl@0
|
137 |
proc.Close();
|
sl@0
|
138 |
}
|
sl@0
|
139 |
return KErrNone;
|
sl@0
|
140 |
}
|