sl@0: // Copyright (c) 2008-2009 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: sl@0: /** sl@0: @file sl@0: @test sl@0: @internalComponent sl@0: */ sl@0: sl@0: #include "t_wdptest.h" sl@0: sl@0: namespace t_wservwdptest sl@0: { sl@0: _LIT(KT_WDPTestId,"testid"); sl@0: _LIT(KT_TestPanicTxt, "t_wservwdptest"); sl@0: } sl@0: sl@0: using namespace t_wservwdptest; sl@0: sl@0: CT_WDPTest::CT_WDPTest() sl@0: { sl@0: SetTestStepName(KT_WDPTestStep); sl@0: } sl@0: sl@0: sl@0: CT_WDPTest::~CT_WDPTest() sl@0: { sl@0: } sl@0: sl@0: sl@0: enum TVerdict CT_WDPTest::doTestStepPreambleL() sl@0: { sl@0: TVerdict ret=CTestStep::doTestStepPreambleL(); sl@0: sl@0: if ( !GetIntFromConfig( ConfigSection(), KT_WDPTestId, iTestId ) ) sl@0: { sl@0: User::Leave(KErrNotFound); sl@0: } sl@0: return ret; sl@0: } sl@0: sl@0: enum TVerdict CT_WDPTest::doTestStepPostambleL() sl@0: { sl@0: return TestStepResult(); sl@0: } sl@0: sl@0: sl@0: /** sl@0: Starts test step sl@0: @internalComponent sl@0: @return TVerdict pass / fail sl@0: @pre N/A sl@0: @post N/A sl@0: */ sl@0: enum TVerdict CT_WDPTest::doTestStepL() sl@0: { sl@0: switch( iTestId ) sl@0: { sl@0: case 1: sl@0: TEST(!WServDefaultDataPagedL()); sl@0: break; sl@0: default: sl@0: User::Panic(KT_TestPanicTxt, KErrNotFound); //Unexpected value! sl@0: break; sl@0: } sl@0: return TestStepResult(); sl@0: } sl@0: sl@0: TBool CT_WDPTest::WServDefaultDataPagedL() sl@0: { sl@0: RProcess proc = RProcess(); sl@0: _LIT(KPattern, "*EwSrv*"); sl@0: TFindProcess findProc(KPattern); sl@0: TFullName fullName; sl@0: TInt err=KErrNone; sl@0: sl@0: INFO_PRINTF2(_L("TFindProcess: Find a process whose name match the pattern %S "), &KPattern()); sl@0: if( (err=findProc.Next(fullName))!= KErrNone ) sl@0: { sl@0: INFO_PRINTF1(_L("Error: Process whose name match the above pattern not found")); sl@0: User::LeaveIfError(err); sl@0: } sl@0: else sl@0: { sl@0: INFO_PRINTF2(_L("TFindProcess.Next() found process --> %S "), &fullName ); sl@0: } sl@0: sl@0: if (findProc.Next(fullName)!= KErrNotFound) sl@0: { sl@0: INFO_PRINTF2(_L("Error: TFindProcess found more than 1 process matching the pattern --> %S "), &fullName ); sl@0: User::Leave(KErrGeneral); sl@0: } sl@0: sl@0: if( (err=proc.Open(fullName)) != KErrNone) sl@0: { sl@0: INFO_PRINTF2(_L("Error: RProcess.Open() returned --> %d"), err); sl@0: User::LeaveIfError(err); sl@0: } sl@0: sl@0: TBool ret = proc.DefaultDataPaged(); sl@0: INFO_PRINTF2(_L("wserv.DefaultDataPaged() returned --> %d"), ret); sl@0: proc.Close(); sl@0: return ret; sl@0: }