diff -r 000000000000 -r 8e480a14352b messagingfw/msgtestfw/TestActions/Email/Smtp/src/CMtfTestActionSmtpAddLinkedAttachment.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/messagingfw/msgtestfw/TestActions/Email/Smtp/src/CMtfTestActionSmtpAddLinkedAttachment.cpp Mon Jan 18 20:36:02 2010 +0200 @@ -0,0 +1,138 @@ +// 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] +// SmtpAddLinkedAttachment +// [Action Parameters] +// Session : Reference to the session. +// MsgId : Value of the message Id. +// FilePath : File path of the attachment file to add as linked. +// MimeType : Mime-type of the attachment. +// AttachmentId : Value of the created attachment id. +// ErrorCode : (Optional) Returned error code, if not requested then code will +// leave if not KErrNone +// [Action Description] +// Adds the specified file as a linked attachment to the specified message +// entry. +// [APIs Used] +// CMsvSession::GetEntryL +// CImEmailMessage::AttachmentManagerL +// CMsvAttachment::NewL +// CMsvAttachment::SetMimeType +// MMsvAttachmentManager::AddLinkedAttachmentL +// __ACTION_INFO_END__ +// +// + + +#include "CMtfTestActionSmtpAddLinkedAttachment.h" +#include "CMtfAsyncWaiter.h" +#include "CMtfTestCase.h" +#include "CMtfTestActionParameters.h" +#include "MtfTestActionUtilsUser.h" + +#include +#include +#include +#include + +CMtfTestAction* CMtfTestActionSmtpAddLinkedAttachment::NewL(CMtfTestCase& aTestCase,CMtfTestActionParameters* aActionParameters) + { + CMtfTestActionSmtpAddLinkedAttachment* self = new(ELeave) CMtfTestActionSmtpAddLinkedAttachment(aTestCase); + CleanupStack::PushL(self); + self->ConstructL(aActionParameters); + CleanupStack::Pop(); + return self; + } + + +CMtfTestActionSmtpAddLinkedAttachment::CMtfTestActionSmtpAddLinkedAttachment(CMtfTestCase& aTestCase) + : CMtfSynchronousTestAction(aTestCase) + { + } + + +CMtfTestActionSmtpAddLinkedAttachment::~CMtfTestActionSmtpAddLinkedAttachment() + { + } + +void CMtfTestActionSmtpAddLinkedAttachment::ExecuteActionL() + { + TestCase().INFO_PRINTF2(_L("Test Action %S start..."), &KTestActionSmtpAddLinkedAttachment); + TRAPD(err, RunTestL()); + + if( ActionParameters().Count() < 6 ) + { + User::LeaveIfError(err); + } + else + { + StoreParameterL(TestCase(),err,ActionParameters().Parameter(5)); + } + + TestCase().INFO_PRINTF2(_L("Test Action %S completed."), &KTestActionSmtpAddLinkedAttachment); + TestCase().ActionCompletedL(*this); + } + +void CMtfTestActionSmtpAddLinkedAttachment::RunTestL() + { + CMsvSession* paramSession = ObtainParameterReferenceL(TestCase(),ActionParameters().Parameter(0)); + TMsvId messageEntry = ObtainValueParameterL(TestCase(),ActionParameters().Parameter(1)); + HBufC* paramFilePath = ObtainParameterReferenceL(TestCase(),ActionParameters().Parameter(2)); + HBufC8* paramMimeType = ObtainParameterReferenceL(TestCase(),ActionParameters().Parameter(3)); + + CMsvEntry* entry = paramSession->GetEntryL(messageEntry); + CleanupStack::PushL(entry); + + CImEmailMessage* emailMsg = CImEmailMessage::NewL(*entry); + CleanupStack::PushL(emailMsg); + + CMtfAsyncWaiter* waiter = CMtfAsyncWaiter::NewL(); + CleanupStack::PushL(waiter); + + CMsvAttachment* attachment = CMsvAttachment::NewL(CMsvAttachment::EMsvLinkedFile); + CleanupStack::PushL(attachment); + + attachment->SetMimeTypeL(*paramMimeType); + + TParse fileNameParser; + User::LeaveIfError(fileNameParser.Set(*paramFilePath, NULL, NULL)); + attachment->SetAttachmentNameL(fileNameParser.NameAndExt()); + + TEntry fileEntry; + User::LeaveIfError(paramSession->FileSession().Entry( fileNameParser.FullName(), fileEntry)); + attachment->SetSize(fileEntry.iSize); + + MMsvAttachmentManager& manager = emailMsg->AttachmentManager(); + + manager.AddLinkedAttachmentL(*paramFilePath, attachment, waiter->iStatus); + CleanupStack::Pop(attachment); // ownership passed to manager + waiter->StartAndWait(); + User::LeaveIfError(waiter->Result()); + CleanupStack::PopAndDestroy(waiter); + + attachment = NULL; + + TInt attachmentCount = manager.AttachmentCount(); + attachment = manager.GetAttachmentInfoL(attachmentCount - 1); + CleanupStack::PushL(attachment); + + TMsvAttachmentId attachmentId = attachment->Id(); + + CleanupStack::PopAndDestroy(attachment); + + CleanupStack::PopAndDestroy(2, entry); // emailMsg, entry + + StoreParameterL(TestCase(),attachmentId,ActionParameters().Parameter(4)); + }