sl@0
|
1 |
// Copyright (c) 2008-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 <e32math.h>
|
sl@0
|
17 |
#include <hal.h>
|
sl@0
|
18 |
#include <e32test.h>
|
sl@0
|
19 |
#include <ecom/ecom.h>
|
sl@0
|
20 |
#include <ecom/ecomresolverparams.h>
|
sl@0
|
21 |
#include "Interface.h" // for TExampleInterfaceInitParams
|
sl@0
|
22 |
#include "EComPatchDataConstantv2.h"
|
sl@0
|
23 |
#include "../EcomTestUtils/EcomTestUtils.h"
|
sl@0
|
24 |
|
sl@0
|
25 |
LOCAL_D RTest test(_L("Custom Resolver Load Time Performance Test"));
|
sl@0
|
26 |
|
sl@0
|
27 |
_LIT8(KDummyData,"dummy");
|
sl@0
|
28 |
|
sl@0
|
29 |
// KCExampleInterfaceUid is defined in "Interface.inl" !
|
sl@0
|
30 |
|
sl@0
|
31 |
// custom resolvers available for testing.
|
sl@0
|
32 |
// 200126cd, A0001346 and A0001347 are allocated outside the
|
sl@0
|
33 |
// ECOM Uid Allocations.doc
|
sl@0
|
34 |
const TUid KDummyResolverUid2 = {0xA0001346};
|
sl@0
|
35 |
const TUid KDummyResolverUid3 = {0xA0001347};
|
sl@0
|
36 |
const TUid KExampleResolverUid = {0x10009DD0};
|
sl@0
|
37 |
const TUid KMyResolverUid = {0x10009E12};
|
sl@0
|
38 |
const TUid KDummyResolverUid1 = {0x200126CD};
|
sl@0
|
39 |
|
sl@0
|
40 |
const TInt KArraySize = 5;
|
sl@0
|
41 |
|
sl@0
|
42 |
TUid MyResolvers[KArraySize] = {
|
sl@0
|
43 |
KDummyResolverUid2,
|
sl@0
|
44 |
KDummyResolverUid1,
|
sl@0
|
45 |
KExampleResolverUid,
|
sl@0
|
46 |
KMyResolverUid,
|
sl@0
|
47 |
KDummyResolverUid3
|
sl@0
|
48 |
};
|
sl@0
|
49 |
|
sl@0
|
50 |
// The custom resolver in RAMOnly dir
|
sl@0
|
51 |
_LIT(KDummyRscInC, "c:\\resource\\plugins\\dummycustomresolver1.rsc");
|
sl@0
|
52 |
_LIT(KDummyDllInC, "c:\\sys\\bin\\dummycustomresolver1.dll");
|
sl@0
|
53 |
_LIT(KDummyRscInZ, "z:\\ramonly\\dummycustomresolver1.rsc");
|
sl@0
|
54 |
_LIT(KDummyDllInZ, "z:\\ramonly\\dummycustomresolver1.dll");
|
sl@0
|
55 |
|
sl@0
|
56 |
// Copies the Plugins to specific folder for testing purpose
|
sl@0
|
57 |
LOCAL_C void CopyPluginsL()
|
sl@0
|
58 |
{
|
sl@0
|
59 |
EComTestUtils::FileManCopyFileL(KDummyRscInZ, KDummyRscInC);
|
sl@0
|
60 |
EComTestUtils::FileManCopyFileL(KDummyDllInZ, KDummyDllInC);
|
sl@0
|
61 |
}
|
sl@0
|
62 |
|
sl@0
|
63 |
// Deleting plugin from the RAM for cleanup purpose
|
sl@0
|
64 |
LOCAL_C void DeleteTestPlugin()
|
sl@0
|
65 |
{
|
sl@0
|
66 |
TRAP_IGNORE(EComTestUtils::FileManDeleteFileL(KDummyRscInC));
|
sl@0
|
67 |
TRAP_IGNORE(EComTestUtils::FileManDeleteFileL(KDummyDllInC));
|
sl@0
|
68 |
}
|
sl@0
|
69 |
|
sl@0
|
70 |
// converts fast counter ticks to milliseconds
|
sl@0
|
71 |
LOCAL_D TReal FastCountToMilliseconds(TUint32 aFastCount)
|
sl@0
|
72 |
{
|
sl@0
|
73 |
TInt freqInHz;
|
sl@0
|
74 |
HAL::Get(HAL::EFastCounterFrequency, freqInHz);
|
sl@0
|
75 |
TReal freqInkHz = (TReal)freqInHz / 1000;
|
sl@0
|
76 |
return (TReal)aFastCount / freqInkHz;
|
sl@0
|
77 |
}
|
sl@0
|
78 |
|
sl@0
|
79 |
// counter wrap around subtraction
|
sl@0
|
80 |
LOCAL_D TUint32 ElaspedCounterTicks(TUint32 aStart, TUint32 aEnd)
|
sl@0
|
81 |
{
|
sl@0
|
82 |
if (aEnd >= aStart)
|
sl@0
|
83 |
{
|
sl@0
|
84 |
return (aEnd - aStart);
|
sl@0
|
85 |
}
|
sl@0
|
86 |
else
|
sl@0
|
87 |
{
|
sl@0
|
88 |
return (KMaxTUint32 - aStart + aEnd + 1);
|
sl@0
|
89 |
}
|
sl@0
|
90 |
}
|
sl@0
|
91 |
|
sl@0
|
92 |
// sleep for 2 minutes and 15 seconds
|
sl@0
|
93 |
LOCAL_D void WaitForLazyUnloadPassL(void)
|
sl@0
|
94 |
{
|
sl@0
|
95 |
// Performance results from winscw do not count.
|
sl@0
|
96 |
// Hence sleep only in armv5.
|
sl@0
|
97 |
#ifdef __ARMCC__
|
sl@0
|
98 |
const TInt32 KLazyDllUnloadPeriod = 135; // actual is 2 minutes.
|
sl@0
|
99 |
|
sl@0
|
100 |
test.Printf(_L("sleep %d s to avoid lazy DLL unload\n"), KLazyDllUnloadPeriod);
|
sl@0
|
101 |
User::After( KLazyDllUnloadPeriod * 1000000 );
|
sl@0
|
102 |
test.Printf(_L("wake up after sleeping %d s\n"), KLazyDllUnloadPeriod);
|
sl@0
|
103 |
#endif
|
sl@0
|
104 |
|
sl@0
|
105 |
// Wait one second for plugin discovery
|
sl@0
|
106 |
#ifdef __X86GCC__
|
sl@0
|
107 |
test.Printf(_L("sleep 1 s \n"));
|
sl@0
|
108 |
User::After(1000000);
|
sl@0
|
109 |
test.Printf(_L("wake up!\n"));
|
sl@0
|
110 |
#endif
|
sl@0
|
111 |
}
|
sl@0
|
112 |
|
sl@0
|
113 |
/** Check create test is within allowed limit.
|
sl@0
|
114 |
@return True means test pass. False means fail.
|
sl@0
|
115 |
*/
|
sl@0
|
116 |
LOCAL_D TBool CheckCreatePerf(TReal aMilliseconds)
|
sl@0
|
117 |
{
|
sl@0
|
118 |
// These thresholds have 33% margin, i.e. when the limit is 320 ms,
|
sl@0
|
119 |
// the expected result is about 240 ms.
|
sl@0
|
120 |
const TReal KH2DpNandThreshold = 420.0;
|
sl@0
|
121 |
const TReal KH2NandThreshold = 420.0;
|
sl@0
|
122 |
const TReal KH2RamThreshold = 400.0;
|
sl@0
|
123 |
|
sl@0
|
124 |
const TReal KH4DpNandThreshold = 200.0;
|
sl@0
|
125 |
const TReal KH4NandThreshold = 200.0;
|
sl@0
|
126 |
const TReal KH4RamThreshold = 180.0;
|
sl@0
|
127 |
const TReal KH4MMCThreshold = 225.0;
|
sl@0
|
128 |
//INFO: 'KH4MMCThreshold' is the threshold in case of WDP enabled configuration on H4.
|
sl@0
|
129 |
// This was arrived at by running the test on a ROM built without the USE_DATA_PAGING defined.
|
sl@0
|
130 |
// The time taken by this operation in the above configuration was used to set this threshold
|
sl@0
|
131 |
|
sl@0
|
132 |
const TReal KH6DpNandThreshold = 150.0;
|
sl@0
|
133 |
const TReal KH6NandThreshold = 150.0;
|
sl@0
|
134 |
const TReal KH6RamThreshold = 140.0;
|
sl@0
|
135 |
|
sl@0
|
136 |
|
sl@0
|
137 |
TReal threshold = 0.0;
|
sl@0
|
138 |
switch (EComTestUtils::GetHardwareConfiguration())
|
sl@0
|
139 |
{
|
sl@0
|
140 |
case EPlatformH2RAM:
|
sl@0
|
141 |
threshold = KH2RamThreshold;
|
sl@0
|
142 |
break;
|
sl@0
|
143 |
case EPlatformH2NAND:
|
sl@0
|
144 |
threshold = KH2NandThreshold;
|
sl@0
|
145 |
break;
|
sl@0
|
146 |
case EPlatformH2NANDDP:
|
sl@0
|
147 |
threshold = KH2DpNandThreshold;
|
sl@0
|
148 |
break;
|
sl@0
|
149 |
case EPlatformH4RAM:
|
sl@0
|
150 |
threshold = KH4RamThreshold;
|
sl@0
|
151 |
break;
|
sl@0
|
152 |
case EPlatformH4MMC:
|
sl@0
|
153 |
threshold = KH4MMCThreshold;
|
sl@0
|
154 |
break;
|
sl@0
|
155 |
case EPlatformH4NAND:
|
sl@0
|
156 |
threshold = KH4NandThreshold;
|
sl@0
|
157 |
break;
|
sl@0
|
158 |
case EPlatformH4NANDDP:
|
sl@0
|
159 |
threshold = KH4DpNandThreshold;
|
sl@0
|
160 |
break;
|
sl@0
|
161 |
case EPlatformH6RAM:
|
sl@0
|
162 |
threshold = KH6RamThreshold;
|
sl@0
|
163 |
break;
|
sl@0
|
164 |
case EPlatformH6NAND:
|
sl@0
|
165 |
threshold = KH6NandThreshold;
|
sl@0
|
166 |
break;
|
sl@0
|
167 |
case EPlatformH6NANDDP:
|
sl@0
|
168 |
threshold = KH6DpNandThreshold;
|
sl@0
|
169 |
break;
|
sl@0
|
170 |
default:
|
sl@0
|
171 |
// Ignore results on winscw and whatever unknown platform.
|
sl@0
|
172 |
test.Printf(_L("custom resolver create perf test: %f ms\n"), aMilliseconds);
|
sl@0
|
173 |
return ETrue;
|
sl@0
|
174 |
}
|
sl@0
|
175 |
|
sl@0
|
176 |
test.Printf(_L("custom resolver create perf test: %f ms (limit %f)\n"), aMilliseconds, threshold);
|
sl@0
|
177 |
#ifdef _DEBUG
|
sl@0
|
178 |
// the thresholds are for urel only
|
sl@0
|
179 |
return ETrue;
|
sl@0
|
180 |
#else
|
sl@0
|
181 |
return (threshold > aMilliseconds);
|
sl@0
|
182 |
#endif
|
sl@0
|
183 |
}
|
sl@0
|
184 |
|
sl@0
|
185 |
/** Check list test is within allowed limit.
|
sl@0
|
186 |
@return True means test pass. False means fail.
|
sl@0
|
187 |
*/
|
sl@0
|
188 |
LOCAL_D TBool CheckListPerf(TReal aMilliseconds)
|
sl@0
|
189 |
{
|
sl@0
|
190 |
// These thresholds have 33% margin, i.e. when the limit is 300 ms,
|
sl@0
|
191 |
// the expected result is about 200 ms.
|
sl@0
|
192 |
const TReal KH2DpNandThreshold = 360.0;
|
sl@0
|
193 |
const TReal KH2NandThreshold = 360.0;
|
sl@0
|
194 |
const TReal KH2RamThreshold = 320.0;
|
sl@0
|
195 |
|
sl@0
|
196 |
const TReal KH4DpNandThreshold = 150.0;
|
sl@0
|
197 |
const TReal KH4NandThreshold = 150.0;
|
sl@0
|
198 |
const TReal KH4RamThreshold = 140.0;
|
sl@0
|
199 |
const TReal KH4MMCThreshold = 140.0;
|
sl@0
|
200 |
//INFO: 'KH4MMCThreshold' is the threshold in case of WDP enabled configuration on H4.
|
sl@0
|
201 |
// This was arrived at by running the test on a ROM built without the USE_DATA_PAGING defined.
|
sl@0
|
202 |
// The time taken by this operation in the above configuration was used to set this threshold
|
sl@0
|
203 |
|
sl@0
|
204 |
const TReal KH6DpNandThreshold = 150.0;
|
sl@0
|
205 |
const TReal KH6NandThreshold = 150.0;
|
sl@0
|
206 |
const TReal KH6RamThreshold = 140.0;
|
sl@0
|
207 |
|
sl@0
|
208 |
|
sl@0
|
209 |
TReal threshold = 0.0;
|
sl@0
|
210 |
switch (EComTestUtils::GetHardwareConfiguration())
|
sl@0
|
211 |
{
|
sl@0
|
212 |
case EPlatformH2RAM:
|
sl@0
|
213 |
threshold = KH2RamThreshold;
|
sl@0
|
214 |
break;
|
sl@0
|
215 |
case EPlatformH2NAND:
|
sl@0
|
216 |
threshold = KH2NandThreshold;
|
sl@0
|
217 |
break;
|
sl@0
|
218 |
case EPlatformH2NANDDP:
|
sl@0
|
219 |
threshold = KH2DpNandThreshold;
|
sl@0
|
220 |
break;
|
sl@0
|
221 |
case EPlatformH4RAM:
|
sl@0
|
222 |
threshold = KH4RamThreshold;
|
sl@0
|
223 |
break;
|
sl@0
|
224 |
case EPlatformH4MMC:
|
sl@0
|
225 |
threshold = KH4MMCThreshold;
|
sl@0
|
226 |
break;
|
sl@0
|
227 |
case EPlatformH4NAND:
|
sl@0
|
228 |
threshold = KH4NandThreshold;
|
sl@0
|
229 |
break;
|
sl@0
|
230 |
case EPlatformH4NANDDP:
|
sl@0
|
231 |
threshold = KH4DpNandThreshold;
|
sl@0
|
232 |
break;
|
sl@0
|
233 |
case EPlatformH6RAM:
|
sl@0
|
234 |
threshold = KH6RamThreshold;
|
sl@0
|
235 |
break;
|
sl@0
|
236 |
case EPlatformH6NAND:
|
sl@0
|
237 |
threshold = KH6NandThreshold;
|
sl@0
|
238 |
break;
|
sl@0
|
239 |
case EPlatformH6NANDDP:
|
sl@0
|
240 |
threshold = KH6DpNandThreshold;
|
sl@0
|
241 |
break;
|
sl@0
|
242 |
default:
|
sl@0
|
243 |
// Ignore results on winscw and whatever unknown platform.
|
sl@0
|
244 |
test.Printf(_L("custom resolver list perf test: %f ms\n"), aMilliseconds);
|
sl@0
|
245 |
return ETrue;
|
sl@0
|
246 |
}
|
sl@0
|
247 |
|
sl@0
|
248 |
test.Printf(_L("custom resolver list perf test: %f ms (limit %f)\n"), aMilliseconds, threshold);
|
sl@0
|
249 |
#ifdef _DEBUG
|
sl@0
|
250 |
// the thresholds are for urel only
|
sl@0
|
251 |
return ETrue;
|
sl@0
|
252 |
#else
|
sl@0
|
253 |
return (threshold > aMilliseconds);
|
sl@0
|
254 |
#endif
|
sl@0
|
255 |
}
|
sl@0
|
256 |
|
sl@0
|
257 |
/** Check create test in cache miss is within allowed limit.
|
sl@0
|
258 |
@return True means test pass. False means fail.
|
sl@0
|
259 |
*/
|
sl@0
|
260 |
LOCAL_D TBool CheckCacheMissCreatePerf(TReal aMilliseconds)
|
sl@0
|
261 |
{
|
sl@0
|
262 |
// These thresholds have 33% margin, i.e. when the limit is 1200 ms,
|
sl@0
|
263 |
// the expected result is about 900 ms.
|
sl@0
|
264 |
const TReal KH2DpNandThreshold = 2250.0;
|
sl@0
|
265 |
const TReal KH2NandThreshold = 2250.0;
|
sl@0
|
266 |
const TReal KH2RamThreshold = 1000.0;
|
sl@0
|
267 |
|
sl@0
|
268 |
const TReal KH4DpNandThreshold = 1350.0;
|
sl@0
|
269 |
const TReal KH4NandThreshold = 1350.0;
|
sl@0
|
270 |
const TReal KH4RamThreshold = 500.0;
|
sl@0
|
271 |
const TReal KH4MMCThreshold = 1350.0;
|
sl@0
|
272 |
//INFO: 'KH4MMCThreshold' is the threshold in case of WDP enabled configuration on H4.
|
sl@0
|
273 |
// This was arrived at by running the test on a ROM built without the USE_DATA_PAGING defined.
|
sl@0
|
274 |
// The time taken by this operation in the above configuration was used to set this threshold
|
sl@0
|
275 |
|
sl@0
|
276 |
const TReal KH6DpNandThreshold = 1000.0;
|
sl@0
|
277 |
const TReal KH6NandThreshold = 1000.0;
|
sl@0
|
278 |
const TReal KH6RamThreshold = 350.0;
|
sl@0
|
279 |
|
sl@0
|
280 |
TReal threshold = 0.0;
|
sl@0
|
281 |
switch (EComTestUtils::GetHardwareConfiguration())
|
sl@0
|
282 |
{
|
sl@0
|
283 |
case EPlatformH2RAM:
|
sl@0
|
284 |
threshold = KH2RamThreshold;
|
sl@0
|
285 |
break;
|
sl@0
|
286 |
case EPlatformH2NAND:
|
sl@0
|
287 |
threshold = KH2NandThreshold;
|
sl@0
|
288 |
break;
|
sl@0
|
289 |
case EPlatformH2NANDDP:
|
sl@0
|
290 |
threshold = KH2DpNandThreshold;
|
sl@0
|
291 |
break;
|
sl@0
|
292 |
case EPlatformH4RAM:
|
sl@0
|
293 |
threshold = KH4RamThreshold;
|
sl@0
|
294 |
break;
|
sl@0
|
295 |
case EPlatformH4MMC:
|
sl@0
|
296 |
threshold = KH4MMCThreshold;
|
sl@0
|
297 |
break;
|
sl@0
|
298 |
case EPlatformH4NAND:
|
sl@0
|
299 |
threshold = KH4NandThreshold;
|
sl@0
|
300 |
break;
|
sl@0
|
301 |
case EPlatformH4NANDDP:
|
sl@0
|
302 |
threshold = KH4DpNandThreshold;
|
sl@0
|
303 |
break;
|
sl@0
|
304 |
case EPlatformH6RAM:
|
sl@0
|
305 |
threshold = KH6RamThreshold;
|
sl@0
|
306 |
break;
|
sl@0
|
307 |
case EPlatformH6NAND:
|
sl@0
|
308 |
threshold = KH6NandThreshold;
|
sl@0
|
309 |
break;
|
sl@0
|
310 |
case EPlatformH6NANDDP:
|
sl@0
|
311 |
threshold = KH6DpNandThreshold;
|
sl@0
|
312 |
break;
|
sl@0
|
313 |
default:
|
sl@0
|
314 |
// Ignore results on winscw and whatever unknown platform.
|
sl@0
|
315 |
test.Printf(_L("Cache miss create perf test: %f ms\n"), aMilliseconds);
|
sl@0
|
316 |
return ETrue;
|
sl@0
|
317 |
}
|
sl@0
|
318 |
|
sl@0
|
319 |
test.Printf(_L("Cache miss create perf test: %f ms (limit %f)\n"), aMilliseconds, threshold);
|
sl@0
|
320 |
#ifdef _DEBUG
|
sl@0
|
321 |
// the thresholds are for urel only
|
sl@0
|
322 |
return ETrue;
|
sl@0
|
323 |
#else
|
sl@0
|
324 |
return (threshold > aMilliseconds);
|
sl@0
|
325 |
#endif
|
sl@0
|
326 |
}
|
sl@0
|
327 |
|
sl@0
|
328 |
/** Check list test in cache miss is within allowed limit.
|
sl@0
|
329 |
@return True means test pass. False means fail.
|
sl@0
|
330 |
*/
|
sl@0
|
331 |
LOCAL_D TBool CheckCacheMissListPerf(TReal aMilliseconds)
|
sl@0
|
332 |
{
|
sl@0
|
333 |
// These thresholds have 33% margin, i.e. when the limit is 1200 ms,
|
sl@0
|
334 |
// the expected result is about 900 ms.
|
sl@0
|
335 |
const TReal KH2DpNandThreshold = 2250.0;
|
sl@0
|
336 |
const TReal KH2NandThreshold = 2250.0;
|
sl@0
|
337 |
const TReal KH2RamThreshold = 1000.0;
|
sl@0
|
338 |
|
sl@0
|
339 |
const TReal KH4DpNandThreshold = 1350.0;
|
sl@0
|
340 |
const TReal KH4NandThreshold = 1350.0;
|
sl@0
|
341 |
const TReal KH4RamThreshold = 500.0;
|
sl@0
|
342 |
const TReal KH4MMCThreshold = 1350.0;
|
sl@0
|
343 |
//INFO: 'KH4MMCThreshold' is the threshold in case of WDP enabled configuration on H4.
|
sl@0
|
344 |
// This was arrived at by running the test on a ROM built without the USE_DATA_PAGING defined.
|
sl@0
|
345 |
// The time taken by this operation in the above configuration was used to set this threshold
|
sl@0
|
346 |
|
sl@0
|
347 |
TReal threshold = 0.0;
|
sl@0
|
348 |
switch (EComTestUtils::GetHardwareConfiguration())
|
sl@0
|
349 |
{
|
sl@0
|
350 |
case EPlatformH2RAM:
|
sl@0
|
351 |
threshold = KH2RamThreshold;
|
sl@0
|
352 |
break;
|
sl@0
|
353 |
case EPlatformH2NAND:
|
sl@0
|
354 |
threshold = KH2NandThreshold;
|
sl@0
|
355 |
break;
|
sl@0
|
356 |
case EPlatformH2NANDDP:
|
sl@0
|
357 |
threshold = KH2DpNandThreshold;
|
sl@0
|
358 |
break;
|
sl@0
|
359 |
case EPlatformH4RAM:
|
sl@0
|
360 |
threshold = KH4RamThreshold;
|
sl@0
|
361 |
break;
|
sl@0
|
362 |
case EPlatformH4MMC:
|
sl@0
|
363 |
threshold = KH4MMCThreshold;
|
sl@0
|
364 |
break;
|
sl@0
|
365 |
case EPlatformH4NAND:
|
sl@0
|
366 |
threshold = KH4NandThreshold;
|
sl@0
|
367 |
break;
|
sl@0
|
368 |
case EPlatformH4NANDDP:
|
sl@0
|
369 |
threshold = KH4DpNandThreshold;
|
sl@0
|
370 |
break;
|
sl@0
|
371 |
default:
|
sl@0
|
372 |
// Ignore results on winscw and whatever unknown platform.
|
sl@0
|
373 |
test.Printf(_L("Cache miss list perf test: %f ms\n"), aMilliseconds);
|
sl@0
|
374 |
return ETrue;
|
sl@0
|
375 |
}
|
sl@0
|
376 |
|
sl@0
|
377 |
test.Printf(_L("Cache miss list perf test: %f ms (limit %f)\n"), aMilliseconds, threshold);
|
sl@0
|
378 |
#ifdef _DEBUG
|
sl@0
|
379 |
// the thresholds are for urel only
|
sl@0
|
380 |
return ETrue;
|
sl@0
|
381 |
#else
|
sl@0
|
382 |
return (threshold > aMilliseconds);
|
sl@0
|
383 |
#endif
|
sl@0
|
384 |
}
|
sl@0
|
385 |
|
sl@0
|
386 |
/** do custom resolver create test
|
sl@0
|
387 |
@return total ticks spent during the create request.
|
sl@0
|
388 |
*/
|
sl@0
|
389 |
LOCAL_D TUint32 DoCreatePerfTestL(const TUid aResolverUid)
|
sl@0
|
390 |
{
|
sl@0
|
391 |
CExampleInterface::TExampleInterfaceInitParams initParams;
|
sl@0
|
392 |
initParams.integer = 1;
|
sl@0
|
393 |
initParams.descriptor = NULL;
|
sl@0
|
394 |
TAny* p = NULL;
|
sl@0
|
395 |
TUid instanceKey;
|
sl@0
|
396 |
TEComResolverParams resolverparams;
|
sl@0
|
397 |
//Set any resolver data type as it will never reach the resolving part
|
sl@0
|
398 |
resolverparams.SetDataType(KDummyData);
|
sl@0
|
399 |
TUint32 startTime, endTime;
|
sl@0
|
400 |
|
sl@0
|
401 |
startTime = User::FastCounter();
|
sl@0
|
402 |
p = REComSession::CreateImplementationL(KCExampleInterfaceUid,
|
sl@0
|
403 |
instanceKey,
|
sl@0
|
404 |
&initParams,
|
sl@0
|
405 |
resolverparams,
|
sl@0
|
406 |
aResolverUid);
|
sl@0
|
407 |
endTime = User::FastCounter();
|
sl@0
|
408 |
|
sl@0
|
409 |
test(p != NULL);
|
sl@0
|
410 |
REComSession::DestroyedImplementation(instanceKey);
|
sl@0
|
411 |
CExampleInterface* impl = reinterpret_cast<CExampleInterface*>(p);
|
sl@0
|
412 |
delete impl;
|
sl@0
|
413 |
|
sl@0
|
414 |
return ElaspedCounterTicks(startTime, endTime);
|
sl@0
|
415 |
}
|
sl@0
|
416 |
|
sl@0
|
417 |
/** do custom resolver list test
|
sl@0
|
418 |
@return total ticks spent during the list request.
|
sl@0
|
419 |
*/
|
sl@0
|
420 |
LOCAL_D TUint32 DoListPerfTestL(const TUid aResolverUid)
|
sl@0
|
421 |
{
|
sl@0
|
422 |
TEComResolverParams resolverparams;
|
sl@0
|
423 |
//Set any resolver data type as it will never reach the resolving part
|
sl@0
|
424 |
resolverparams.SetDataType(KDummyData);
|
sl@0
|
425 |
RImplInfoPtrArray ifArray;
|
sl@0
|
426 |
TUint32 startTime, endTime;
|
sl@0
|
427 |
|
sl@0
|
428 |
startTime = User::FastCounter();
|
sl@0
|
429 |
REComSession::ListImplementationsL(KCExampleInterfaceUid,
|
sl@0
|
430 |
resolverparams,
|
sl@0
|
431 |
aResolverUid,
|
sl@0
|
432 |
ifArray);
|
sl@0
|
433 |
endTime = User::FastCounter();
|
sl@0
|
434 |
|
sl@0
|
435 |
test(ifArray.Count() > 0);
|
sl@0
|
436 |
ifArray.ResetAndDestroy();
|
sl@0
|
437 |
|
sl@0
|
438 |
return ElaspedCounterTicks(startTime, endTime);
|
sl@0
|
439 |
}
|
sl@0
|
440 |
|
sl@0
|
441 |
/**
|
sl@0
|
442 |
@SYMTestCaseID SYSLIB-ECOM-PT-4009
|
sl@0
|
443 |
@SYMTestCaseDesc Time how long it takes to do 100 create requests and
|
sl@0
|
444 |
100 list requests involving custom resolvers.
|
sl@0
|
445 |
@SYMTestPriority High
|
sl@0
|
446 |
@SYMTestActions Run create and list requests in a loop.
|
sl@0
|
447 |
@SYMTestExpectedResults on hw testing, the time must be within prescribed threshold.
|
sl@0
|
448 |
@SYMCR CR1182
|
sl@0
|
449 |
*/
|
sl@0
|
450 |
LOCAL_D void RunResolverPerfTestL()
|
sl@0
|
451 |
{
|
sl@0
|
452 |
test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-PT-4009 Time a number of create and list requests\n "));
|
sl@0
|
453 |
|
sl@0
|
454 |
// If ECOM server is not yet running, the first message will take long
|
sl@0
|
455 |
// time because ECOM has to scandir and parse spi file. So do a dummy run
|
sl@0
|
456 |
// to kick start ECOM.
|
sl@0
|
457 |
DoListPerfTestL(MyResolvers[0]);
|
sl@0
|
458 |
|
sl@0
|
459 |
const TInt KNumLoops = 100;
|
sl@0
|
460 |
TInt j;
|
sl@0
|
461 |
|
sl@0
|
462 |
TUint32 createTicks = 0;
|
sl@0
|
463 |
TUint32 listTicks = 0;
|
sl@0
|
464 |
for (TInt i = 0; i < KNumLoops; i++)
|
sl@0
|
465 |
{
|
sl@0
|
466 |
j = i % KCustomResolverCacheSize;
|
sl@0
|
467 |
createTicks += DoCreatePerfTestL(MyResolvers[j]);
|
sl@0
|
468 |
listTicks += DoListPerfTestL(MyResolvers[j]);
|
sl@0
|
469 |
}
|
sl@0
|
470 |
|
sl@0
|
471 |
REComSession::FinalClose();
|
sl@0
|
472 |
|
sl@0
|
473 |
TReal createMs = FastCountToMilliseconds(createTicks);
|
sl@0
|
474 |
TBool createTestPass = CheckCreatePerf(createMs);
|
sl@0
|
475 |
|
sl@0
|
476 |
TReal listMs = FastCountToMilliseconds(listTicks);
|
sl@0
|
477 |
TBool listTestPass = CheckListPerf(listMs);
|
sl@0
|
478 |
|
sl@0
|
479 |
test(createTestPass);
|
sl@0
|
480 |
test(listTestPass);
|
sl@0
|
481 |
}
|
sl@0
|
482 |
|
sl@0
|
483 |
/**
|
sl@0
|
484 |
@SYMTestCaseID SYSLIB-ECOM-PT-4010
|
sl@0
|
485 |
@SYMTestCaseDesc Verify CR1182 does not slow down list and create
|
sl@0
|
486 |
request significantly if there are a lot of cache misses.
|
sl@0
|
487 |
@SYMTestPriority High
|
sl@0
|
488 |
@SYMTestActions Repeatedly do list and create requests with five
|
sl@0
|
489 |
custom resolvers (1 more than max cache size). Time how long it takes.
|
sl@0
|
490 |
@SYMTestExpectedResults on hw testing, the time must be within prescribed threshold.
|
sl@0
|
491 |
@SYMCR CR1182
|
sl@0
|
492 |
*/
|
sl@0
|
493 |
LOCAL_D void CacheMissPerfTestL()
|
sl@0
|
494 |
{
|
sl@0
|
495 |
test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-PT-4010 Cache miss performance test\n "));
|
sl@0
|
496 |
|
sl@0
|
497 |
test(KArraySize > KCustomResolverCacheSize);
|
sl@0
|
498 |
|
sl@0
|
499 |
const TInt KNumLoops = 100;
|
sl@0
|
500 |
TInt i, j;
|
sl@0
|
501 |
|
sl@0
|
502 |
TUint32 createTicks = 0;
|
sl@0
|
503 |
for (i = 0; i < KNumLoops; i++)
|
sl@0
|
504 |
{
|
sl@0
|
505 |
j = i % KArraySize;
|
sl@0
|
506 |
createTicks += DoCreatePerfTestL(MyResolvers[j]);
|
sl@0
|
507 |
}
|
sl@0
|
508 |
|
sl@0
|
509 |
TUint32 listTicks = 0;
|
sl@0
|
510 |
for (i = 0; i < KNumLoops; i++)
|
sl@0
|
511 |
{
|
sl@0
|
512 |
j = i % KArraySize;
|
sl@0
|
513 |
listTicks += DoListPerfTestL(MyResolvers[j]);
|
sl@0
|
514 |
}
|
sl@0
|
515 |
|
sl@0
|
516 |
REComSession::FinalClose();
|
sl@0
|
517 |
|
sl@0
|
518 |
TReal createMs = FastCountToMilliseconds(createTicks);
|
sl@0
|
519 |
TBool createTestPass = CheckCacheMissCreatePerf(createMs);
|
sl@0
|
520 |
|
sl@0
|
521 |
TReal listMs = FastCountToMilliseconds(listTicks);
|
sl@0
|
522 |
TBool listTestPass = CheckCacheMissListPerf(listMs);
|
sl@0
|
523 |
|
sl@0
|
524 |
test(createTestPass);
|
sl@0
|
525 |
test(listTestPass);
|
sl@0
|
526 |
}
|
sl@0
|
527 |
|
sl@0
|
528 |
LOCAL_C void RunTestL()
|
sl@0
|
529 |
{
|
sl@0
|
530 |
__UHEAP_MARK;
|
sl@0
|
531 |
CopyPluginsL();
|
sl@0
|
532 |
WaitForLazyUnloadPassL();
|
sl@0
|
533 |
|
sl@0
|
534 |
RunResolverPerfTestL();
|
sl@0
|
535 |
CacheMissPerfTestL();
|
sl@0
|
536 |
|
sl@0
|
537 |
// pause till ecom server flushes the cache.
|
sl@0
|
538 |
// otherwise may affect the next test to run.
|
sl@0
|
539 |
User::After(KCustomResolverCacheTimeout + 1000000);
|
sl@0
|
540 |
|
sl@0
|
541 |
DeleteTestPlugin();
|
sl@0
|
542 |
|
sl@0
|
543 |
__UHEAP_MARKEND;
|
sl@0
|
544 |
}
|
sl@0
|
545 |
|
sl@0
|
546 |
GLDEF_C TInt E32Main()
|
sl@0
|
547 |
{
|
sl@0
|
548 |
TInt err=KErrNone;
|
sl@0
|
549 |
__UHEAP_MARK;
|
sl@0
|
550 |
|
sl@0
|
551 |
test.Title();
|
sl@0
|
552 |
test.Start(_L("CR1182 Perf. tests."));
|
sl@0
|
553 |
|
sl@0
|
554 |
CTrapCleanup* cleanup = CTrapCleanup::New();
|
sl@0
|
555 |
test(cleanup != NULL);
|
sl@0
|
556 |
|
sl@0
|
557 |
TRAP(err,RunTestL());
|
sl@0
|
558 |
test(err == KErrNone);
|
sl@0
|
559 |
|
sl@0
|
560 |
delete cleanup;
|
sl@0
|
561 |
|
sl@0
|
562 |
test.End();
|
sl@0
|
563 |
test.Close();
|
sl@0
|
564 |
|
sl@0
|
565 |
__UHEAP_MARKEND;
|
sl@0
|
566 |
return(err);
|
sl@0
|
567 |
}
|