applayerprotocols/httptransportfw/Test/T_HttpPipeliningTest/CTestCase17.h
changeset 0 b16258d2340f
equal deleted inserted replaced
-1:000000000000 0:b16258d2340f
       
     1 // Copyright (c) 2003-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 #ifndef __CTESTCASE17_H__
       
    17 #define __CTESTCASE17_H__
       
    18 
       
    19 #include <e32base.h>
       
    20 #include <http.h>
       
    21 
       
    22 #include "CBatchingTestCase.h"
       
    23 
       
    24 class CHTTPTestUtils;
       
    25 
       
    26 /*	Batching 5 simple requesst to test server. The 3rd response has a
       
    27 	Connection: Close header. This expects the first 3 requests are batched and
       
    28 	the last 2 are not batched. This test case will ensure that time-out 
       
    29 	batching is handled correctly with multiple connections requested by the server.
       
    30 */
       
    31 class CTestCase17 : public CBatchingTestCase
       
    32 	{
       
    33 public:
       
    34 	static CTestCase17* NewL(CHTTPTestUtils& aTestUtils);
       
    35 	~CTestCase17();
       
    36 	
       
    37 private:
       
    38 	CTestCase17(CHTTPTestUtils& aTestUtils);
       
    39 	void ConstructL();
       
    40 
       
    41 	// From MPipeliningTestCase
       
    42 	const TDesC& TestCaseName() const;
       
    43 	TInt TransactionCount(TInt aConnectionIndex) const;
       
    44 	TInt TotalTransactionCount() const;
       
    45 	RHTTPTransaction GetTransactionL(TInt aIndex, RHTTPSession aSession, MHTTPTransactionCallback& aClient);
       
    46 	const TDesC8& GetRawRequest(TInt aConnectionIndex, TInt aTransIndex);
       
    47 	const TDesC8& GetRawResponse(TInt aConnectionIndex, TInt aTransIndex);
       
    48 	TInt ConnectionCount() const;
       
    49 
       
    50 private:
       
    51 	CHTTPTestUtils&			iTestUtils;
       
    52 	};
       
    53 	
       
    54 #endif // __CTESTCASE17_H__