diff -r 000000000000 -r dfb7c4ff071f datacommsserver/esockserver/test/TE_Protocol/inc/TestStepProtocol.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/datacommsserver/esockserver/test/TE_Protocol/inc/TestStepProtocol.h Thu Dec 17 09:22:25 2009 +0200 @@ -0,0 +1,69 @@ +// Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies). +// All rights reserved. +// This component and the accompanying materials are made available +// under the terms of "Eclipse Public License v1.0" +// which accompanies this distribution, and is available +// at the URL "http://www.eclipse.org/legal/epl-v10.html". +// +// Initial Contributors: +// Nokia Corporation - initial contribution. +// +// Contributors: +// +// Description: +// Contains declaration of CTestStepProtocol class that is +// base class for all test step classes in this test. +// +// + +/** + @file TestStepProtocol.h +*/ +#if (!defined __TESTSTEPPROTOCOL_H__) +#define __TESTSTEPPROTOCOL_H__ + +#include +#include +#include +#include +#include +#include +#include +#include "pdummy.h" + +class CTestStepProtocol : public CTestStep + { + public: + + CTestStepProtocol(); + ~CTestStepProtocol(); + + struct TSocketThreadArg + { + CTestStepProtocol* iHandle; + RSemaphore* iSem; + TUint iNumSockets; + }; + + protected: + + const TPtrC& EpocErrorToText(const TInt aErrCode); + enum TVerdict doTestStepL(); + virtual enum TVerdict InternalDoTestStepL() =0; + + // test threads + static const TUint KNumTestSockets; + static const TInt KNumExhaustiveSockets; + static const TInt KNumStretchOpens; + + TServerProtocolDesc iDesc; + CDummyProtocol* iDummy; + + private: + TPtrC iErrText; + TBuf<16> iErrBuf; // size must at least satisfy the number of digits used to represent a TInt + }; + + +#endif /* __TESTSTEPPROTOCOL_H__ */ +