diff -r 000000000000 -r f5a58ecadc66 servicediscoveryandcontrol/pnp/test/upnp/unittests/upnpmessagetest/inc/ccodecdecodetest.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/servicediscoveryandcontrol/pnp/test/upnp/unittests/upnpmessagetest/inc/ccodecdecodetest.h Tue Feb 02 01:12:20 2010 +0200 @@ -0,0 +1,74 @@ +// Copyright (c) 2008-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: +// + +#ifndef CCODECDECODETEST_H_ +#define CCODECDECODETEST_H_ + +#include +#include +#include +#include +#include +#include +#include + +#include "cupnpmessagetest.h" +#include "mparserobserver.h" +#include "cupnpresponseparser.h" +#include "cupnprequestparser.h" +#include "rhttpheaders.h" +#include "CResponse.h" +#include "CRequest.h" + + +_LIT(KCodecDecodeTest, "CodecDecodeTest"); + +class CCodecDecodeTest: public CTestStep, + public MParserObserver + { +public: + static CCodecDecodeTest* NewL(); + CCodecDecodeTest(); + ~CCodecDecodeTest(); + +public: + TVerdict doTestStepPreambleL(); + TVerdict doTestStepL(); + TVerdict doTestStepPostambleL(); + +private: + void ConstructHeadersL(const TInt aNoOfHdrValPairs); + void SetHeaderL(const TDesC8& aHeader, const TDesC8& aValue); + void GetFieldL(); + +private: // methods from MParserObserver + virtual void GotBodyData(); + virtual void DataParsed(); + virtual void GotHeaders(); + virtual void ParsingComplete(RMemChunk& aExcessData); + virtual void ParserError(TInt aError); + +private: + CUpnpResponseParser* iRespParser; + CUpnpRequestParser* iReqParser; + CActiveScheduler* iSched; + RStringPool iPool; + RHTTPHeaders iRHeaders; + CRequest* iRequest; + CResponse* iResponse; + CHeaderCodec* iCodec; + }; + +#endif /*CCODECDECODETEST_H_*/