messagingfw/msgtestfw/TestActions/Email/Smtp/src/CMtfTestActionSmtpRemoveEntryAttachmentById.cpp
changeset 0 8e480a14352b
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/messagingfw/msgtestfw/TestActions/Email/Smtp/src/CMtfTestActionSmtpRemoveEntryAttachmentById.cpp	Mon Jan 18 20:36:02 2010 +0200
@@ -0,0 +1,127 @@
+// 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]
+// SmtpRemoveEntryAttachmentById
+// [Action Parameters]
+// Session        <input>: Reference to the session.
+// MsgId		  <input>: Value of the message Id.
+// AttachmentId	  <input>: Attachment Id of attachment to remove.
+// ErrorCode	  <output>: (Optional) Returned error code, if not requested then code will
+// leave if not KErrNone
+// [Action Description]
+// Removes the specified entry attachment by its attachment Id. The
+// attachment is first checked to to ensure that it is an entry attachment and 
+// then removes it. An additional check is done to ensure that the actual 
+// entry still remains in the message store.
+// [APIs Used]
+// CMsvSession::GetEntryL
+// CImEmailMessage::AttachmentManagerL
+// MMsvAttachmentManager::GetAttachmentInfoL
+// __ACTION_INFO_END__
+// 
+//
+
+
+#include "CMtfTestActionSmtpRemoveEntryAttachmentById.h"
+#include "CMtfAsyncWaiter.h"
+#include "CMtfTestCase.h"
+#include "CMtfTestActionParameters.h"
+#include "MtfTestActionUtilsUser.h"
+
+#include <miutset.h>
+#include <miutmsg.h>
+#include <mmsvattachmentmanager.h>
+#include <cmsvattachment.h>
+
+CMtfTestAction* CMtfTestActionSmtpRemoveEntryAttachmentById::NewL(CMtfTestCase& aTestCase,CMtfTestActionParameters* aActionParameters)
+	{
+	CMtfTestActionSmtpRemoveEntryAttachmentById* self = new(ELeave) CMtfTestActionSmtpRemoveEntryAttachmentById(aTestCase);
+	CleanupStack::PushL(self);
+	self->ConstructL(aActionParameters);
+	CleanupStack::Pop();
+	return self;
+	}
+	
+
+CMtfTestActionSmtpRemoveEntryAttachmentById::CMtfTestActionSmtpRemoveEntryAttachmentById(CMtfTestCase& aTestCase)
+	: CMtfSynchronousTestAction(aTestCase)
+	{
+	}
+
+
+CMtfTestActionSmtpRemoveEntryAttachmentById::~CMtfTestActionSmtpRemoveEntryAttachmentById()
+	{
+	}
+
+void CMtfTestActionSmtpRemoveEntryAttachmentById::ExecuteActionL()
+	{
+	TestCase().INFO_PRINTF2(_L("Test Action %S start..."), &KTestActionSmtpRemoveEntryAttachmentById);
+	TRAPD(err, RunTestL());
+	
+	if( ActionParameters().Count() < 4 )
+		{
+		User::LeaveIfError(err);
+		}
+	else
+		{
+		StoreParameterL<TInt>(TestCase(),err,ActionParameters().Parameter(3));
+		}
+		
+	TestCase().INFO_PRINTF2(_L("Test Action %S completed."), &KTestActionSmtpRemoveEntryAttachmentById);
+	TestCase().ActionCompletedL(*this);
+	}
+	
+void CMtfTestActionSmtpRemoveEntryAttachmentById::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);
+	
+	// First ensure that the attachment is a file attachment
+	if( attachInfo->Type() != CMsvAttachment::EMsvMessageEntry )
+		{
+		User::Leave(KErrGeneral);
+		}
+		
+	// Get the linked file
+	TMsvId msgId = attachInfo->EntryAttachmentId();
+	CleanupStack::PopAndDestroy(attachInfo);
+		
+	// Remove the attachment
+	CMtfAsyncWaiter* waiter = CMtfAsyncWaiter::NewL();
+	CleanupStack::PushL(waiter);
+	manager.RemoveAttachmentL(attachId, waiter->iStatus);
+	waiter->StartAndWait();
+	User::LeaveIfError(waiter->Result());
+	CleanupStack::PopAndDestroy(waiter);	
+	
+	CleanupStack::PopAndDestroy(2, entry); // email msg, entry
+
+	// Ensure that the message entry still exists
+	CMsvEntry* checkEntry = paramSession->GetEntryL(msgId);
+	delete checkEntry;
+	checkEntry = NULL;
+	}