email/pop3andsmtpmtm/imapservermtm/test/src/T_PartialDownloadSpoofServer.cpp
changeset 25 84d9eb65b26f
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/email/pop3andsmtpmtm/imapservermtm/test/src/T_PartialDownloadSpoofServer.cpp	Mon May 03 12:29:07 2010 +0300
@@ -0,0 +1,81 @@
+// Copyright (c) 2005-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 "t_partialdownloadspoofserver.h"
+#include "t_partialdownloadstep.h"
+
+_LIT(KServerName,"T_PartialDownloadSpoofServer");
+CPartialDownloadSpoofServer* CPartialDownloadSpoofServer::NewL()
+	{
+	CPartialDownloadSpoofServer * server = new (ELeave) CPartialDownloadSpoofServer();
+	CleanupStack::PushL(server);
+	server-> ConstructL(KServerName);
+
+	CleanupStack::Pop(server);
+	return server;
+	}
+	
+LOCAL_C void MainL()
+	{
+	CActiveScheduler* sched=new(ELeave) CActiveScheduler;
+	CActiveScheduler::Install(sched);
+	CPartialDownloadSpoofServer* server = NULL;
+	// Create the CTestServer derived server
+	TRAPD(err,server = CPartialDownloadSpoofServer::NewL());
+	if(err==KErrNone)
+		{
+		// Sync with the client and enter the active scheduler
+		RProcess::Rendezvous(KErrNone);
+		sched->Start();
+		}
+	delete server;
+	delete sched;
+	}
+
+
+GLDEF_C TInt E32Main()
+	{
+	__UHEAP_MARK;
+	
+	CTrapCleanup* cleanup = CTrapCleanup::New();
+	if(cleanup == NULL)
+		{
+		return KErrNoMemory;
+		}
+	TRAPD(err,MainL());
+	delete cleanup;
+	
+	__UHEAP_MARKEND;
+	return err;
+    }
+
+
+RFs& CPartialDownloadSpoofServer::Fs()
+	{
+	return iFs;
+	};	
+
+CTestStep* CPartialDownloadSpoofServer::CreateTestStep(const TDesC& aStepName)
+	{
+		
+	CTestStep* testStep = NULL;
+	
+	if(aStepName == KTestPartialDownLoad)
+		{
+		testStep = new CPartialDownloadStep();		
+		}
+
+	return testStep;
+	}