applayerprotocols/httptransportfw/Test/T_HttpOnline/INC094209.h
changeset 0 b16258d2340f
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/applayerprotocols/httptransportfw/Test/T_HttpOnline/INC094209.h	Tue Feb 02 01:09:52 2010 +0200
@@ -0,0 +1,72 @@
+// Copyright (c) 2003-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	__T_INC094209_H__
+#define	__T_INC094209_H__
+
+#include <http.h>
+#include <http/mhttpfiltercreationcallback.h>
+#include <http/mhttpauthenticationcallback.h>
+#include "HttpTestCore.h"
+
+// User Include
+#include "TestScripts.h"
+
+class CExampleCookieManager;
+
+/**
+	Derived test case class : test cookies
+*/
+class CINC094209: public CHttpTestTransBase, 
+							public MHTTPTransactionCallback, 
+							public MHTTPFilterCreationCallback
+						
+	{
+public:
+	static CINC094209* NewL(TInt aTestNumber, 
+		CScriptFile* aIniSettingsFile);
+	virtual ~CINC094209();
+	// to implement in this class' member function definitions
+public:
+	virtual void MHFRunL(RHTTPTransaction aTransaction,
+						 const THTTPEvent& aEvent) ;
+	virtual TInt MHFRunError(TInt aError, RHTTPTransaction aTransaction,
+							 const THTTPEvent& aEvent) ;
+
+protected:
+	CINC094209(TInt aTestNumber, CScriptFile* aIniSettingsFile);
+	const TDesC& TestName();
+	virtual void DoRunL();
+	virtual TInt RunError(TInt aErr);	
+	virtual void DoCancel();
+	void ConfigureSessionFiltersL(TFilterConfigurationIterator* aFilterConfigIter);
+
+
+
+private:
+	/** This has the instance of the settings.ini file.  This instance is passed
+	 to ReplaceHostNameL() function which uses this instance to retrieve the
+	 data from settings.ini file.
+	 */
+	CScriptFile* iIniSettingsFile;
+	
+protected:
+	TInt iOpenTransactionCount;
+	TInt iFailureError;
+	CExampleCookieManager* iCookieManager;
+	TInt iTestNumber;
+	};
+
+#endif // __T_INC094209_H__