diff -r 08008ce8a6df -r bde600d88860 messagingfw/msgtestfw/TestActions/Email/Pop3/src/CMtfTestActionCreatePop3Service.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/messagingfw/msgtestfw/TestActions/Email/Pop3/src/CMtfTestActionCreatePop3Service.cpp Fri Jun 04 10:32:16 2010 +0100 @@ -0,0 +1,124 @@ +// 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] +// CreatePop3Service +// [Action Parameters] +// Session : Reference to the session. +// (Priority) : Value of the entry priority. Default is medium priority. +// (ReadOnlyFlag) : Value of the read only flag. Default is false. +// (VisibleFlag) : Value of the visible flag. Default is true. +// (Description) : Name of the description. Default is blank. +// (Details) : Name of the details. Default is blank. +// ServiceId : Value of the created service id. +// [Action Description] +// Creates a POP3 service. +// [APIs Used] +// TMsvEntry::iType +// TMsvEntry::SetPriority +// TMsvEntry::iMtm +// TMsvEntry::SetReadOnly +// TMsvEntry::SetVisible +// TMsvEntry::iDescription +// TMsvEntry::iDetails +// TMsvEntry::iDate +// TMsvEntry::Id +// CMsvEntry::SetEntryL +// CMsvEntry::CreateL +// __ACTION_INFO_END__ +// +// + +/** + @file +*/ + + +#include +#include + +#include +#include +#include + +#include "CMtfTestActionUtilsPopScripts.h" + + + + + +#include "CMtfTestActionCreatePop3Service.h" +#include "CMtfTestCase.h" +#include "CMtfTestActionParameters.h" + +CMtfTestAction* CMtfTestActionCreatePop3Service::NewL(CMtfTestCase& aTestCase,CMtfTestActionParameters* aActionParameters) + { + CMtfTestActionCreatePop3Service* self = new (ELeave) CMtfTestActionCreatePop3Service(aTestCase); + CleanupStack::PushL(self); + self->ConstructL(aActionParameters); + CleanupStack::Pop(); + return self; + } + + +CMtfTestActionCreatePop3Service::CMtfTestActionCreatePop3Service(CMtfTestCase& aTestCase) + : CMtfSynchronousTestAction(aTestCase) + { + } + + +CMtfTestActionCreatePop3Service::~CMtfTestActionCreatePop3Service() + { + delete iBlank; + } + +void CMtfTestActionCreatePop3Service::ExecuteActionL() + { + TestCase().INFO_PRINTF2(_L("Test Action %S start..."), &KTestActionCreatePop3Service); + // need to create an account in the central repository and make it the default account + HBufC* paramAccountName = ObtainParameterReferenceL( TestCase(),ActionParameters().Parameter(6) ); + HBufC* settingsFile = ObtainParameterReferenceL( TestCase(),ActionParameters().Parameter(7) ); + + CEmailAccounts *emailAccounts = CEmailAccounts::NewLC(); + CImIAPPreferences *smtpPrefs = CImIAPPreferences::NewLC(); + CImSmtpSettings *smtpSettings = new (ELeave) CImSmtpSettings; + CleanupStack::PushL(smtpSettings); + + CImIAPPreferences *popPrefs = CImIAPPreferences::NewLC(); + CImPop3Settings *popSettings = new (ELeave) CImPop3Settings; + CleanupStack::PushL(popSettings); + + emailAccounts->PopulateDefaultPopSettingsL(*popSettings, *popPrefs); + emailAccounts->PopulateDefaultSmtpSettingsL(*smtpSettings, *smtpPrefs ); + + if( settingsFile->Compare( _L("none") ) != 0 ) + { + CMtfTestActionUtilsPopScripts::ReadPopSettingsFromConfigurationFileL( + TestCase(), settingsFile->Des(), *popSettings, *popPrefs, *smtpSettings, *smtpPrefs); + } + + TPopAccount popAccount = emailAccounts->CreatePopAccountL(paramAccountName->Des(), *popSettings, *popPrefs, EFalse); + TSmtpAccount smtpAccount = emailAccounts->CreateSmtpAccountL(popAccount, *smtpSettings, *smtpPrefs, EFalse); + emailAccounts->SetDefaultSmtpAccountL(smtpAccount); + + // need to obtain the service id from the account details and save this as the service id + TMsvId paramServiceId = popAccount.iPopService; + CleanupStack::PopAndDestroy(5, emailAccounts); // popSettings, popPrefs, smtpSettings, smtpPrefs, emailAccounts + + StoreParameterL( TestCase(),paramServiceId, ActionParameters().Parameter(8) ); + + TestCase().INFO_PRINTF2(_L("Test Action %S completed."), &KTestActionCreatePop3Service); + TestCase().ActionCompletedL(*this); + } +