diff -r 000000000000 -r b16258d2340f applayerprotocols/httptransportfw/Test/T_HttpPipeliningTest/CINC073400.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/applayerprotocols/httptransportfw/Test/T_HttpPipeliningTest/CINC073400.cpp Tue Feb 02 01:09:52 2010 +0200 @@ -0,0 +1,118 @@ +// 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: +// + +#include "CINC073400.h" +#include "httptestutils.h" + +const TInt KConn1TransCount = 3; +const TInt KConn2TransCount = 1; +const TInt KConn3TransCount = 1; +const TInt KConnectionCount = 3; +_LIT8(KTxtRawRequest, "GET / HTTP/1.1\r\nHost: 127.0.0.1\r\n\r\n"); +_LIT8(KTxtRawResponse, "HTTP/1.1 200 Ok\r\nContent-Length: 6\r\n\r\nhello!"); +_LIT8(KTxtRawResponseWithClose, "HTTP/1.1 200 Ok\r\nConnection: Close\r\n\r\nhello!"); + +CINC073400* CINC073400::NewL(CHTTPTestUtils& aTestUtils) + { + CINC073400* self = new (ELeave) CINC073400(aTestUtils); + CleanupStack::PushL(self); + self->ConstructL(); + CleanupStack::Pop(self); + return self; + } + +CINC073400::CINC073400(CHTTPTestUtils& aTestUtils) +: CPipeliningTestCase(), iTestUtils(aTestUtils) + { + } + +void CINC073400::ConstructL() + { + } + +CINC073400::~CINC073400() + { + } + +const TDesC& CINC073400::TestCaseName() const + { + _LIT(KTxtTitle, "CINC073400"); + return KTxtTitle(); + } + +TInt CINC073400::TransactionCount(TInt aConnectionIndex) const + { + TInt transCount = 0; + switch(aConnectionIndex) + { + case 0: + { + transCount = KConn1TransCount; + } break; + case 1: + { + transCount = KConn2TransCount; + } break; + case 2: + { + transCount = KConn3TransCount; + } break; + default: + User::Invariant(); + } + + return transCount; + } + +TInt CINC073400::TotalTransactionCount() const + { + return KConn1TransCount + KConn2TransCount + KConn3TransCount; + } + +TInt CINC073400::ConnectionCount() const + { + return KConnectionCount; + } + +RHTTPTransaction CINC073400::GetTransactionL(TInt aIndex, RHTTPSession aSession, MHTTPTransactionCallback& aClient) + { + __ASSERT_ALWAYS(aIndex