diff -r 000000000000 -r 8e480a14352b messagingfw/msgtestfw/TestActions/Email/Smtp/src/CMtfTestActionSmtpCreateAttachment.cpp
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/messagingfw/msgtestfw/TestActions/Email/Smtp/src/CMtfTestActionSmtpCreateAttachment.cpp Mon Jan 18 20:36:02 2010 +0200
@@ -0,0 +1,162 @@
+// 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]
+// SmtpCreateAttachment
+// [Action Parameters]
+// Session : Reference to the session.
+// MsgId : Value of the message Id.
+// DataFilePath : File path that contains the data to populate new attachment with.
+// AttachmentId : Value of the created attachment id.
+// ErrorCode : (Optional) Returned error code, if not requested then code will
+// leave if not KErrNone
+// [Action Description]
+// Creates a new file attachment on the specified message entry directly in message store.
+// [APIs Used]
+// CMsvSession::GetEntryL
+// CImEmailMessage::AttachmentManagerL
+// CMsvAttachment::NewL
+// CMsvAttachment::SetMimeType
+// MMsvAttachmentManager::CreateAttachmentL
+// __ACTION_INFO_END__
+//
+//
+
+
+#include "CMtfTestActionSmtpCreateAttachment.h"
+#include "CMtfAsyncWaiter.h"
+#include "CMtfTestCase.h"
+#include "CMtfTestActionParameters.h"
+#include "MtfTestActionUtilsUser.h"
+
+#include
+#include
+#include
+#include
+
+CMtfTestAction* CMtfTestActionSmtpCreateAttachment::NewL(CMtfTestCase& aTestCase,CMtfTestActionParameters* aActionParameters)
+ {
+ CMtfTestActionSmtpCreateAttachment* self = new(ELeave) CMtfTestActionSmtpCreateAttachment(aTestCase);
+ CleanupStack::PushL(self);
+ self->ConstructL(aActionParameters);
+ CleanupStack::Pop();
+ return self;
+ }
+
+
+CMtfTestActionSmtpCreateAttachment::CMtfTestActionSmtpCreateAttachment(CMtfTestCase& aTestCase)
+ : CMtfSynchronousTestAction(aTestCase)
+ {
+ }
+
+
+CMtfTestActionSmtpCreateAttachment::~CMtfTestActionSmtpCreateAttachment()
+ {
+ }
+
+void CMtfTestActionSmtpCreateAttachment::ExecuteActionL()
+ {
+ TestCase().INFO_PRINTF2(_L("Test Action %S start..."), &KTestActionSmtpCreateAttachment);
+ TRAPD(err, RunTestL());
+
+ if( ActionParameters().Count() < 5 )
+ {
+ User::LeaveIfError(err);
+ }
+ else
+ {
+ StoreParameterL(TestCase(),err,ActionParameters().Parameter(4));
+ }
+
+ TestCase().INFO_PRINTF2(_L("Test Action %S completed."), &KTestActionSmtpCreateAttachment);
+ TestCase().ActionCompletedL(*this);
+ }
+
+void CMtfTestActionSmtpCreateAttachment::RunTestL()
+ {
+ _LIT(KTxtFileName, "NewFile.txt");
+ _LIT8(KTxtFileMimeType, "*/*");
+
+ CMsvSession* paramSession = ObtainParameterReferenceL(TestCase(),ActionParameters().Parameter(0));
+ TMsvId messageEntry = ObtainValueParameterL(TestCase(),ActionParameters().Parameter(1));
+ HBufC* dataFilePath = ObtainParameterReferenceL(TestCase(),ActionParameters().Parameter(2));
+
+ 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(KTxtFileMimeType());
+ attachment->SetAttachmentNameL(KTxtFileName());
+
+ MMsvAttachmentManager& manager = emailMsg->AttachmentManager();
+
+ RFile newFile;
+ manager.CreateAttachmentL(KTxtFileName, newFile, attachment, waiter->iStatus);
+ CleanupStack::Pop(attachment); // ownership passed to manager
+ waiter->StartAndWait();
+
+ attachment = NULL;
+
+ CleanupClosePushL(newFile);
+ User::LeaveIfError(waiter->Result());
+ CleanupStack::Pop(&newFile);
+
+ CleanupStack::PopAndDestroy(waiter);
+
+ CleanupClosePushL(newFile);
+
+ TInt attachmentCount = manager.AttachmentCount();
+ attachment = manager.GetAttachmentInfoL(attachmentCount - 1);
+ CleanupStack::PushL(attachment);
+ TMsvAttachmentId attachmentId = attachment->Id();
+
+ PopulateFileL(newFile, *dataFilePath);
+
+ CleanupStack::PopAndDestroy(attachment);
+ CleanupStack::PopAndDestroy(&newFile);
+ CleanupStack::PopAndDestroy(2, entry); // emailMsg, entry
+
+ StoreParameterL(TestCase(),attachmentId,ActionParameters().Parameter(3));
+ }
+
+void CMtfTestActionSmtpCreateAttachment::PopulateFileL(RFile& aFile, const TDesC& aDataFilePath)
+ {
+ RFs fs;
+ User::LeaveIfError(fs.Connect());
+ CleanupClosePushL(fs);
+
+ RFile dataFile;
+ User::LeaveIfError(dataFile.Open(fs, aDataFilePath, EFileRead));
+ CleanupClosePushL(fs);
+
+ TInt fileSize = 0;
+ User::LeaveIfError(dataFile.Size(fileSize));
+
+ HBufC8* dataBuffer = HBufC8::NewLC(fileSize);
+ TPtr8 bufferPtr(dataBuffer->Des());
+
+ User::LeaveIfError(dataFile.Read(bufferPtr));
+
+ User::LeaveIfError(aFile.Write(bufferPtr));
+
+ CleanupStack::PopAndDestroy(3, &fs); // dataBuffer, dataFile, fs
+ }