diff -r 4ca382093dae -r 493058e57c8c buildverification/smoketest/messaging/Src/TestMessProcessExistingMsg.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/buildverification/smoketest/messaging/Src/TestMessProcessExistingMsg.cpp Wed Sep 01 12:30:50 2010 +0100 @@ -0,0 +1,89 @@ +// 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: +// This contains CTestMessProcessExistingMsg +// Base class for processing an existing message +// +// + +/** + @file TestMessProcessExistingMsg.cpp +*/ + +#include "TestMessProcessExistingMsg.h" + +// EPOC includes +#include +#include +#include +#include +#include + +/** + * Constructor. + * @return - None + * +*/ +CTestMessProcessExistingMsg::CTestMessProcessExistingMsg() +: CTestMessBase(ETrue) + { + } + +/** + * Override of base class pure virtual function + * @return - TVerdict code + * @leave - KErrNoMemory - memory allocatior failure + * @leave - KErrBadLibraryEntryPoint - Malformed MTM + * @leave - KErrNotFound - Not found the mtmUid and StepStepResult set to Fail + * +*/ +TVerdict CTestMessProcessExistingMsg::doTestStepL() + { + if ( TestStepResult() == EPass ) + { + CClientMtmRegistry* clientMtmRegistry=CClientMtmRegistry::NewL(*iSession); + CleanupStack::PushL(clientMtmRegistry); + + iMtmID=EntryL().Entry().iMtm; + + CBaseMtm* baseMtm=clientMtmRegistry->NewMtmL(iMtmID); + CleanupStack::PushL(baseMtm); + + // switch the context + TMsvId msgId=EntryL().EntryId(); + PrintEntryL(EntryL()); + baseMtm->SwitchCurrentEntryL(msgId); + baseMtm->LoadMessageL(); + + ProcessMessageL(*baseMtm, msgId); + + if ( TestStepResult() == EPass ) + { + PostProcessMessageL(); + } + + CleanupStack::PopAndDestroy(2, clientMtmRegistry); + } + + return TestStepResult(); + } + +/** + * Nothing done for open + * @return None + * @leave KErrNone and TestStepResult set to EFail + * +*/ +void CTestMessProcessExistingMsg::PostProcessMessageL() + { + }