sl@0: // Copyright (c) 2009-2010 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 sl@0: sl@0: using namespace NFeature; sl@0: sl@0: TInt TheFastCounterFreq = 0; sl@0: sl@0: const TInt KInvalidFeatureId1 = 90901671; sl@0: const TUid KInvalidFeatureUid1 = {KInvalidFeatureId1}; sl@0: const TUid KNewFeatureUid = {0x7888ABC1}; sl@0: sl@0: /////////////////////////////////////////////////////////////////////////////////////// sl@0: sl@0: static RTest TheTest(_L("t_fmgrperformance")); sl@0: sl@0: /////////////////////////////////////////////////////////////////////////////////////// sl@0: sl@0: //Deletes all created test files. sl@0: void DestroyTestEnv() sl@0: { sl@0: } sl@0: sl@0: /////////////////////////////////////////////////////////////////////////////////////// sl@0: /////////////////////////////////////////////////////////////////////////////////////// sl@0: //Test macros and functions sl@0: void Check1(TInt aValue, TInt aLine) sl@0: { sl@0: if(!aValue) sl@0: { sl@0: DestroyTestEnv(); sl@0: RDebug::Print(_L("*** Expression evaluated to false. Line %d\r\n"), aLine); sl@0: TheTest(EFalse, aLine); sl@0: } sl@0: } sl@0: void Check2(TInt aValue, TInt aExpected, TInt aLine) sl@0: { sl@0: if(aValue != aExpected) sl@0: { sl@0: DestroyTestEnv(); sl@0: RDebug::Print(_L("*** Expected: %d, got: %d. Line %d\r\n"), aExpected, aValue, aLine); sl@0: TheTest(EFalse, aLine); sl@0: } sl@0: } sl@0: #define TEST(arg) ::Check1((arg), __LINE__) sl@0: #define TEST2(aValue, aExpected) ::Check2(aValue, aExpected, __LINE__) sl@0: sl@0: /////////////////////////////////////////////////////////////////////////////////////// sl@0: sl@0: TInt TimeDiffUs(TUint32 aStartTicks, TUint32 aEndTicks) sl@0: { sl@0: if(TheFastCounterFreq == 0) sl@0: { sl@0: TEST2(HAL::Get(HAL::EFastCounterFrequency, TheFastCounterFreq), KErrNone); sl@0: TheTest.Printf(_L("===Fast counter frequency = %d Hz\r\n"), TheFastCounterFreq); sl@0: } sl@0: TInt64 diffTicks = (TInt64)aEndTicks - (TInt64)aStartTicks; sl@0: if(diffTicks < 0) sl@0: { sl@0: diffTicks = KMaxTUint32 + diffTicks + 1; sl@0: } sl@0: const TInt KMicroSecIn1Sec = 1000000; sl@0: TInt us = (diffTicks * KMicroSecIn1Sec) / TheFastCounterFreq; sl@0: return us; sl@0: } sl@0: sl@0: void PrintTime(const TDesC& aFmt, TUint32 aStartTicks, TUint32 aEndTicks) sl@0: { sl@0: TInt us = TimeDiffUs(aStartTicks, aEndTicks); sl@0: TheTest.Printf(aFmt, us); sl@0: } sl@0: sl@0: /** sl@0: @SYMTestCaseID PDS-EFM-CT-4106 sl@0: @SYMTestCaseDesc sl@0: @SYMTestPriority High sl@0: @SYMTestActions sl@0: @SYMTestExpectedResults Test must not fail sl@0: @SYMDEF DEF144262 sl@0: */ sl@0: void FeatureControlTest() sl@0: { sl@0: TFeatureEntry fentry; sl@0: sl@0: TUint32 start = User::FastCounter(); sl@0: RFeatureControl ctrl; sl@0: sl@0: TInt err = ctrl.Open(); sl@0: TEST2(err, KErrNone); sl@0: TUint32 end = User::FastCounter(); sl@0: PrintTime(_L("===1 RFeatureControl::Open(), time=%d us\r\n"), start, end); sl@0: sl@0: //The second RFeatureControl::Open() call is "free", because only one connection per thread is kept in TLS sl@0: RFeatureControl ctrl2; sl@0: start = User::FastCounter(); sl@0: err = ctrl2.Open(); sl@0: TEST2(err, KErrNone); sl@0: end = User::FastCounter(); sl@0: PrintTime(_L("===2 RFeatureControl::Open(), time=%d us\r\n"), start, end); sl@0: sl@0: // sl@0: start = User::FastCounter(); sl@0: ctrl2.Close(); sl@0: end = User::FastCounter(); sl@0: PrintTime(_L("===2 RFeatureControl::Close(), time=%d us\r\n"), start, end); sl@0: sl@0: // sl@0: TBitFlags32 flags; sl@0: flags.ClearAll(); sl@0: flags.Set(EFeatureSupported); sl@0: flags.Set(EFeatureModifiable); sl@0: sl@0: fentry = TFeatureEntry(KNewFeatureUid, flags, 0x0); sl@0: start = User::FastCounter(); sl@0: err = ctrl.AddFeature(fentry); sl@0: TEST2(err, KErrNone); sl@0: end = User::FastCounter(); sl@0: PrintTime(_L("===RFeatureControl::AddFeature(), time=%d us\r\n"), start, end); sl@0: // sl@0: start = User::FastCounter(); sl@0: err = ctrl.FeatureSupported(KNewFeatureUid); sl@0: TEST2(err, 1); sl@0: end = User::FastCounter(); sl@0: PrintTime(_L("===RFeatureControl::FeatureSupported(TUid), time=%d us\r\n"), start, end); sl@0: // sl@0: start = User::FastCounter(); sl@0: err = ctrl.FeatureSupported(KInvalidFeatureUid1); sl@0: TEST2(err, KErrNotFound); sl@0: end = User::FastCounter(); sl@0: PrintTime(_L("===RFeatureControl::FeatureSupported(invalid TUid), time=%d us\r\n"), start, end); sl@0: // sl@0: fentry = TFeatureEntry(KNewFeatureUid); sl@0: start = User::FastCounter(); sl@0: err = ctrl.FeatureSupported(fentry); sl@0: TEST2(err, 1); sl@0: end = User::FastCounter(); sl@0: PrintTime(_L("===RFeatureControl::FeatureSupported(TFeatureEntry), time=%d us\r\n"), start, end); sl@0: // sl@0: RFeatureArray farray; sl@0: err = farray.Append(TFeatureEntry(KNewFeatureUid)); sl@0: TEST2(err, KErrNone); sl@0: err = farray.Append(TFeatureEntry(KInvalidFeatureUid1)); sl@0: TEST2(err, KErrNone); sl@0: err = farray.Append(TFeatureEntry(KConnectivity)); sl@0: TEST2(err, KErrNone); sl@0: err = farray.Append(TFeatureEntry(KUsb)); sl@0: TEST2(err, KErrNone); sl@0: start = User::FastCounter(); sl@0: err = ctrl.FeaturesSupported(farray); sl@0: end = User::FastCounter(); sl@0: PrintTime(_L("===RFeatureControl::FeaturesSupported(), time=%d us\r\n"), start, end); sl@0: TEST2(farray.Count(), 3);//KInvalidFeatureUid1 should have been removed from the array sl@0: farray.Close(); sl@0: // sl@0: start = User::FastCounter(); sl@0: err = ctrl.DisableFeature(KNewFeatureUid); sl@0: TEST2(err, KErrNone); sl@0: end = User::FastCounter(); sl@0: PrintTime(_L("===1 RFeatureControl::DisableFeature(), time=%d us\r\n"), start, end); sl@0: //Disable the same feature again sl@0: start = User::FastCounter(); sl@0: err = ctrl.DisableFeature(KNewFeatureUid); sl@0: TEST2(err, KErrNone); sl@0: end = User::FastCounter(); sl@0: PrintTime(_L("===2 RFeatureControl::DisableFeature(already disabled), time=%d us\r\n"), start, end); sl@0: // sl@0: start = User::FastCounter(); sl@0: err = ctrl.DisableFeature(KFax); sl@0: TEST2(err, KErrAccessDenied); sl@0: end = User::FastCounter(); sl@0: PrintTime(_L("===3 RFeatureControl::DisableFeature(access denied), time=%d us\r\n"), start, end); sl@0: // sl@0: start = User::FastCounter(); sl@0: err = ctrl.EnableFeature(KNewFeatureUid); sl@0: TEST2(err, KErrNone); sl@0: end = User::FastCounter(); sl@0: PrintTime(_L("===1 RFeatureControl::EnableFeature(), time=%d us\r\n"), start, end); sl@0: //Enable the same feature again sl@0: start = User::FastCounter(); sl@0: err = ctrl.EnableFeature(KNewFeatureUid); sl@0: TEST2(err, KErrNone); sl@0: end = User::FastCounter(); sl@0: PrintTime(_L("===2 RFeatureControl::EnableFeature(already enabled), time=%d us\r\n"), start, end); sl@0: // sl@0: start = User::FastCounter(); sl@0: err = ctrl.EnableFeature(KFax); sl@0: TEST2(err, KErrAccessDenied); sl@0: end = User::FastCounter(); sl@0: PrintTime(_L("===3 RFeatureControl::EnableFeature(access denied), time=%d us\r\n"), start, end); sl@0: // sl@0: start = User::FastCounter(); sl@0: err = ctrl.SetFeature(KNewFeatureUid, EFalse, 100); sl@0: TEST2(err, KErrNone); sl@0: end = User::FastCounter(); sl@0: PrintTime(_L("===1 RFeatureControl::SetFeature(), time=%d us\r\n"), start, end); sl@0: // sl@0: start = User::FastCounter(); sl@0: err = ctrl.SetFeature(KNewFeatureUid, 200); sl@0: TEST2(err, KErrNone); sl@0: end = User::FastCounter(); sl@0: PrintTime(_L("===2 RFeatureControl::SetFeature(), time=%d us\r\n"), start, end); sl@0: // sl@0: RFeatureUidArray farray2; sl@0: start = User::FastCounter(); sl@0: err = ctrl.ListSupportedFeatures(farray2); sl@0: TEST2(err, KErrNone); sl@0: end = User::FastCounter(); sl@0: PrintTime(_L("===RFeatureControl::ListSupportedFeatures(), time=%d us\r\n"), start, end); sl@0: TEST(farray2.Count() > 0); sl@0: farray2.Close(); sl@0: // sl@0: start = User::FastCounter(); sl@0: ctrl.DeleteFeature(KNewFeatureUid); sl@0: end = User::FastCounter(); sl@0: PrintTime(_L("===RFeatureControl::DeleteFeature(), time=%d us\r\n"), start, end); sl@0: // sl@0: start = User::FastCounter(); sl@0: ctrl.Close(); sl@0: end = User::FastCounter(); sl@0: PrintTime(_L("===1 RFeatureControl::Close(), time=%d us\r\n"), start, end); sl@0: } sl@0: sl@0: /** sl@0: @SYMTestCaseID PDS-EFM-CT-4107 sl@0: @SYMTestCaseDesc sl@0: @SYMTestPriority High sl@0: @SYMTestActions sl@0: @SYMTestExpectedResults Test must not fail sl@0: @SYMDEF DEF144262 sl@0: */ sl@0: void FeatureManagerTestL() sl@0: { sl@0: TUint32 start = User::FastCounter(); sl@0: FeatureManager::InitializeLibL(); sl@0: TUint32 end = User::FastCounter(); sl@0: PrintTime(_L("===FeatureManager::InitializeLibL(server already loaded by the previous test), time=%d us\r\n"), start, end); sl@0: // sl@0: start = User::FastCounter(); sl@0: TBool rc = FeatureManager::FeatureSupported(KConnectivity.iUid); sl@0: TEST(rc); sl@0: end = User::FastCounter(); sl@0: PrintTime(_L("===FeatureManager::FeatureSupported(), time=%d us\r\n"), start, end); sl@0: // sl@0: start = User::FastCounter(); sl@0: FeatureManager::UnInitializeLib(); sl@0: end = User::FastCounter(); sl@0: PrintTime(_L("===FeatureManager::UnInitializeLib(), time=%d us\r\n"), start, end); sl@0: } sl@0: sl@0: void DoTestsL() sl@0: { sl@0: TheTest.Start(_L("@SYMTestCaseID:PDS-EFM-CT-4106 RFeatureControl performance test")); sl@0: FeatureControlTest(); sl@0: sl@0: TheTest.Next(_L("@SYMTestCaseID:PDS-EFM-CT-4107 FeatureManager performance test")); sl@0: FeatureManagerTestL(); sl@0: } sl@0: sl@0: TInt E32Main() sl@0: { sl@0: TheTest.Title(); sl@0: sl@0: CTrapCleanup* tc = CTrapCleanup::New(); sl@0: TheTest(tc != NULL); sl@0: sl@0: __UHEAP_MARK; sl@0: sl@0: TRAPD(err, DoTestsL()); sl@0: DestroyTestEnv(); sl@0: TEST2(err, KErrNone); sl@0: sl@0: __UHEAP_MARKEND; sl@0: sl@0: TheTest.End(); sl@0: TheTest.Close(); sl@0: sl@0: delete tc; sl@0: sl@0: User::Heap().Check(); sl@0: return KErrNone; sl@0: }