Update contrib.
4 // Copyright (c) 2007-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.
19 #include "ecamreservetest.h"
21 #include <ecam/ecamplugin.h>
22 #include <ecamuids.hrh>
24 #include <ecom/ecomresolverparams.h>
26 #include <mm/mmpluginutils.h>
27 #ifdef SYMBIAN_ENABLE_SPLIT_HEADERS
28 #include <ecamconst.h>
31 //max. no. of camera slots =8
32 static const TInt KECamUnitTestMaxCameraIndex = 8;
38 RECamReserveTest* RECamReserveTest::NewL(TBool aAllocTest)
40 RECamReserveTest* self = new (ELeave) RECamReserveTest(aAllocTest);
44 RECamReserveTest::RECamReserveTest(TBool /*aAllocTest*/)
46 iTestStepName = _L("MM-ECM-API-U-013");
49 TVerdict RECamReserveTest::DoTestStepL()
51 TVerdict result = EPass;
53 INFO_PRINTF1(_L("Checking Reserve Subscription"));
56 for(TInt index=0; index<(KECamUnitTestMaxCameraIndex+1); index++)
58 MReserveObserver* reserveObserver=NULL;
59 CCameraStatusWatch* cameraStatusWatch = NULL;
61 // create and install the active scheduler we need
62 INFO_PRINTF1(_L("Create and install active Scheduler"));
63 CActiveScheduler* activeScheduler = new(ELeave) CActiveScheduler;
64 CleanupStack::PushL(activeScheduler);
65 CActiveScheduler::Install(activeScheduler);
67 INFO_PRINTF1(_L("SubscribeReserveInfoL and hence create CCameraStatusWatch object"));
68 TRAPD(err, TReservedInfo::SubscribeReserveInfoL(*reserveObserver, index, cameraStatusWatch));
69 if(index == KECamUnitTestMaxCameraIndex)
71 if(err != KErrArgument)
73 INFO_PRINTF2(_L("Checking Reserve Subscription: Error %d is unexpected!"), err);
81 INFO_PRINTF2(_L("Checking Reserve Subscription: Error %d is unexpected!"), err);
86 INFO_PRINTF1(_L("destroy the CCameraStatusWatch object"));
87 delete cameraStatusWatch;
89 INFO_PRINTF1(_L("destroy the activeScheduler"));
90 CleanupStack::PopAndDestroy(activeScheduler);