os/graphics/windowing/windowserver/test/t_wdp/src/t_wdptest.cpp
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/graphics/windowing/windowserver/test/t_wdp/src/t_wdptest.cpp	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,116 @@
     1.4 +// Copyright (c) 2008-2009 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 +
    1.19 +/**
    1.20 +@file
    1.21 +@test
    1.22 +@internalComponent
    1.23 +*/
    1.24 +
    1.25 +#include "t_wdptest.h"
    1.26 +
    1.27 +namespace t_wservwdptest
    1.28 +	{
    1.29 +	_LIT(KT_WDPTestId,"testid");
    1.30 +	_LIT(KT_TestPanicTxt, "t_wservwdptest");
    1.31 +	}
    1.32 +
    1.33 +using namespace t_wservwdptest;
    1.34 +
    1.35 +CT_WDPTest::CT_WDPTest()
    1.36 +	{
    1.37 +	SetTestStepName(KT_WDPTestStep);
    1.38 +	}
    1.39 +
    1.40 +
    1.41 +CT_WDPTest::~CT_WDPTest()
    1.42 +	{
    1.43 +	}
    1.44 +
    1.45 +
    1.46 +enum TVerdict CT_WDPTest::doTestStepPreambleL()
    1.47 +	{
    1.48 +	TVerdict ret=CTestStep::doTestStepPreambleL();
    1.49 +
    1.50 +	if ( !GetIntFromConfig( ConfigSection(), KT_WDPTestId, iTestId ) )
    1.51 +		{
    1.52 +		User::Leave(KErrNotFound);
    1.53 +		}
    1.54 +	return ret;
    1.55 +	}
    1.56 +
    1.57 +enum TVerdict CT_WDPTest::doTestStepPostambleL()
    1.58 +	{
    1.59 +	return TestStepResult();
    1.60 +	}
    1.61 +
    1.62 +
    1.63 +/**
    1.64 +Starts test step
    1.65 +@internalComponent
    1.66 +@return TVerdict pass / fail
    1.67 +@pre N/A
    1.68 +@post N/A
    1.69 +*/
    1.70 +enum TVerdict CT_WDPTest::doTestStepL()
    1.71 +	{
    1.72 +	switch( iTestId )
    1.73 +		{
    1.74 +		case 1:
    1.75 +			TEST(!WServDefaultDataPagedL());
    1.76 +			break;
    1.77 +		default:
    1.78 +			User::Panic(KT_TestPanicTxt, KErrNotFound);  //Unexpected value!
    1.79 +			break;
    1.80 +		}
    1.81 +	return TestStepResult();
    1.82 +	}
    1.83 +
    1.84 +TBool CT_WDPTest::WServDefaultDataPagedL()
    1.85 +	{
    1.86 +	RProcess proc = RProcess();
    1.87 +	_LIT(KPattern, "*EwSrv*");
    1.88 +	TFindProcess findProc(KPattern);
    1.89 +	TFullName fullName;
    1.90 +	TInt err=KErrNone;
    1.91 +		
    1.92 +	INFO_PRINTF2(_L("TFindProcess: Find a process whose name match the pattern %S "), &KPattern());
    1.93 +	if( (err=findProc.Next(fullName))!= KErrNone )
    1.94 +		{
    1.95 +		INFO_PRINTF1(_L("Error: Process whose name match the above pattern not found"));
    1.96 +		User::LeaveIfError(err);
    1.97 +		}
    1.98 +	else
    1.99 +		{
   1.100 +		INFO_PRINTF2(_L("TFindProcess.Next() found process --> %S "), &fullName );
   1.101 +		}
   1.102 +	
   1.103 +	if (findProc.Next(fullName)!= KErrNotFound)
   1.104 +		{
   1.105 +		INFO_PRINTF2(_L("Error: TFindProcess found more than 1 process matching the pattern --> %S "), &fullName );
   1.106 +		User::Leave(KErrGeneral);		
   1.107 +		}
   1.108 +	
   1.109 +	if( (err=proc.Open(fullName)) != KErrNone)
   1.110 +		{
   1.111 +		INFO_PRINTF2(_L("Error: RProcess.Open() returned --> %d"), err);
   1.112 +		User::LeaveIfError(err);
   1.113 +		}
   1.114 +	
   1.115 +	TBool ret = proc.DefaultDataPaged();
   1.116 +	INFO_PRINTF2(_L("wserv.DefaultDataPaged() returned --> %d"), ret);
   1.117 +	proc.Close();	 
   1.118 +	return ret;	
   1.119 +	}