First public contribution.
2 // ECamObserverTest.cpp
4 // Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
5 // All rights reserved.
6 // This component and the accompanying materials are made available
7 // under the terms of "Eclipse Public License v1.0"
8 // which accompanies this distribution, and is available
9 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
11 // Initial Contributors:
12 // Nokia Corporation - initial contribution.
21 #include "ECamObserverTest.h"
24 void RECamObserverTest::HandleEvent(const TECAMEvent& aEvent)
26 TBool eventEncapsulation = TECAMEvent2::IsEventEncapsulationValid(aEvent);
28 if(eventEncapsulation)
30 TECAMEvent2 ecamEvent = static_cast<const TECAMEvent2&>(aEvent);
32 iEventUid = ecamEvent.iEventType;
33 iParam = ecamEvent.iParam;
34 iError = ecamEvent.iErrorCode;
38 iEventUidTwo = iEventUid;
39 iEventUid = aEvent.iEventType;
40 iError = aEvent.iErrorCode;
43 void RECamObserverTest::ViewFinderReady(MCameraBuffer& /*aCameraBuffer*/,TInt aError)
48 void RECamObserverTest::ImageBufferReady(MCameraBuffer& /*aCameraBuffer*/,TInt aError)
53 void RECamObserverTest::VideoBufferReady(MCameraBuffer& /*aCameraBuffer*/,TInt aError)
58 void RECamObserverTest::CheckNotification(const TUid& aEventUid, TVerdict& aResult)
60 INFO_PRINTF4(_L("Expected event %x, received event %x. Error %d."), aEventUid.iUid, iEventUid.iUid, iError);
61 if (aEventUid != iEventUid || iError != KErrNone)
67 void RECamObserverTest::CheckNotificationTwo(const TUid& aEventUid, TVerdict& aResult)
69 INFO_PRINTF4(_L("Expected event %x, received event %x. Error %d."), aEventUid.iUid, iEventUid.iUid, iError);
70 if (aEventUid != iEventUidTwo || iError != KErrNone)
76 void RECamObserverTest::CheckNotificationNeg(const TUid& aEventUid, TVerdict& aResult)
78 INFO_PRINTF4(_L("Expected event %x, received event %x. Error %d."), aEventUid.iUid, iEventUid.iUid, iError);
79 if (aEventUid != iEventUid || iError == KErrNone)
85 void RECamObserverTest::CheckNotificationImgProc(const TUid& aEventUid, TInt aParam, TVerdict& aResult)
87 INFO_PRINTF3(_L("Expected event %x, received event %x."), aEventUid.iUid, iEventUid.iUid);
88 INFO_PRINTF3(_L("Expected param %d, received param %d."), aParam, iParam);
89 INFO_PRINTF2(_L("Error %d."), iError);
90 if (aEventUid != iEventUid || aParam != iParam || iError != KErrNone)
98 void RECamContinousZoomObserverTest::ContinuousZoomProgress(CCamera::CCameraContinuousZoom& /*aContinuousZoomHandle*/, TInt aZoomFactor, TInt aError)
100 INFO_PRINTF3(_L("ContinuousZoomProgress: New zoom factor achieved = %d, error %d"), aZoomFactor, aError);
103 void RECamContinousZoomObserverTest::ContinuousZoomCompleted(CCamera::CCameraContinuousZoom& /*aContinuousZoomHandle*/, TInt aFinalZoomFactor, TInt aError)
105 INFO_PRINTF3(_L("ContinuousZoomCompleted: Target zoom factor %d reached. Completed with error %d"), aFinalZoomFactor, aError);
108 TInt RECamContinousZoomObserverTest::CustomInterface(TUid /*aInterface*/, TAny*& /*aPtrInterface*/)