Update contrib.
1 // Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
22 #include "t_wdptest.h"
24 namespace t_wservwdptest
26 _LIT(KT_WDPTestId,"testid");
27 _LIT(KT_TestPanicTxt, "t_wservwdptest");
30 using namespace t_wservwdptest;
32 CT_WDPTest::CT_WDPTest()
34 SetTestStepName(KT_WDPTestStep);
38 CT_WDPTest::~CT_WDPTest()
43 enum TVerdict CT_WDPTest::doTestStepPreambleL()
45 TVerdict ret=CTestStep::doTestStepPreambleL();
47 if ( !GetIntFromConfig( ConfigSection(), KT_WDPTestId, iTestId ) )
49 User::Leave(KErrNotFound);
54 enum TVerdict CT_WDPTest::doTestStepPostambleL()
56 return TestStepResult();
63 @return TVerdict pass / fail
67 enum TVerdict CT_WDPTest::doTestStepL()
72 TEST(!WServDefaultDataPagedL());
75 User::Panic(KT_TestPanicTxt, KErrNotFound); //Unexpected value!
78 return TestStepResult();
81 TBool CT_WDPTest::WServDefaultDataPagedL()
83 RProcess proc = RProcess();
84 _LIT(KPattern, "*EwSrv*");
85 TFindProcess findProc(KPattern);
89 INFO_PRINTF2(_L("TFindProcess: Find a process whose name match the pattern %S "), &KPattern());
90 if( (err=findProc.Next(fullName))!= KErrNone )
92 INFO_PRINTF1(_L("Error: Process whose name match the above pattern not found"));
93 User::LeaveIfError(err);
97 INFO_PRINTF2(_L("TFindProcess.Next() found process --> %S "), &fullName );
100 if (findProc.Next(fullName)!= KErrNotFound)
102 INFO_PRINTF2(_L("Error: TFindProcess found more than 1 process matching the pattern --> %S "), &fullName );
103 User::Leave(KErrGeneral);
106 if( (err=proc.Open(fullName)) != KErrNone)
108 INFO_PRINTF2(_L("Error: RProcess.Open() returned --> %d"), err);
109 User::LeaveIfError(err);
112 TBool ret = proc.DefaultDataPaged();
113 INFO_PRINTF2(_L("wserv.DefaultDataPaged() returned --> %d"), ret);