diff -r 000000000000 -r bde4ae8d615e os/mm/imagingandcamerafws/cameraunittest/src/ECamInfoTest.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/os/mm/imagingandcamerafws/cameraunittest/src/ECamInfoTest.cpp Fri Jun 15 03:10:57 2012 +0200 @@ -0,0 +1,103 @@ + +// ECamInfoTest.cpp + +// Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies). +// All rights reserved. +// This component and the accompanying materials are made available +// under the terms of "Eclipse Public License v1.0" +// which accompanies this distribution, and is available +// at the URL "http://www.eclipse.org/legal/epl-v10.html". +// +// Initial Contributors: +// Nokia Corporation - initial contribution. +// +// Contributors: +// +// Description: +// + +#include "ECamInfoTest.h" +#include +#include +#include +#include +#include + +#include + +// +// RECamInfoTest +// + +RECamInfoTest* RECamInfoTest::NewL(TBool aAllocTest) + { + RECamInfoTest* self = new (ELeave) RECamInfoTest(aAllocTest); + return self; + } + +RECamInfoTest::RECamInfoTest(TBool /*aAllocTest*/) + { + iTestStepName = _L("MM-ECM-API-U-001"); + } + +TVerdict RECamInfoTest::DoTestStepL() + { + INFO_PRINTF1(_L("Check CCamera::CamerasAvailable")); + __MM_HEAP_MARK; + TInt numCameras = CCamera::CamerasAvailable(); + __MM_HEAP_MARKEND; + if (numCameras!=0) + { + INFO_PRINTF2(_L("Error - %d returned"), numCameras); + return EFail; + } + return EPass; + } + +// +// RECamInnerInfoTest +// + +RECamInnerInfoTest* RECamInnerInfoTest::NewL(TBool aAllocTest) + { + RECamInnerInfoTest* self = new (ELeave) RECamInnerInfoTest(aAllocTest); + return self; + } + +RECamInnerInfoTest::RECamInnerInfoTest(TBool /*aAllocTest*/) + { + iTestStepName = _L("MM-ECM-API-U-002"); + } + +TVerdict RECamInnerInfoTest::DoTestStepL() + { + TVerdict verdict = EPass; + INFO_PRINTF1(_L("Check CCameraInfoPlugin")); + __MM_HEAP_MARK; + + TUid interfaceUid = {KUidOnboardCameraInfoPlugin}; + TUid destructorKey = {0}; + + CCameraInfoPlugin* info = NULL; + + TRAPD(error, info = static_cast + (MmPluginUtils::CreateImplementationL(interfaceUid, destructorKey, KECamPluginMatchString, KRomOnlyResolverUid))); + + if (error!=KErrNone) + { + INFO_PRINTF2(_L("Could not open InfoPlugin - error %d"), error); + return EFail; + } + + TInt numCameras = info->CamerasAvailable(); + delete info; + REComSession::DestroyedImplementation(destructorKey); + REComSession::FinalClose(); + __MM_HEAP_MARKEND; + if (numCameras!=0) + { + INFO_PRINTF2(_L("Error - %d returned"), numCameras); + verdict = EFail; + } + return verdict; + }