sl@0
|
1 |
// Copyright (c) 2008-2009 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 |
|
sl@0
|
16 |
/**
|
sl@0
|
17 |
@file
|
sl@0
|
18 |
@test
|
sl@0
|
19 |
@internalComponent
|
sl@0
|
20 |
*/
|
sl@0
|
21 |
|
sl@0
|
22 |
#include "t_wdptest.h"
|
sl@0
|
23 |
|
sl@0
|
24 |
namespace t_wservwdptest
|
sl@0
|
25 |
{
|
sl@0
|
26 |
_LIT(KT_WDPTestId,"testid");
|
sl@0
|
27 |
_LIT(KT_TestPanicTxt, "t_wservwdptest");
|
sl@0
|
28 |
}
|
sl@0
|
29 |
|
sl@0
|
30 |
using namespace t_wservwdptest;
|
sl@0
|
31 |
|
sl@0
|
32 |
CT_WDPTest::CT_WDPTest()
|
sl@0
|
33 |
{
|
sl@0
|
34 |
SetTestStepName(KT_WDPTestStep);
|
sl@0
|
35 |
}
|
sl@0
|
36 |
|
sl@0
|
37 |
|
sl@0
|
38 |
CT_WDPTest::~CT_WDPTest()
|
sl@0
|
39 |
{
|
sl@0
|
40 |
}
|
sl@0
|
41 |
|
sl@0
|
42 |
|
sl@0
|
43 |
enum TVerdict CT_WDPTest::doTestStepPreambleL()
|
sl@0
|
44 |
{
|
sl@0
|
45 |
TVerdict ret=CTestStep::doTestStepPreambleL();
|
sl@0
|
46 |
|
sl@0
|
47 |
if ( !GetIntFromConfig( ConfigSection(), KT_WDPTestId, iTestId ) )
|
sl@0
|
48 |
{
|
sl@0
|
49 |
User::Leave(KErrNotFound);
|
sl@0
|
50 |
}
|
sl@0
|
51 |
return ret;
|
sl@0
|
52 |
}
|
sl@0
|
53 |
|
sl@0
|
54 |
enum TVerdict CT_WDPTest::doTestStepPostambleL()
|
sl@0
|
55 |
{
|
sl@0
|
56 |
return TestStepResult();
|
sl@0
|
57 |
}
|
sl@0
|
58 |
|
sl@0
|
59 |
|
sl@0
|
60 |
/**
|
sl@0
|
61 |
Starts test step
|
sl@0
|
62 |
@internalComponent
|
sl@0
|
63 |
@return TVerdict pass / fail
|
sl@0
|
64 |
@pre N/A
|
sl@0
|
65 |
@post N/A
|
sl@0
|
66 |
*/
|
sl@0
|
67 |
enum TVerdict CT_WDPTest::doTestStepL()
|
sl@0
|
68 |
{
|
sl@0
|
69 |
switch( iTestId )
|
sl@0
|
70 |
{
|
sl@0
|
71 |
case 1:
|
sl@0
|
72 |
TEST(!WServDefaultDataPagedL());
|
sl@0
|
73 |
break;
|
sl@0
|
74 |
default:
|
sl@0
|
75 |
User::Panic(KT_TestPanicTxt, KErrNotFound); //Unexpected value!
|
sl@0
|
76 |
break;
|
sl@0
|
77 |
}
|
sl@0
|
78 |
return TestStepResult();
|
sl@0
|
79 |
}
|
sl@0
|
80 |
|
sl@0
|
81 |
TBool CT_WDPTest::WServDefaultDataPagedL()
|
sl@0
|
82 |
{
|
sl@0
|
83 |
RProcess proc = RProcess();
|
sl@0
|
84 |
_LIT(KPattern, "*EwSrv*");
|
sl@0
|
85 |
TFindProcess findProc(KPattern);
|
sl@0
|
86 |
TFullName fullName;
|
sl@0
|
87 |
TInt err=KErrNone;
|
sl@0
|
88 |
|
sl@0
|
89 |
INFO_PRINTF2(_L("TFindProcess: Find a process whose name match the pattern %S "), &KPattern());
|
sl@0
|
90 |
if( (err=findProc.Next(fullName))!= KErrNone )
|
sl@0
|
91 |
{
|
sl@0
|
92 |
INFO_PRINTF1(_L("Error: Process whose name match the above pattern not found"));
|
sl@0
|
93 |
User::LeaveIfError(err);
|
sl@0
|
94 |
}
|
sl@0
|
95 |
else
|
sl@0
|
96 |
{
|
sl@0
|
97 |
INFO_PRINTF2(_L("TFindProcess.Next() found process --> %S "), &fullName );
|
sl@0
|
98 |
}
|
sl@0
|
99 |
|
sl@0
|
100 |
if (findProc.Next(fullName)!= KErrNotFound)
|
sl@0
|
101 |
{
|
sl@0
|
102 |
INFO_PRINTF2(_L("Error: TFindProcess found more than 1 process matching the pattern --> %S "), &fullName );
|
sl@0
|
103 |
User::Leave(KErrGeneral);
|
sl@0
|
104 |
}
|
sl@0
|
105 |
|
sl@0
|
106 |
if( (err=proc.Open(fullName)) != KErrNone)
|
sl@0
|
107 |
{
|
sl@0
|
108 |
INFO_PRINTF2(_L("Error: RProcess.Open() returned --> %d"), err);
|
sl@0
|
109 |
User::LeaveIfError(err);
|
sl@0
|
110 |
}
|
sl@0
|
111 |
|
sl@0
|
112 |
TBool ret = proc.DefaultDataPaged();
|
sl@0
|
113 |
INFO_PRINTF2(_L("wserv.DefaultDataPaged() returned --> %d"), ret);
|
sl@0
|
114 |
proc.Close();
|
sl@0
|
115 |
return ret;
|
sl@0
|
116 |
}
|