servicediscoveryandcontrol/pnp/test/upnp/unittests/tcpserver/src/ctcpservertestupnp28.cpp
changeset 0 f5a58ecadc66
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/servicediscoveryandcontrol/pnp/test/upnp/unittests/tcpserver/src/ctcpservertestupnp28.cpp	Tue Feb 02 01:12:20 2010 +0200
@@ -0,0 +1,117 @@
+/*
+* Copyright (c) 2008 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 <ss_glob.h>
+#include <comms-infras/ss_thread.h>
+#include <comms-infras/ss_nodemessages_factory.h>
+#include <comms-infras/ss_nodemessages_dataclient.h>
+#include "ptcpservertests.h"
+#include "upnp_cf_msgs.h"
+#include "upnpflowbase.h"
+#include "upnpflowfactory.h"
+#include "CTcpServerTestCase.h"
+
+#include <httperr.h>
+#include "CTcpServerTestUPnP28.h"
+
+using namespace Messages;
+
+//------------------------------------------------------------//	
+/////////////////// CTcpServerTestUPnP28 /////////////////////////
+////// Testcase: Send the test data from the test client/////////
+//------------------------------------------------------------//
+
+_LIT8 ( KTestUPnPServiceUri,"http://127.0.0.1:80/testserviceuri1" );
+_LIT8 ( KData, "GET /testserviceuri1 HTTP/1.1\r\nHOST: 128.0.0.1:\r\n\r\n");
+_LIT8 ( KExpectedResponse, "HTTP/1.1 404 Not Found");
+//_LIT8 ( KResponseData, "Test Server");
+
+CTcpServerTestUPnP28* CTcpServerTestUPnP28::NewL ( CProxyProvd* aProvd )
+	{
+	CTcpServerTestUPnP28* ret = new ( ELeave ) CTcpServerTestUPnP28 ( aProvd );
+	CleanupStack::PushL ( ret );
+	ret->ConstructL ();
+	CleanupStack::Pop ( ret );
+	return ret;
+	}
+
+CTcpServerTestUPnP28::CTcpServerTestUPnP28 ( CProxyProvd* aProvd ) :
+	CTcpServerTestCase ( aProvd )
+	{
+	}
+	
+CTcpServerTestUPnP28::~CTcpServerTestUPnP28 ()
+	{
+
+	}
+	
+void CTcpServerTestUPnP28::ConstructL ()
+	{
+	CTcpServerTestCase::ConstructL(KTestUPnPServiceUri);
+	}
+
+TVerdict CTcpServerTestUPnP28::RunTestL ()
+	{
+	switch ( iState )
+		{
+			
+		case ESendData:
+			{			
+			iSendChain.CreateL ( KData );
+			iSocketHandler.Send ( iSendChain );
+			
+			iState = ESendStopServer;
+			iStatus = KRequestPending;
+			Reschedule ();
+			return EPass;
+			}
+					
+		default:
+			{
+			return CTcpServerTestCase::RunTestL();
+			}
+		}
+	}
+	
+	
+void CTcpServerTestUPnP28::RecvComplete ( RMBufChain& aData )
+	{
+	RBuf8 responseBuf;
+	responseBuf.CreateMax ( aData.Length () );
+	aData.CopyOut ( responseBuf );
+	aData.Free ();
+	
+	if ( responseBuf.FindF ( KExpectedResponse ) == KErrNotFound )
+		{
+		iResponse = EFail; // test case failed
+		}
+	else
+		{
+		iResponse = EPass;	// test case passed
+		}
+	
+	responseBuf.Close ();
+	CompleteSelf ( KErrNone );
+	}
+
+
+
+
+
+
+
+