messagingfw/msgtestfw/TestActions/Email/Smtp/src/CMtfTestActionSmtpAddFileAttachmentByHandleSync.cpp
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/messagingfw/msgtestfw/TestActions/Email/Smtp/src/CMtfTestActionSmtpAddFileAttachmentByHandleSync.cpp Wed Nov 03 22:41:46 2010 +0530
@@ -0,0 +1,150 @@
+// 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]
+// SmtpAddFileAttachmentByHandleSync
+// [Action Parameters]
+// Session <input>: Reference to the session.
+// MsgId <input>: Value of the message Id.
+// FilePath <input>: File path of the attachment file.
+// MimeType <input>: Mime-type of the attachment.
+// AttachmentId <output>: Value of the created attachment id.
+// ErrorCode <output>: (Optional) Returned error code, if not requested then code will
+// leave if not KErrNone
+// [Action Description]
+// Creates a file handle from the specified file and synchronously adds the open
+// file handle as an attachment to the specified message entry.
+// [APIs Used]
+// CMsvSession::GetEntryL
+// CImEmailMessage::AttachmentManagerL
+// CMsvAttachment::NewL
+// CMsvAttachment::SetMimeType
+// MMsvAttachmentManager::AddAttachmentL
+// __ACTION_INFO_END__
+//
+//
+
+
+#include "CMtfTestActionSmtpAddFileAttachmentByHandleSync.h"
+#include "CMtfAsyncWaiter.h"
+#include "CMtfTestCase.h"
+#include "CMtfTestActionParameters.h"
+#include "MtfTestActionUtilsUser.h"
+
+#include <miutset.h>
+#include <cmsvattachment.h>
+#include <mmsvattachmentmanager.h>
+#include <miutmsg.h>
+
+CMtfTestAction* CMtfTestActionSmtpAddFileAttachmentByHandleSync::NewL(CMtfTestCase& aTestCase,CMtfTestActionParameters* aActionParameters)
+ {
+ CMtfTestActionSmtpAddFileAttachmentByHandleSync* self = new(ELeave) CMtfTestActionSmtpAddFileAttachmentByHandleSync(aTestCase);
+ CleanupStack::PushL(self);
+ self->ConstructL(aActionParameters);
+ CleanupStack::Pop();
+ return self;
+ }
+
+
+CMtfTestActionSmtpAddFileAttachmentByHandleSync::CMtfTestActionSmtpAddFileAttachmentByHandleSync(CMtfTestCase& aTestCase)
+ : CMtfSynchronousTestAction(aTestCase)
+ {
+ }
+
+
+CMtfTestActionSmtpAddFileAttachmentByHandleSync::~CMtfTestActionSmtpAddFileAttachmentByHandleSync()
+ {
+ }
+
+void CMtfTestActionSmtpAddFileAttachmentByHandleSync::ExecuteActionL()
+ {
+ TestCase().INFO_PRINTF2(_L("Test Action %S start..."), &KTestActionSmtpAddFileAttachmentByHandleSync);
+ TRAPD(err, RunTestL());
+
+ if( ActionParameters().Count() < 6 )
+ {
+ User::LeaveIfError(err);
+ }
+ else
+ {
+ StoreParameterL<TInt>(TestCase(),err,ActionParameters().Parameter(5));
+ }
+
+ TestCase().INFO_PRINTF2(_L("Test Action %S completed."), &KTestActionSmtpAddFileAttachmentByHandleSync);
+ TestCase().ActionCompletedL(*this);
+ }
+
+void CMtfTestActionSmtpAddFileAttachmentByHandleSync::RunTestL()
+ {
+ CMsvSession* paramSession = ObtainParameterReferenceL<CMsvSession>(TestCase(),ActionParameters().Parameter(0));
+ TMsvId messageEntry = ObtainValueParameterL<TMsvId>(TestCase(),ActionParameters().Parameter(1));
+ HBufC* paramFilePath = ObtainParameterReferenceL<HBufC>(TestCase(),ActionParameters().Parameter(2));
+ HBufC8* paramMimeType = ObtainParameterReferenceL<HBufC8>(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::EMsvFile);
+ CleanupStack::PushL(attachment);
+
+ attachment->SetMimeTypeL(*paramMimeType);
+
+ MMsvAttachmentManager& manager = emailMsg->AttachmentManager();
+
+ RFile fileHandle = OpenFileLC(paramSession->FileSession(), *paramFilePath);
+
+ TFileName fileName;
+ User::LeaveIfError(fileHandle.Name(fileName));
+ attachment->SetAttachmentNameL(fileName);
+
+ TInt fileSize = 0;
+ User::LeaveIfError(fileHandle.Size(fileSize));
+ attachment->SetSize(fileSize);
+
+ manager.AddAttachmentL(fileHandle, attachment, waiter->iStatus);
+ CleanupStack::Pop(2, attachment); // fileHandle, attachment, ownership passed to manager
+ waiter->StartAndWait();
+ User::LeaveIfError(waiter->Result());
+ CleanupStack::PopAndDestroy(waiter);
+
+ TInt attachmentCount = manager.AttachmentCount();
+
+ attachment = NULL;
+
+ attachment = manager.GetAttachmentInfoL(attachmentCount - 1);
+ CleanupStack::PushL(attachment);
+
+ TMsvAttachmentId attachmentId = attachment->Id();
+
+ CleanupStack::PopAndDestroy(attachment);
+
+ CleanupStack::PopAndDestroy(2, entry); // emailMsg, entry
+
+ StoreParameterL<TMsvAttachmentId>(TestCase(),attachmentId,ActionParameters().Parameter(4));
+ }
+
+
+RFile CMtfTestActionSmtpAddFileAttachmentByHandleSync::OpenFileLC(RFs& aFs, const TDesC& aFilePath)
+ {
+ RFile fileHandle;
+ User::LeaveIfError(fileHandle.Open(aFs, aFilePath, EFileRead));
+ CleanupClosePushL(fileHandle);
+ return fileHandle;
+ }