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.
21 #include <ecam/ecamplugin.h>
22 #include <ecamuids.hrh>
24 #include <ecom/ecomresolverparams.h>
26 #include <mm/mmpluginutils.h>
32 RECamTest* RECamTest::NewL(TBool aAllocTest)
34 RECamTest* self = new (ELeave) RECamTest(aAllocTest);
38 RECamTest::RECamTest(TBool /*aAllocTest*/)
40 iTestStepName = _L("MM-ECM-API-U-011");
43 TVerdict RECamTest::DoTestStepL()
45 TVerdict result = EPass;
46 CCamera* camera = NULL;
47 MCameraObserver* observer = NULL; // should not be used, so pass silly value. TODO make this an MCameraObserver, or arrange would not KernExec3 on real plugin
48 MCameraObserver2* observer2 = NULL; // TODO ditto
49 TInt error = KErrNone;
51 INFO_PRINTF1(_L("Check Opening CCam gives KErrNotSupported"));
53 INFO_PRINTF1(_L("Checking basic CCamera::NewL()"));
55 TRAP(error, camera = CCamera::NewL(*observer, 0));
58 INFO_PRINTF1(_L("Unexpected KErrNone return from CCamera::NewL()"));
62 else if (error!=KErrNotSupported)
64 INFO_PRINTF2(_L("Unexpected %d return from CCamera::NewL()"), error);
69 INFO_PRINTF1(_L("Checking basic CCamera::NewDuplicateL()"));
71 TRAP(error, camera = CCamera::NewDuplicateL(*observer, 0));
74 INFO_PRINTF1(_L("Unexpected KErrNone return from CCamera::NewDuplicateL()"));
78 else if (error!=KErrNotSupported)
80 INFO_PRINTF2(_L("Unexpected %d return from CCamera::NewDuplicateL()"), error);
85 INFO_PRINTF1(_L("Checking additional \"ChunkAPI\" factory functions"));
86 INFO_PRINTF1(_L("Checking CCamera::NewL()"));
88 TRAP(error, camera = CCamera::NewL(*observer2, 0, 0));
91 INFO_PRINTF1(_L("Unexpected KErrNone return from CCamera::NewL()"));
95 else if (error!=KErrNotSupported)
97 INFO_PRINTF2(_L("Unexpected %d return from CCamera::NewL()"), error);
102 INFO_PRINTF1(_L("Checking CCamera::NewDuplicateL()"));
104 TRAP(error, camera = CCamera::NewDuplicateL(*observer2, 0));
107 INFO_PRINTF1(_L("Unexpected KErrNone return from CCamera::NewDuplicateL()"));
111 else if (error!=KErrNotSupported)
113 INFO_PRINTF2(_L("Unexpected %d return from CCamera::NewDuplicateL()"), error);
118 INFO_PRINTF1(_L("Checking CCamera::New2L()"));
120 TRAP(error, camera = CCamera::New2L(*observer2, 0, 0));
123 INFO_PRINTF1(_L("Unexpected KErrNone return from CCamera::New2L()"));
127 else if (error!=KErrNotSupported)
129 INFO_PRINTF2(_L("Unexpected %d return from CCamera::New2L()"), error);
134 INFO_PRINTF1(_L("Checking CCamera::NewDuplicate2L()"));
136 TRAP(error, camera = CCamera::NewDuplicate2L(*observer2, 0));
139 INFO_PRINTF1(_L("Unexpected KErrNone return from CCamera::NewDuplicate2L()"));
143 else if (error!=KErrNotSupported)
145 INFO_PRINTF2(_L("Unexpected %d return from CCamera::NewDuplicate2L()"), error);
157 RECamInnerTest* RECamInnerTest::NewL(TBool aAllocTest)
159 RECamInnerTest* self = new (ELeave) RECamInnerTest(aAllocTest);
163 RECamInnerTest::RECamInnerTest(TBool /*aAllocTest*/)
165 iTestStepName = _L("MM-ECM-API-U-012");
168 TVerdict RECamInnerTest::DoTestStepL()
170 INFO_PRINTF1(_L("Check can actually open ECam plugin"));
171 TVerdict result = EPass;
174 INFO_PRINTF1(_L("Open stub plugin directly"));
177 // TODO - would be nice to actually call CCameraPlugin::NewL, but this is not exported, so this is extract
178 TUid implementationUid = {KUidOnboardCameraStubPlugin};
179 TUid destructorKey = {0};
180 CCamera* camera = NULL;
182 camera = static_cast<CCamera*>
183 (REComSession::CreateImplementationL(implementationUid, destructorKey)));
185 if (error != KErrNone)
187 INFO_PRINTF2(_L("CreateImplementationL() failed - %d"), error);
193 REComSession::DestroyedImplementation(destructorKey);
194 REComSession::FinalClose();
199 INFO_PRINTF1(_L("Open stub plugin via interface"));
202 // TODO - would be nice to actually call CCameraPlugin::NewL, but this is not exported, so this is extract
203 TUid interfaceUid = {KUidOnboardCameraPlugin};
204 TUid destructorKey = {0};
205 CCamera* camera = NULL;
207 camera = static_cast<CCamera*>
208 (MmPluginUtils::CreateImplementationL(interfaceUid, destructorKey, KECamPluginMatchString, KRomOnlyResolverUid)));
210 if (error != KErrNone)
212 INFO_PRINTF2(_L("CreateImplementationL() failed - %d"), error);
218 REComSession::DestroyedImplementation(destructorKey);
219 REComSession::FinalClose();