diff -r 000000000000 -r 8e480a14352b messagingfw/msgtestfw/TestActions/Base/Attachments/src/CMtfTestActionRemoveFileAttachmentByIndex.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/messagingfw/msgtestfw/TestActions/Base/Attachments/src/CMtfTestActionRemoveFileAttachmentByIndex.cpp Mon Jan 18 20:36:02 2010 +0200 @@ -0,0 +1,122 @@ +// 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] +// RemoveFileAttachmentByIndex +// [Action Parameters] +// Session : Reference to the session. +// MsgId : Value of the message Id. +// Index : Index value of attachment to remove. +// ErrorCode : (Optional) Returned error code, if not requested then code will +// leave if not KErrNone +// [Action Description] +// Removes the specified file attachment by its index value. The attachment +// is first checked to to ensure that it is a file attachment and then +// removes it. +// [APIs Used] +// CMsvSession::GetEntryL +// CMsvStore::ReadStoreL +// CMsvStore::AttachmentManagerL +// TODO +// __ACTION_INFO_END__ +// +// + + +#include "CMtfTestActionRemoveFileAttachmentByIndex.h" +#include "CMtfAsyncWaiter.h" +#include "CMtfTestCase.h" +#include "CMtfTestActionParameters.h" +#include "MtfTestActionUtilsUser.h" + +#include +#include +#include + +CMtfTestAction* CMtfTestActionRemoveFileAttachmentByIndex::NewL(CMtfTestCase& aTestCase,CMtfTestActionParameters* aActionParameters) + { + CMtfTestActionRemoveFileAttachmentByIndex* self = new(ELeave) CMtfTestActionRemoveFileAttachmentByIndex(aTestCase); + CleanupStack::PushL(self); + self->ConstructL(aActionParameters); + CleanupStack::Pop(); + return self; + } + + +CMtfTestActionRemoveFileAttachmentByIndex::CMtfTestActionRemoveFileAttachmentByIndex(CMtfTestCase& aTestCase) + : CMtfSynchronousTestAction(aTestCase) + { + } + + +CMtfTestActionRemoveFileAttachmentByIndex::~CMtfTestActionRemoveFileAttachmentByIndex() + { + } + +void CMtfTestActionRemoveFileAttachmentByIndex::ExecuteActionL() + { + TestCase().INFO_PRINTF2(_L("Test Action %S start..."), &KTestActionRemoveFileAttachmentByIndex); + TRAPD(err, RunTestL()); + + if( ActionParameters().Count() < 4 ) + { + User::LeaveIfError(err); + } + else + { + StoreParameterL(TestCase(),err,ActionParameters().Parameter(3)); + } + TestCase().INFO_PRINTF2(_L("Test Action %S completed."), &KTestActionRemoveFileAttachmentByIndex); + TestCase().ActionCompletedL(*this); + } + +void CMtfTestActionRemoveFileAttachmentByIndex::RunTestL() + { + CMsvSession* paramSession = ObtainParameterReferenceL(TestCase(),ActionParameters().Parameter(0)); + TMsvId messageEntry = ObtainValueParameterL(TestCase(),ActionParameters().Parameter(1)); + TInt attachIndex = ObtainValueParameterL(TestCase(),ActionParameters().Parameter(2)); + + CMsvEntry* entry = paramSession->GetEntryL(messageEntry); + CleanupStack::PushL(entry); + + CMsvStore* store = entry->EditStoreL(); + CleanupStack::PushL(store); + + MMsvAttachmentManager& manager = store->AttachmentManagerL(); + + CMsvAttachment* attachInfo = manager.GetAttachmentInfoL(attachIndex); + CleanupStack::PushL(attachInfo); + + // First ensure that the attachment is a file attachment + if( attachInfo->Type() != CMsvAttachment::EMsvFile ) + { + User::Leave(KErrGeneral); + } + + CleanupStack::PopAndDestroy(attachInfo); + + CMtfAsyncWaiter* waiter = CMtfAsyncWaiter::NewL(); + CleanupStack::PushL(waiter); + manager.RemoveAttachmentL(attachIndex, waiter->iStatus); + waiter->StartAndWait(); + User::LeaveIfError(waiter->Result()); + CleanupStack::PopAndDestroy(waiter); + + store->CommitL(); + + CleanupStack::PopAndDestroy(2, entry); // store, entry + } + + +