Update contrib.
1 // Copyright (c) 2008-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.
19 #include <ecom/ecom.h>
20 #include <ecom/ecomresolverparams.h>
21 #include "Interface.h" // for TExampleInterfaceInitParams
22 #include "EComPatchDataConstantv2.h"
23 #include "../EcomTestUtils/EcomTestUtils.h"
25 LOCAL_D RTest test(_L("Custom Resolver Load Time Performance Test"));
27 _LIT8(KDummyData,"dummy");
29 // KCExampleInterfaceUid is defined in "Interface.inl" !
31 // custom resolvers available for testing.
32 // 200126cd, A0001346 and A0001347 are allocated outside the
33 // ECOM Uid Allocations.doc
34 const TUid KDummyResolverUid2 = {0xA0001346};
35 const TUid KDummyResolverUid3 = {0xA0001347};
36 const TUid KExampleResolverUid = {0x10009DD0};
37 const TUid KMyResolverUid = {0x10009E12};
38 const TUid KDummyResolverUid1 = {0x200126CD};
40 const TInt KArraySize = 5;
42 TUid MyResolvers[KArraySize] = {
50 // The custom resolver in RAMOnly dir
51 _LIT(KDummyRscInC, "c:\\resource\\plugins\\dummycustomresolver1.rsc");
52 _LIT(KDummyDllInC, "c:\\sys\\bin\\dummycustomresolver1.dll");
53 _LIT(KDummyRscInZ, "z:\\ramonly\\dummycustomresolver1.rsc");
54 _LIT(KDummyDllInZ, "z:\\ramonly\\dummycustomresolver1.dll");
56 // Copies the Plugins to specific folder for testing purpose
57 LOCAL_C void CopyPluginsL()
59 EComTestUtils::FileManCopyFileL(KDummyRscInZ, KDummyRscInC);
60 EComTestUtils::FileManCopyFileL(KDummyDllInZ, KDummyDllInC);
63 // Deleting plugin from the RAM for cleanup purpose
64 LOCAL_C void DeleteTestPlugin()
66 TRAP_IGNORE(EComTestUtils::FileManDeleteFileL(KDummyRscInC));
67 TRAP_IGNORE(EComTestUtils::FileManDeleteFileL(KDummyDllInC));
70 // converts fast counter ticks to milliseconds
71 LOCAL_D TReal FastCountToMilliseconds(TUint32 aFastCount)
74 HAL::Get(HAL::EFastCounterFrequency, freqInHz);
75 TReal freqInkHz = (TReal)freqInHz / 1000;
76 return (TReal)aFastCount / freqInkHz;
79 // counter wrap around subtraction
80 LOCAL_D TUint32 ElaspedCounterTicks(TUint32 aStart, TUint32 aEnd)
84 return (aEnd - aStart);
88 return (KMaxTUint32 - aStart + aEnd + 1);
92 // sleep for 2 minutes and 15 seconds
93 LOCAL_D void WaitForLazyUnloadPassL(void)
95 // Performance results from winscw do not count.
96 // Hence sleep only in armv5.
98 const TInt32 KLazyDllUnloadPeriod = 135; // actual is 2 minutes.
100 test.Printf(_L("sleep %d s to avoid lazy DLL unload\n"), KLazyDllUnloadPeriod);
101 User::After( KLazyDllUnloadPeriod * 1000000 );
102 test.Printf(_L("wake up after sleeping %d s\n"), KLazyDllUnloadPeriod);
105 // Wait one second for plugin discovery
107 test.Printf(_L("sleep 1 s \n"));
108 User::After(1000000);
109 test.Printf(_L("wake up!\n"));
113 /** Check create test is within allowed limit.
114 @return True means test pass. False means fail.
116 LOCAL_D TBool CheckCreatePerf(TReal aMilliseconds)
118 // These thresholds have 33% margin, i.e. when the limit is 320 ms,
119 // the expected result is about 240 ms.
120 const TReal KH2DpNandThreshold = 420.0;
121 const TReal KH2NandThreshold = 420.0;
122 const TReal KH2RamThreshold = 400.0;
124 const TReal KH4DpNandThreshold = 200.0;
125 const TReal KH4NandThreshold = 200.0;
126 const TReal KH4RamThreshold = 180.0;
127 const TReal KH4MMCThreshold = 225.0;
128 //INFO: 'KH4MMCThreshold' is the threshold in case of WDP enabled configuration on H4.
129 // This was arrived at by running the test on a ROM built without the USE_DATA_PAGING defined.
130 // The time taken by this operation in the above configuration was used to set this threshold
132 const TReal KH6DpNandThreshold = 150.0;
133 const TReal KH6NandThreshold = 150.0;
134 const TReal KH6RamThreshold = 140.0;
137 TReal threshold = 0.0;
138 switch (EComTestUtils::GetHardwareConfiguration())
141 threshold = KH2RamThreshold;
143 case EPlatformH2NAND:
144 threshold = KH2NandThreshold;
146 case EPlatformH2NANDDP:
147 threshold = KH2DpNandThreshold;
150 threshold = KH4RamThreshold;
153 threshold = KH4MMCThreshold;
155 case EPlatformH4NAND:
156 threshold = KH4NandThreshold;
158 case EPlatformH4NANDDP:
159 threshold = KH4DpNandThreshold;
162 threshold = KH6RamThreshold;
164 case EPlatformH6NAND:
165 threshold = KH6NandThreshold;
167 case EPlatformH6NANDDP:
168 threshold = KH6DpNandThreshold;
171 // Ignore results on winscw and whatever unknown platform.
172 test.Printf(_L("custom resolver create perf test: %f ms\n"), aMilliseconds);
176 test.Printf(_L("custom resolver create perf test: %f ms (limit %f)\n"), aMilliseconds, threshold);
178 // the thresholds are for urel only
181 return (threshold > aMilliseconds);
185 /** Check list test is within allowed limit.
186 @return True means test pass. False means fail.
188 LOCAL_D TBool CheckListPerf(TReal aMilliseconds)
190 // These thresholds have 33% margin, i.e. when the limit is 300 ms,
191 // the expected result is about 200 ms.
192 const TReal KH2DpNandThreshold = 360.0;
193 const TReal KH2NandThreshold = 360.0;
194 const TReal KH2RamThreshold = 320.0;
196 const TReal KH4DpNandThreshold = 150.0;
197 const TReal KH4NandThreshold = 150.0;
198 const TReal KH4RamThreshold = 140.0;
199 const TReal KH4MMCThreshold = 140.0;
200 //INFO: 'KH4MMCThreshold' is the threshold in case of WDP enabled configuration on H4.
201 // This was arrived at by running the test on a ROM built without the USE_DATA_PAGING defined.
202 // The time taken by this operation in the above configuration was used to set this threshold
204 const TReal KH6DpNandThreshold = 150.0;
205 const TReal KH6NandThreshold = 150.0;
206 const TReal KH6RamThreshold = 140.0;
209 TReal threshold = 0.0;
210 switch (EComTestUtils::GetHardwareConfiguration())
213 threshold = KH2RamThreshold;
215 case EPlatformH2NAND:
216 threshold = KH2NandThreshold;
218 case EPlatformH2NANDDP:
219 threshold = KH2DpNandThreshold;
222 threshold = KH4RamThreshold;
225 threshold = KH4MMCThreshold;
227 case EPlatformH4NAND:
228 threshold = KH4NandThreshold;
230 case EPlatformH4NANDDP:
231 threshold = KH4DpNandThreshold;
234 threshold = KH6RamThreshold;
236 case EPlatformH6NAND:
237 threshold = KH6NandThreshold;
239 case EPlatformH6NANDDP:
240 threshold = KH6DpNandThreshold;
243 // Ignore results on winscw and whatever unknown platform.
244 test.Printf(_L("custom resolver list perf test: %f ms\n"), aMilliseconds);
248 test.Printf(_L("custom resolver list perf test: %f ms (limit %f)\n"), aMilliseconds, threshold);
250 // the thresholds are for urel only
253 return (threshold > aMilliseconds);
257 /** Check create test in cache miss is within allowed limit.
258 @return True means test pass. False means fail.
260 LOCAL_D TBool CheckCacheMissCreatePerf(TReal aMilliseconds)
262 // These thresholds have 33% margin, i.e. when the limit is 1200 ms,
263 // the expected result is about 900 ms.
264 const TReal KH2DpNandThreshold = 2250.0;
265 const TReal KH2NandThreshold = 2250.0;
266 const TReal KH2RamThreshold = 1000.0;
268 const TReal KH4DpNandThreshold = 1350.0;
269 const TReal KH4NandThreshold = 1350.0;
270 const TReal KH4RamThreshold = 500.0;
271 const TReal KH4MMCThreshold = 1350.0;
272 //INFO: 'KH4MMCThreshold' is the threshold in case of WDP enabled configuration on H4.
273 // This was arrived at by running the test on a ROM built without the USE_DATA_PAGING defined.
274 // The time taken by this operation in the above configuration was used to set this threshold
276 const TReal KH6DpNandThreshold = 1000.0;
277 const TReal KH6NandThreshold = 1000.0;
278 const TReal KH6RamThreshold = 350.0;
280 TReal threshold = 0.0;
281 switch (EComTestUtils::GetHardwareConfiguration())
284 threshold = KH2RamThreshold;
286 case EPlatformH2NAND:
287 threshold = KH2NandThreshold;
289 case EPlatformH2NANDDP:
290 threshold = KH2DpNandThreshold;
293 threshold = KH4RamThreshold;
296 threshold = KH4MMCThreshold;
298 case EPlatformH4NAND:
299 threshold = KH4NandThreshold;
301 case EPlatformH4NANDDP:
302 threshold = KH4DpNandThreshold;
305 threshold = KH6RamThreshold;
307 case EPlatformH6NAND:
308 threshold = KH6NandThreshold;
310 case EPlatformH6NANDDP:
311 threshold = KH6DpNandThreshold;
314 // Ignore results on winscw and whatever unknown platform.
315 test.Printf(_L("Cache miss create perf test: %f ms\n"), aMilliseconds);
319 test.Printf(_L("Cache miss create perf test: %f ms (limit %f)\n"), aMilliseconds, threshold);
321 // the thresholds are for urel only
324 return (threshold > aMilliseconds);
328 /** Check list test in cache miss is within allowed limit.
329 @return True means test pass. False means fail.
331 LOCAL_D TBool CheckCacheMissListPerf(TReal aMilliseconds)
333 // These thresholds have 33% margin, i.e. when the limit is 1200 ms,
334 // the expected result is about 900 ms.
335 const TReal KH2DpNandThreshold = 2250.0;
336 const TReal KH2NandThreshold = 2250.0;
337 const TReal KH2RamThreshold = 1000.0;
339 const TReal KH4DpNandThreshold = 1350.0;
340 const TReal KH4NandThreshold = 1350.0;
341 const TReal KH4RamThreshold = 500.0;
342 const TReal KH4MMCThreshold = 1350.0;
343 //INFO: 'KH4MMCThreshold' is the threshold in case of WDP enabled configuration on H4.
344 // This was arrived at by running the test on a ROM built without the USE_DATA_PAGING defined.
345 // The time taken by this operation in the above configuration was used to set this threshold
347 TReal threshold = 0.0;
348 switch (EComTestUtils::GetHardwareConfiguration())
351 threshold = KH2RamThreshold;
353 case EPlatformH2NAND:
354 threshold = KH2NandThreshold;
356 case EPlatformH2NANDDP:
357 threshold = KH2DpNandThreshold;
360 threshold = KH4RamThreshold;
363 threshold = KH4MMCThreshold;
365 case EPlatformH4NAND:
366 threshold = KH4NandThreshold;
368 case EPlatformH4NANDDP:
369 threshold = KH4DpNandThreshold;
372 // Ignore results on winscw and whatever unknown platform.
373 test.Printf(_L("Cache miss list perf test: %f ms\n"), aMilliseconds);
377 test.Printf(_L("Cache miss list perf test: %f ms (limit %f)\n"), aMilliseconds, threshold);
379 // the thresholds are for urel only
382 return (threshold > aMilliseconds);
386 /** do custom resolver create test
387 @return total ticks spent during the create request.
389 LOCAL_D TUint32 DoCreatePerfTestL(const TUid aResolverUid)
391 CExampleInterface::TExampleInterfaceInitParams initParams;
392 initParams.integer = 1;
393 initParams.descriptor = NULL;
396 TEComResolverParams resolverparams;
397 //Set any resolver data type as it will never reach the resolving part
398 resolverparams.SetDataType(KDummyData);
399 TUint32 startTime, endTime;
401 startTime = User::FastCounter();
402 p = REComSession::CreateImplementationL(KCExampleInterfaceUid,
407 endTime = User::FastCounter();
410 REComSession::DestroyedImplementation(instanceKey);
411 CExampleInterface* impl = reinterpret_cast<CExampleInterface*>(p);
414 return ElaspedCounterTicks(startTime, endTime);
417 /** do custom resolver list test
418 @return total ticks spent during the list request.
420 LOCAL_D TUint32 DoListPerfTestL(const TUid aResolverUid)
422 TEComResolverParams resolverparams;
423 //Set any resolver data type as it will never reach the resolving part
424 resolverparams.SetDataType(KDummyData);
425 RImplInfoPtrArray ifArray;
426 TUint32 startTime, endTime;
428 startTime = User::FastCounter();
429 REComSession::ListImplementationsL(KCExampleInterfaceUid,
433 endTime = User::FastCounter();
435 test(ifArray.Count() > 0);
436 ifArray.ResetAndDestroy();
438 return ElaspedCounterTicks(startTime, endTime);
442 @SYMTestCaseID SYSLIB-ECOM-PT-4009
443 @SYMTestCaseDesc Time how long it takes to do 100 create requests and
444 100 list requests involving custom resolvers.
445 @SYMTestPriority High
446 @SYMTestActions Run create and list requests in a loop.
447 @SYMTestExpectedResults on hw testing, the time must be within prescribed threshold.
450 LOCAL_D void RunResolverPerfTestL()
452 test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-PT-4009 Time a number of create and list requests\n "));
454 // If ECOM server is not yet running, the first message will take long
455 // time because ECOM has to scandir and parse spi file. So do a dummy run
456 // to kick start ECOM.
457 DoListPerfTestL(MyResolvers[0]);
459 const TInt KNumLoops = 100;
462 TUint32 createTicks = 0;
463 TUint32 listTicks = 0;
464 for (TInt i = 0; i < KNumLoops; i++)
466 j = i % KCustomResolverCacheSize;
467 createTicks += DoCreatePerfTestL(MyResolvers[j]);
468 listTicks += DoListPerfTestL(MyResolvers[j]);
471 REComSession::FinalClose();
473 TReal createMs = FastCountToMilliseconds(createTicks);
474 TBool createTestPass = CheckCreatePerf(createMs);
476 TReal listMs = FastCountToMilliseconds(listTicks);
477 TBool listTestPass = CheckListPerf(listMs);
479 test(createTestPass);
484 @SYMTestCaseID SYSLIB-ECOM-PT-4010
485 @SYMTestCaseDesc Verify CR1182 does not slow down list and create
486 request significantly if there are a lot of cache misses.
487 @SYMTestPriority High
488 @SYMTestActions Repeatedly do list and create requests with five
489 custom resolvers (1 more than max cache size). Time how long it takes.
490 @SYMTestExpectedResults on hw testing, the time must be within prescribed threshold.
493 LOCAL_D void CacheMissPerfTestL()
495 test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-PT-4010 Cache miss performance test\n "));
497 test(KArraySize > KCustomResolverCacheSize);
499 const TInt KNumLoops = 100;
502 TUint32 createTicks = 0;
503 for (i = 0; i < KNumLoops; i++)
506 createTicks += DoCreatePerfTestL(MyResolvers[j]);
509 TUint32 listTicks = 0;
510 for (i = 0; i < KNumLoops; i++)
513 listTicks += DoListPerfTestL(MyResolvers[j]);
516 REComSession::FinalClose();
518 TReal createMs = FastCountToMilliseconds(createTicks);
519 TBool createTestPass = CheckCacheMissCreatePerf(createMs);
521 TReal listMs = FastCountToMilliseconds(listTicks);
522 TBool listTestPass = CheckCacheMissListPerf(listMs);
524 test(createTestPass);
528 LOCAL_C void RunTestL()
532 WaitForLazyUnloadPassL();
534 RunResolverPerfTestL();
535 CacheMissPerfTestL();
537 // pause till ecom server flushes the cache.
538 // otherwise may affect the next test to run.
539 User::After(KCustomResolverCacheTimeout + 1000000);
546 GLDEF_C TInt E32Main()
552 test.Start(_L("CR1182 Perf. tests."));
554 CTrapCleanup* cleanup = CTrapCleanup::New();
555 test(cleanup != NULL);
557 TRAP(err,RunTestL());
558 test(err == KErrNone);