diff -r fd64c38c277d -r b46a585f6909 phonebookengines_old/contactsmodel/tsrc/t_eventorder.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/phonebookengines_old/contactsmodel/tsrc/t_eventorder.h Fri Jun 11 13:29:23 2010 +0300 @@ -0,0 +1,128 @@ +// Copyright (c) 2001-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 +#include "t_utils2.h" + +class CViewTesterBase; + +class CTestConductor : public CBase + { +public: + static CTestConductor* NewL(); + ~CTestConductor(); + void AddContactL(TInt aBitwiseFilterType); + void AddContactsL(); + void SetTestError(TInt aTestError); + CContactIdArray* contacts; + +private: + CTestConductor(); + void ConstructL(); + void RunTestsL(); +private: + RFs iFs; + CLog* iLog; + CContactDatabase* iDb; + CRandomContactGenerator* iRandomGenerator; + TInt iTotalContacts; + TInt iTestError; + }; + +class CViewTester : public CActive, public MContactViewObserver + { +public: + static CViewTester* NewL(CLog& aLog,CContactDatabase& iDb,CTestConductor* aTestConductor); + ~CViewTester(); + +private: + CViewTester(CLog& aLog,CContactDatabase& iDb,CTestConductor* aTestConductor); + void ConstructL(); + void CompleteRequest(); + void NextTest(); + +private: // From CActive. + void RunL(); + TInt RunError(TInt aError); + void DoCancel(); + +private: // From MContactViewObserver. + virtual void HandleContactViewEvent(const CContactViewBase& aView,const TContactViewEvent& aEvent); +private: + enum TTest + { + EStartingTests, + + EConstructRemoteView, + ERemoteViewSortOrderChange, + + EAddPhoneNumber1, + EPhoneNumberChangedEvent1, + EAddPhoneNumber2, + EPhoneNumberChangedEvent2, + EAddPhoneNumber3, + EPhoneNumberChangedEvent3, + EAddPhoneNumber4, + EPhoneNumberChangedEvent4, + + + + ERemoteViewPlugin, + ERemoteViewPlugin2, + + + EEndTest + }; + + TTest iTestState; + CLog& iLog; + CContactDatabase& iDb; + + RArray iLocalViewResults; + RArray iReceivedResults; + + RArray iAddNumberRemoteViewResults1; + RArray iAddNumberRemoteViewResults2; + RArray iAddNumberRemoteViewResults3; + RArray iAddNumberRemoteViewResults4; + RArray iAddNumberReceivedResults; + + CContactNamedRemoteView* iRemoteView; + CContactRemoteView* iRemoteView2; + CContactRemoteView* iRemoteView3; + + RContactViewSortOrder iViewSortOrder; + + TContactIdWithMapping iContactToDeleteMapping; + + CTestConductor* iTestConductor; + TInt iItemEventsExpected; + TInt iItemsEventsRecieved; + +private: + void AssignAllContactsToGroup(); + void AssignContactsToGroup2(); + + void ConstructRemoteViewL(const TDesC8& aSortPluginName = KNullDesC8); + void RemoteViewSortOrderChangeL(); + void DestructRemoteView(); + + + void CompareRecordedResultWithExpected(); + void AddNumberCompareRecordedResultWithExpected(const RArray&); + CContactRemoteView* ExtracttRemoteViewLC(); + static CArrayFix* OrderOfContactsLC(const CContactViewBase& aView); + void AddPhoneNumberL(const TDesC& aWorkPhone,TContactItemId& ItemId); + };