os/persistentdata/featuremgmt/featuremgr/test/rtest/src/t_fmgrperformance.cpp
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/persistentdata/featuremgmt/featuremgr/test/rtest/src/t_fmgrperformance.cpp	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,299 @@
     1.4 +// Copyright (c) 2009-2010 Nokia Corporation and/or its subsidiary(-ies).
     1.5 +// All rights reserved.
     1.6 +// This component and the accompanying materials are made available
     1.7 +// under the terms of "Eclipse Public License v1.0"
     1.8 +// which accompanies this distribution, and is available
     1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.10 +//
    1.11 +// Initial Contributors:
    1.12 +// Nokia Corporation - initial contribution.
    1.13 +//
    1.14 +// Contributors:
    1.15 +//
    1.16 +// Description:
    1.17 +//
    1.18 +
    1.19 +#include <e32test.h>
    1.20 +#include <hal.h>
    1.21 +#include <featmgr.h>
    1.22 +#include <featureuids.h>
    1.23 +#include <featurecontrol.h>
    1.24 +#include <featdiscovery.h>
    1.25 +
    1.26 +using namespace NFeature;
    1.27 +
    1.28 +TInt TheFastCounterFreq = 0;
    1.29 +
    1.30 +const TInt KInvalidFeatureId1 = 90901671;
    1.31 +const TUid KInvalidFeatureUid1 = {KInvalidFeatureId1};
    1.32 +const TUid KNewFeatureUid = {0x7888ABC1}; 
    1.33 +
    1.34 +///////////////////////////////////////////////////////////////////////////////////////
    1.35 +
    1.36 +static RTest TheTest(_L("t_fmgrperformance"));
    1.37 +
    1.38 +///////////////////////////////////////////////////////////////////////////////////////
    1.39 +
    1.40 +//Deletes all created test files.
    1.41 +void DestroyTestEnv()
    1.42 +    {
    1.43 +    }
    1.44 +
    1.45 +///////////////////////////////////////////////////////////////////////////////////////
    1.46 +///////////////////////////////////////////////////////////////////////////////////////
    1.47 +//Test macros and functions
    1.48 +void Check1(TInt aValue, TInt aLine)
    1.49 +    {
    1.50 +    if(!aValue)
    1.51 +        {
    1.52 +        DestroyTestEnv();
    1.53 +        RDebug::Print(_L("*** Expression evaluated to false. Line %d\r\n"), aLine);
    1.54 +        TheTest(EFalse, aLine);
    1.55 +        }
    1.56 +    }
    1.57 +void Check2(TInt aValue, TInt aExpected, TInt aLine)
    1.58 +    {
    1.59 +    if(aValue != aExpected)
    1.60 +        {
    1.61 +        DestroyTestEnv();
    1.62 +        RDebug::Print(_L("*** Expected: %d, got: %d. Line %d\r\n"), aExpected, aValue, aLine);
    1.63 +        TheTest(EFalse, aLine);
    1.64 +        }
    1.65 +    }
    1.66 +#define TEST(arg) ::Check1((arg), __LINE__)
    1.67 +#define TEST2(aValue, aExpected) ::Check2(aValue, aExpected, __LINE__)
    1.68 +
    1.69 +///////////////////////////////////////////////////////////////////////////////////////
    1.70 +
    1.71 +TInt TimeDiffUs(TUint32 aStartTicks, TUint32 aEndTicks)
    1.72 +    {
    1.73 +    if(TheFastCounterFreq == 0)
    1.74 +        {
    1.75 +        TEST2(HAL::Get(HAL::EFastCounterFrequency, TheFastCounterFreq), KErrNone);
    1.76 +        TheTest.Printf(_L("===Fast counter frequency = %d Hz\r\n"), TheFastCounterFreq);
    1.77 +        }
    1.78 +    TInt64 diffTicks = (TInt64)aEndTicks - (TInt64)aStartTicks;
    1.79 +    if(diffTicks < 0)
    1.80 +        {
    1.81 +        diffTicks = KMaxTUint32 + diffTicks + 1;
    1.82 +        }
    1.83 +    const TInt KMicroSecIn1Sec = 1000000;
    1.84 +    TInt us = (diffTicks * KMicroSecIn1Sec) / TheFastCounterFreq;
    1.85 +    return us;
    1.86 +    }
    1.87 +
    1.88 +void PrintTime(const TDesC& aFmt, TUint32 aStartTicks, TUint32 aEndTicks)
    1.89 +    {
    1.90 +    TInt us = TimeDiffUs(aStartTicks, aEndTicks);
    1.91 +    TheTest.Printf(aFmt, us);
    1.92 +    }
    1.93 +
    1.94 +/**
    1.95 +@SYMTestCaseID          PDS-EFM-CT-4106
    1.96 +@SYMTestCaseDesc        
    1.97 +@SYMTestPriority        High
    1.98 +@SYMTestActions         
    1.99 +@SYMTestExpectedResults Test must not fail
   1.100 +@SYMDEF                 DEF144262
   1.101 +*/
   1.102 +void FeatureControlTest()
   1.103 +    {
   1.104 +    TFeatureEntry fentry;
   1.105 +    
   1.106 +    TUint32 start = User::FastCounter();
   1.107 +    RFeatureControl ctrl;
   1.108 +    
   1.109 +    TInt err = ctrl.Open();
   1.110 +    TEST2(err, KErrNone);
   1.111 +    TUint32 end = User::FastCounter();
   1.112 +    PrintTime(_L("===1 RFeatureControl::Open(), time=%d us\r\n"), start, end);
   1.113 +    
   1.114 +    //The second RFeatureControl::Open() call is "free", because only one connection per thread is kept in TLS 
   1.115 +    RFeatureControl ctrl2;
   1.116 +    start = User::FastCounter();
   1.117 +    err = ctrl2.Open();
   1.118 +    TEST2(err, KErrNone);
   1.119 +    end = User::FastCounter();
   1.120 +    PrintTime(_L("===2 RFeatureControl::Open(), time=%d us\r\n"), start, end);
   1.121 +    
   1.122 +    //
   1.123 +    start = User::FastCounter();
   1.124 +    ctrl2.Close();
   1.125 +    end = User::FastCounter();
   1.126 +    PrintTime(_L("===2 RFeatureControl::Close(), time=%d us\r\n"), start, end);
   1.127 +    
   1.128 +    //
   1.129 +    TBitFlags32 flags;
   1.130 +    flags.ClearAll();
   1.131 +    flags.Set(EFeatureSupported);
   1.132 +    flags.Set(EFeatureModifiable);
   1.133 +    
   1.134 +    fentry = TFeatureEntry(KNewFeatureUid, flags, 0x0);
   1.135 +    start = User::FastCounter();
   1.136 +    err = ctrl.AddFeature(fentry);
   1.137 +    TEST2(err, KErrNone);
   1.138 +    end = User::FastCounter();
   1.139 +    PrintTime(_L("===RFeatureControl::AddFeature(), time=%d us\r\n"), start, end);
   1.140 +    //
   1.141 +    start = User::FastCounter();
   1.142 +    err = ctrl.FeatureSupported(KNewFeatureUid);
   1.143 +    TEST2(err, 1);
   1.144 +    end = User::FastCounter();
   1.145 +    PrintTime(_L("===RFeatureControl::FeatureSupported(TUid), time=%d us\r\n"), start, end);
   1.146 +    //
   1.147 +    start = User::FastCounter();
   1.148 +    err = ctrl.FeatureSupported(KInvalidFeatureUid1);
   1.149 +    TEST2(err, KErrNotFound);
   1.150 +    end = User::FastCounter();
   1.151 +    PrintTime(_L("===RFeatureControl::FeatureSupported(invalid TUid), time=%d us\r\n"), start, end);
   1.152 +    //
   1.153 +    fentry = TFeatureEntry(KNewFeatureUid);
   1.154 +    start = User::FastCounter();
   1.155 +    err = ctrl.FeatureSupported(fentry);
   1.156 +    TEST2(err, 1);
   1.157 +    end = User::FastCounter();
   1.158 +    PrintTime(_L("===RFeatureControl::FeatureSupported(TFeatureEntry), time=%d us\r\n"), start, end);
   1.159 +    //
   1.160 +    RFeatureArray farray;
   1.161 +    err = farray.Append(TFeatureEntry(KNewFeatureUid));
   1.162 +    TEST2(err, KErrNone);
   1.163 +    err = farray.Append(TFeatureEntry(KInvalidFeatureUid1));
   1.164 +    TEST2(err, KErrNone);
   1.165 +    err = farray.Append(TFeatureEntry(KConnectivity));
   1.166 +    TEST2(err, KErrNone);
   1.167 +    err = farray.Append(TFeatureEntry(KUsb));
   1.168 +    TEST2(err, KErrNone);
   1.169 +    start = User::FastCounter();
   1.170 +    err = ctrl.FeaturesSupported(farray);
   1.171 +    end = User::FastCounter();
   1.172 +    PrintTime(_L("===RFeatureControl::FeaturesSupported(), time=%d us\r\n"), start, end);
   1.173 +    TEST2(farray.Count(), 3);//KInvalidFeatureUid1 should have been removed from the array
   1.174 +    farray.Close();
   1.175 +    //
   1.176 +    start = User::FastCounter();
   1.177 +    err = ctrl.DisableFeature(KNewFeatureUid);
   1.178 +    TEST2(err, KErrNone);
   1.179 +    end = User::FastCounter();
   1.180 +    PrintTime(_L("===1 RFeatureControl::DisableFeature(), time=%d us\r\n"), start, end);
   1.181 +    //Disable the same feature again
   1.182 +    start = User::FastCounter();
   1.183 +    err = ctrl.DisableFeature(KNewFeatureUid);
   1.184 +    TEST2(err, KErrNone);
   1.185 +    end = User::FastCounter();
   1.186 +    PrintTime(_L("===2 RFeatureControl::DisableFeature(already disabled), time=%d us\r\n"), start, end);
   1.187 +    //
   1.188 +    start = User::FastCounter();
   1.189 +    err = ctrl.DisableFeature(KFax);
   1.190 +    TEST2(err, KErrAccessDenied);
   1.191 +    end = User::FastCounter();
   1.192 +    PrintTime(_L("===3 RFeatureControl::DisableFeature(access denied), time=%d us\r\n"), start, end);
   1.193 +    //
   1.194 +    start = User::FastCounter();
   1.195 +    err = ctrl.EnableFeature(KNewFeatureUid);
   1.196 +    TEST2(err, KErrNone);
   1.197 +    end = User::FastCounter();
   1.198 +    PrintTime(_L("===1 RFeatureControl::EnableFeature(), time=%d us\r\n"), start, end);
   1.199 +    //Enable the same feature again
   1.200 +    start = User::FastCounter();
   1.201 +    err = ctrl.EnableFeature(KNewFeatureUid);
   1.202 +    TEST2(err, KErrNone);
   1.203 +    end = User::FastCounter();
   1.204 +    PrintTime(_L("===2 RFeatureControl::EnableFeature(already enabled), time=%d us\r\n"), start, end);
   1.205 +    //
   1.206 +    start = User::FastCounter();
   1.207 +    err = ctrl.EnableFeature(KFax);
   1.208 +    TEST2(err, KErrAccessDenied);
   1.209 +    end = User::FastCounter();
   1.210 +    PrintTime(_L("===3 RFeatureControl::EnableFeature(access denied), time=%d us\r\n"), start, end);
   1.211 +    //
   1.212 +    start = User::FastCounter();
   1.213 +    err = ctrl.SetFeature(KNewFeatureUid, EFalse, 100);
   1.214 +    TEST2(err, KErrNone);
   1.215 +    end = User::FastCounter();
   1.216 +    PrintTime(_L("===1 RFeatureControl::SetFeature(), time=%d us\r\n"), start, end);
   1.217 +    //
   1.218 +    start = User::FastCounter();
   1.219 +    err = ctrl.SetFeature(KNewFeatureUid, 200);
   1.220 +    TEST2(err, KErrNone);
   1.221 +    end = User::FastCounter();
   1.222 +    PrintTime(_L("===2 RFeatureControl::SetFeature(), time=%d us\r\n"), start, end);
   1.223 +    //
   1.224 +    RFeatureUidArray farray2;
   1.225 +    start = User::FastCounter();
   1.226 +    err = ctrl.ListSupportedFeatures(farray2);
   1.227 +    TEST2(err, KErrNone);
   1.228 +    end = User::FastCounter();
   1.229 +    PrintTime(_L("===RFeatureControl::ListSupportedFeatures(), time=%d us\r\n"), start, end);
   1.230 +    TEST(farray2.Count() > 0);
   1.231 +    farray2.Close();
   1.232 +    //
   1.233 +    start = User::FastCounter();
   1.234 +    ctrl.DeleteFeature(KNewFeatureUid);
   1.235 +    end = User::FastCounter();
   1.236 +    PrintTime(_L("===RFeatureControl::DeleteFeature(), time=%d us\r\n"), start, end);
   1.237 +    //
   1.238 +    start = User::FastCounter();
   1.239 +    ctrl.Close();
   1.240 +    end = User::FastCounter();
   1.241 +    PrintTime(_L("===1 RFeatureControl::Close(), time=%d us\r\n"), start, end);
   1.242 +    }
   1.243 +
   1.244 +/**
   1.245 +@SYMTestCaseID          PDS-EFM-CT-4107
   1.246 +@SYMTestCaseDesc        
   1.247 +@SYMTestPriority        High
   1.248 +@SYMTestActions         
   1.249 +@SYMTestExpectedResults Test must not fail
   1.250 +@SYMDEF                 DEF144262
   1.251 +*/
   1.252 +void FeatureManagerTestL()
   1.253 +    {
   1.254 +    TUint32 start = User::FastCounter();
   1.255 +    FeatureManager::InitializeLibL();
   1.256 +    TUint32 end = User::FastCounter();
   1.257 +    PrintTime(_L("===FeatureManager::InitializeLibL(server already loaded by the previous test), time=%d us\r\n"), start, end);
   1.258 +    //
   1.259 +    start = User::FastCounter();
   1.260 +    TBool rc = FeatureManager::FeatureSupported(KConnectivity.iUid);
   1.261 +    TEST(rc);
   1.262 +    end = User::FastCounter();
   1.263 +    PrintTime(_L("===FeatureManager::FeatureSupported(), time=%d us\r\n"), start, end);
   1.264 +    //
   1.265 +    start = User::FastCounter();
   1.266 +    FeatureManager::UnInitializeLib();  
   1.267 +    end = User::FastCounter();
   1.268 +    PrintTime(_L("===FeatureManager::UnInitializeLib(), time=%d us\r\n"), start, end);
   1.269 +    }
   1.270 +
   1.271 +void DoTestsL()
   1.272 +    {
   1.273 +    TheTest.Start(_L("@SYMTestCaseID:PDS-EFM-CT-4106 RFeatureControl performance test"));
   1.274 +    FeatureControlTest();
   1.275 +
   1.276 +    TheTest.Next(_L("@SYMTestCaseID:PDS-EFM-CT-4107 FeatureManager performance test"));
   1.277 +    FeatureManagerTestL();
   1.278 +    }
   1.279 +
   1.280 +TInt E32Main()
   1.281 +    {
   1.282 +    TheTest.Title();
   1.283 +    
   1.284 +    CTrapCleanup* tc = CTrapCleanup::New();
   1.285 +    TheTest(tc != NULL);
   1.286 +    
   1.287 +    __UHEAP_MARK;
   1.288 +    
   1.289 +    TRAPD(err, DoTestsL());
   1.290 +    DestroyTestEnv();
   1.291 +    TEST2(err, KErrNone);
   1.292 +
   1.293 +    __UHEAP_MARKEND;
   1.294 +    
   1.295 +    TheTest.End();
   1.296 +    TheTest.Close();
   1.297 +    
   1.298 +    delete tc;
   1.299 +
   1.300 +    User::Heap().Check();
   1.301 +    return KErrNone;
   1.302 +    }