sl@0
|
1 |
|
sl@0
|
2 |
// ECamInfoTest.cpp
|
sl@0
|
3 |
|
sl@0
|
4 |
// Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
5 |
// All rights reserved.
|
sl@0
|
6 |
// This component and the accompanying materials are made available
|
sl@0
|
7 |
// under the terms of "Eclipse Public License v1.0"
|
sl@0
|
8 |
// which accompanies this distribution, and is available
|
sl@0
|
9 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// Initial Contributors:
|
sl@0
|
12 |
// Nokia Corporation - initial contribution.
|
sl@0
|
13 |
//
|
sl@0
|
14 |
// Contributors:
|
sl@0
|
15 |
//
|
sl@0
|
16 |
// Description:
|
sl@0
|
17 |
//
|
sl@0
|
18 |
|
sl@0
|
19 |
#include "ECamInfoTest.h"
|
sl@0
|
20 |
#include <ecam.h>
|
sl@0
|
21 |
#include <ecam/ecamplugin.h>
|
sl@0
|
22 |
#include <ecam/ecaminfoplugin.h>
|
sl@0
|
23 |
#include <ecamuids.hrh>
|
sl@0
|
24 |
#include <ecom/ecomresolverparams.h>
|
sl@0
|
25 |
|
sl@0
|
26 |
#include <mm/mmpluginutils.h>
|
sl@0
|
27 |
|
sl@0
|
28 |
//
|
sl@0
|
29 |
// RECamInfoTest
|
sl@0
|
30 |
//
|
sl@0
|
31 |
|
sl@0
|
32 |
RECamInfoTest* RECamInfoTest::NewL(TBool aAllocTest)
|
sl@0
|
33 |
{
|
sl@0
|
34 |
RECamInfoTest* self = new (ELeave) RECamInfoTest(aAllocTest);
|
sl@0
|
35 |
return self;
|
sl@0
|
36 |
}
|
sl@0
|
37 |
|
sl@0
|
38 |
RECamInfoTest::RECamInfoTest(TBool /*aAllocTest*/)
|
sl@0
|
39 |
{
|
sl@0
|
40 |
iTestStepName = _L("MM-ECM-API-U-001");
|
sl@0
|
41 |
}
|
sl@0
|
42 |
|
sl@0
|
43 |
TVerdict RECamInfoTest::DoTestStepL()
|
sl@0
|
44 |
{
|
sl@0
|
45 |
INFO_PRINTF1(_L("Check CCamera::CamerasAvailable"));
|
sl@0
|
46 |
__MM_HEAP_MARK;
|
sl@0
|
47 |
TInt numCameras = CCamera::CamerasAvailable();
|
sl@0
|
48 |
__MM_HEAP_MARKEND;
|
sl@0
|
49 |
if (numCameras!=0)
|
sl@0
|
50 |
{
|
sl@0
|
51 |
INFO_PRINTF2(_L("Error - %d returned"), numCameras);
|
sl@0
|
52 |
return EFail;
|
sl@0
|
53 |
}
|
sl@0
|
54 |
return EPass;
|
sl@0
|
55 |
}
|
sl@0
|
56 |
|
sl@0
|
57 |
//
|
sl@0
|
58 |
// RECamInnerInfoTest
|
sl@0
|
59 |
//
|
sl@0
|
60 |
|
sl@0
|
61 |
RECamInnerInfoTest* RECamInnerInfoTest::NewL(TBool aAllocTest)
|
sl@0
|
62 |
{
|
sl@0
|
63 |
RECamInnerInfoTest* self = new (ELeave) RECamInnerInfoTest(aAllocTest);
|
sl@0
|
64 |
return self;
|
sl@0
|
65 |
}
|
sl@0
|
66 |
|
sl@0
|
67 |
RECamInnerInfoTest::RECamInnerInfoTest(TBool /*aAllocTest*/)
|
sl@0
|
68 |
{
|
sl@0
|
69 |
iTestStepName = _L("MM-ECM-API-U-002");
|
sl@0
|
70 |
}
|
sl@0
|
71 |
|
sl@0
|
72 |
TVerdict RECamInnerInfoTest::DoTestStepL()
|
sl@0
|
73 |
{
|
sl@0
|
74 |
TVerdict verdict = EPass;
|
sl@0
|
75 |
INFO_PRINTF1(_L("Check CCameraInfoPlugin"));
|
sl@0
|
76 |
__MM_HEAP_MARK;
|
sl@0
|
77 |
|
sl@0
|
78 |
TUid interfaceUid = {KUidOnboardCameraInfoPlugin};
|
sl@0
|
79 |
TUid destructorKey = {0};
|
sl@0
|
80 |
|
sl@0
|
81 |
CCameraInfoPlugin* info = NULL;
|
sl@0
|
82 |
|
sl@0
|
83 |
TRAPD(error, info = static_cast<CCameraInfoPlugin*>
|
sl@0
|
84 |
(MmPluginUtils::CreateImplementationL(interfaceUid, destructorKey, KECamPluginMatchString, KRomOnlyResolverUid)));
|
sl@0
|
85 |
|
sl@0
|
86 |
if (error!=KErrNone)
|
sl@0
|
87 |
{
|
sl@0
|
88 |
INFO_PRINTF2(_L("Could not open InfoPlugin - error %d"), error);
|
sl@0
|
89 |
return EFail;
|
sl@0
|
90 |
}
|
sl@0
|
91 |
|
sl@0
|
92 |
TInt numCameras = info->CamerasAvailable();
|
sl@0
|
93 |
delete info;
|
sl@0
|
94 |
REComSession::DestroyedImplementation(destructorKey);
|
sl@0
|
95 |
REComSession::FinalClose();
|
sl@0
|
96 |
__MM_HEAP_MARKEND;
|
sl@0
|
97 |
if (numCameras!=0)
|
sl@0
|
98 |
{
|
sl@0
|
99 |
INFO_PRINTF2(_L("Error - %d returned"), numCameras);
|
sl@0
|
100 |
verdict = EFail;
|
sl@0
|
101 |
}
|
sl@0
|
102 |
return verdict;
|
sl@0
|
103 |
}
|