1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/mm/imagingandcamerafws/cameraunittest/src/ECamTest.cpp Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,225 @@
1.4 +
1.5 +// ECamTest.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 "ECamTest.h"
1.23 +#include <ecam.h>
1.24 +#include <ecam/ecamplugin.h>
1.25 +#include <ecamuids.hrh>
1.26 +
1.27 +#include <ecom/ecomresolverparams.h>
1.28 +
1.29 +#include <mm/mmpluginutils.h>
1.30 +
1.31 +//
1.32 +// RECamTest
1.33 +//
1.34 +
1.35 +RECamTest* RECamTest::NewL(TBool aAllocTest)
1.36 + {
1.37 + RECamTest* self = new (ELeave) RECamTest(aAllocTest);
1.38 + return self;
1.39 + }
1.40 +
1.41 +RECamTest::RECamTest(TBool /*aAllocTest*/)
1.42 + {
1.43 + iTestStepName = _L("MM-ECM-API-U-011");
1.44 + }
1.45 +
1.46 +TVerdict RECamTest::DoTestStepL()
1.47 + {
1.48 + TVerdict result = EPass;
1.49 + CCamera* camera = NULL;
1.50 + MCameraObserver* observer = NULL; // should not be used, so pass silly value. TODO make this an MCameraObserver, or arrange would not KernExec3 on real plugin
1.51 + MCameraObserver2* observer2 = NULL; // TODO ditto
1.52 + TInt error = KErrNone;
1.53 +
1.54 + INFO_PRINTF1(_L("Check Opening CCam gives KErrNotSupported"));
1.55 +
1.56 + INFO_PRINTF1(_L("Checking basic CCamera::NewL()"));
1.57 + __MM_HEAP_MARK;
1.58 + TRAP(error, camera = CCamera::NewL(*observer, 0));
1.59 + if (error==KErrNone)
1.60 + {
1.61 + INFO_PRINTF1(_L("Unexpected KErrNone return from CCamera::NewL()"));
1.62 + delete camera;
1.63 + result = EFail;
1.64 + }
1.65 + else if (error!=KErrNotSupported)
1.66 + {
1.67 + INFO_PRINTF2(_L("Unexpected %d return from CCamera::NewL()"), error);
1.68 + result = EFail;
1.69 + }
1.70 + __MM_HEAP_MARKEND;
1.71 +
1.72 + INFO_PRINTF1(_L("Checking basic CCamera::NewDuplicateL()"));
1.73 + __MM_HEAP_MARK;
1.74 + TRAP(error, camera = CCamera::NewDuplicateL(*observer, 0));
1.75 + if (error==KErrNone)
1.76 + {
1.77 + INFO_PRINTF1(_L("Unexpected KErrNone return from CCamera::NewDuplicateL()"));
1.78 + delete camera;
1.79 + result = EFail;
1.80 + }
1.81 + else if (error!=KErrNotSupported)
1.82 + {
1.83 + INFO_PRINTF2(_L("Unexpected %d return from CCamera::NewDuplicateL()"), error);
1.84 + result = EFail;
1.85 + }
1.86 + __MM_HEAP_MARKEND;
1.87 +
1.88 + INFO_PRINTF1(_L("Checking additional \"ChunkAPI\" factory functions"));
1.89 + INFO_PRINTF1(_L("Checking CCamera::NewL()"));
1.90 + __MM_HEAP_MARK;
1.91 + TRAP(error, camera = CCamera::NewL(*observer2, 0, 0));
1.92 + if (error==KErrNone)
1.93 + {
1.94 + INFO_PRINTF1(_L("Unexpected KErrNone return from CCamera::NewL()"));
1.95 + delete camera;
1.96 + result = EFail;
1.97 + }
1.98 + else if (error!=KErrNotSupported)
1.99 + {
1.100 + INFO_PRINTF2(_L("Unexpected %d return from CCamera::NewL()"), error);
1.101 + result = EFail;
1.102 + }
1.103 + __MM_HEAP_MARKEND;
1.104 +
1.105 + INFO_PRINTF1(_L("Checking CCamera::NewDuplicateL()"));
1.106 + __MM_HEAP_MARK;
1.107 + TRAP(error, camera = CCamera::NewDuplicateL(*observer2, 0));
1.108 + if (error==KErrNone)
1.109 + {
1.110 + INFO_PRINTF1(_L("Unexpected KErrNone return from CCamera::NewDuplicateL()"));
1.111 + delete camera;
1.112 + result = EFail;
1.113 + }
1.114 + else if (error!=KErrNotSupported)
1.115 + {
1.116 + INFO_PRINTF2(_L("Unexpected %d return from CCamera::NewDuplicateL()"), error);
1.117 + result = EFail;
1.118 + }
1.119 + __MM_HEAP_MARKEND;
1.120 +
1.121 + INFO_PRINTF1(_L("Checking CCamera::New2L()"));
1.122 + __MM_HEAP_MARK;
1.123 + TRAP(error, camera = CCamera::New2L(*observer2, 0, 0));
1.124 + if (error==KErrNone)
1.125 + {
1.126 + INFO_PRINTF1(_L("Unexpected KErrNone return from CCamera::New2L()"));
1.127 + delete camera;
1.128 + result = EFail;
1.129 + }
1.130 + else if (error!=KErrNotSupported)
1.131 + {
1.132 + INFO_PRINTF2(_L("Unexpected %d return from CCamera::New2L()"), error);
1.133 + result = EFail;
1.134 + }
1.135 + __MM_HEAP_MARKEND;
1.136 +
1.137 + INFO_PRINTF1(_L("Checking CCamera::NewDuplicate2L()"));
1.138 + __MM_HEAP_MARK;
1.139 + TRAP(error, camera = CCamera::NewDuplicate2L(*observer2, 0));
1.140 + if (error==KErrNone)
1.141 + {
1.142 + INFO_PRINTF1(_L("Unexpected KErrNone return from CCamera::NewDuplicate2L()"));
1.143 + delete camera;
1.144 + result = EFail;
1.145 + }
1.146 + else if (error!=KErrNotSupported)
1.147 + {
1.148 + INFO_PRINTF2(_L("Unexpected %d return from CCamera::NewDuplicate2L()"), error);
1.149 + result = EFail;
1.150 + }
1.151 + __MM_HEAP_MARKEND;
1.152 +
1.153 + return result;
1.154 + }
1.155 +
1.156 +//
1.157 +// RECamInnerTest
1.158 +//
1.159 +
1.160 +RECamInnerTest* RECamInnerTest::NewL(TBool aAllocTest)
1.161 + {
1.162 + RECamInnerTest* self = new (ELeave) RECamInnerTest(aAllocTest);
1.163 + return self;
1.164 + }
1.165 +
1.166 +RECamInnerTest::RECamInnerTest(TBool /*aAllocTest*/)
1.167 + {
1.168 + iTestStepName = _L("MM-ECM-API-U-012");
1.169 + }
1.170 +
1.171 +TVerdict RECamInnerTest::DoTestStepL()
1.172 + {
1.173 + INFO_PRINTF1(_L("Check can actually open ECam plugin"));
1.174 + TVerdict result = EPass;
1.175 +
1.176 +
1.177 + INFO_PRINTF1(_L("Open stub plugin directly"));
1.178 + {
1.179 + __MM_HEAP_MARK;
1.180 + // TODO - would be nice to actually call CCameraPlugin::NewL, but this is not exported, so this is extract
1.181 + TUid implementationUid = {KUidOnboardCameraStubPlugin};
1.182 + TUid destructorKey = {0};
1.183 + CCamera* camera = NULL;
1.184 + TRAPD(error,
1.185 + camera = static_cast<CCamera*>
1.186 + (REComSession::CreateImplementationL(implementationUid, destructorKey)));
1.187 +
1.188 + if (error != KErrNone)
1.189 + {
1.190 + INFO_PRINTF2(_L("CreateImplementationL() failed - %d"), error);
1.191 + result = EFail;
1.192 + }
1.193 + else
1.194 + {
1.195 + delete camera;
1.196 + REComSession::DestroyedImplementation(destructorKey);
1.197 + REComSession::FinalClose();
1.198 + }
1.199 + __MM_HEAP_MARKEND;
1.200 + }
1.201 +
1.202 + INFO_PRINTF1(_L("Open stub plugin via interface"));
1.203 + {
1.204 + __MM_HEAP_MARK;
1.205 + // TODO - would be nice to actually call CCameraPlugin::NewL, but this is not exported, so this is extract
1.206 + TUid interfaceUid = {KUidOnboardCameraPlugin};
1.207 + TUid destructorKey = {0};
1.208 + CCamera* camera = NULL;
1.209 + TRAPD(error,
1.210 + camera = static_cast<CCamera*>
1.211 + (MmPluginUtils::CreateImplementationL(interfaceUid, destructorKey, KECamPluginMatchString, KRomOnlyResolverUid)));
1.212 +
1.213 + if (error != KErrNone)
1.214 + {
1.215 + INFO_PRINTF2(_L("CreateImplementationL() failed - %d"), error);
1.216 + result = EFail;
1.217 + }
1.218 + else
1.219 + {
1.220 + delete camera;
1.221 + REComSession::DestroyedImplementation(destructorKey);
1.222 + REComSession::FinalClose();
1.223 + }
1.224 + __MM_HEAP_MARKEND;
1.225 + }
1.226 +
1.227 + return result;
1.228 + }