os/mm/imagingandcamerafws/cameraunittest/src/ecamreservetest.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 
     2 // ecamreservetest.cpp
     3 
     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".
    10 //
    11 // Initial Contributors:
    12 // Nokia Corporation - initial contribution.
    13 //
    14 // Contributors:
    15 //
    16 // Description:
    17 //
    18 
    19 #include "ecamreservetest.h"
    20 #include <ecam.h>
    21 #include <ecam/ecamplugin.h>
    22 #include <ecamuids.hrh>
    23 
    24 #include <ecom/ecomresolverparams.h>
    25 
    26 #include <mm/mmpluginutils.h>
    27 #ifdef SYMBIAN_ENABLE_SPLIT_HEADERS
    28 #include <ecamconst.h>
    29 #endif
    30 
    31 //max. no. of camera slots =8
    32 static const TInt KECamUnitTestMaxCameraIndex = 8;
    33 
    34 //
    35 // RECamReserveTest
    36 //
    37 
    38 RECamReserveTest* RECamReserveTest::NewL(TBool aAllocTest)
    39 	{
    40 	RECamReserveTest* self = new (ELeave) RECamReserveTest(aAllocTest);
    41 	return self;	
    42 	}
    43 	
    44 RECamReserveTest::RECamReserveTest(TBool /*aAllocTest*/)
    45 	{
    46 	iTestStepName = _L("MM-ECM-API-U-013");
    47 	}
    48 	
    49 TVerdict RECamReserveTest::DoTestStepL()
    50 	{
    51 	TVerdict result = EPass;
    52 	
    53 	INFO_PRINTF1(_L("Checking Reserve Subscription"));
    54 	__MM_HEAP_MARK;
    55 	
    56 	for(TInt index=0; index<(KECamUnitTestMaxCameraIndex+1); index++)
    57 		{
    58 		MReserveObserver* reserveObserver=NULL;
    59 		CCameraStatusWatch* cameraStatusWatch = NULL;
    60 
    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);
    66 
    67 		INFO_PRINTF1(_L("SubscribeReserveInfoL and hence create CCameraStatusWatch object"));
    68 		TRAPD(err, TReservedInfo::SubscribeReserveInfoL(*reserveObserver, index, cameraStatusWatch));
    69 		if(index == KECamUnitTestMaxCameraIndex)
    70 			{
    71 			if(err != KErrArgument)
    72 				{
    73 				INFO_PRINTF2(_L("Checking Reserve Subscription: Error %d is unexpected!"), err);
    74 				result = EFail;
    75 				}
    76 			}
    77 		else
    78 			{
    79 			if(err != KErrNone)
    80 				{
    81 				INFO_PRINTF2(_L("Checking Reserve Subscription: Error %d is unexpected!"), err);
    82 				result = EFail;
    83 				}	
    84 			}
    85 	
    86 		INFO_PRINTF1(_L("destroy the CCameraStatusWatch object"));
    87 		delete cameraStatusWatch;
    88 
    89 		INFO_PRINTF1(_L("destroy the activeScheduler"));
    90 		CleanupStack::PopAndDestroy(activeScheduler);
    91 		}
    92 		
    93 	__MM_HEAP_MARKEND;
    94 	
    95 	return result;
    96 	}