diff -r 9f5ae1728557 -r db3f5fa34ec7 messagingfw/msgtestfw/TestActions/Capabilities/src/CMtfTestActionSendEMsvDriveContainsStore.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/messagingfw/msgtestfw/TestActions/Capabilities/src/CMtfTestActionSendEMsvDriveContainsStore.cpp Wed Nov 03 22:41:46 2010 +0530 @@ -0,0 +1,135 @@ +// 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 "CMtfTestActionSendEMsvDriveContainsStore.h" + +#include +#include + +#include +#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 CMtfTestActionSendEMsvDriveContainsStore object + @pre none + @post none +*/ +CMtfTestAction* CMtfTestActionSendEMsvDriveContainsStore::NewL(CMtfTestCase& aTestCase,CMtfTestActionParameters* aActionParameters) + { + CMtfTestActionSendEMsvDriveContainsStore* self = new (ELeave) CMtfTestActionSendEMsvDriveContainsStore(aTestCase); + CleanupStack::PushL(self); + self->ConstructL(aActionParameters); + CleanupStack::Pop(self); + return self; + } + +/** + Function : CMtfTestActionSendEMsvDriveContainsStore + Description : Constructor + @internalTechnology + @param : aTestCase - CMtfTestCase for the CMtfTestAction base class + @return : N/A + @pre none + @post none +*/ +CMtfTestActionSendEMsvDriveContainsStore::CMtfTestActionSendEMsvDriveContainsStore(CMtfTestCase& aTestCase) : CMtfSynchronousTestAction(aTestCase) + { + } + +/** + Function : ~CMtfTestActionSendEMsvDriveContainsStore + Description : Destructor + @internalTechnology + @param : + @return : + @pre + @post +*/ +CMtfTestActionSendEMsvDriveContainsStore::~CMtfTestActionSendEMsvDriveContainsStore() + { + } + +/** + Function : ExecuteActionL + Description : Entry point for the this test action in the test framework + @internalTechnology + @param : none + @return : void + @pre none + @post none +*/ + + + + +void CMtfTestActionSendEMsvDriveContainsStore::ExecuteActionL() + { + TestCase().INFO_PRINTF2(_L("Test Action %S start..."), &KTestActionSendEMsvDriveContainsStore); + // input params + TInt drive = ObtainValueParameterL(TestCase(),ActionParameters().Parameter(0) ); + TInt pass = ObtainValueParameterL(TestCase(),ActionParameters().Parameter(1) ); + + RProxyServerSession RPSS; + + // Will auto start the server if not started. + TInt error = RPSS.Connect(); + CleanupClosePushL(RPSS); + + if (error!=KErrNone) + { + TestCase().ERR_PRINTF1(_L("CMtfTestActionSendEMsvDriveContainsStore :: 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; + TDriveUnit driveUnit(drive); + + error=RPSS.SendReceive(EMsvDriveContainsStore, TIpcArgs(driveUnit)); + if (error >= 0) + { + // we're just interested in being able to make the call, so whether the + // store is on the drive or not is beside the point + error = KErrNone; + } + + IPCCommandReportPassOrFailForCapsPermissions( TestCase(), KMsvServerName, error , pass ); + } + + CleanupStack::Check(&RPSS); + CleanupStack::PopAndDestroy(); // RPSS + + TestCase().INFO_PRINTF2(_L("Test Action %S completed."), &KTestActionSendEMsvDriveContainsStore); + TestCase().ActionCompletedL(*this); + }