email/pop3andsmtpmtm/imapservermtm/test/inc/T_ImapBadlyFormedAddressClient.h
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Mon, 03 May 2010 12:29:07 +0300
changeset 25 84d9eb65b26f
permissions -rw-r--r--
Revision: 201015 Kit: 201018

// Copyright (c) 2006-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:
//

#ifndef __T_IMAPADLYFORMEDADDRESSCLIENT_H__
#define __T_IMAPADLYFORMEDADDRESSCLIENT_H__

#include <e32base.h>
#include <msvapi.h>
#include <imapconnectionobserver.h>
#include "cspoofserver.h"
#include <cemailaccounts.h>

class CClientMtmRegistry;

// For loading the serial comms device drivers 
#if defined (__WINS__)
	#define PDD_NAME		_L("ECDRV")
	#define LDD_NAME		_L("ECOMM")
#else
	#define PDD_NAME		_L("EUART1")
	#define LDD_NAME		_L("ECOMM")
#endif

class TDummySessionObserver : public CBase, public MMsvSessionObserver
	{
public:
	void HandleSessionEventL(TMsvSessionEvent aEvent, TAny* aArg1, TAny* aArg2, TAny* aArg3);
	};

class CImapBadlyFormedAddressClient : public CActive, public MMsvImapConnectionObserver
	{
public:
	IMPORT_C static CImapBadlyFormedAddressClient* NewL(MImapTestEventHandler* aOwner);
	IMPORT_C static CImapBadlyFormedAddressClient* NewLC(MImapTestEventHandler* aOwner);
	~CImapBadlyFormedAddressClient();
	void StartL();
	void CreateImapAccountL();
	TImapAccount GetImapAccount();

private:
	CImapBadlyFormedAddressClient(MImapTestEventHandler* aOwner);
	void ConstructL();

	// From CActive
	virtual void DoCancel();
	virtual void RunL();
	virtual TInt RunError(TInt aError);
	
	//implementation of pure virtual inherited from MMsvImapConnectionObserver 
	virtual void HandleImapConnectionEvent(TImapConnectionEvent aConnectionState);

private:
	enum TIMAPClientState 
		{
		EDisconnect, 
		EComplete
		};
		
	CEmailAccounts* iAccounts;
	TImapAccount iImapAccount;
	CMsvSession* iSession;
	CBaseMtm* iClientMtm;
	CClientMtmRegistry*	iClientRegistry;
	TDummySessionObserver*	iSessionObserver;
	CMsvOperation* iMsvOperation;
	TIMAPClientState iNextStep;
	CMsvEntrySelection* iSelection;
	MImapTestEventHandler* iOwner;
	};

#endif  //__T_IMAPADLYFORMEDADDRESSCLIENT_H__