sl@0
|
1 |
/*
|
sl@0
|
2 |
* Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
3 |
* All rights reserved.
|
sl@0
|
4 |
* This component and the accompanying materials are made available
|
sl@0
|
5 |
* under the terms of the License "Eclipse Public License v1.0"
|
sl@0
|
6 |
* which accompanies this distribution, and is available
|
sl@0
|
7 |
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
8 |
*
|
sl@0
|
9 |
* Initial Contributors:
|
sl@0
|
10 |
* Nokia Corporation - initial contribution.
|
sl@0
|
11 |
*
|
sl@0
|
12 |
* Contributors:
|
sl@0
|
13 |
*
|
sl@0
|
14 |
* Description:
|
sl@0
|
15 |
*
|
sl@0
|
16 |
*/
|
sl@0
|
17 |
|
sl@0
|
18 |
|
sl@0
|
19 |
|
sl@0
|
20 |
|
sl@0
|
21 |
/**
|
sl@0
|
22 |
@file
|
sl@0
|
23 |
*/
|
sl@0
|
24 |
#define __INCLUDE_CAPABILITY_NAMES__
|
sl@0
|
25 |
#include <e32capability.h>
|
sl@0
|
26 |
|
sl@0
|
27 |
#include "captestframeworkstep.h"
|
sl@0
|
28 |
#include "captestframework.h"
|
sl@0
|
29 |
|
sl@0
|
30 |
#include <test/testexecutelog.h>
|
sl@0
|
31 |
#include <s32file.h>
|
sl@0
|
32 |
#include <f32file.h>
|
sl@0
|
33 |
|
sl@0
|
34 |
|
sl@0
|
35 |
CCapTestFrameworkStep::CCapTestFrameworkStep(TThoroughness aThoroughness)
|
sl@0
|
36 |
: iThoroughness(aThoroughness)
|
sl@0
|
37 |
{
|
sl@0
|
38 |
}
|
sl@0
|
39 |
|
sl@0
|
40 |
CCapTestFrameworkStep::~CCapTestFrameworkStep()
|
sl@0
|
41 |
{
|
sl@0
|
42 |
iLibrary.Close();
|
sl@0
|
43 |
iFs.Close();
|
sl@0
|
44 |
}
|
sl@0
|
45 |
|
sl@0
|
46 |
TVerdict CCapTestFrameworkStep::doTestStepPreambleL()
|
sl@0
|
47 |
{
|
sl@0
|
48 |
User::LeaveIfError(iFs.Connect());
|
sl@0
|
49 |
User::LeaveIfError(iFs.ShareProtected());
|
sl@0
|
50 |
|
sl@0
|
51 |
if (EFalse==GetStringFromConfig(ConfigSection(), _L("DllName"), iDllName))
|
sl@0
|
52 |
{
|
sl@0
|
53 |
return EFail;
|
sl@0
|
54 |
}
|
sl@0
|
55 |
|
sl@0
|
56 |
GetBoolFromConfig(ConfigSection(), _L("OmitTCBCapInComplementSet"), iOmitTCBCapInComplementSet);
|
sl@0
|
57 |
|
sl@0
|
58 |
SetupFactoryL();
|
sl@0
|
59 |
return EPass;
|
sl@0
|
60 |
}
|
sl@0
|
61 |
|
sl@0
|
62 |
TVerdict CCapTestFrameworkStep::doTestStepL()
|
sl@0
|
63 |
{
|
sl@0
|
64 |
for (iCurrentTest=0; iCurrentTest < iFactory->NumberOfTests(); ++iCurrentTest)
|
sl@0
|
65 |
{
|
sl@0
|
66 |
INFO_PRINTF1(_L(""));
|
sl@0
|
67 |
INFO_PRINTF2(_L("Running %S"), &iFactory->Test(iCurrentTest)->Name());
|
sl@0
|
68 |
INFO_PRINTF1(_L("Assumed to require:"));
|
sl@0
|
69 |
INFO_PRINTF2(_L("\tSid: %x"), iFactory->Test(iCurrentTest)->SidRequired());
|
sl@0
|
70 |
INFO_PRINTF2(_L("\tVid: %x"), iFactory->Test(iCurrentTest)->VidRequired());
|
sl@0
|
71 |
PrintCapabilitySet(iFactory->Test(iCurrentTest)->CapabilitiesRequired(), _L("\tCapabilities: "));
|
sl@0
|
72 |
RunTestStepL(iFactory->Test(iCurrentTest));
|
sl@0
|
73 |
}
|
sl@0
|
74 |
|
sl@0
|
75 |
return EPass;
|
sl@0
|
76 |
}
|
sl@0
|
77 |
|
sl@0
|
78 |
void CCapTestFrameworkStep::RunTestStepL(MCapabilityTest* aTest)
|
sl@0
|
79 |
{
|
sl@0
|
80 |
// figure out capabilities required
|
sl@0
|
81 |
TCapabilitySet capsRequired=aTest->CapabilitiesRequired();
|
sl@0
|
82 |
TUid sidRequired=aTest->SidRequired();
|
sl@0
|
83 |
TUid vidRequired=aTest->VidRequired();
|
sl@0
|
84 |
|
sl@0
|
85 |
RArray<TTestEnvironment> capTestEnvs;
|
sl@0
|
86 |
CleanupClosePushL(capTestEnvs);
|
sl@0
|
87 |
|
sl@0
|
88 |
GenerateEnvironmentsL(capsRequired, sidRequired, vidRequired, capTestEnvs);
|
sl@0
|
89 |
|
sl@0
|
90 |
// for all cap sets needed
|
sl@0
|
91 |
for (TInt i=0; i < capTestEnvs.Count(); ++i)
|
sl@0
|
92 |
{
|
sl@0
|
93 |
INFO_PRINTF1(_L("With:"));
|
sl@0
|
94 |
INFO_PRINTF2(_L("\tSid: %x"), capTestEnvs[i].iSid);
|
sl@0
|
95 |
INFO_PRINTF2(_L("\tVid: %x"), capTestEnvs[i].iVid);
|
sl@0
|
96 |
PrintCapabilitySet(capTestEnvs[i].iCaps, _L("\tCapabilities: "));
|
sl@0
|
97 |
|
sl@0
|
98 |
// Set the capabilities of the helper
|
sl@0
|
99 |
SetupHelperL(capTestEnvs[i]);
|
sl@0
|
100 |
|
sl@0
|
101 |
// run the helper and check results
|
sl@0
|
102 |
RunHelperL(iCurrentTest, capTestEnvs[i].iExpectPass);
|
sl@0
|
103 |
}
|
sl@0
|
104 |
|
sl@0
|
105 |
CleanupStack::PopAndDestroy(&capTestEnvs);
|
sl@0
|
106 |
}
|
sl@0
|
107 |
|
sl@0
|
108 |
void CCapTestFrameworkStep::RunHelperL(TInt aTestNumber, TBool aShouldPass)
|
sl@0
|
109 |
{
|
sl@0
|
110 |
RProcess p;
|
sl@0
|
111 |
|
sl@0
|
112 |
//Launching process
|
sl@0
|
113 |
User::LeaveIfError(p.Create(_L("tempcaptestframeworkhelper.exe"), KNullDesC));
|
sl@0
|
114 |
|
sl@0
|
115 |
p.SetParameter(KDllNameTransferSlot, iDllName);
|
sl@0
|
116 |
p.SetParameter(KShouldPassTransferSlot, aShouldPass);
|
sl@0
|
117 |
p.SetParameter(KTestNumberTransferSlot, aTestNumber);
|
sl@0
|
118 |
|
sl@0
|
119 |
_LIT(KLogFileName , "\\captestframework.txt");
|
sl@0
|
120 |
TDriveUnit sysDrive(RFs::GetSystemDrive());
|
sl@0
|
121 |
|
sl@0
|
122 |
TBuf<128> logFileNameOnSysDrive = sysDrive.Name();
|
sl@0
|
123 |
logFileNameOnSysDrive.Append(KLogFileName);
|
sl@0
|
124 |
p.SetParameter(KLogFileNameTransferSlot, logFileNameOnSysDrive);
|
sl@0
|
125 |
|
sl@0
|
126 |
// Wait for the test to finish
|
sl@0
|
127 |
TRequestStatus s;
|
sl@0
|
128 |
TRequestStatus& a=s;
|
sl@0
|
129 |
p.Logon(a);
|
sl@0
|
130 |
p.Resume();
|
sl@0
|
131 |
User::WaitForRequest(a);
|
sl@0
|
132 |
p.Close();
|
sl@0
|
133 |
|
sl@0
|
134 |
// Extract the info from the logfile
|
sl@0
|
135 |
RFileReadStream logFile;
|
sl@0
|
136 |
logFile.Open(iFs, logFileNameOnSysDrive, 0);
|
sl@0
|
137 |
CleanupClosePushL(logFile);
|
sl@0
|
138 |
|
sl@0
|
139 |
while (ETrue)
|
sl@0
|
140 |
{
|
sl@0
|
141 |
TInt32 pass=logFile.ReadInt32L();
|
sl@0
|
142 |
if (pass==ETestsEnded)
|
sl@0
|
143 |
{
|
sl@0
|
144 |
break; // end of file
|
sl@0
|
145 |
}
|
sl@0
|
146 |
else if (pass==EFileEnd)
|
sl@0
|
147 |
{
|
sl@0
|
148 |
// reached end of file marker, with no success
|
sl@0
|
149 |
SetTestStepResult(EFail);
|
sl@0
|
150 |
break;
|
sl@0
|
151 |
}
|
sl@0
|
152 |
else if (pass==ETestFailed)
|
sl@0
|
153 |
{
|
sl@0
|
154 |
HBufC* text=HBufC::NewL(logFile, KMaxTInt);
|
sl@0
|
155 |
ERR_PRINTF2(_L("%S"), text);
|
sl@0
|
156 |
delete text;
|
sl@0
|
157 |
}
|
sl@0
|
158 |
else if (pass==ETestPassed)
|
sl@0
|
159 |
{
|
sl@0
|
160 |
HBufC* text=HBufC::NewL(logFile, KMaxTInt);
|
sl@0
|
161 |
INFO_PRINTF2(_L("%S"), text);
|
sl@0
|
162 |
delete text;
|
sl@0
|
163 |
}
|
sl@0
|
164 |
}
|
sl@0
|
165 |
|
sl@0
|
166 |
CleanupStack::PopAndDestroy(&logFile);
|
sl@0
|
167 |
}
|
sl@0
|
168 |
|
sl@0
|
169 |
void CCapTestFrameworkStep::SetupHelperL(const TTestEnvironment& aEnvironment)
|
sl@0
|
170 |
{
|
sl@0
|
171 |
RProcess p;
|
sl@0
|
172 |
// SETCAP source_exe capability [-SID secureId] [-VID vendorId] [destination_path]
|
sl@0
|
173 |
_LIT(KArgsFormat, "captestframeworkhelper.exe %X -SID %X -VID %X tempcaptestframeworkhelper.exe");
|
sl@0
|
174 |
|
sl@0
|
175 |
// The 'capability' command line argument is the hexadecimal value of the
|
sl@0
|
176 |
// capabilities when they are represented as a bit-field. E.g. the 3 capabilities
|
sl@0
|
177 |
// LocalServices, ReadUserData and WriteUserData would together have a value of:
|
sl@0
|
178 |
//
|
sl@0
|
179 |
// (1<<ECapabilityLocalServices) | (<<ECapabilityReadUserData) | (1<<ECapabilityWriteUserData)
|
sl@0
|
180 |
//
|
sl@0
|
181 |
// Which in hexadecimal is '1c000'
|
sl@0
|
182 |
|
sl@0
|
183 |
const TCapabilitySet& aCapSet=aEnvironment.iCaps;
|
sl@0
|
184 |
TInt caps=0;
|
sl@0
|
185 |
for (TInt c = 0; c < ECapability_Limit; ++c)
|
sl@0
|
186 |
{
|
sl@0
|
187 |
if (aCapSet.HasCapability(TCapability(c)))
|
sl@0
|
188 |
{
|
sl@0
|
189 |
caps+=(1<<c);
|
sl@0
|
190 |
}
|
sl@0
|
191 |
}
|
sl@0
|
192 |
|
sl@0
|
193 |
TBuf<512> cmdLine;
|
sl@0
|
194 |
cmdLine.Format(KArgsFormat, caps, aEnvironment.iSid, aEnvironment.iVid);
|
sl@0
|
195 |
|
sl@0
|
196 |
User::LeaveIfError(p.Create(_L("setcap.exe"), cmdLine));
|
sl@0
|
197 |
|
sl@0
|
198 |
// Wait for setcap to finish
|
sl@0
|
199 |
TRequestStatus s;
|
sl@0
|
200 |
TRequestStatus& rs=s;
|
sl@0
|
201 |
p.Logon(rs);
|
sl@0
|
202 |
|
sl@0
|
203 |
p.Resume();
|
sl@0
|
204 |
User::WaitForRequest(rs);
|
sl@0
|
205 |
p.Close();
|
sl@0
|
206 |
}
|
sl@0
|
207 |
|
sl@0
|
208 |
void CCapTestFrameworkStep::PrintCapabilitySet(const TCapabilitySet& aCapSet, const TDesC& aExtra)
|
sl@0
|
209 |
{
|
sl@0
|
210 |
TBuf<512> string;
|
sl@0
|
211 |
string.AppendFormat(_L("%S"), &aExtra);
|
sl@0
|
212 |
for (TInt c = 0; c < ECapability_Limit; ++c)
|
sl@0
|
213 |
{
|
sl@0
|
214 |
if (aCapSet.HasCapability(TCapability(c)))
|
sl@0
|
215 |
{
|
sl@0
|
216 |
string.Append(' ');
|
sl@0
|
217 |
const char *p=CapabilityNames[c];
|
sl@0
|
218 |
|
sl@0
|
219 |
while(*p)
|
sl@0
|
220 |
{
|
sl@0
|
221 |
string.Append(*p++);
|
sl@0
|
222 |
}
|
sl@0
|
223 |
}
|
sl@0
|
224 |
}
|
sl@0
|
225 |
if (string.Length()==aExtra.Length())
|
sl@0
|
226 |
{
|
sl@0
|
227 |
string.AppendFormat(_L("None"));
|
sl@0
|
228 |
}
|
sl@0
|
229 |
INFO_PRINTF1(string);
|
sl@0
|
230 |
}
|
sl@0
|
231 |
|
sl@0
|
232 |
|
sl@0
|
233 |
void CCapTestFrameworkStep::GenerateEnvironmentsL(const TCapabilitySet& aCapsNeeded, const TUid& aSidNeeded, const TUid& aVidNeeded, RArray<TTestEnvironment>& aEnvironments)
|
sl@0
|
234 |
{
|
sl@0
|
235 |
for (TUid sid={0}; sid.iUid <= aSidNeeded.iUid; sid.iUid+= aSidNeeded.iUid ? aSidNeeded.iUid : 1) // if no sid is needed then only do check once
|
sl@0
|
236 |
{
|
sl@0
|
237 |
TBool shouldPass=ETrue;
|
sl@0
|
238 |
|
sl@0
|
239 |
if (sid!=aSidNeeded)
|
sl@0
|
240 |
{
|
sl@0
|
241 |
shouldPass=EFalse;
|
sl@0
|
242 |
}
|
sl@0
|
243 |
|
sl@0
|
244 |
for (TUid vid={0}; vid.iUid <= aVidNeeded.iUid; vid.iUid+= aVidNeeded.iUid ? aVidNeeded.iUid : 1)
|
sl@0
|
245 |
{
|
sl@0
|
246 |
if (vid!=aVidNeeded)
|
sl@0
|
247 |
{
|
sl@0
|
248 |
shouldPass=EFalse;
|
sl@0
|
249 |
}
|
sl@0
|
250 |
|
sl@0
|
251 |
//For each IPC, your test should implement the following:
|
sl@0
|
252 |
//
|
sl@0
|
253 |
// If an IPC is controlled by one capability only, the test code should run
|
sl@0
|
254 |
//first with the required capability only and second with the complement set
|
sl@0
|
255 |
//of the required capability. If the first test is successful and the second
|
sl@0
|
256 |
//a failure, the IPC value is proven to be controlled by the required capability
|
sl@0
|
257 |
//only.
|
sl@0
|
258 |
//
|
sl@0
|
259 |
// If an IPC is controlled by n capabilities, the test code should run first with
|
sl@0
|
260 |
//exact n required capabilities and after with any combination of all subsets of
|
sl@0
|
261 |
//n-1 capabilities with the complement set.
|
sl@0
|
262 |
//
|
sl@0
|
263 |
// For example, ABC controls an IPC. The full list of capabilities is
|
sl@0
|
264 |
//A, B, C, D, E and F. Test code with ABC must be successful, while test code
|
sl@0
|
265 |
//with ABDEF, ACDEF, BCDEF must all fail.
|
sl@0
|
266 |
//
|
sl@0
|
267 |
// So, the number of tests to run to validate a IPC is the combination of n
|
sl@0
|
268 |
//capabilities, n-1 at a time (i.e. n!/(n-1)! ) plus 1 exact positive test,
|
sl@0
|
269 |
//therefore a total of n+1 tests.
|
sl@0
|
270 |
|
sl@0
|
271 |
// possibly positive case (depends on Sid and Vid settings)
|
sl@0
|
272 |
aEnvironments.Append(TTestEnvironment(aCapsNeeded, sid, vid, shouldPass));
|
sl@0
|
273 |
|
sl@0
|
274 |
if (iThoroughness == EBasicChecks) // will fail when cap set is empty, but there is no TCapabilitySet::NotEmpty exported, write a replacement copy
|
sl@0
|
275 |
{
|
sl@0
|
276 |
// Just add one with no caps and expect to fail
|
sl@0
|
277 |
TCapabilitySet noCaps;
|
sl@0
|
278 |
aEnvironments.Append(TTestEnvironment(noCaps, sid, vid, EFalse));
|
sl@0
|
279 |
}
|
sl@0
|
280 |
else
|
sl@0
|
281 |
{
|
sl@0
|
282 |
// Thorough, cap sets as per comment above
|
sl@0
|
283 |
for (TInt c = 0; c < ECapability_Limit; ++c)
|
sl@0
|
284 |
{
|
sl@0
|
285 |
if (aCapsNeeded.HasCapability(TCapability(c)))
|
sl@0
|
286 |
{
|
sl@0
|
287 |
// Need to add a new one with (aCapsNeeded / c) | ~aCapsNeeded
|
sl@0
|
288 |
TCapabilitySet caps(aCapsNeeded);
|
sl@0
|
289 |
caps.RemoveCapability(TCapability(c)); // take cap c away
|
sl@0
|
290 |
caps.Union(InvertCapSet(aCapsNeeded)); // add in complement
|
sl@0
|
291 |
|
sl@0
|
292 |
aEnvironments.Append(TTestEnvironment(caps, sid, vid, EFalse)); // add to sets, should fail
|
sl@0
|
293 |
}
|
sl@0
|
294 |
}
|
sl@0
|
295 |
} // end thorough cap tests
|
sl@0
|
296 |
|
sl@0
|
297 |
} // end vid loop
|
sl@0
|
298 |
|
sl@0
|
299 |
} // end sid loop
|
sl@0
|
300 |
}
|
sl@0
|
301 |
|
sl@0
|
302 |
|
sl@0
|
303 |
TVerdict CCapTestFrameworkStep::doTestStepPostambleL()
|
sl@0
|
304 |
{
|
sl@0
|
305 |
return EPass;
|
sl@0
|
306 |
}
|
sl@0
|
307 |
|
sl@0
|
308 |
// helper functions
|
sl@0
|
309 |
TCapabilitySet CCapTestFrameworkStep::InvertCapSet(const TCapabilitySet& aCapSet)
|
sl@0
|
310 |
{
|
sl@0
|
311 |
TCapabilitySet ret;
|
sl@0
|
312 |
ret.SetEmpty();
|
sl@0
|
313 |
|
sl@0
|
314 |
for (TInt c = 0; c < ECapability_Limit; ++c)
|
sl@0
|
315 |
{
|
sl@0
|
316 |
if (c == ECapabilityTCB && iOmitTCBCapInComplementSet)
|
sl@0
|
317 |
{
|
sl@0
|
318 |
continue;
|
sl@0
|
319 |
}
|
sl@0
|
320 |
if (!aCapSet.HasCapability(TCapability(c)))
|
sl@0
|
321 |
{
|
sl@0
|
322 |
ret.AddCapability(TCapability(c));
|
sl@0
|
323 |
}
|
sl@0
|
324 |
}
|
sl@0
|
325 |
return ret;
|
sl@0
|
326 |
}
|
sl@0
|
327 |
|
sl@0
|
328 |
MCapabilityTestFactory* CCapTestFrameworkStep::SetupFactoryL()
|
sl@0
|
329 |
{
|
sl@0
|
330 |
User::LeaveIfError(iLibrary.Load(iDllName));
|
sl@0
|
331 |
|
sl@0
|
332 |
TLibraryFunction testFactory=iLibrary.Lookup(1);
|
sl@0
|
333 |
iFactory=reinterpret_cast<MCapabilityTestFactory*>(testFactory());
|
sl@0
|
334 |
|
sl@0
|
335 |
return iFactory;
|
sl@0
|
336 |
}
|
sl@0
|
337 |
|
sl@0
|
338 |
// TCapSetTestInfo
|
sl@0
|
339 |
TTestEnvironment::TTestEnvironment(const TCapabilitySet& aCaps, TUid aSid, TUid aVid, TBool aExpectPass)
|
sl@0
|
340 |
: iCaps(aCaps), iSid(aSid), iVid(aVid), iExpectPass(aExpectPass)
|
sl@0
|
341 |
{
|
sl@0
|
342 |
}
|