messagingfw/msgtestfw/TestActions/Email/Pop3/src/CMtfTestActionDeletePop3Service.cpp
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/messagingfw/msgtestfw/TestActions/Email/Pop3/src/CMtfTestActionDeletePop3Service.cpp Fri Jun 04 10:32:16 2010 +0100
@@ -0,0 +1,78 @@
+// Copyright (c) 2003-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]
+// DeletePop3Service
+// [Action Parameters]
+// Session <input>: Reference to session.
+// ServiceId <input>: Value of POP3 service id.
+// [Action Description]
+// Deletes the specified service.
+// [APIs Used]
+// none
+// __ACTION_INFO_END__
+//
+//
+
+/**
+ @file
+*/
+
+
+#include "CMtfTestActionDeletePop3Service.h"
+#include "CMtfTestCase.h"
+#include "CMtfTestActionParameters.h"
+
+#include <msvapi.h>
+
+
+CMtfTestAction* CMtfTestActionDeletePop3Service::NewL(CMtfTestCase& aTestCase,CMtfTestActionParameters* aActionParameters)
+ {
+ CMtfTestActionDeletePop3Service* self = new (ELeave) CMtfTestActionDeletePop3Service(aTestCase);
+ CleanupStack::PushL(self);
+ self->ConstructL(aActionParameters);
+ CleanupStack::Pop();
+ return self;
+ }
+
+
+CMtfTestActionDeletePop3Service::CMtfTestActionDeletePop3Service(CMtfTestCase& aTestCase)
+ : CMtfSynchronousTestAction(aTestCase)
+ {
+ }
+
+
+CMtfTestActionDeletePop3Service::~CMtfTestActionDeletePop3Service()
+ {
+ }
+
+
+void CMtfTestActionDeletePop3Service::ExecuteActionL()
+ {
+ TestCase().INFO_PRINTF2(_L("Test Action %S start..."), &KTestActionDeletePop3Service);
+ CMsvSession* paramSession = ObtainParameterReferenceL<CMsvSession>(TestCase(),ActionParameters().Parameter(0));
+ TMsvId paramServiceId = ObtainValueParameterL<TMsvId>(TestCase(),ActionParameters().Parameter(1));
+
+ CMsvEntry* entry = CMsvEntry::NewL(*paramSession,paramServiceId,TMsvSelectionOrdering());
+ CleanupStack::PushL(entry);
+ entry->SetEntryL(paramServiceId);
+ entry->SetEntryL(entry->Entry().Parent());
+ entry->DeleteL(paramServiceId);
+ CleanupStack::PopAndDestroy(entry);
+ DeleteParameterL<TMsvId>(TestCase(),ActionParameters().Parameter(1));
+
+ TestCase().INFO_PRINTF2(_L("Test Action %S completed."), &KTestActionDeletePop3Service);
+ TestCase().ActionCompletedL(*this);
+ }
+