First public contribution.
1 // Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
16 #include "rampluginload.h"
18 #include <ecam/ecamplugin.h>
19 #include <ecamuids.hrh>
21 #include <ecom/ecomresolverparams.h>
24 const TInt KMaxProcessNameLength = 50; // Max process name length.
25 _LIT(KProcessFileManCopyFile, "copyfile.exe");
26 _LIT(KSeparator, "|"); // Invalid filepath char used to separate filenames
28 _LIT(KOriginalDllOnZ, "Z:\\testplugins\\ecamramplugin.dll");
29 _LIT(KMovedDllOnC, "C:\\Sys\\Bin\\ecamramplugin.dll");
30 _LIT(KOriginalRscFileOnZ, "Z:\\testplugins\\ecamramplugin.rsc");
31 _LIT(KMovedRscFileOnC, "C:\\Resource\\Plugins\\ecamramplugin.rsc");
33 const TInt KWaitThreeSeconds = 3000000;
37 void LaunchProcessL(const TDesC& aProcessName, const TDesC& aCmdLine)
41 User::LeaveIfError(p.Create(aProcessName, aCmdLine));
43 // Asynchronous logon: completes when process terminates with process
47 User::WaitForRequest(stat);
49 TExitType exitType = p.ExitType();
50 TInt exitReason = p.ExitReason();
53 User::LeaveIfError(exitReason);
56 TInt VersionLinearOrderFunction(const CImplementationInformation& pluginA,
57 const CImplementationInformation& pluginB)
59 if (pluginA.Version() == pluginB.Version())
64 return (pluginA.Version() < pluginB.Version())? 1: -1;
71 RRamPluginLoadTest* RRamPluginLoadTest::NewL(TBool aAllocTest)
73 RRamPluginLoadTest* self = new (ELeave) RRamPluginLoadTest(aAllocTest);
77 RRamPluginLoadTest::RRamPluginLoadTest(TBool /*aAllocTest*/)
79 iTestStepName = _L("MM-ECM-RAM-U-001");
82 TVerdict RRamPluginLoadTest::DoTestStepL()
84 TVerdict result = EPass;
86 TBuf<KMaxFileName*2> dllNames(KOriginalDllOnZ);
87 TBuf<KMaxFileName*2> rscNames(KOriginalRscFileOnZ);
89 dllNames.Append(KSeparator);
90 dllNames.Append(KMovedDllOnC);
91 rscNames.Append(KSeparator);
92 rscNames.Append(KMovedRscFileOnC);
93 TBufC<KMaxProcessNameLength> copyProcess(KProcessFileManCopyFile);
95 // launch copyfile.exe to copy plugin from z: to c:
96 TRAPD(ret, LaunchProcessL(copyProcess, dllNames));
99 INFO_PRINTF1(_L("Succesfully copied dll"));
103 INFO_PRINTF2(_L("Copying dll failed with %d"), ret);
107 TRAP(ret, LaunchProcessL(copyProcess, rscNames));
110 INFO_PRINTF1(_L("Succesfully copied rsc file"));
114 INFO_PRINTF2(_L("Copying rsc file failed with %d"), ret);
119 User::After(KWaitThreeSeconds); // Wait for ECom to re-scan drives so it can pick up new plugin now on c:
121 _LIT(KRamPluginDisplayName, "Ram ECam Plugin");
122 TBufC<15> expectedName(KRamPluginDisplayName);
124 TBool pluginFound = EFalse;
125 TInt error = KErrNone;
127 INFO_PRINTF1(_L("Listing available plugins using REComSession::ListImplementationsL()..."));
128 TUid interfaceUid = {KUidOnboardCameraPlugin};
129 TEComResolverParams resolverParams;
130 resolverParams.SetDataType(KECamPluginMatchString);
131 RImplInfoPtrArray pluginArray;
133 TRAP(error, REComSession::ListImplementationsL(interfaceUid, resolverParams, pluginArray));
134 if (error != KErrNone)
136 INFO_PRINTF2(_L("ListImplementationsL() failed - %d"), error);
142 pluginArray.Sort(VersionLinearOrderFunction);
143 for (TInt i = 0; i < pluginArray.Count(); ++i)
146 drive = pluginArray[i]->Drive().Name();
147 INFO_PRINTF3(_L("%S located on drive %S"), &(pluginArray[i]->DisplayName()), &(drive));
148 if((pluginArray[i]->DisplayName() == expectedName) && (pluginArray[i]->Drive() == 2))
157 INFO_PRINTF1(_L("REComSession::ListImplementationsL() could not find plugin in RAM"));
161 INFO_PRINTF1(_L("Checking if CCamera::New2L() can successfully load plugin residing in RAM"));
162 MCameraObserver2* observer2 = NULL;
163 TRAP(error, CCamera* camera = CCamera::New2L(*observer2, 0, 0));
165 if(error == KErrNone)
167 INFO_PRINTF1(_L("UDEB mode: Expected behaviour - successfully loaded plugin"));
171 INFO_PRINTF2(_L("UDEB mode: Unexpected behaviour - could not load plugin, error = %d"), error);
175 if (error == KErrNone)
177 INFO_PRINTF1(_L("UREL mode: Unexpected behaviour - successfully loaded plugin"));
182 INFO_PRINTF2(_L("UREL mode: Expected behaviour - could not load plugin, error = %d"), error);