diff -r 000000000000 -r b16258d2340f applayerprotocols/httptransportfw/Test/T_HttpPipeliningTest/CTestCasePipelineFallback.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/applayerprotocols/httptransportfw/Test/T_HttpPipeliningTest/CTestCasePipelineFallback.cpp Tue Feb 02 01:09:52 2010 +0200 @@ -0,0 +1,116 @@ +/* +* Copyright (c) 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 "ctestcasepipelinefallback.h" +#include "httptestutils.h" + +const TInt KTransactionCount = 30; // Submit 30 transactions +const TInt KConnectionCount = 1; +const TInt KBufferSize = 70; // Batching buffer size in bytes of 2 requests. +_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!"); + +CTestCasePipelineFallback* CTestCasePipelineFallback::NewL(CHTTPTestUtils& aTestUtils) + { + CTestCasePipelineFallback* self = new (ELeave) CTestCasePipelineFallback(aTestUtils); + CleanupStack::PushL(self); + self->ConstructL(); + CleanupStack::Pop(self); + return self; + } + +CTestCasePipelineFallback::CTestCasePipelineFallback(CHTTPTestUtils& aTestUtils) +: CBatchingTestCase(), iTestUtils(aTestUtils) + { + } + +void CTestCasePipelineFallback::ConstructL() + { + } + +CTestCasePipelineFallback::~CTestCasePipelineFallback() + { + } + +const TDesC& CTestCasePipelineFallback::TestCaseName() const + { + _LIT(KTxtTitle, "Test Case Pipeline Fallback"); + return KTxtTitle(); + } + +TInt CTestCasePipelineFallback::TotalTransactionCount() const + { + return KTransactionCount; + } + +TInt CTestCasePipelineFallback::ConnectionCount() const + { + return KConnectionCount; + } + +RHTTPTransaction CTestCasePipelineFallback::GetTransactionL(TInt aIndex, RHTTPSession aSession, MHTTPTransactionCallback& aClient) + { + __ASSERT_ALWAYS(aIndex