os/mm/imagingandcamerafws/cameraunittest/src/ECamInfoTest.cpp
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/mm/imagingandcamerafws/cameraunittest/src/ECamInfoTest.cpp	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,103 @@
     1.4 +
     1.5 +// ECamInfoTest.cpp
     1.6 +
     1.7 +// Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies).
     1.8 +// All rights reserved.
     1.9 +// This component and the accompanying materials are made available
    1.10 +// under the terms of "Eclipse Public License v1.0"
    1.11 +// which accompanies this distribution, and is available
    1.12 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.13 +//
    1.14 +// Initial Contributors:
    1.15 +// Nokia Corporation - initial contribution.
    1.16 +//
    1.17 +// Contributors:
    1.18 +//
    1.19 +// Description:
    1.20 +//
    1.21 +
    1.22 +#include "ECamInfoTest.h"
    1.23 +#include <ecam.h>
    1.24 +#include <ecam/ecamplugin.h>
    1.25 +#include <ecam/ecaminfoplugin.h>
    1.26 +#include <ecamuids.hrh>
    1.27 +#include <ecom/ecomresolverparams.h>
    1.28 +
    1.29 +#include <mm/mmpluginutils.h>
    1.30 +
    1.31 +//
    1.32 +// RECamInfoTest
    1.33 +//
    1.34 +
    1.35 +RECamInfoTest* RECamInfoTest::NewL(TBool aAllocTest)
    1.36 +	{
    1.37 +	RECamInfoTest* self = new (ELeave) RECamInfoTest(aAllocTest);
    1.38 +	return self;	
    1.39 +	}
    1.40 +	
    1.41 +RECamInfoTest::RECamInfoTest(TBool /*aAllocTest*/)
    1.42 +	{
    1.43 +	iTestStepName = _L("MM-ECM-API-U-001");
    1.44 +	}
    1.45 +	
    1.46 +TVerdict RECamInfoTest::DoTestStepL()
    1.47 +	{
    1.48 +	INFO_PRINTF1(_L("Check CCamera::CamerasAvailable"));
    1.49 +	__MM_HEAP_MARK;
    1.50 +	TInt numCameras = CCamera::CamerasAvailable();
    1.51 +	__MM_HEAP_MARKEND;
    1.52 +	if (numCameras!=0)
    1.53 +		{
    1.54 +		INFO_PRINTF2(_L("Error - %d returned"), numCameras);
    1.55 +		return EFail;
    1.56 +		}
    1.57 +	return EPass;
    1.58 +	}
    1.59 +	
    1.60 +//
    1.61 +// RECamInnerInfoTest
    1.62 +//
    1.63 +
    1.64 +RECamInnerInfoTest* RECamInnerInfoTest::NewL(TBool aAllocTest)
    1.65 +	{
    1.66 +	RECamInnerInfoTest* self = new (ELeave) RECamInnerInfoTest(aAllocTest);
    1.67 +	return self;	
    1.68 +	}
    1.69 +	
    1.70 +RECamInnerInfoTest::RECamInnerInfoTest(TBool /*aAllocTest*/)
    1.71 +	{
    1.72 +	iTestStepName = _L("MM-ECM-API-U-002");
    1.73 +	}
    1.74 +	
    1.75 +TVerdict RECamInnerInfoTest::DoTestStepL()
    1.76 +	{
    1.77 +	TVerdict verdict = EPass;
    1.78 +	INFO_PRINTF1(_L("Check CCameraInfoPlugin"));
    1.79 +	__MM_HEAP_MARK;
    1.80 +
    1.81 +	TUid interfaceUid = {KUidOnboardCameraInfoPlugin};
    1.82 +	TUid destructorKey = {0};
    1.83 +
    1.84 +	CCameraInfoPlugin* info = NULL;
    1.85 +
    1.86 +	TRAPD(error, info = static_cast<CCameraInfoPlugin*>
    1.87 +			(MmPluginUtils::CreateImplementationL(interfaceUid, destructorKey, KECamPluginMatchString, KRomOnlyResolverUid)));
    1.88 +
    1.89 +	if (error!=KErrNone)
    1.90 +		{
    1.91 +		INFO_PRINTF2(_L("Could not open InfoPlugin - error %d"), error);
    1.92 +		return EFail;
    1.93 +		}
    1.94 +
    1.95 +	TInt numCameras = info->CamerasAvailable();
    1.96 +	delete info;
    1.97 +	REComSession::DestroyedImplementation(destructorKey);
    1.98 +	REComSession::FinalClose();
    1.99 +	__MM_HEAP_MARKEND;
   1.100 +	if (numCameras!=0)
   1.101 +		{
   1.102 +		INFO_PRINTF2(_L("Error - %d returned"), numCameras);
   1.103 +		verdict = EFail;
   1.104 +		}
   1.105 +	return verdict;
   1.106 +	}