messagingfw/msgtestfw/TestActions/Capabilities/src/CMtfTestActionSendEMsvCreateAttachmentForWrite.cpp
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/messagingfw/msgtestfw/TestActions/Capabilities/src/CMtfTestActionSendEMsvCreateAttachmentForWrite.cpp Mon Jan 18 20:36:02 2010 +0200
@@ -0,0 +1,146 @@
+// 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:
+//
+
+#include "CMtfTestActionSendEMsvCreateAttachmentForWrite.h"
+
+#include <e32std.h>
+#include <e32base.h>
+
+#include <msvipc.h>
+#include "MCLIENT.H"
+#include "MSERVER.H"
+
+
+#include "CMtfTestCase.h"
+#include "CMtfTestActionParameters.h"
+
+#include "IPCCommandForCapsPermissions.h"
+#include "SendProxyClient.h"
+#include "SendProxyserver.h"
+
+
+/**
+ Function : NewL
+ Description :
+ @internalTechnology
+ @param : aTestCase - CMtfTestCase for the CMtfTestAction base class
+ @param : aActionParams - CMtfTestActionParameters
+ @return : CMtfTestAction* - a base class pointer to the newly created CMtfTestActionSendEMsvCreateAttachmentForWrite object
+ @pre none
+ @post none
+*/
+CMtfTestAction* CMtfTestActionSendEMsvCreateAttachmentForWrite::NewL(CMtfTestCase& aTestCase,CMtfTestActionParameters* aActionParameters)
+ {
+ CMtfTestActionSendEMsvCreateAttachmentForWrite* self = new (ELeave) CMtfTestActionSendEMsvCreateAttachmentForWrite(aTestCase);
+ CleanupStack::PushL(self);
+ self->ConstructL(aActionParameters);
+ CleanupStack::Pop(self);
+ return self;
+ }
+
+/**
+ Function : CMtfTestActionSendEMsvCreateAttachmentForWrite
+ Description : Constructor
+ @internalTechnology
+ @param : aTestCase - CMtfTestCase for the CMtfTestAction base class
+ @return : N/A
+ @pre none
+ @post none
+*/
+CMtfTestActionSendEMsvCreateAttachmentForWrite::CMtfTestActionSendEMsvCreateAttachmentForWrite(CMtfTestCase& aTestCase) : CMtfSynchronousTestAction(aTestCase)
+ {
+ }
+
+/**
+ Function : ~CMtfTestActionSendEMsvCreateAttachmentForWrite
+ Description : Destructor
+ @internalTechnology
+ @param :
+ @return :
+ @pre
+ @post
+*/
+CMtfTestActionSendEMsvCreateAttachmentForWrite::~CMtfTestActionSendEMsvCreateAttachmentForWrite()
+ {
+ }
+
+/**
+ Function : ExecuteActionL
+ Description : Entry point for the this test action in the test framework
+ @internalTechnology
+ @param : none
+ @return : void
+ @pre none
+ @post none
+*/
+
+
+
+
+void CMtfTestActionSendEMsvCreateAttachmentForWrite::ExecuteActionL()
+ {
+ TestCase().INFO_PRINTF2(_L("Test Action %S start..."), &KTestActionSendEMsvCreateAttachmentForWrite);
+ // input params
+ TMsvId entryId = ObtainValueParameterL<TMsvId>(TestCase(),ActionParameters().Parameter(0) );
+ HBufC* fileName = ObtainParameterReferenceL<HBufC>(TestCase(),ActionParameters().Parameter(1) );
+ TInt pass = ObtainValueParameterL<TInt>(TestCase(),ActionParameters().Parameter(2) );
+
+
+ RProxyServerSession RPSS;
+
+ // Will auto start the server if not started.
+ TInt error = RPSS.Connect();
+ CleanupClosePushL(RPSS);
+
+ if (error!=KErrNone)
+ {
+ TestCase().ERR_PRINTF1(_L("CMtfTestActionSendEMsvCreateAttachmentForWrite :: Unable to start proxy server. !"));
+ TestCase().SetTestStepResult(EFail);
+ }
+ else
+ {
+ TInt32 serverCaps;
+ RPSS.GetServerCapabilities(serverCaps);
+ TestCase().INFO_PRINTF2(_L("Proxy Server has capabilities: %x"), serverCaps);
+
+ error = 0;
+
+ TFileName pFileName(fileName->Des());
+ TPckg<TInt> pckgSubSessionHandle(0);
+ TPckg<TBool> pckgFileNameChanged(EFalse);
+
+ TInt sessionHandle=RPSS.SendReceive(EMsvCreateAttachmentForWrite , TIpcArgs(entryId, &pFileName, &pckgSubSessionHandle, &pckgFileNameChanged));
+ if (sessionHandle < 0)
+ {
+ error = sessionHandle;
+ }
+ else
+ {
+ error = KErrNone;
+ }
+
+ // We may want to do something with the returned file handle.
+ // RFile file;
+ // file.AdoptFromServer(sessionHandle,pckgSubSessionHandle());
+
+ IPCCommandReportPassOrFailForCapsPermissions( TestCase(), KMsvServerName, error , pass );
+ }
+
+ CleanupStack::Check(&RPSS);
+ CleanupStack::PopAndDestroy(); // RPSS
+
+ TestCase().INFO_PRINTF2(_L("Test Action %S completed."), &KTestActionSendEMsvCreateAttachmentForWrite);
+ TestCase().ActionCompletedL(*this);
+ }