os/mm/imagingandcamerafws/cameraunittest/src/TSU_ECM_ADV/ecamextendedfunctest.h
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
     1 // Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
     2 // All rights reserved.
     3 // This component and the accompanying materials are made available
     4 // under the terms of "Eclipse Public License v1.0"
     5 // which accompanies this distribution, and is available
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 //
    15 
    16 #ifndef ECAMEXTENDEDFUNCTEST_H
    17 #define ECAMEXTENDEDFUNCTEST_H
    18 
    19 #include <testframework.h>
    20 #include "ECamObserverTest.h"
    21 #include "extended_functionality.h"
    22 
    23 class RECamClientViewFinderTest : public RTestStep
    24 	{
    25 public:
    26 	static RECamClientViewFinderTest* NewL(const TDesC& aTestStep);
    27 	
    28 protected:
    29 	// from RTestStep;
    30 	TVerdict DoTestStepL();
    31 	
    32 	// new
    33 	TVerdict DoTestStep_50L();
    34 	
    35 	TVerdict DoClientVFTestStepL();
    36 	
    37 private:
    38 	RECamClientViewFinderTest(const TDesC& aTestStep);
    39 	};
    40 	
    41 class RECamClientVFNotificationTest : public RECamObserverTest, public MClientViewFinderObserver
    42 	{
    43 public:
    44 	static RECamClientVFNotificationTest* NewL(TBool aAllocTest);
    45 	
    46 protected:
    47 	// from RTestStep;
    48 	TVerdict DoTestStepL();
    49 	TVerdict DoTestStepL_51L();
    50 	void ConstructL();
    51 	
    52 private:
    53 	RECamClientVFNotificationTest(TBool aAllocTest);
    54 	
    55 	//MClientViewFinderObserver
    56 	void ViewFinderBufferReady(CCamera::CCameraClientViewFinder& aClientViewFinderHandle, TInt aErrorCode);
    57 	void DirectHistogramDisplayed(CCamera::CCameraClientViewFinder& aClientViewFinderHandle, CCamera::CCameraV2Histogram& aDirectHistogramDisplayed, TInt aErrorCode);
    58 	void ClientHistogramReady(CCamera::CCameraClientViewFinder& aClientViewFinderHandle, MHistogramV2Buffer* aClientHistogramBuffer, TInt aErrorCode);
    59 	void ImageProcessingFailed(CCamera::CCameraClientViewFinder& aClientViewFinderHandle, TInt aErrorCode);
    60 	TInt CustomInterface(TUid aInterface, TAny*& aPtrInterface);
    61 
    62 	void CheckViewFinderNegNotification(TInt aVFHandle, TVerdict& aResult);
    63 	
    64 private:
    65 
    66 	TInt iVFHandle;
    67 	TInt iError;
    68 	TUid iInputEventUid;
    69 	};
    70 	
    71 class RECamV2DirectViewFinderTest : public RTestStep
    72 	{
    73 public:
    74 	static RECamV2DirectViewFinderTest* NewL(const TDesC& aTestStep);
    75 	
    76 protected:
    77 	// from RTestStep;
    78 	TVerdict DoTestStepL();
    79 	
    80 	// new
    81 	TVerdict DoTestStep_52L();
    82 	
    83 	TVerdict DoV2DirectVFTestStepL();
    84 	
    85 private:
    86 	RECamV2DirectViewFinderTest(const TDesC& aTestStep);
    87 	};
    88 	
    89 class RECamV2DirectVFNotificationTest : public RECamObserverTest, public MDirectViewFinderObserver
    90 	{
    91 public:
    92 	static RECamV2DirectVFNotificationTest* NewL(TBool aAllocTest);
    93 	
    94 protected:
    95 	// from RTestStep;
    96 	TVerdict DoTestStepL();
    97 	TVerdict DoTestStep_53L();
    98 	
    99 	void ConstructL();
   100 	
   101 private:
   102 	RECamV2DirectVFNotificationTest(TBool aAllocTest);
   103 	
   104 	//MDirectViewFinderObserver
   105 	void DirectViewFinderFirstFrameDisplayed(CCamera::CCameraV2DirectViewFinder& aDirectViewFinderHandle, TInt aErrorCode);
   106 	void DirectHistogramDisplayed(CCamera::CCameraV2DirectViewFinder& aDirectViewFinderHandle, CCamera::CCameraV2Histogram& aDirectHistogramDisplayed, TInt aErrorCode);
   107 	void ClientHistogramReady(CCamera::CCameraV2DirectViewFinder& aDirectViewFinderHandle, MHistogramV2Buffer* aClientHistogramBuffer, TInt aErrorCode);
   108 	void DirectViewFinderFailed(CCamera::CCameraV2DirectViewFinder& aDirectViewFinderHandle, TInt aErrorCode);
   109 	void DirectSnapshotForImageDisplayed(CCamera::CCameraV2DirectViewFinder& aDirectViewFinderHandle, CCamera::CCameraImageCapture& aCaptureImageHandle, TPostCaptureControlId aPostCaptureControlId, TInt aErrorCode);
   110 	TInt CustomInterface(TUid aInterface, TAny*& aPtrInterface);
   111 
   112 	void CheckViewFinderNegNotification(TInt aVFHandle, TVerdict& aResult);
   113 	
   114 private:
   115 
   116 	TInt iVFHandle;
   117 	TInt iError;
   118 	TUid iInputEventUid;
   119 	};
   120 	
   121 class RECamPreImgCaptureNotificationTest : public RECamObserverTest, public MPreImageCaptureControlObserver
   122 	{
   123 public:
   124 	static RECamPreImgCaptureNotificationTest* NewL(TBool aAllocTest);
   125 	
   126 protected:
   127 	// from RTestStep;
   128 	TVerdict DoTestStepL();
   129 	TVerdict DoPreImgCaptureTestStepL();
   130 
   131 private:
   132 	RECamPreImgCaptureNotificationTest(TBool aAllocTest);
   133 	
   134 	//MPreImageCaptureControlObserver
   135 	void PrepareImageComplete(CCamera::CCameraImageCapture* aCaptureImageHandle, TInt aErrorCode);
   136 	TInt CustomInterface(TUid aInterface, TAny*& aPtrInterface);
   137 
   138 	void CheckCaptureNotification(CCamera::CCameraImageCapture*& aImageCapture, TVerdict& aResult);
   139 	
   140 private:
   141 	CCamera::CCameraImageCapture* iCaptureImageHandle;
   142 	TInt iError;
   143 	TUid iInputEventUid;
   144 	};
   145 	
   146 class RECamImgCaptureNotificationTest : public RECamObserverTest, public MPreImageCaptureControlObserver, MCaptureImageObserver
   147 	{
   148 public:
   149 	static RECamImgCaptureNotificationTest* NewL(TBool aAllocTest);
   150 	
   151 protected:
   152 	// from RTestStep;
   153 	TVerdict DoTestStepL();
   154 	TVerdict DoImgCaptureAdvFuncConstruction();
   155 	
   156 private:
   157 	RECamImgCaptureNotificationTest(TBool aAllocTest);
   158 	
   159 	//MPreImageCaptureControlObserver
   160 	void PrepareImageComplete(CCamera::CCameraImageCapture* aCaptureImageHandle, TInt aErrorCode);
   161 	TInt CustomInterface(TUid aInterface, TAny*& aPtrInterface);
   162 
   163 	void CheckPreCaptureNotification(CCamera::CCameraImageCapture*& aImageCapture, TVerdict& aResult);
   164 	
   165 	//MCaptureImageObserver
   166 	void IndividualImageControlHandle(CCamera::CCameraImageCapture& aCaptureImageHandle, TPostCaptureControlId aPostCaptureControlId);
   167 	void ImageBufferReady(CCamera::CCameraImageCapture& aCaptureImageHandle, TPostCaptureControlId aPostCaptureControlId, TInt aErrorCode);
   168 	void ClientSnapshotForImageReady(CCamera::CCameraImageCapture& aCaptureImageHandle, TPostCaptureControlId aPostCaptureControlId, MCameraBuffer2* aSnapshotBuffer, TInt aErrorCode);
   169 	void DirectSnapshotForImageDisplayed(CCamera::CCameraImageCapture& aCaptureImageHandle, TPostCaptureControlId aPostCaptureControlId, TInt aErrorCode);
   170 	void CutDownImageDirectSavingCompleted(CCamera::CCameraImageCapture& aCaptureImageHandle, TPostCaptureControlId aPostCaptureControlId, TInt aErrorCode);
   171 	void ImageDirectSavingCompleted(CCamera::CCameraImageCapture& aCaptureImageHandle, TPostCaptureControlId aPostCaptureControlId, TInt aErrorCode);
   172 	void ImageCaptureComplete(CCamera::CCameraImageCapture& aCaptureImageHandle, TInt aErrorCode);
   173 	void ClientHistogramForImageReady(CCamera::CCameraImageCapture& aCaptureImageHandle, TPostCaptureControlId aPostCaptureControlId, MHistogramV2Buffer* aClientHistogramBuffer, TInt aErrorCode);
   174 	void ClientHistogramForSnapshotReady(CCamera::CCameraImageCapture& aCaptureImageHandle, TPostCaptureControlId aPostCaptureControlId, MHistogramV2Buffer* aClientHistogramBuffer, TInt aErrorCode);
   175 	void DirectHistogramForSnapshotDisplayed(CCamera::CCameraImageCapture& aCaptureImageHandle, TPostCaptureControlId aPostCaptureControlId, CCamera::CCameraV2Histogram& aDirectHistogramDisplayed, TInt aErrorCode);
   176 	void ProcessingFailed(CCamera::CCameraImageCapture& aCaptureImageHandle, TPostCaptureControlId aPostCaptureControlId, TUint aProcessingTypes, TInt aErrorCode);
   177 	
   178 	void CheckCaptureNotification(CCamera::CCameraImageCapture*& aImageCapture, TPostCaptureControlId& aPostCaptureControlId, TVerdict& aResult);
   179 	void CheckCaptureCompletion(CCamera::CCameraImageCapture*& aImageCapture, TVerdict& aResult);
   180 	
   181 private:
   182 	CCamera::CCameraImageCapture* iCaptureImageHandle;
   183 	TPostCaptureControlId iPostCaptureControlId;
   184 	TUint iProcessingTypes;
   185 	TInt iError;
   186 	TUid iInputEventUid;
   187 	};
   188 	
   189 class RECamVideoCaptureControlTest : public RTestStep
   190 	{
   191 public:
   192 	static RECamVideoCaptureControlTest* NewL(const TDesC& aTestStep);
   193 	
   194 protected:
   195 	// from RTestStep;
   196 	TVerdict DoTestStepL();
   197 	
   198 	// new
   199 	TVerdict DoTestStep_56L();
   200 	
   201 	TVerdict DoVideoCaptureTestStepL();
   202 	
   203 private:
   204 	RECamVideoCaptureControlTest(const TDesC& aTestStep);
   205 	};
   206 
   207 class RECamVideoCaptureNotificationTest : public RECamObserverTest, public MCaptureVideoObserver
   208 	{
   209 public:
   210 	static RECamVideoCaptureNotificationTest* NewL(TBool aAllocTest);
   211 	
   212 protected:
   213 	// from RTestStep;
   214 	TVerdict DoTestStepL();
   215 	void ConstructL();
   216 	
   217 private:
   218 	RECamVideoCaptureNotificationTest(TBool aAllocTest);
   219 	
   220 	//MCaptureVideoObserver
   221 	void VideoBufferReady(MCameraBuffer2* aVideoBuffer, TInt aErrorCode);
   222 	void ClientSnapshotReady(MCameraBuffer2* aSnapshotBuffer, TInt aErrorCode);
   223 	void ClientHistogramReady(MHistogramV2Buffer* aClientHistogramBuffer, TInt aErrorCode);
   224 	void ImageProcessingFailed(TInt aErrorCode);
   225 	void DirectVideoCaptureFailed(TInt aErrorCode);
   226 	TInt CustomInterface(TUid aInterface, TAny*& aPtrInterface);
   227 
   228 	void CheckVideoCaptureNegNotification(TInt aErrorCode, TVerdict& aResult);
   229 	
   230 private:
   231 
   232 	TInt iError;
   233 	TUid iInputEventUid;
   234 	};
   235 	
   236 #endif // ECAMEXTENDEDFUNCTEST_H
   237