os/graphics/windowing/windowserver/test/t_integ/inc/t_wservintegstepbase.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 // Copyright (c) 2006-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 #ifndef __T_WSERV_INTEG_STEP_H__
    23 #define __T_WSERV_INTEG_STEP_H__
    24 
    25 #include <e32std.h>
    26 #include <test/testexecutestepbase.h>
    27 #include "t_wservconfigdata.h"
    28 
    29 
    30 _LIT(KT_WServIntegStep,	"WServInteg");
    31 
    32 /**
    33 WServ Integ test commands
    34 */
    35 class CT_WServIntegStep : public CTestStep
    36 	{
    37 public:
    38 	CT_WServIntegStep();
    39 
    40 protected:
    41 	virtual ~CT_WServIntegStep();
    42 	virtual enum TVerdict	doTestStepPreambleL();
    43 	virtual enum TVerdict	doTestStepL();
    44 	virtual enum TVerdict	doTestStepPostambleL();
    45 
    46 protected:
    47 	void ClearConfigData();
    48 	void CleanUp();
    49 	void GetConfigDataL(const TDesC& aData, const TDesC& aName);
    50 	void PrintConfigDataL(const TDesC& /*aFileName*/);
    51 	TInt CreateTestProcessL(const TDesC& aApp, const TProcessPriority& aPriority);
    52 	void WaitForTestL(const TDesC& aFileName, const TInt& aMaxTimeSeconds = 120);
    53 	void CheckResultsL(const TDesC& aData, const TDesC& aName,const TDesC& aFileName);
    54 	void PrintResultsL(const TDesC& aFileName);
    55 	void PrintTestStepName();
    56 
    57 private:
    58 	CT_WServConfigData 		iWServConfigData;
    59 	RArray<RProcess> 		iProcessList;
    60 	RPointerArray<TDesC>    iFileList;
    61 	RFs						iFs;
    62 	};
    63 
    64 #endif // __T_WSERV_INTEG_STEP_H__