messagingfw/msgtestfw/TestActions/Email/Smtp/src/CMtfTestActionSmtpGetAttachmentInfoById.cpp
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Mon, 18 Jan 2010 20:36:02 +0200
changeset 0 8e480a14352b
permissions -rw-r--r--
Revision: 201001 Kit: 201003

// 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:
// __ACTION_INFO_BEGIN__ 
// [Action Name]
// SmtpGetAttachmentInfoById
// [Action Parameters]
// Session        <input>: Reference to the session.
// MsgId		  <input>: Value of the message Id.
// AttachmentId   <input>: Value of the attachment id.
// AttachmentInfo <output>: Reference to the created attachment info
// ErrorCode	  <output>: (Optional) Returned error code, if not requested then code will
// leave if not KErrNone
// [Action Description]
// Creates an attachment info object with the specified attachment id for the
// supplied message entry. Will fail if the entry or attachment does not exist.
// [APIs Used]
// CMsvSession::GetEntryL
// CImEmailMessage::AttachmentManagerL
// MMsvAttachmentManager::GetAttachmentInfoL
// __ACTION_INFO_END__
// 
//


#include "CMtfTestActionSmtpGetAttachmentInfoById.h"
#include "CMtfTestCase.h"
#include "CMtfTestActionParameters.h"
#include "MtfTestActionUtilsUser.h"

#include <miutset.h>
#include <cmsvattachment.h>
#include <mmsvattachmentmanager.h>
#include <miutmsg.h>

const TInt KMimeTypeLength = 50;

CMtfTestAction* CMtfTestActionSmtpGetAttachmentInfoById::NewL(CMtfTestCase& aTestCase,CMtfTestActionParameters* aActionParameters)
	{
	CMtfTestActionSmtpGetAttachmentInfoById* self = new(ELeave) CMtfTestActionSmtpGetAttachmentInfoById(aTestCase);
	CleanupStack::PushL(self);
	self->ConstructL(aActionParameters);
	CleanupStack::Pop();
	return self;
	}
	

CMtfTestActionSmtpGetAttachmentInfoById::CMtfTestActionSmtpGetAttachmentInfoById(CMtfTestCase& aTestCase)
	: CMtfSynchronousTestAction(aTestCase)
	{
	}


CMtfTestActionSmtpGetAttachmentInfoById::~CMtfTestActionSmtpGetAttachmentInfoById()
	{
	}

void CMtfTestActionSmtpGetAttachmentInfoById::ExecuteActionL()
	{
	TestCase().INFO_PRINTF2(_L("Test Action %S start..."), &KTestActionSmtpGetAttachmentInfoById);
	TRAPD(err, RunTestL());
	
	if( ActionParameters().Count() < 5 )
		{
		User::LeaveIfError(err);
		}
	else
		{
		StoreParameterL<TInt>(TestCase(),err,ActionParameters().Parameter(4));
		}
		
	TestCase().INFO_PRINTF2(_L("Test Action %S completed."), &KTestActionSmtpGetAttachmentInfoById);
	TestCase().ActionCompletedL(*this); 
	}

void CMtfTestActionSmtpGetAttachmentInfoById::RunTestL()
	{
	CMsvSession* paramSession = ObtainParameterReferenceL<CMsvSession>(TestCase(),ActionParameters().Parameter(0));
	TMsvId messageEntry = ObtainValueParameterL<TMsvId>(TestCase(),ActionParameters().Parameter(1));
	TMsvAttachmentId attachId = ObtainValueParameterL<TMsvAttachmentId>(TestCase(),ActionParameters().Parameter(2));

	CMsvEntry* entry = paramSession->GetEntryL(messageEntry);
	CleanupStack::PushL(entry);
	
	CImEmailMessage* emailMsg = CImEmailMessage::NewL(*entry);
	CleanupStack::PushL(emailMsg);
	
	MMsvAttachmentManager& manager = emailMsg->AttachmentManager();
	CMsvAttachment* attachInfo = manager.GetAttachmentInfoL(attachId);
	CleanupStack::PushL(attachInfo);
	
	PrintAttachmentInfo(*attachInfo);
	
	StoreParameterL<CMsvAttachment>(TestCase(),*attachInfo,ActionParameters().Parameter(3));
	CleanupStack::Pop(attachInfo);
	CleanupStack::PopAndDestroy(2, entry); // emailMsg, entry
	}

void CMtfTestActionSmtpGetAttachmentInfoById::PrintAttachmentInfo(CMsvAttachment& aInfo)
	{
	TestCase().INFO_PRINTF1(_L("CMsvAttachment Info..."));
	TestCase().INFO_PRINTF2(_L("ID - %d"), aInfo.Id() );
	switch(aInfo.Type())
		{
		case CMsvAttachment::EMsvFile:
			TestCase().INFO_PRINTF1(_L("Type - EMsvFile"));
			TestCase().INFO_PRINTF2(_L("Filename - %S"), &aInfo.AttachmentName());
			break;
		case CMsvAttachment::EMsvLinkedFile:
			TestCase().INFO_PRINTF1(_L("Type - EMsvLinkedFile"));
			TestCase().INFO_PRINTF2(_L("Filename - %S"), &aInfo.AttachmentName());
			break;
		case CMsvAttachment::EMsvMessageEntry:
			TestCase().INFO_PRINTF1(_L("Type - EMsvMessageEntry"));
			TestCase().INFO_PRINTF2(_L("EntryId - %d"), aInfo.EntryAttachmentId());
			break;
		default:
			User::Invariant();
			break;
		}
	
	TestCase().INFO_PRINTF2(_L("Size - %d"), aInfo.Size());
	
	TBuf<KMimeTypeLength> mimeType;
	mimeType.Copy(aInfo.MimeType());
	TestCase().INFO_PRINTF2(_L("MimeType - %S"), &mimeType);
	
	}