sl@0: // Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // sl@0: sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: #include "Interface.h" // for TExampleInterfaceInitParams sl@0: #include "EComPatchDataConstantv2.h" sl@0: #include "../EcomTestUtils/EcomTestUtils.h" sl@0: sl@0: LOCAL_D RTest test(_L("Custom Resolver Load Time Performance Test")); sl@0: sl@0: _LIT8(KDummyData,"dummy"); sl@0: sl@0: // KCExampleInterfaceUid is defined in "Interface.inl" ! sl@0: sl@0: // custom resolvers available for testing. sl@0: // 200126cd, A0001346 and A0001347 are allocated outside the sl@0: // ECOM Uid Allocations.doc sl@0: const TUid KDummyResolverUid2 = {0xA0001346}; sl@0: const TUid KDummyResolverUid3 = {0xA0001347}; sl@0: const TUid KExampleResolverUid = {0x10009DD0}; sl@0: const TUid KMyResolverUid = {0x10009E12}; sl@0: const TUid KDummyResolverUid1 = {0x200126CD}; sl@0: sl@0: const TInt KArraySize = 5; sl@0: sl@0: TUid MyResolvers[KArraySize] = { sl@0: KDummyResolverUid2, sl@0: KDummyResolverUid1, sl@0: KExampleResolverUid, sl@0: KMyResolverUid, sl@0: KDummyResolverUid3 sl@0: }; sl@0: sl@0: // The custom resolver in RAMOnly dir sl@0: _LIT(KDummyRscInC, "c:\\resource\\plugins\\dummycustomresolver1.rsc"); sl@0: _LIT(KDummyDllInC, "c:\\sys\\bin\\dummycustomresolver1.dll"); sl@0: _LIT(KDummyRscInZ, "z:\\ramonly\\dummycustomresolver1.rsc"); sl@0: _LIT(KDummyDllInZ, "z:\\ramonly\\dummycustomresolver1.dll"); sl@0: sl@0: // Copies the Plugins to specific folder for testing purpose sl@0: LOCAL_C void CopyPluginsL() sl@0: { sl@0: EComTestUtils::FileManCopyFileL(KDummyRscInZ, KDummyRscInC); sl@0: EComTestUtils::FileManCopyFileL(KDummyDllInZ, KDummyDllInC); sl@0: } sl@0: sl@0: // Deleting plugin from the RAM for cleanup purpose sl@0: LOCAL_C void DeleteTestPlugin() sl@0: { sl@0: TRAP_IGNORE(EComTestUtils::FileManDeleteFileL(KDummyRscInC)); sl@0: TRAP_IGNORE(EComTestUtils::FileManDeleteFileL(KDummyDllInC)); sl@0: } sl@0: sl@0: // converts fast counter ticks to milliseconds sl@0: LOCAL_D TReal FastCountToMilliseconds(TUint32 aFastCount) sl@0: { sl@0: TInt freqInHz; sl@0: HAL::Get(HAL::EFastCounterFrequency, freqInHz); sl@0: TReal freqInkHz = (TReal)freqInHz / 1000; sl@0: return (TReal)aFastCount / freqInkHz; sl@0: } sl@0: sl@0: // counter wrap around subtraction sl@0: LOCAL_D TUint32 ElaspedCounterTicks(TUint32 aStart, TUint32 aEnd) sl@0: { sl@0: if (aEnd >= aStart) sl@0: { sl@0: return (aEnd - aStart); sl@0: } sl@0: else sl@0: { sl@0: return (KMaxTUint32 - aStart + aEnd + 1); sl@0: } sl@0: } sl@0: sl@0: // sleep for 2 minutes and 15 seconds sl@0: LOCAL_D void WaitForLazyUnloadPassL(void) sl@0: { sl@0: // Performance results from winscw do not count. sl@0: // Hence sleep only in armv5. sl@0: #ifdef __ARMCC__ sl@0: const TInt32 KLazyDllUnloadPeriod = 135; // actual is 2 minutes. sl@0: sl@0: test.Printf(_L("sleep %d s to avoid lazy DLL unload\n"), KLazyDllUnloadPeriod); sl@0: User::After( KLazyDllUnloadPeriod * 1000000 ); sl@0: test.Printf(_L("wake up after sleeping %d s\n"), KLazyDllUnloadPeriod); sl@0: #endif sl@0: sl@0: // Wait one second for plugin discovery sl@0: #ifdef __X86GCC__ sl@0: test.Printf(_L("sleep 1 s \n")); sl@0: User::After(1000000); sl@0: test.Printf(_L("wake up!\n")); sl@0: #endif sl@0: } sl@0: sl@0: /** Check create test is within allowed limit. sl@0: @return True means test pass. False means fail. sl@0: */ sl@0: LOCAL_D TBool CheckCreatePerf(TReal aMilliseconds) sl@0: { sl@0: // These thresholds have 33% margin, i.e. when the limit is 320 ms, sl@0: // the expected result is about 240 ms. sl@0: const TReal KH2DpNandThreshold = 420.0; sl@0: const TReal KH2NandThreshold = 420.0; sl@0: const TReal KH2RamThreshold = 400.0; sl@0: sl@0: const TReal KH4DpNandThreshold = 200.0; sl@0: const TReal KH4NandThreshold = 200.0; sl@0: const TReal KH4RamThreshold = 180.0; sl@0: const TReal KH4MMCThreshold = 225.0; sl@0: //INFO: 'KH4MMCThreshold' is the threshold in case of WDP enabled configuration on H4. sl@0: // This was arrived at by running the test on a ROM built without the USE_DATA_PAGING defined. sl@0: // The time taken by this operation in the above configuration was used to set this threshold sl@0: sl@0: const TReal KH6DpNandThreshold = 150.0; sl@0: const TReal KH6NandThreshold = 150.0; sl@0: const TReal KH6RamThreshold = 140.0; sl@0: sl@0: sl@0: TReal threshold = 0.0; sl@0: switch (EComTestUtils::GetHardwareConfiguration()) sl@0: { sl@0: case EPlatformH2RAM: sl@0: threshold = KH2RamThreshold; sl@0: break; sl@0: case EPlatformH2NAND: sl@0: threshold = KH2NandThreshold; sl@0: break; sl@0: case EPlatformH2NANDDP: sl@0: threshold = KH2DpNandThreshold; sl@0: break; sl@0: case EPlatformH4RAM: sl@0: threshold = KH4RamThreshold; sl@0: break; sl@0: case EPlatformH4MMC: sl@0: threshold = KH4MMCThreshold; sl@0: break; sl@0: case EPlatformH4NAND: sl@0: threshold = KH4NandThreshold; sl@0: break; sl@0: case EPlatformH4NANDDP: sl@0: threshold = KH4DpNandThreshold; sl@0: break; sl@0: case EPlatformH6RAM: sl@0: threshold = KH6RamThreshold; sl@0: break; sl@0: case EPlatformH6NAND: sl@0: threshold = KH6NandThreshold; sl@0: break; sl@0: case EPlatformH6NANDDP: sl@0: threshold = KH6DpNandThreshold; sl@0: break; sl@0: default: sl@0: // Ignore results on winscw and whatever unknown platform. sl@0: test.Printf(_L("custom resolver create perf test: %f ms\n"), aMilliseconds); sl@0: return ETrue; sl@0: } sl@0: sl@0: test.Printf(_L("custom resolver create perf test: %f ms (limit %f)\n"), aMilliseconds, threshold); sl@0: #ifdef _DEBUG sl@0: // the thresholds are for urel only sl@0: return ETrue; sl@0: #else sl@0: return (threshold > aMilliseconds); sl@0: #endif sl@0: } sl@0: sl@0: /** Check list test is within allowed limit. sl@0: @return True means test pass. False means fail. sl@0: */ sl@0: LOCAL_D TBool CheckListPerf(TReal aMilliseconds) sl@0: { sl@0: // These thresholds have 33% margin, i.e. when the limit is 300 ms, sl@0: // the expected result is about 200 ms. sl@0: const TReal KH2DpNandThreshold = 360.0; sl@0: const TReal KH2NandThreshold = 360.0; sl@0: const TReal KH2RamThreshold = 320.0; sl@0: sl@0: const TReal KH4DpNandThreshold = 150.0; sl@0: const TReal KH4NandThreshold = 150.0; sl@0: const TReal KH4RamThreshold = 140.0; sl@0: const TReal KH4MMCThreshold = 140.0; sl@0: //INFO: 'KH4MMCThreshold' is the threshold in case of WDP enabled configuration on H4. sl@0: // This was arrived at by running the test on a ROM built without the USE_DATA_PAGING defined. sl@0: // The time taken by this operation in the above configuration was used to set this threshold sl@0: sl@0: const TReal KH6DpNandThreshold = 150.0; sl@0: const TReal KH6NandThreshold = 150.0; sl@0: const TReal KH6RamThreshold = 140.0; sl@0: sl@0: sl@0: TReal threshold = 0.0; sl@0: switch (EComTestUtils::GetHardwareConfiguration()) sl@0: { sl@0: case EPlatformH2RAM: sl@0: threshold = KH2RamThreshold; sl@0: break; sl@0: case EPlatformH2NAND: sl@0: threshold = KH2NandThreshold; sl@0: break; sl@0: case EPlatformH2NANDDP: sl@0: threshold = KH2DpNandThreshold; sl@0: break; sl@0: case EPlatformH4RAM: sl@0: threshold = KH4RamThreshold; sl@0: break; sl@0: case EPlatformH4MMC: sl@0: threshold = KH4MMCThreshold; sl@0: break; sl@0: case EPlatformH4NAND: sl@0: threshold = KH4NandThreshold; sl@0: break; sl@0: case EPlatformH4NANDDP: sl@0: threshold = KH4DpNandThreshold; sl@0: break; sl@0: case EPlatformH6RAM: sl@0: threshold = KH6RamThreshold; sl@0: break; sl@0: case EPlatformH6NAND: sl@0: threshold = KH6NandThreshold; sl@0: break; sl@0: case EPlatformH6NANDDP: sl@0: threshold = KH6DpNandThreshold; sl@0: break; sl@0: default: sl@0: // Ignore results on winscw and whatever unknown platform. sl@0: test.Printf(_L("custom resolver list perf test: %f ms\n"), aMilliseconds); sl@0: return ETrue; sl@0: } sl@0: sl@0: test.Printf(_L("custom resolver list perf test: %f ms (limit %f)\n"), aMilliseconds, threshold); sl@0: #ifdef _DEBUG sl@0: // the thresholds are for urel only sl@0: return ETrue; sl@0: #else sl@0: return (threshold > aMilliseconds); sl@0: #endif sl@0: } sl@0: sl@0: /** Check create test in cache miss is within allowed limit. sl@0: @return True means test pass. False means fail. sl@0: */ sl@0: LOCAL_D TBool CheckCacheMissCreatePerf(TReal aMilliseconds) sl@0: { sl@0: // These thresholds have 33% margin, i.e. when the limit is 1200 ms, sl@0: // the expected result is about 900 ms. sl@0: const TReal KH2DpNandThreshold = 2250.0; sl@0: const TReal KH2NandThreshold = 2250.0; sl@0: const TReal KH2RamThreshold = 1000.0; sl@0: sl@0: const TReal KH4DpNandThreshold = 1350.0; sl@0: const TReal KH4NandThreshold = 1350.0; sl@0: const TReal KH4RamThreshold = 500.0; sl@0: const TReal KH4MMCThreshold = 1350.0; sl@0: //INFO: 'KH4MMCThreshold' is the threshold in case of WDP enabled configuration on H4. sl@0: // This was arrived at by running the test on a ROM built without the USE_DATA_PAGING defined. sl@0: // The time taken by this operation in the above configuration was used to set this threshold sl@0: sl@0: const TReal KH6DpNandThreshold = 1000.0; sl@0: const TReal KH6NandThreshold = 1000.0; sl@0: const TReal KH6RamThreshold = 350.0; sl@0: sl@0: TReal threshold = 0.0; sl@0: switch (EComTestUtils::GetHardwareConfiguration()) sl@0: { sl@0: case EPlatformH2RAM: sl@0: threshold = KH2RamThreshold; sl@0: break; sl@0: case EPlatformH2NAND: sl@0: threshold = KH2NandThreshold; sl@0: break; sl@0: case EPlatformH2NANDDP: sl@0: threshold = KH2DpNandThreshold; sl@0: break; sl@0: case EPlatformH4RAM: sl@0: threshold = KH4RamThreshold; sl@0: break; sl@0: case EPlatformH4MMC: sl@0: threshold = KH4MMCThreshold; sl@0: break; sl@0: case EPlatformH4NAND: sl@0: threshold = KH4NandThreshold; sl@0: break; sl@0: case EPlatformH4NANDDP: sl@0: threshold = KH4DpNandThreshold; sl@0: break; sl@0: case EPlatformH6RAM: sl@0: threshold = KH6RamThreshold; sl@0: break; sl@0: case EPlatformH6NAND: sl@0: threshold = KH6NandThreshold; sl@0: break; sl@0: case EPlatformH6NANDDP: sl@0: threshold = KH6DpNandThreshold; sl@0: break; sl@0: default: sl@0: // Ignore results on winscw and whatever unknown platform. sl@0: test.Printf(_L("Cache miss create perf test: %f ms\n"), aMilliseconds); sl@0: return ETrue; sl@0: } sl@0: sl@0: test.Printf(_L("Cache miss create perf test: %f ms (limit %f)\n"), aMilliseconds, threshold); sl@0: #ifdef _DEBUG sl@0: // the thresholds are for urel only sl@0: return ETrue; sl@0: #else sl@0: return (threshold > aMilliseconds); sl@0: #endif sl@0: } sl@0: sl@0: /** Check list test in cache miss is within allowed limit. sl@0: @return True means test pass. False means fail. sl@0: */ sl@0: LOCAL_D TBool CheckCacheMissListPerf(TReal aMilliseconds) sl@0: { sl@0: // These thresholds have 33% margin, i.e. when the limit is 1200 ms, sl@0: // the expected result is about 900 ms. sl@0: const TReal KH2DpNandThreshold = 2250.0; sl@0: const TReal KH2NandThreshold = 2250.0; sl@0: const TReal KH2RamThreshold = 1000.0; sl@0: sl@0: const TReal KH4DpNandThreshold = 1350.0; sl@0: const TReal KH4NandThreshold = 1350.0; sl@0: const TReal KH4RamThreshold = 500.0; sl@0: const TReal KH4MMCThreshold = 1350.0; sl@0: //INFO: 'KH4MMCThreshold' is the threshold in case of WDP enabled configuration on H4. sl@0: // This was arrived at by running the test on a ROM built without the USE_DATA_PAGING defined. sl@0: // The time taken by this operation in the above configuration was used to set this threshold sl@0: sl@0: TReal threshold = 0.0; sl@0: switch (EComTestUtils::GetHardwareConfiguration()) sl@0: { sl@0: case EPlatformH2RAM: sl@0: threshold = KH2RamThreshold; sl@0: break; sl@0: case EPlatformH2NAND: sl@0: threshold = KH2NandThreshold; sl@0: break; sl@0: case EPlatformH2NANDDP: sl@0: threshold = KH2DpNandThreshold; sl@0: break; sl@0: case EPlatformH4RAM: sl@0: threshold = KH4RamThreshold; sl@0: break; sl@0: case EPlatformH4MMC: sl@0: threshold = KH4MMCThreshold; sl@0: break; sl@0: case EPlatformH4NAND: sl@0: threshold = KH4NandThreshold; sl@0: break; sl@0: case EPlatformH4NANDDP: sl@0: threshold = KH4DpNandThreshold; sl@0: break; sl@0: default: sl@0: // Ignore results on winscw and whatever unknown platform. sl@0: test.Printf(_L("Cache miss list perf test: %f ms\n"), aMilliseconds); sl@0: return ETrue; sl@0: } sl@0: sl@0: test.Printf(_L("Cache miss list perf test: %f ms (limit %f)\n"), aMilliseconds, threshold); sl@0: #ifdef _DEBUG sl@0: // the thresholds are for urel only sl@0: return ETrue; sl@0: #else sl@0: return (threshold > aMilliseconds); sl@0: #endif sl@0: } sl@0: sl@0: /** do custom resolver create test sl@0: @return total ticks spent during the create request. sl@0: */ sl@0: LOCAL_D TUint32 DoCreatePerfTestL(const TUid aResolverUid) sl@0: { sl@0: CExampleInterface::TExampleInterfaceInitParams initParams; sl@0: initParams.integer = 1; sl@0: initParams.descriptor = NULL; sl@0: TAny* p = NULL; sl@0: TUid instanceKey; sl@0: TEComResolverParams resolverparams; sl@0: //Set any resolver data type as it will never reach the resolving part sl@0: resolverparams.SetDataType(KDummyData); sl@0: TUint32 startTime, endTime; sl@0: sl@0: startTime = User::FastCounter(); sl@0: p = REComSession::CreateImplementationL(KCExampleInterfaceUid, sl@0: instanceKey, sl@0: &initParams, sl@0: resolverparams, sl@0: aResolverUid); sl@0: endTime = User::FastCounter(); sl@0: sl@0: test(p != NULL); sl@0: REComSession::DestroyedImplementation(instanceKey); sl@0: CExampleInterface* impl = reinterpret_cast(p); sl@0: delete impl; sl@0: sl@0: return ElaspedCounterTicks(startTime, endTime); sl@0: } sl@0: sl@0: /** do custom resolver list test sl@0: @return total ticks spent during the list request. sl@0: */ sl@0: LOCAL_D TUint32 DoListPerfTestL(const TUid aResolverUid) sl@0: { sl@0: TEComResolverParams resolverparams; sl@0: //Set any resolver data type as it will never reach the resolving part sl@0: resolverparams.SetDataType(KDummyData); sl@0: RImplInfoPtrArray ifArray; sl@0: TUint32 startTime, endTime; sl@0: sl@0: startTime = User::FastCounter(); sl@0: REComSession::ListImplementationsL(KCExampleInterfaceUid, sl@0: resolverparams, sl@0: aResolverUid, sl@0: ifArray); sl@0: endTime = User::FastCounter(); sl@0: sl@0: test(ifArray.Count() > 0); sl@0: ifArray.ResetAndDestroy(); sl@0: sl@0: return ElaspedCounterTicks(startTime, endTime); sl@0: } sl@0: sl@0: /** sl@0: @SYMTestCaseID SYSLIB-ECOM-PT-4009 sl@0: @SYMTestCaseDesc Time how long it takes to do 100 create requests and sl@0: 100 list requests involving custom resolvers. sl@0: @SYMTestPriority High sl@0: @SYMTestActions Run create and list requests in a loop. sl@0: @SYMTestExpectedResults on hw testing, the time must be within prescribed threshold. sl@0: @SYMCR CR1182 sl@0: */ sl@0: LOCAL_D void RunResolverPerfTestL() sl@0: { sl@0: test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-PT-4009 Time a number of create and list requests\n ")); sl@0: sl@0: // If ECOM server is not yet running, the first message will take long sl@0: // time because ECOM has to scandir and parse spi file. So do a dummy run sl@0: // to kick start ECOM. sl@0: DoListPerfTestL(MyResolvers[0]); sl@0: sl@0: const TInt KNumLoops = 100; sl@0: TInt j; sl@0: sl@0: TUint32 createTicks = 0; sl@0: TUint32 listTicks = 0; sl@0: for (TInt i = 0; i < KNumLoops; i++) sl@0: { sl@0: j = i % KCustomResolverCacheSize; sl@0: createTicks += DoCreatePerfTestL(MyResolvers[j]); sl@0: listTicks += DoListPerfTestL(MyResolvers[j]); sl@0: } sl@0: sl@0: REComSession::FinalClose(); sl@0: sl@0: TReal createMs = FastCountToMilliseconds(createTicks); sl@0: TBool createTestPass = CheckCreatePerf(createMs); sl@0: sl@0: TReal listMs = FastCountToMilliseconds(listTicks); sl@0: TBool listTestPass = CheckListPerf(listMs); sl@0: sl@0: test(createTestPass); sl@0: test(listTestPass); sl@0: } sl@0: sl@0: /** sl@0: @SYMTestCaseID SYSLIB-ECOM-PT-4010 sl@0: @SYMTestCaseDesc Verify CR1182 does not slow down list and create sl@0: request significantly if there are a lot of cache misses. sl@0: @SYMTestPriority High sl@0: @SYMTestActions Repeatedly do list and create requests with five sl@0: custom resolvers (1 more than max cache size). Time how long it takes. sl@0: @SYMTestExpectedResults on hw testing, the time must be within prescribed threshold. sl@0: @SYMCR CR1182 sl@0: */ sl@0: LOCAL_D void CacheMissPerfTestL() sl@0: { sl@0: test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-PT-4010 Cache miss performance test\n ")); sl@0: sl@0: test(KArraySize > KCustomResolverCacheSize); sl@0: sl@0: const TInt KNumLoops = 100; sl@0: TInt i, j; sl@0: sl@0: TUint32 createTicks = 0; sl@0: for (i = 0; i < KNumLoops; i++) sl@0: { sl@0: j = i % KArraySize; sl@0: createTicks += DoCreatePerfTestL(MyResolvers[j]); sl@0: } sl@0: sl@0: TUint32 listTicks = 0; sl@0: for (i = 0; i < KNumLoops; i++) sl@0: { sl@0: j = i % KArraySize; sl@0: listTicks += DoListPerfTestL(MyResolvers[j]); sl@0: } sl@0: sl@0: REComSession::FinalClose(); sl@0: sl@0: TReal createMs = FastCountToMilliseconds(createTicks); sl@0: TBool createTestPass = CheckCacheMissCreatePerf(createMs); sl@0: sl@0: TReal listMs = FastCountToMilliseconds(listTicks); sl@0: TBool listTestPass = CheckCacheMissListPerf(listMs); sl@0: sl@0: test(createTestPass); sl@0: test(listTestPass); sl@0: } sl@0: sl@0: LOCAL_C void RunTestL() sl@0: { sl@0: __UHEAP_MARK; sl@0: CopyPluginsL(); sl@0: WaitForLazyUnloadPassL(); sl@0: sl@0: RunResolverPerfTestL(); sl@0: CacheMissPerfTestL(); sl@0: sl@0: // pause till ecom server flushes the cache. sl@0: // otherwise may affect the next test to run. sl@0: User::After(KCustomResolverCacheTimeout + 1000000); sl@0: sl@0: DeleteTestPlugin(); sl@0: sl@0: __UHEAP_MARKEND; sl@0: } sl@0: sl@0: GLDEF_C TInt E32Main() sl@0: { sl@0: TInt err=KErrNone; sl@0: __UHEAP_MARK; sl@0: sl@0: test.Title(); sl@0: test.Start(_L("CR1182 Perf. tests.")); sl@0: sl@0: CTrapCleanup* cleanup = CTrapCleanup::New(); sl@0: test(cleanup != NULL); sl@0: sl@0: TRAP(err,RunTestL()); sl@0: test(err == KErrNone); sl@0: sl@0: delete cleanup; sl@0: sl@0: test.End(); sl@0: test.Close(); sl@0: sl@0: __UHEAP_MARKEND; sl@0: return(err); sl@0: }