First public contribution.
1 // Copyright (c) 2005-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".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
16 #include <ecamuids.hrh>
17 #include <ecom/ecomresolverparams.h>
18 #include "ECamEnhanceFuncTest.h"
19 #include "ECamUnitTestPluginUids.hrh"
20 #include "ECamUnitTestPlugin.h"
21 #include <ecam/ecamcommonuids.hrh>
24 /*------------------------------------------------------
25 Histogram : RECamHistTest
26 *------------------------------------------------------*/
27 RECamHistTest* RECamHistTest::NewL(const TDesC& aTestStep)
29 RECamHistTest* self = new (ELeave) RECamHistTest(aTestStep);
33 RECamHistTest::RECamHistTest(const TDesC& aTestStep)
35 iTestStepName.Copy(aTestStep);
38 TVerdict RECamHistTest::DoTestStepL()
40 if(!iTestStepName.Compare(_L("MM-ECM-ADV-U-020-HP")))
42 return DoTestStep_20L();
44 else if(!iTestStepName.Compare(_L("MM-ECM-ADV-U-021-HP")))
46 return DoTestStep_21L();
48 else if(!iTestStepName.Compare(_L("MM-ECM-ADV-U-022-HP")))
50 return DoTestStep_22L();
55 TVerdict RECamHistTest::DoTestStep_20L()
57 TVerdict verdict = EFail;
58 INFO_PRINTF1(_L("Alloc test"));
67 INFO_PRINTF2(_L("Fail count = %d"), i);
70 __UHEAP_SETFAIL(RHeap::EFailNext, i);
72 TRAP(err, verdict = DoHistTestStepL());
74 TAny* testAlloc = User::Alloc(1);
75 TBool heapTestingComplete = (testAlloc == NULL) && (err==KErrNone);
76 User::Free(testAlloc);
81 if ((err != KErrNoMemory ) || heapTestingComplete)
83 INFO_PRINTF4(_L("err = %d, verdict = %d, Fail count = %d"), err, verdict, i);
84 INFO_PRINTF1(_L("Alloc testing completed successfully"));
92 TVerdict RECamHistTest::DoHistTestStepL()
94 TVerdict result = EPass;
95 CCamera* camera = NULL;
97 TInt error = KErrNone;
98 CCamera::CCameraHistogram* hist = NULL;
101 MCameraObserver2* observer2 = NULL;
104 INFO_PRINTF1(_L("Create camera using Camera::New2L() and MCameraObserver2"));
106 TRAP(error, camera = CCamera::New2L(*observer2, 0,0));
110 CleanupStack::PushL(camera);
111 INFO_PRINTF1(_L("KErrNone return from CCamera::New2L()"));
112 hist = static_cast<CCamera::CCameraHistogram*> (camera->CustomInterface(KECamHistogramUid));
115 CleanupStack::PushL(hist);
116 INFO_PRINTF1(_L("CCameraHistogram object was created"));
117 CleanupStack::PopAndDestroy(hist);
122 User::Leave(KErrNoMemory);
124 CleanupStack::PopAndDestroy(camera);
128 INFO_PRINTF2(_L("Unexpected %d return from CCamera::New2L(): observer 2"), error);
130 User::Leave(KErrNoMemory);
134 // create a Hist object using New2L
136 INFO_PRINTF1(_L("Create camera using Camera::New2L() and MCameraObserver2"));
138 TRAP(error, camera = CCamera::New2L(*observer2, 0,0));
142 CleanupStack::PushL(camera);
143 INFO_PRINTF1(_L("KErrNone return from CCamera::New2L()"));
144 TRAP(error, hist = CCamera::CCameraHistogram::NewL(*camera));
148 CleanupStack::PushL(hist);
149 INFO_PRINTF1(_L("CCameraHistogram object was created using NewL"));
150 CleanupStack::PopAndDestroy(hist);
154 INFO_PRINTF1(_L("CCameraHistogram object was not created using NewL"));
156 User::Leave(KErrNoMemory);
158 CleanupStack::PopAndDestroy(camera);
162 INFO_PRINTF2(_L("Unexpected %d return from CCamera::New2L(): observer 2"), error);
164 User::Leave(KErrNoMemory);
171 TVerdict RECamHistTest::DoTestStep_21L()
173 TVerdict result = EPass;
174 CCamera* camera = NULL;
176 TInt error = KErrNone;
177 CCamera::CCameraHistogram* hist = NULL;
179 // create a Hist object using New2L
181 MCameraObserver2* observer2 = NULL;
182 INFO_PRINTF1(_L("Create camera using Camera::New2L() and MCameraObserver2"));
184 TRAP(error, camera = CCamera::New2L(*observer2, 0,0));
188 CleanupStack::PushL(camera);
189 INFO_PRINTF1(_L("KErrNone return from CCamera::New2L()"));
190 TRAP(error, hist = CCamera::CCameraHistogram::NewL(*camera));
194 INFO_PRINTF1(_L("CCameraHistogram object was created using NewL"));
198 INFO_PRINTF1(_L("CCameraHistogram object was not created using NewL"));
204 INFO_PRINTF2(_L("Unexpected %d return from CCamera::New2L(): observer 2"), error);
210 CleanupStack::PushL(hist);
212 // get the supported set of values
213 TUint32 suppformats = hist->SupportedHistograms();
215 // the array should not be empty
216 if (suppformats == 0)
220 // Preapare DSA Based Histogram
221 TUint histhandle = 0;
223 TSize orgSize(90,50);
224 TRgb orgColor(100,100,100);
226 TRAP(error, histhandle = hist->PrepareDSAHistogramL(CCamera::CCameraHistogram::ELuminance, orgPos, orgSize, orgColor));
230 INFO_PRINTF1(_L("DSA Histogram Created"));
234 INFO_PRINTF2(_L("DSA Histogram Created- %d"), error);
242 TRAP(error, hist->GetDSAHistogramPropertiesL(histhandle, curPos, curSize, curColor));
246 INFO_PRINTF1(_L("Get Histogram Properties"));
250 INFO_PRINTF2(_L("Get Histogram Properties- %d"), error);
254 if(curPos != orgPos || curSize != orgSize || curColor != orgColor)
256 INFO_PRINTF1(_L("Properties dont match"));
260 // new values for properties
261 orgPos = TPoint(10,10);
262 orgSize = TSize(80,40);
263 orgColor = TRgb(90,90,90);
266 TRAP(error, hist->UpdateDSAHistogramPropertiesL(histhandle, orgPos, orgSize, orgColor));
269 INFO_PRINTF1(_L("Update Histogram Proporties Successfull"));
273 INFO_PRINTF2(_L("Update Histogram Proporties- %d"), error);
277 // Get and verify with new values
278 TRAP(error, hist->GetDSAHistogramPropertiesL(histhandle, curPos, curSize, curColor));
282 INFO_PRINTF1(_L("Get Histogram Properties Successful"));
286 INFO_PRINTF2(_L("Get Histogram Properties- %d"), error);
290 if(curPos != orgPos || curSize != orgSize || curColor != orgColor)
292 INFO_PRINTF1(_L("Properties dont match"));
297 TRAP(error, hist->DestroyHistogramL(histhandle));
300 INFO_PRINTF1(_L("Destroy Histogram Successful"));
304 INFO_PRINTF2(_L("Destroy Histogram - %d"), error);
307 CleanupStack::PopAndDestroy(hist);
309 CleanupStack::PopAndDestroy(camera);
316 // Test step MM-ECM-ADV-U-022-HP
317 TVerdict RECamHistTest::DoTestStep_22L()
319 TVerdict result = EPass;
320 CCamera* camera = NULL;
322 TInt error = KErrNone;
323 CCamera::CCameraHistogram* hist = NULL;
325 // create a Hist object using NewL
327 MCameraObserver2* observer2 = NULL;
328 INFO_PRINTF1(_L("Create camera using Camera::New2L() and MCameraObserver2"));
330 TRAP(error, camera = CCamera::New2L(*observer2, 0,0));
334 CleanupStack::PushL(camera);
335 INFO_PRINTF1(_L("KErrNone return from CCamera::New2L()"));
336 TRAP(error, hist = CCamera::CCameraHistogram::NewL(*camera));
340 INFO_PRINTF1(_L("CCameraHistogram object was created using NewL"));
344 INFO_PRINTF1(_L("CCameraHistogram object was not created using NewL"));
350 INFO_PRINTF2(_L("Unexpected %d return from CCamera::New2L(): observer 2"), error);
356 CleanupStack::PushL(hist);
358 // get the supported set of values
359 TUint32 suppformats = hist->SupportedHistograms();
361 // the array should not be empty
362 if (suppformats == 0)
366 // Preapare Non-DSA Based Histogram
367 TUint histhandle = 0;
369 TSize orgSize(90,50);
370 TRgb orgColor(100,100,100);
372 TRAP(error, histhandle = hist->PrepareHistogramL(CCamera::CCameraHistogram::ELuminance));
376 INFO_PRINTF1(_L("Non-DSA Histogram Created Successful"));
380 INFO_PRINTF2(_L("Non-DSA Histogram Created- %d"), error);
385 hist->StartHistogramL(histhandle);
388 INFO_PRINTF1(_L("Start Histogram Successful"));
392 INFO_PRINTF2(_L("Start Histogram - %d"), error);
396 // Get a list of active histograms : This has not been implemented and so the count will be 0
397 RArray<TUint> activeHistograms;
398 TRAP(error, hist->GetActiveHistogramsL(activeHistograms));
401 INFO_PRINTF1(_L("Stop Histogram Successful"));
405 INFO_PRINTF2(_L("Stop Histogram - %d"), error);
409 TRAP(error, hist->StopHistogramL(histhandle));
412 INFO_PRINTF1(_L("Stop Histogram Successful"));
416 INFO_PRINTF2(_L("Stop Histogram - %d"), error);
420 TRAP(error, hist->DestroyHistogramL(histhandle));
423 INFO_PRINTF1(_L("Destroy Histogram Successful"));
427 INFO_PRINTF2(_L("Destroy Histogram - %d"), error);
430 CleanupStack::PopAndDestroy(hist);
432 CleanupStack::PopAndDestroy(camera);
440 // RECamHistogramNotificationTest
442 RECamHistogramNotificationTest* RECamHistogramNotificationTest::NewL(TBool aAllocTest)
444 RECamHistogramNotificationTest* self = new (ELeave) RECamHistogramNotificationTest(aAllocTest);
445 CleanupStack::PushL(self);
447 CleanupStack::Pop(self);
451 void RECamHistogramNotificationTest::ConstructL()
453 iOriginalSet.Reset();
457 RECamHistogramNotificationTest::RECamHistogramNotificationTest(TBool /*aAllocTest*/)
459 iTestStepName = _L("MM-ECM-ADV-U-023-HP");
462 TVerdict RECamHistogramNotificationTest::DoTestStepL()
464 TVerdict result = EPass;
465 CCamera* camera = NULL;
467 TInt error = KErrNone;
468 CCamera::CCameraHistogram* hist = NULL;
471 INFO_PRINTF1(_L("Create camera using Camera::New2L() and MCameraObserver2"));
473 TRAP(error, camera = CCamera::New2L(*this,0,0));
477 CleanupStack::PushL(camera);
478 INFO_PRINTF1(_L("KErrNone return from CCamera::New2L()"));
480 TRAP(error, hist = CCamera::CCameraHistogram::NewL(*camera));
483 INFO_PRINTF1(_L("CCameraHistogram object was created using NewL"));
487 INFO_PRINTF1(_L("CCameraHistogram object was not created using NewL"));
493 CleanupStack::PushL(hist);
495 // get the supported set of values
496 TUint32 suppformats = hist->SupportedHistograms();
498 // the array should not be empty
499 if (suppformats == 0)
503 TUint histhandle = 0;
504 TRAP(error, histhandle = hist->PrepareHistogramL(CCamera::CCameraHistogram::ELuminance));
507 iInputEventUid.iUid = KUidECamEventHistogramUidValue;
509 hist->StartHistogramL(histhandle);
512 INFO_PRINTF1(_L("Start Histogram Successful"));
516 INFO_PRINTF2(_L("Start Histogram - %d"), error);
520 CheckNotification(iInputEventUid, result);
522 // Ignore the Data - check the function
523 TRAP(error, hist->HistogramDataL());
526 INFO_PRINTF1(_L("Histogram DataL Successful"));
530 INFO_PRINTF2(_L("Histogram DataL - %d"), error);
534 // Overload of HistogramDataL
535 TRAP(error, hist->HistogramDataL(histhandle));
538 INFO_PRINTF1(_L("Histogram DataL Successful"));
542 INFO_PRINTF2(_L("Histogram DataL - %d"), error);
546 TRAP(error, hist->StopHistogramL(histhandle));
550 INFO_PRINTF1(_L("Stop Histogram Successful"));
554 INFO_PRINTF2(_L("Stop Histogram - %d"), error);
558 TRAP(error, hist->DestroyHistogramL(histhandle));
561 INFO_PRINTF1(_L("Destroy Histogram Successful"));
565 INFO_PRINTF2(_L("Destroy Histogram - %d"), error);
569 CleanupStack::PopAndDestroy(hist);
575 CleanupStack::PopAndDestroy(camera);
579 INFO_PRINTF2(_L("Unexpected %d return from CCamera::New2L(): observer 2"), error);
588 /*------------------------------------------------------
589 Overlay : RECamOvrlayTest
590 *------------------------------------------------------*/
592 RECamOvrlayTest* RECamOvrlayTest::NewL(const TDesC& aTestStep)
594 RECamOvrlayTest* self = new (ELeave) RECamOvrlayTest(aTestStep);
598 RECamOvrlayTest::RECamOvrlayTest(const TDesC& aTestStep)
600 iTestStepName.Copy(aTestStep);
603 TVerdict RECamOvrlayTest::DoTestStepL()
605 if(!iTestStepName.Compare(_L("MM-ECM-ADV-U-030-HP")))
607 return DoTestStep_30L();
609 else if(!iTestStepName.Compare(_L("MM-ECM-ADV-U-031-HP")))
611 return DoTestStep_31L();
616 TVerdict RECamOvrlayTest::DoTestStep_30L()
618 TVerdict verdict = EFail;
619 INFO_PRINTF1(_L("Alloc test"));
628 INFO_PRINTF2(_L("Fail count = %d"), i);
631 __UHEAP_SETFAIL(RHeap::EFailNext, i);
633 TRAP(err, verdict = DoOverlayTestStepL());
635 TAny* testAlloc = User::Alloc(1);
636 TBool heapTestingComplete = (testAlloc == NULL) && (err==KErrNone);
637 User::Free(testAlloc);
642 if ((err != KErrNoMemory ) || heapTestingComplete)
644 INFO_PRINTF4(_L("err = %d, verdict = %d, Fail count = %d"), err, verdict, i);
645 INFO_PRINTF1(_L("Alloc testing completed successfully"));
653 TVerdict RECamOvrlayTest::DoOverlayTestStepL()
655 TVerdict result = EPass;
656 CCamera* camera = NULL;
658 TInt error = KErrNone;
659 CCamera::CCameraOverlay* ovrlay = NULL;
662 MCameraObserver2* observer2 = NULL;
665 INFO_PRINTF1(_L("Create camera using Camera::New2L() and MCameraObserver2"));
667 TRAP(error, camera = CCamera::New2L(*observer2, 0,0));
671 CleanupStack::PushL(camera);
672 INFO_PRINTF1(_L("KErrNone return from CCamera::New2L()"));
673 ovrlay = static_cast<CCamera::CCameraOverlay*> (camera->CustomInterface(KECamOverlayUid));
676 CleanupStack::PushL(ovrlay);
677 INFO_PRINTF1(_L("CCameraOverlay object was created"));
678 CleanupStack::PopAndDestroy(ovrlay);
683 User::Leave(KErrNoMemory);
685 CleanupStack::PopAndDestroy(camera);
689 INFO_PRINTF2(_L("Unexpected %d return from CCamera::New2L(): observer 2"), error);
691 User::Leave(KErrNoMemory);
695 // create overlay object using NewL
697 INFO_PRINTF1(_L("Create camera using Camera::New2L() and MCameraObserver2"));
699 TRAP(error, camera = CCamera::New2L(*observer2, 0,0));
703 CleanupStack::PushL(camera);
704 INFO_PRINTF1(_L("KErrNone return from CCamera::New2L()"));
705 TRAP(error, ovrlay = CCamera::CCameraOverlay::NewL(*camera));
709 CleanupStack::PushL(ovrlay);
710 INFO_PRINTF1(_L("CCameraOverlay object was created using NewL"));
712 CleanupStack::PopAndDestroy(ovrlay);
716 INFO_PRINTF1(_L("CCameraOverlay object was not created using NewL"));
718 User::Leave(KErrNoMemory);
720 CleanupStack::PopAndDestroy(camera);
724 INFO_PRINTF2(_L("Unexpected %d return from CCamera::New2L(): observer 2"), error);
726 User::Leave(KErrNoMemory);
733 TVerdict RECamOvrlayTest::DoTestStep_31L()
735 TVerdict result = EPass;
736 CCamera* camera = NULL;
737 TInt error = KErrNone;
738 CCamera::CCameraOverlay* ovrlay = NULL;
740 // create a Overlay object using NewL
741 MCameraObserver2* observer2 = NULL;
742 INFO_PRINTF1(_L("Create camera using Camera::New2L() and MCameraObserver2"));
745 TRAP(error, camera = CCamera::New2L(*observer2, 0,0));
749 CleanupStack::PushL(camera);
750 INFO_PRINTF1(_L("KErrNone return from CCamera::New2L()"));
751 TRAP(error, ovrlay = CCamera::CCameraOverlay::NewL(*camera));
755 INFO_PRINTF1(_L("CCameraOverlay object was created using NewL"));
759 INFO_PRINTF2(_L("CCameraOverlay object was not created using NewL - %d"), error);
762 CleanupStack::PushL(ovrlay);
765 CCamera::CCameraOverlay::TOverlayParameters parameters;
766 parameters.iCurrentModes = CCamera::CCameraOverlay::EModeStillImage;
767 parameters.iCurrentTypes = CCamera::CCameraOverlay::EPerPixel;
768 parameters.iAlphaValue= 0;
769 parameters.iPosition = TPoint(2,2);
770 parameters.iZOrder = 1;
772 TInt err = RFbsSession::Connect();
775 INFO_PRINTF2(_L("RFbsSession::Connect() failed, err = %d"), err);
776 return EInconclusive;
779 CFbsBitmap* bitmap = new (ELeave) CFbsBitmap;
780 CleanupStack::PushL(bitmap);
784 TRAP(error, ovrhandle = ovrlay->CreateOverlayL(parameters, bitmap));
786 if (error == KErrNone)
788 INFO_PRINTF1(_L("Create overlay was successful"));
792 INFO_PRINTF2(_L("Create overlay - Error - %d"), error);
796 TRAP(error, ovrlay->SetOverlayBitmapL(ovrhandle, bitmap));
797 if (error == KErrNone)
799 INFO_PRINTF1(_L("Set Overlay Bitmap was successful"));
803 INFO_PRINTF2(_L("Set Overlay Bitmap - Error - %d"), error);
807 CFbsBitmap* modBitmap = new (ELeave) CFbsBitmap;
808 User::LeaveIfError(modBitmap->Create(TSize(1000,1000),EGray256));
809 CleanupStack::PushL(modBitmap);
810 TRAP(error, ovrlay->SetModifiableOverlayBitmapL(ovrhandle, modBitmap));
811 if (error == KErrNone)
813 INFO_PRINTF1(_L("Set Modifiable Overlay Bitmap was successful"));
817 INFO_PRINTF2(_L("Set Modifiable Overlay Bitmap - Error - %d"), error);
821 CFbsBitmap* getBitmap = new (ELeave) CFbsBitmap;
822 User::LeaveIfError(getBitmap->Create(TSize(1000,1000),EGray256));
823 CleanupStack::PushL(getBitmap);
824 TRAP(error, ovrlay->GetOverlayBitmapL(ovrhandle, getBitmap));
825 if (error == KErrNone)
827 INFO_PRINTF1(_L("Get Overlay Bitmap was successful"));
831 INFO_PRINTF2(_L("Get Overlay Bitmap - Error - %d"), error);
835 TRAP(error, ovrlay->GetOverlayParametersL(ovrhandle, parameters));
836 if (error == KErrNone)
838 INFO_PRINTF1(_L("Get Overlay Parameters was successful"));
842 INFO_PRINTF2(_L("Get Overlay Parameters - Error - %d"), error);
846 TRAP(error, ovrlay->SetOverlayParametersL(ovrhandle, parameters));
847 if (error == KErrNone)
849 INFO_PRINTF1(_L("Set Overlay Parameters was successful"));
853 INFO_PRINTF2(_L("Set Overlay Parameters - Error - %d"), error);
857 CCamera::CCameraOverlay::TOverlaySupportInfo SuppInfo;
858 TRAP(error, ovrlay->GetOverlaySupport(SuppInfo));
859 if (error == KErrNone)
861 INFO_PRINTF1(_L("Get Overlay support was successful"));
865 INFO_PRINTF2(_L("Get Overlay support - Error - %d"), error);
869 RArray<TUint> overlayHandles;
870 TRAP(error, ovrlay->GetAllOverlaysInZOrderL(overlayHandles));
871 if (error == KErrNone)
873 INFO_PRINTF1(_L("Get All Overlays in Z order was successful"));
877 INFO_PRINTF2(_L("Get All Overlays in Z order - Error - %d"), error);
881 TRAP(error, ovrlay->GetAllOverlaysInZOrderL(CCamera::CCameraOverlay::EModeStillImage,1,overlayHandles));
882 if (error == KErrNone)
884 INFO_PRINTF1(_L("Get 'Mode specific' All Overlays in Z order was successful"));
888 INFO_PRINTF2(_L("Get 'Mode specific' All Overlays in Z order - Error - %d"), error);
893 TRAP(error, ovrlay->SetAllOverlaysInZOrderL(overlayHandles));
894 if (error == KErrNone)
896 INFO_PRINTF1(_L("Set All Overlay in Z order was successful"));
900 INFO_PRINTF2(_L("Set All Overlay in Z order- Error - %d"), error);
904 TRAP(error, ovrlay->SetAllOverlaysInZOrderL(CCamera::CCameraOverlay::EModeStillImage,1,overlayHandles));
905 if (error == KErrNone)
907 INFO_PRINTF1(_L("Set 'Mode specific' All Overlay in Z order was successful"));
911 INFO_PRINTF2(_L("Set 'Mode specific' All Overlay in Z order- Error - %d"), error);
915 overlayHandles.Close();
917 TRAP(error, ovrlay->ReleaseOverlay(ovrhandle));
918 if (error == KErrNone)
920 INFO_PRINTF1(_L("Release Overlay was successful"));
924 INFO_PRINTF2(_L("Release Overlay - Error - %d"), error);
928 CleanupStack::PopAndDestroy(4, ovrlay); //bitmap, ovrlay
930 TRAP(error, ovrlay = CCamera::CCameraOverlay::NewL(*camera));
931 CleanupStack::PushL(ovrlay);
932 bitmap = new (ELeave) CFbsBitmap;
933 CleanupStack::PushL(bitmap);
936 TRAP(error, ovrhandle = ovrlay->CreateOverlayL(parameters, bitmap));
937 TSize originalSize = bitmap->SizeInPixels();
939 INFO_PRINTF1(_L("Test size change through CFbsbitmap"));
940 TSize modifiedSize(640, 480);
941 CFbsBitmap* modifiedBitmap = new (ELeave) CFbsBitmap;
942 User::LeaveIfError(modifiedBitmap->Create(modifiedSize,EColor4K));
943 CleanupStack::PushL(modifiedBitmap);
944 originalSize = modifiedBitmap->SizeInPixels();
945 TRAP(error, ovrlay->SetModifiableOverlayBitmapL(ovrhandle,modifiedBitmap));
947 CFbsBitmap* retrievedBitmap = new (ELeave) CFbsBitmap;
948 User::LeaveIfError(retrievedBitmap->Create(TSize(1000,1000),EGray256));
949 CleanupStack::PushL(retrievedBitmap);
950 TRAP(error, ovrlay->GetOverlayBitmapL(ovrhandle, retrievedBitmap));
952 TSize retrievedSize = retrievedBitmap->SizeInPixels();
954 if(originalSize != retrievedSize)
956 INFO_PRINTF2(_L("Modifying overlay size - Error - %d"), error);
960 CleanupStack::PopAndDestroy(4, ovrlay);
964 INFO_PRINTF2(_L("Unexpected %d return from CCamera::New2L(): observer 2"), error);
968 RFbsSession::Disconnect();
970 CleanupStack::PopAndDestroy(camera);
975 TRAP(error, camera = CCamera::New2L(*observer2, 0,0));
979 CleanupStack::PushL(camera);
980 INFO_PRINTF1(_L("KErrNone return from CCamera::New2L()"));
981 TRAP(error, ovrlay = CCamera::CCameraOverlay::NewL(*camera));
985 INFO_PRINTF1(_L("CCameraOverlay object was created using NewL"));
989 INFO_PRINTF2(_L("CCameraOverlay object was not created using NewL - %d"), error);
992 CleanupStack::PushL(ovrlay);
995 CCamera::CCameraOverlay::TOverlayParameters parameters;
996 parameters.iCurrentModes = CCamera::CCameraOverlay::EModeStillImage;
997 parameters.iCurrentTypes = CCamera::CCameraOverlay::EPerPixel;
998 parameters.iAlphaValue= 0;
1000 parameters.iPosition = TPoint(2,2);
1001 parameters.iZOrder = 1;
1003 CFbsBitmap* bitmap = new (ELeave) CFbsBitmap;
1004 CleanupStack::PushL(bitmap);
1008 TRAP(error, ovrhandle = ovrlay->CreateOverlayL(parameters, bitmap));
1009 if (error == KErrNone)
1011 INFO_PRINTF1(_L("Create overlay was successful"));
1015 INFO_PRINTF2(_L("Create overlay - Error - %d"), error);
1019 TRAP(error, ovrlay->GetOverlayParametersL(ovrhandle, parameters));
1020 if (error == KErrNone)
1022 INFO_PRINTF1(_L("Get Overlay Parameters was successful"));
1026 INFO_PRINTF2(_L("Get Overlay Parameters - Error - %d"), error);
1030 if(parameters.iCurrentModes & CCamera::CCameraOverlay::EModeStillImageContinuous)
1032 INFO_PRINTF1(_L("GetOverlayParametersL was successful"));
1036 INFO_PRINTF1(_L("Get Overlay Parameters unexpected result"));
1040 TRAP(error, ovrlay->SetOverlayParametersL(ovrhandle, parameters));
1041 if (error == KErrNone)
1043 INFO_PRINTF1(_L("Set Overlay Parameters was successful"));
1047 INFO_PRINTF2(_L("Set Overlay Parameters - Error - %d"), error);
1051 CCamera::CCameraOverlay::TOverlaySupportInfo SuppInfo;
1052 TRAP(error, ovrlay->GetOverlaySupport(SuppInfo));
1053 if (error == KErrNone)
1055 INFO_PRINTF1(_L("Get Overlay support was successful"));
1059 INFO_PRINTF2(_L("Get Overlay support - Error - %d"), error);
1063 if(SuppInfo.iSupportedModes & CCamera::CCameraOverlay::EModeStillImageContinuous)
1065 INFO_PRINTF1(_L("GetOverlaySupport values were successful"));
1069 INFO_PRINTF1(_L("GetOverlaySupport values unexpected result"));
1073 //conditional coverage for SetOverlay Parameter
1074 parameters.iCurrentModes = CCamera::CCameraOverlay::EModeViewfinder;
1075 TRAP(error, ovrlay->SetOverlayParametersL(ovrhandle, parameters));
1076 if (error == KErrNone)
1078 INFO_PRINTF1(_L("Set Overlay Parameters was successful"));
1082 INFO_PRINTF2(_L("Set Overlay Parameters - Error - %d"), error);
1086 parameters.iCurrentModes = CCamera::CCameraOverlay::EModeNone;
1087 TRAP(error, ovrlay->GetOverlayParametersL(ovrhandle, parameters));
1088 if (error == KErrNone)
1090 INFO_PRINTF1(_L("Get Overlay Parameters was successful"));
1094 INFO_PRINTF2(_L("Get Overlay Parameters - Error - %d"), error);
1098 if(parameters.iCurrentModes & CCamera::CCameraOverlay::EModeClientViewfinder)
1100 INFO_PRINTF1(_L("GetOverlayParametersL was successful"));
1104 INFO_PRINTF1(_L("Get Overlay Parameters unexpected result"));
1108 TRAP(error, ovrlay->ReleaseOverlay(ovrhandle));
1109 if (error == KErrNone)
1111 INFO_PRINTF1(_L("Release Overlay was successful"));
1115 INFO_PRINTF2(_L("Release Overlay - Error - %d"), error);
1119 CleanupStack::PopAndDestroy(2, ovrlay); //bitmap, ovrlay
1123 INFO_PRINTF2(_L("Unexpected %d return from CCamera::New2L(): observer 2"), error);
1126 CleanupStack::PopAndDestroy(camera);
1133 /*------------------------------------------------------
1134 Snapshot : RECamSnapTest
1135 *------------------------------------------------------*/
1137 RECamSnapTest* RECamSnapTest::NewL(const TDesC& aTestStep)
1139 RECamSnapTest* self = new (ELeave) RECamSnapTest(aTestStep);
1143 RECamSnapTest::RECamSnapTest(const TDesC& aTestStep)
1145 iTestStepName.Copy(aTestStep);
1148 TVerdict RECamSnapTest::DoTestStepL()
1150 if(!iTestStepName.Compare(_L("MM-ECM-ADV-U-040-HP")))
1152 return DoTestStep_40L();
1154 else if(!iTestStepName.Compare(_L("MM-ECM-ADV-U-041-HP")))
1156 return DoTestStep_41L();
1158 else if(!iTestStepName.Compare(_L("MM-ECM-ADV-U-042-HP")))
1160 return DoTestStep_42L();
1165 TVerdict RECamSnapTest::DoTestStep_40L()
1167 TVerdict verdict = EFail;
1168 INFO_PRINTF1(_L("Alloc test"));
1177 INFO_PRINTF2(_L("Fail count = %d"), i);
1180 __UHEAP_SETFAIL(RHeap::EFailNext, i);
1182 TRAP(err, verdict = DoSnapTestStepL());
1184 TAny* testAlloc = User::Alloc(1);
1185 TBool heapTestingComplete = (testAlloc == NULL) && (err==KErrNone);
1186 User::Free(testAlloc);
1191 if ((err != KErrNoMemory ) || heapTestingComplete)
1193 INFO_PRINTF4(_L("err = %d, verdict = %d, Fail count = %d"), err, verdict, i);
1194 INFO_PRINTF1(_L("Alloc testing completed successfully"));
1202 TVerdict RECamSnapTest::DoSnapTestStepL()
1204 TVerdict result = EPass;
1205 CCamera* camera = NULL;
1207 TInt error = KErrNone;
1208 CCamera::CCameraSnapshot* snap = NULL;
1211 MCameraObserver2* observer2 = NULL;
1214 INFO_PRINTF1(_L("Create camera using Camera::New2L() and MCameraObserver2"));
1216 TRAP(error, camera = CCamera::New2L(*observer2, 0,0));
1218 if (error==KErrNone)
1220 CleanupStack::PushL(camera);
1221 INFO_PRINTF1(_L("KErrNone return from CCamera::New2L()"));
1222 snap = static_cast<CCamera::CCameraSnapshot*> (camera->CustomInterface(KECamSnapshotUid));
1225 CleanupStack::PushL(snap);
1226 INFO_PRINTF1(_L("CCameraSnaphot object was created"));
1227 CleanupStack::PopAndDestroy(snap);
1232 User::Leave(KErrNoMemory);
1234 CleanupStack::PopAndDestroy(camera);
1238 INFO_PRINTF2(_L("Unexpected %d return from CCamera::New2L(): observer 2"), error);
1240 User::Leave(KErrNoMemory);
1244 // create a Snapshot object using NewL
1246 INFO_PRINTF1(_L("Create camera using Camera::New2L() and MCameraObserver2"));
1248 TRAP(error, camera = CCamera::New2L(*observer2, 0,0));
1250 if (error==KErrNone)
1252 CleanupStack::PushL(camera);
1253 INFO_PRINTF1(_L("KErrNone return from CCamera::New2L()"));
1254 TRAP(error, snap = CCamera::CCameraSnapshot::NewL(*camera));
1256 if (error==KErrNone)
1258 CleanupStack::PushL(snap);
1259 INFO_PRINTF1(_L("CCameraSnapshot object was created using NewL"));
1260 CleanupStack::PopAndDestroy(snap);
1264 INFO_PRINTF1(_L("CCameraSnapshot object was not created using NewL"));
1266 User::Leave(KErrNoMemory);
1268 CleanupStack::PopAndDestroy(camera);
1272 INFO_PRINTF2(_L("Unexpected %d return from CCamera::New2L(): observer 2"), error);
1274 User::Leave(KErrNoMemory);
1281 TVerdict RECamSnapTest::DoTestStep_41L()
1283 TVerdict result = EPass;
1284 CCamera* camera = NULL;
1286 TInt error = KErrNone;
1287 CCamera::CCameraSnapshot* snap = NULL;
1289 // create a snapshot object using NewL
1291 MCameraObserver2* observer2 = NULL;
1292 INFO_PRINTF1(_L("Create camera using Camera::New2L() and MCameraObserver2"));
1294 TRAP(error, camera = CCamera::New2L(*observer2, 0,0));
1296 if (error==KErrNone)
1298 CleanupStack::PushL(camera);
1299 INFO_PRINTF1(_L("KErrNone return from CCamera::New2L()"));
1300 TRAP(error, snap = CCamera::CCameraSnapshot::NewL(*camera));
1302 if (error==KErrNone)
1304 INFO_PRINTF1(_L("CCameraSnapshot object was created using NewL"));
1308 INFO_PRINTF1(_L("CCameraSnapshot object was not created using NewL"));
1314 INFO_PRINTF2(_L("Unexpected %d return from CCamera::New2L(): observer 2"), error);
1320 CleanupStack::PushL(snap);
1322 // get the supported formats
1323 TUint32 suppformats = snap->SupportedFormats();
1325 CCamera::TFormat format = CCamera::EFormatMonochrome;
1326 TSize orgSize(90,50);
1327 TRgb orgColor(100,100,100);
1328 TBool AspectRatio = ETrue;
1331 TRAP(error, snap->PrepareSnapshotL(format, orgPos, orgSize, orgColor,AspectRatio));
1335 INFO_PRINTF1(_L("Snapshot Creation Successful"));
1339 INFO_PRINTF2(_L("Snapshot Creation Failed - %d"), error);
1343 TBool isActive = EFalse;
1344 TRAP(error, isActive = snap->IsSnapshotActive());
1347 INFO_PRINTF1(_L("Is Snapshot Active Successful"));
1351 INFO_PRINTF2(_L("Is Snapshot Active Failed - %d"), error);
1357 INFO_PRINTF1(_L("Snapshot must not be active"));
1362 TRAP(error, snap->StartSnapshot());
1365 INFO_PRINTF1(_L("Start Snapshot Successful"));
1369 INFO_PRINTF2(_L("Start Snapshot Failed - %d"), error);
1373 TRAP(error, isActive = snap->IsSnapshotActive());
1376 INFO_PRINTF1(_L("Is Snapshot Active Successful"));
1380 INFO_PRINTF2(_L("Is Snapshot Active Failed - %d"), error);
1386 INFO_PRINTF1(_L("Snapshot must not be active"));
1390 TRAP(error, snap->StopSnapshot());
1393 INFO_PRINTF1(_L("Stop Snapshot Successful"));
1397 INFO_PRINTF2(_L("Stop Snapshot Failed - %d"), error);
1401 // Test new snapshot methods. They shall leave with KErrNotSupported
1402 INFO_PRINTF1(_L("Check New Snapshot methods leave with KErrNotSupported"));
1403 CCamera::CCameraSnapshot::TSnapshotParameters snapshotParameters;
1404 TRAP(error, snap->PrepareSnapshotL(snapshotParameters));
1405 if(error != KErrNotSupported)
1407 INFO_PRINTF1(_L("PrepareSnapshotL unexpected result!"));
1411 TRAP(error, snap->GetSnapshotParametersL(snapshotParameters));
1412 if(error != KErrNotSupported)
1414 INFO_PRINTF1(_L("GetSnapshotParametersL unexpected result!"));
1418 TRAP(error, snap->SetSnapshotParametersL(snapshotParameters));
1419 if(error != KErrNotSupported)
1421 INFO_PRINTF1(_L("SetSnapshotParametersL unexpected result!"));
1425 CCamera::CCameraSnapshot::TSnapshotState snapshotState = CCamera::CCameraSnapshot::ESnapshotInactive;
1426 TRAP(error, snap->GetSnapshotStatusL(snapshotState));
1427 if(error != KErrNotSupported)
1429 INFO_PRINTF1(_L("GetSnapshotStatusL unexpected result!"));
1433 CCamera::CCameraSnapshot::TSnapshotVideoFrames snapshotVideoFrames = CCamera::CCameraSnapshot::ESnapshotVideoFirstFrame;
1434 TRAP(error, snap->SelectSnapshotVideoFramesL(snapshotVideoFrames));
1435 if(error != KErrNotSupported)
1437 INFO_PRINTF1(_L("SelectSnapshotVideoFramesL unexpected result!"));
1441 TRAP(error, snap->EnableSnapshotL());
1442 if(error != KErrNotSupported)
1444 INFO_PRINTF1(_L("EnableSnapshotL unexpected result!"));
1448 TRAP(error, snap->DisableSnapshotL());
1449 if(error != KErrNotSupported)
1451 INFO_PRINTF1(_L("DisableSnapshotL unexpected result!"));
1456 CleanupStack::PopAndDestroy(snap);
1458 CleanupStack::PopAndDestroy(camera);
1465 TVerdict RECamSnapTest::DoTestStep_42L()
1467 TVerdict result = EPass;
1468 CCamera* camera = NULL;
1470 TInt error = KErrNone;
1471 CCamera::CCameraSnapshot* snap = NULL;
1473 // create a Hist object using NewL
1475 MCameraObserver2* observer2 = NULL;
1476 INFO_PRINTF1(_L("Create camera using Camera::New2L() and MCameraObserver2"));
1478 TRAP(error, camera = CCamera::New2L(*observer2, 0,0));
1480 if (error==KErrNone)
1482 CleanupStack::PushL(camera);
1483 INFO_PRINTF1(_L("KErrNone return from CCamera::New2L()"));
1484 TRAP(error, snap = CCamera::CCameraSnapshot::NewL(*camera));
1486 if (error==KErrNone)
1488 INFO_PRINTF1(_L("CCameraSnapshot object was created using NewL"));
1492 INFO_PRINTF1(_L("CCameraSnapshot object was not created using NewL"));
1498 INFO_PRINTF2(_L("Unexpected %d return from CCamera::New2L(): observer 2"), error);
1504 CleanupStack::PushL(snap);
1506 // get the supported formats
1507 TUint32 suppformats = snap->SupportedFormats();
1509 CCamera::TFormat format = CCamera::EFormatMonochrome;
1510 TSize orgSize(90,50);
1511 TRgb orgColor(100,100,100);
1512 TBool AspectRatio = ETrue;
1515 // Test the other overload of PrepareSnapshotL
1516 TRAP(error, snap->PrepareSnapshotL(format, orgSize, AspectRatio));
1520 INFO_PRINTF1(_L("Snapshot Creation Successful"));
1524 INFO_PRINTF2(_L("Snapshot Creation Failed - %d"), error);
1528 // Set Background color Snapshot
1529 TRAP(error, snap->SetBgColorL(orgColor));
1532 INFO_PRINTF1(_L("Set Background Color Successful"));
1536 INFO_PRINTF2(_L("Set Background Color Failed - %d"), error);
1541 TRAP(error, snap->SetPositionL(orgPos));
1544 INFO_PRINTF1(_L("Set Snapshot Position Successful"));
1548 INFO_PRINTF2(_L("Set Snapshot Position Failed - %d"), error);
1553 TRAP(error, snap->StartSnapshot());
1556 INFO_PRINTF1(_L("Start Snapshot Successful"));
1560 INFO_PRINTF2(_L("Start Snapshot Failed - %d"), error);
1564 // Is shapshot active
1565 TBool isActive = EFalse;
1566 TRAP(error, isActive = snap->IsSnapshotActive());
1569 INFO_PRINTF1(_L("Is Snapshot Active Successful"));
1573 INFO_PRINTF2(_L("Is Snapshot Active Failed - %d"), error);
1579 INFO_PRINTF1(_L("Snapshot must not be active"));
1584 TRAP(error, snap->StopSnapshot());
1587 INFO_PRINTF1(_L("Stop Snapshot Successful"));
1591 INFO_PRINTF2(_L("Stop Snapshot Failed - %d"), error);
1595 CleanupStack::PopAndDestroy(snap);
1597 CleanupStack::PopAndDestroy(camera);
1604 // RECamSnapNotificationTest
1606 RECamSnapNotificationTest* RECamSnapNotificationTest::NewL(TBool aAllocTest)
1608 RECamSnapNotificationTest* self = new (ELeave) RECamSnapNotificationTest(aAllocTest);
1609 CleanupStack::PushL(self);
1611 CleanupStack::Pop(self);
1615 void RECamSnapNotificationTest::ConstructL()
1617 iOriginalSet.Reset();
1621 RECamSnapNotificationTest::RECamSnapNotificationTest(TBool /*aAllocTest*/)
1623 iTestStepName = _L("MM-ECM-ADV-U-043-HP");
1626 TVerdict RECamSnapNotificationTest::DoTestStepL()
1628 TVerdict result = EPass;
1629 CCamera* camera = NULL;
1631 TInt error = KErrNone;
1632 CCamera::CCameraSnapshot* snap = NULL;
1635 INFO_PRINTF1(_L("Create camera using Camera::New2L() and MCameraObserver2"));
1637 TRAP(error, camera = CCamera::New2L(*this,0,0));
1639 if (error==KErrNone)
1641 CleanupStack::PushL(camera);
1642 INFO_PRINTF1(_L("KErrNone return from CCamera::New2L()"));
1644 TRAP(error, snap = CCamera::CCameraSnapshot::NewL(*camera));
1645 if (error==KErrNone)
1647 INFO_PRINTF1(_L("CCameraSnapshot object was created using NewL"));
1651 INFO_PRINTF1(_L("CCameraSnapshot object was not created using NewL"));
1657 CleanupStack::PushL(snap);
1659 // get the supported set of values
1660 TUint32 suppformats = snap->SupportedFormats();
1662 CCamera::TFormat format = CCamera::EFormatMonochrome;
1663 TSize orgSize(90,50);
1664 TRgb orgColor(100,100,100);
1666 TBool AspectRatio = ETrue;
1668 TRAP(error, snap->PrepareSnapshotL(format, orgPos, orgSize, orgColor,AspectRatio));
1672 INFO_PRINTF1(_L("Snapshot Creation Successful"));
1676 INFO_PRINTF2(_L("Snapshot Creation Failed - %d"), error);
1681 iInputEventUid.iUid = KUidECamEventSnapshotUidValue;
1684 TRAP(error, snap->StartSnapshot());
1687 INFO_PRINTF1(_L("Start Snapshot Successful"));
1691 INFO_PRINTF2(_L("Start Snapshot Failed - %d"), error);
1695 CheckNotification(iInputEventUid, result);
1697 RArray<TInt> FrameIndexOrder;
1700 TRAP(error, snap->SnapshotDataL(FrameIndexOrder));
1703 INFO_PRINTF1(_L("Snapshot DataL Successful"));
1707 INFO_PRINTF2(_L("Snapshot DataL Failed - %d"), error);
1710 FrameIndexOrder.Close();
1712 TBool isActive = EFalse;
1714 TRAP(error, isActive = snap->IsSnapshotActive());
1717 INFO_PRINTF1(_L("Is Snapshot Active Successful"));
1721 INFO_PRINTF2(_L("Is Snapshot Active Failed - %d"), error);
1727 INFO_PRINTF1(_L("Snapshot must not be active"));
1731 TRAP(error, snap->StopSnapshot());
1734 INFO_PRINTF1(_L("Stop Snapshot Successful"));
1738 INFO_PRINTF2(_L("Stop Snapshot Failed - %d"), error);
1742 CleanupStack::PopAndDestroy(snap);
1748 CleanupStack::PopAndDestroy(camera);
1752 INFO_PRINTF2(_L("Unexpected %d return from CCamera::New2L(): observer 2"), error);