--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/applayerprotocols/httptransportfw/Test/Acceptance/Iter1/Tc6.cpp Tue Feb 02 01:09:52 2010 +0200
@@ -0,0 +1,207 @@
+// Copyright (c) 2004-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:
+// Author: Franco.Bellu@symbian.com
+//
+//
+
+
+#include "Tc6.h"
+#include <http.h>
+#include "testservers.h"
+
+CHttpTestCase6::CHttpTestCase6(CScriptFile* aIniSettingsFile) :
+ CHttpTestTransBase(),
+ iIniSettingsFile(aIniSettingsFile)
+ {
+ }
+
+void CHttpTestCase6::DoRunL()
+ {
+ // Literals used in the function
+ _LIT8(KWapTestUrl, "http://WapTestIP/cgi-bin/testcase6.cgi");
+
+ // Replace the host name in the URL
+ HBufC8* newUrl8 = TSrvAddrVal::ReplaceHostNameL(KWapTestUrl(), iIniSettingsFile);
+ CleanupStack::PushL(newUrl8);
+ TPtr8 newUrlPtr8 = newUrl8->Des();
+
+ TUriParser8 testURI;
+ testURI.Parse(newUrlPtr8);
+
+ //open a Session
+ RHTTPSession mySession;
+ mySession.OpenL();
+ CleanupClosePushL(mySession);
+ iEngine->Utils().LogIt(_L("Session Created(TC6)"));
+ iEngine->Utils().LogIt(_L("Session parameters: Default"));
+ //Get the mySession'string pool handle;
+ iMyStrP = mySession.StringPool();
+ //open string this testcase needs
+ RStringF textPlain = iMyStrP.StringF(HTTP::ETextPlain, RHTTPSession::GetTable());
+ RStringF textHtml = iMyStrP.StringF(HTTP::ETextHtml, RHTTPSession::GetTable());
+ _LIT8(KHttpApplicationOcspResponse,"application/ocsp-response");
+ RStringF mimeType = iMyStrP.OpenFStringL(KHttpApplicationOcspResponse);
+ //Create , open and push in the CS a Transaction in mySession
+ RHTTPTransaction myTransaction;
+ myTransaction = mySession.OpenTransactionL(testURI, *this, mySession.StringPool().StringF(HTTP::EPOST,RHTTPSession::GetTable()));
+ CleanupClosePushL(myTransaction);
+ iEngine->Utils().LogIt(_L("Transaction Created in mySession"));
+ //Get a handle of the request in myTransaction
+ RHTTPRequest myRequest = myTransaction.Request();
+ RHTTPHeaders myHeaders = myRequest.GetHeaderCollection();
+ // provide some headers
+
+ THTTPHdrVal v2(textPlain);
+ THTTPHdrVal v3(textHtml);
+ THTTPHdrVal v4(6);
+ THTTPHdrVal v5(mimeType);
+
+ myHeaders.SetFieldL(iMyStrP.StringF(HTTP::EAccept, RHTTPSession::GetTable()),v2 );
+ myHeaders.SetFieldL(iMyStrP.StringF(HTTP::EAccept, RHTTPSession::GetTable()),v3);
+ myHeaders.SetFieldL(iMyStrP.StringF(HTTP::EContentLength, RHTTPSession::GetTable()), v4);
+ myHeaders.SetFieldL(iMyStrP.StringF(HTTP::EContentType, RHTTPSession::GetTable()), v5);
+
+ TSrvAddrVal::LogUsing8BitDesL(iEngine, newUrlPtr8);
+ iEngine->Utils().LogIt(_L("Method:Post"));
+ iEngine->Utils().LogIt(_L("Accept:test/plain,text/html"));
+ iEngine->Utils().LogIt(_L("Content-Type: application/ocsp-response"));
+ iEngine->Utils().LogIt(_L("Content-Length: 6"));
+ myRequest.SetBody(*this);
+ myTransaction.SubmitL();
+ CActiveScheduler::Start();
+
+ // Close strings used in this session before closing the session
+ mimeType.Close();
+ //close transaction and session
+ myTransaction.Close();
+ iEngine->Utils().LogIt(_L("Transaction terminated\n"));
+ mySession.Close();
+ iEngine->Utils().LogIt(_L("Session terminated"));
+ if (iTestFail==1)
+ {
+ User::Leave(-1);
+ }
+ CleanupStack::Pop(2); // mySession,myTansaction
+ CleanupStack::PopAndDestroy(newUrl8);
+ }
+
+TInt CHttpTestCase6::RunError(TInt aErr)
+ {
+ iEngine->Utils().LogIt(_L("\nTest failed with error code %d\n"), aErr);
+ return KErrNone;
+ }
+
+void CHttpTestCase6::DoCancel()
+ {
+ }
+
+CHttpTestCase6::~CHttpTestCase6()
+ {
+ }
+
+/** set this object active */
+void CHttpTestCase6::CompleteOwnRequest()
+ {
+ TRequestStatus* stat = &iStatus;
+ User::RequestComplete(stat,KErrNone);
+ if (!IsActive())
+ SetActive();
+ }
+
+
+
+/** sets base test name.
+ @param void
+ @return string - the test name
+*/
+const TDesC& CHttpTestCase6::TestName()
+ {
+ _LIT(KHeaderTestName,"Test Case 6 ");
+ return KHeaderTestName;
+ }
+
+TInt CHttpTestCase6::MHFRunError(TInt aError, RHTTPTransaction /*aTransaction*/,
+ const THTTPEvent& /*aEvent*/)
+ {
+ iEngine->Utils().LogIt(_L("\nTest failed with error code %d\n"), aError);
+ return KErrNone;
+ }
+
+void CHttpTestCase6::MHFRunL(RHTTPTransaction aTransaction,
+ const THTTPEvent& aEvent)
+ {
+ switch (aEvent.iStatus)
+ {
+ case THTTPEvent::EGotResponseHeaders:
+ {
+ // HTTP response headers have been received
+ iEngine->Utils().LogIt(_L("<EGotResponseHeaders>\n"));
+ TInt statusCode = aTransaction.Response().StatusCode();
+ iEngine->Utils().LogIt(_L("Status Code: %d \n"),statusCode);
+ DumpRespHeaders(aTransaction);
+ iEngine->SetCurrentStatusCode(statusCode);
+ //define 2 RStringF : I want to find a header-field header-vaulue
+ //match in the response headers
+ RStringF contTypeStr = iMyStrP.StringF(HTTP::EContentType, RHTTPSession::GetTable());
+ _LIT8(KHttpApplicationOcspResponse,"application/ocsp-response");
+ RStringF ocspStr = iMyStrP.OpenFStringL(KHttpApplicationOcspResponse);
+ // get a handle for the headers
+ RHTTPHeaders hdr =aTransaction.Response().GetHeaderCollection();
+ //parse them and look for application/ocsp-response header
+ THTTPHdrVal hVal;
+ if(hdr.GetField(contTypeStr,0,hVal) == KErrNone)
+ {
+ if (hVal.StrF()==ocspStr)
+ iEngine->Utils().LogIt(_L("\nOk header application/ocsp-response found"));
+ else
+ iEngine->Utils().LogIt(_L("\nThe server doesn't support the application/ocsp-response header"));
+ }
+ ocspStr.Close();
+ if (iExpectedStatusCode != statusCode)
+ {
+ iTestFail=1;
+ iEngine->Utils().LogIt(_L("<The Test will fail :The expected status code doesn't match the actual status code received>\n"));
+ }
+ } break;
+ case THTTPEvent::EGotResponseBodyData:
+ {
+ // Some (more) body data has been received (in the HTTP response)
+ iEngine->Utils().LogIt(_L("<Got a chunk of data>\n"));
+ DumpResponseBody(aTransaction);
+ } break;
+ case THTTPEvent::EResponseComplete:
+ {
+ // The transaction's response is complete
+ iEngine->Utils().LogIt(_L("<EResponseComplete received >\n"));
+ } break;
+ case THTTPEvent::ESucceeded:
+ {
+ iEngine->Utils().LogIt(_L("<ESucceeded received >\n"));
+ CActiveScheduler::Stop();
+ } break;
+ default:
+ {
+ iEngine->Utils().LogIt(_L("<unrecognised event>\n %d"),aEvent.iStatus);
+ if (aEvent.iStatus < THTTPEvent::ERedirectedPermanently)
+ {
+ iTestFail=1;
+ iEngine->Utils().LogIt(_L("Test Failed: The event received was not expected and it's not just a warning\n"));
+ iEngine->PressAnyKey();
+ CActiveScheduler::Stop();
+ }
+ }
+ break;
+ }
+ }
+