sl@0
|
1 |
// Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
// All rights reserved.
|
sl@0
|
3 |
// This component and the accompanying materials are made available
|
sl@0
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
sl@0
|
5 |
// which accompanies this distribution, and is available
|
sl@0
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
//
|
sl@0
|
8 |
// Initial Contributors:
|
sl@0
|
9 |
// Nokia Corporation - initial contribution.
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// Contributors:
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// Description:
|
sl@0
|
14 |
//
|
sl@0
|
15 |
|
sl@0
|
16 |
#include "rampluginload.h"
|
sl@0
|
17 |
#include <ecam.h>
|
sl@0
|
18 |
#include <ecam/ecamplugin.h>
|
sl@0
|
19 |
#include <ecamuids.hrh>
|
sl@0
|
20 |
|
sl@0
|
21 |
#include <ecom/ecomresolverparams.h>
|
sl@0
|
22 |
|
sl@0
|
23 |
#ifndef __WINSCW__
|
sl@0
|
24 |
const TInt KMaxProcessNameLength = 50; // Max process name length.
|
sl@0
|
25 |
_LIT(KProcessFileManCopyFile, "copyfile.exe");
|
sl@0
|
26 |
_LIT(KSeparator, "|"); // Invalid filepath char used to separate filenames
|
sl@0
|
27 |
|
sl@0
|
28 |
_LIT(KOriginalDllOnZ, "Z:\\testplugins\\ecamramplugin.dll");
|
sl@0
|
29 |
_LIT(KMovedDllOnC, "C:\\Sys\\Bin\\ecamramplugin.dll");
|
sl@0
|
30 |
_LIT(KOriginalRscFileOnZ, "Z:\\testplugins\\ecamramplugin.rsc");
|
sl@0
|
31 |
_LIT(KMovedRscFileOnC, "C:\\Resource\\Plugins\\ecamramplugin.rsc");
|
sl@0
|
32 |
|
sl@0
|
33 |
const TInt KWaitThreeSeconds = 3000000;
|
sl@0
|
34 |
#endif
|
sl@0
|
35 |
|
sl@0
|
36 |
|
sl@0
|
37 |
void LaunchProcessL(const TDesC& aProcessName, const TDesC& aCmdLine)
|
sl@0
|
38 |
{
|
sl@0
|
39 |
TRequestStatus stat;
|
sl@0
|
40 |
RProcess p;
|
sl@0
|
41 |
User::LeaveIfError(p.Create(aProcessName, aCmdLine));
|
sl@0
|
42 |
|
sl@0
|
43 |
// Asynchronous logon: completes when process terminates with process
|
sl@0
|
44 |
// exit code
|
sl@0
|
45 |
p.Logon(stat);
|
sl@0
|
46 |
p.Resume();
|
sl@0
|
47 |
User::WaitForRequest(stat);
|
sl@0
|
48 |
|
sl@0
|
49 |
TExitType exitType = p.ExitType();
|
sl@0
|
50 |
TInt exitReason = p.ExitReason();
|
sl@0
|
51 |
|
sl@0
|
52 |
p.Close();
|
sl@0
|
53 |
User::LeaveIfError(exitReason);
|
sl@0
|
54 |
}
|
sl@0
|
55 |
|
sl@0
|
56 |
TInt VersionLinearOrderFunction(const CImplementationInformation& pluginA,
|
sl@0
|
57 |
const CImplementationInformation& pluginB)
|
sl@0
|
58 |
{
|
sl@0
|
59 |
if (pluginA.Version() == pluginB.Version())
|
sl@0
|
60 |
{
|
sl@0
|
61 |
return 0;
|
sl@0
|
62 |
}
|
sl@0
|
63 |
|
sl@0
|
64 |
return (pluginA.Version() < pluginB.Version())? 1: -1;
|
sl@0
|
65 |
}
|
sl@0
|
66 |
|
sl@0
|
67 |
//
|
sl@0
|
68 |
// RRamPluginLoadTest
|
sl@0
|
69 |
//
|
sl@0
|
70 |
|
sl@0
|
71 |
RRamPluginLoadTest* RRamPluginLoadTest::NewL(TBool aAllocTest)
|
sl@0
|
72 |
{
|
sl@0
|
73 |
RRamPluginLoadTest* self = new (ELeave) RRamPluginLoadTest(aAllocTest);
|
sl@0
|
74 |
return self;
|
sl@0
|
75 |
}
|
sl@0
|
76 |
|
sl@0
|
77 |
RRamPluginLoadTest::RRamPluginLoadTest(TBool /*aAllocTest*/)
|
sl@0
|
78 |
{
|
sl@0
|
79 |
iTestStepName = _L("MM-ECM-RAM-U-001");
|
sl@0
|
80 |
}
|
sl@0
|
81 |
|
sl@0
|
82 |
TVerdict RRamPluginLoadTest::DoTestStepL()
|
sl@0
|
83 |
{
|
sl@0
|
84 |
TVerdict result = EPass;
|
sl@0
|
85 |
#ifndef __WINSCW__
|
sl@0
|
86 |
TBuf<KMaxFileName*2> dllNames(KOriginalDllOnZ);
|
sl@0
|
87 |
TBuf<KMaxFileName*2> rscNames(KOriginalRscFileOnZ);
|
sl@0
|
88 |
|
sl@0
|
89 |
dllNames.Append(KSeparator);
|
sl@0
|
90 |
dllNames.Append(KMovedDllOnC);
|
sl@0
|
91 |
rscNames.Append(KSeparator);
|
sl@0
|
92 |
rscNames.Append(KMovedRscFileOnC);
|
sl@0
|
93 |
TBufC<KMaxProcessNameLength> copyProcess(KProcessFileManCopyFile);
|
sl@0
|
94 |
|
sl@0
|
95 |
// launch copyfile.exe to copy plugin from z: to c:
|
sl@0
|
96 |
TRAPD(ret, LaunchProcessL(copyProcess, dllNames));
|
sl@0
|
97 |
if(ret == KErrNone)
|
sl@0
|
98 |
{
|
sl@0
|
99 |
INFO_PRINTF1(_L("Succesfully copied dll"));
|
sl@0
|
100 |
}
|
sl@0
|
101 |
else
|
sl@0
|
102 |
{
|
sl@0
|
103 |
INFO_PRINTF2(_L("Copying dll failed with %d"), ret);
|
sl@0
|
104 |
result = EFail;
|
sl@0
|
105 |
return result;
|
sl@0
|
106 |
}
|
sl@0
|
107 |
TRAP(ret, LaunchProcessL(copyProcess, rscNames));
|
sl@0
|
108 |
if(ret == KErrNone)
|
sl@0
|
109 |
{
|
sl@0
|
110 |
INFO_PRINTF1(_L("Succesfully copied rsc file"));
|
sl@0
|
111 |
}
|
sl@0
|
112 |
else
|
sl@0
|
113 |
{
|
sl@0
|
114 |
INFO_PRINTF2(_L("Copying rsc file failed with %d"), ret);
|
sl@0
|
115 |
result = EFail;
|
sl@0
|
116 |
return result;
|
sl@0
|
117 |
}
|
sl@0
|
118 |
|
sl@0
|
119 |
User::After(KWaitThreeSeconds); // Wait for ECom to re-scan drives so it can pick up new plugin now on c:
|
sl@0
|
120 |
#endif
|
sl@0
|
121 |
_LIT(KRamPluginDisplayName, "Ram ECam Plugin");
|
sl@0
|
122 |
TBufC<15> expectedName(KRamPluginDisplayName);
|
sl@0
|
123 |
|
sl@0
|
124 |
TBool pluginFound = EFalse;
|
sl@0
|
125 |
TInt error = KErrNone;
|
sl@0
|
126 |
|
sl@0
|
127 |
INFO_PRINTF1(_L("Listing available plugins using REComSession::ListImplementationsL()..."));
|
sl@0
|
128 |
TUid interfaceUid = {KUidOnboardCameraPlugin};
|
sl@0
|
129 |
TEComResolverParams resolverParams;
|
sl@0
|
130 |
resolverParams.SetDataType(KECamPluginMatchString);
|
sl@0
|
131 |
RImplInfoPtrArray pluginArray;
|
sl@0
|
132 |
|
sl@0
|
133 |
TRAP(error, REComSession::ListImplementationsL(interfaceUid, resolverParams, pluginArray));
|
sl@0
|
134 |
if (error != KErrNone)
|
sl@0
|
135 |
{
|
sl@0
|
136 |
INFO_PRINTF2(_L("ListImplementationsL() failed - %d"), error);
|
sl@0
|
137 |
result = EFail;
|
sl@0
|
138 |
return result;
|
sl@0
|
139 |
}
|
sl@0
|
140 |
else
|
sl@0
|
141 |
{
|
sl@0
|
142 |
pluginArray.Sort(VersionLinearOrderFunction);
|
sl@0
|
143 |
for (TInt i = 0; i < pluginArray.Count(); ++i)
|
sl@0
|
144 |
{
|
sl@0
|
145 |
TBuf<2> drive;
|
sl@0
|
146 |
drive = pluginArray[i]->Drive().Name();
|
sl@0
|
147 |
INFO_PRINTF3(_L("%S located on drive %S"), &(pluginArray[i]->DisplayName()), &(drive));
|
sl@0
|
148 |
if((pluginArray[i]->DisplayName() == expectedName) && (pluginArray[i]->Drive() == 2))
|
sl@0
|
149 |
{
|
sl@0
|
150 |
pluginFound = ETrue;
|
sl@0
|
151 |
}
|
sl@0
|
152 |
}
|
sl@0
|
153 |
pluginArray.Close();
|
sl@0
|
154 |
|
sl@0
|
155 |
if(!pluginFound)
|
sl@0
|
156 |
{
|
sl@0
|
157 |
INFO_PRINTF1(_L("REComSession::ListImplementationsL() could not find plugin in RAM"));
|
sl@0
|
158 |
}
|
sl@0
|
159 |
}
|
sl@0
|
160 |
|
sl@0
|
161 |
INFO_PRINTF1(_L("Checking if CCamera::New2L() can successfully load plugin residing in RAM"));
|
sl@0
|
162 |
MCameraObserver2* observer2 = NULL;
|
sl@0
|
163 |
TRAP(error, CCamera* camera = CCamera::New2L(*observer2, 0, 0));
|
sl@0
|
164 |
#ifdef _DEBUG
|
sl@0
|
165 |
if(error == KErrNone)
|
sl@0
|
166 |
{
|
sl@0
|
167 |
INFO_PRINTF1(_L("UDEB mode: Expected behaviour - successfully loaded plugin"));
|
sl@0
|
168 |
}
|
sl@0
|
169 |
else
|
sl@0
|
170 |
{
|
sl@0
|
171 |
INFO_PRINTF2(_L("UDEB mode: Unexpected behaviour - could not load plugin, error = %d"), error);
|
sl@0
|
172 |
result = EFail;
|
sl@0
|
173 |
}
|
sl@0
|
174 |
#else
|
sl@0
|
175 |
if (error == KErrNone)
|
sl@0
|
176 |
{
|
sl@0
|
177 |
INFO_PRINTF1(_L("UREL mode: Unexpected behaviour - successfully loaded plugin"));
|
sl@0
|
178 |
result = EFail;
|
sl@0
|
179 |
}
|
sl@0
|
180 |
else
|
sl@0
|
181 |
{
|
sl@0
|
182 |
INFO_PRINTF2(_L("UREL mode: Expected behaviour - could not load plugin, error = %d"), error);
|
sl@0
|
183 |
}
|
sl@0
|
184 |
#endif
|
sl@0
|
185 |
|
sl@0
|
186 |
return result;
|
sl@0
|
187 |
}
|