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