diff -r 000000000000 -r 8e480a14352b messagingfw/msgtest/integration/biomsg/inc/iaptest.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/messagingfw/msgtest/integration/biomsg/inc/iaptest.h Mon Jan 18 20:36:02 2010 +0200 @@ -0,0 +1,67 @@ +// Copyright (c) 1999-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 "smstestutils.h" + +#include +#include + +class TestUiTimer; +class CInternetAccessTester : public CBase + { +public: + static CInternetAccessTester* NewL(CSmsTestUtils& aTestUtils); + void StartL(TMsvId aEntryId); + ~CInternetAccessTester(); +private: + CInternetAccessTester(CSmsTestUtils& aTestUtils); + + virtual void ConstructL(); + + CMsvSession& Session() {return *iSmsTest.iMsvSession;} + CMsvEntry& MsvEntry() {return *iSmsTest.iMsvEntry;} + CSmsClientMtm& Client() {return *iSmsTest.iSmsClientMtm;} + + void GetParsedFieldStoreL(); + void InternalizeL(RMsvReadStream& aReadStream); + + void GetIspAndMailServiceL(); + void GetMailServiceL(const TDesC& aServiceName); + void GetIAPL(const TDesC& aIspName); + + void TestRefreshL(); + void TestQuitL(); + +private: + enum TIapTestState + { + EIapTestGetIapAndService, + EIapTestRefresh, + EIapTestQuit + } + iState; + + CSmsTestUtils& iSmsTest; + TMsvId iEntryId; + CArrayPtrSeg* iParsedFieldArray; + CMsvEntrySelection* iSelection; + + TMsvId iServiceId; + TUint32 iIap; + + CClientMtmRegistry* iClientMtmRegistry; + CPop3ClientMtm* iPop3ClientMtm; + TestUiTimer* iTimer; + };