Update contrib.
4 // Copyright (c) 2004-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 "ECamInfoTest.h"
21 #include <ecam/ecamplugin.h>
22 #include <ecam/ecaminfoplugin.h>
23 #include <ecamuids.hrh>
24 #include <ecom/ecomresolverparams.h>
26 #include <mm/mmpluginutils.h>
32 RECamInfoTest* RECamInfoTest::NewL(TBool aAllocTest)
34 RECamInfoTest* self = new (ELeave) RECamInfoTest(aAllocTest);
38 RECamInfoTest::RECamInfoTest(TBool /*aAllocTest*/)
40 iTestStepName = _L("MM-ECM-API-U-001");
43 TVerdict RECamInfoTest::DoTestStepL()
45 INFO_PRINTF1(_L("Check CCamera::CamerasAvailable"));
47 TInt numCameras = CCamera::CamerasAvailable();
51 INFO_PRINTF2(_L("Error - %d returned"), numCameras);
61 RECamInnerInfoTest* RECamInnerInfoTest::NewL(TBool aAllocTest)
63 RECamInnerInfoTest* self = new (ELeave) RECamInnerInfoTest(aAllocTest);
67 RECamInnerInfoTest::RECamInnerInfoTest(TBool /*aAllocTest*/)
69 iTestStepName = _L("MM-ECM-API-U-002");
72 TVerdict RECamInnerInfoTest::DoTestStepL()
74 TVerdict verdict = EPass;
75 INFO_PRINTF1(_L("Check CCameraInfoPlugin"));
78 TUid interfaceUid = {KUidOnboardCameraInfoPlugin};
79 TUid destructorKey = {0};
81 CCameraInfoPlugin* info = NULL;
83 TRAPD(error, info = static_cast<CCameraInfoPlugin*>
84 (MmPluginUtils::CreateImplementationL(interfaceUid, destructorKey, KECamPluginMatchString, KRomOnlyResolverUid)));
88 INFO_PRINTF2(_L("Could not open InfoPlugin - error %d"), error);
92 TInt numCameras = info->CamerasAvailable();
94 REComSession::DestroyedImplementation(destructorKey);
95 REComSession::FinalClose();
99 INFO_PRINTF2(_L("Error - %d returned"), numCameras);