os/persistentdata/featuremgmt/featuremgr/test/rtest/src/t_fmgrunitrefcount.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_fmgrunitrefcount.cpp	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,146 @@
     1.4 +// Copyright (c) 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 <e32debug.h>
    1.21 +#include <bautils.h>
    1.22 +#include <featmgr/featurecontrol.h>
    1.23 +#include <featmgr/featmgr.h>
    1.24 +#include <featdiscovery.h>
    1.25 +#include "featmgrtlsdata.h"
    1.26 +
    1.27 +///////////////////////////////////////////////////////////////////////////////////////
    1.28 +
    1.29 +RTest TheTest(_L("t_fmgrunitrefcount test"));
    1.30 +
    1.31 +const TUid KDummyFeatUid = {0x12345678};
    1.32 +
    1.33 +///////////////////////////////////////////////////////////////////////////////////////
    1.34 +//Test macros and functions
    1.35 +void Check1(TInt aValue, TInt aLine)
    1.36 +    {
    1.37 +    if(!aValue)
    1.38 +        {
    1.39 +        //DeleteTestFiles();
    1.40 +        RDebug::Print(_L("*** Line %d\r\n"), aLine);
    1.41 +        TheTest(EFalse, aLine);
    1.42 +        }
    1.43 +    }
    1.44 +
    1.45 +void Check2(TInt aValue, TInt aExpected, TInt aLine)
    1.46 +    {
    1.47 +    if(aValue != aExpected)
    1.48 +        {
    1.49 +        RDebug::Print(_L("*** Line %d, Expected error: %d, got: %d\r\n"), aLine, aExpected, aValue);
    1.50 +        TheTest(EFalse, aLine);
    1.51 +        }
    1.52 +    }
    1.53 +#define TEST(arg) ::Check1((arg), __LINE__)
    1.54 +#define TEST2(aValue, aExpected) ::Check2(aValue, aExpected, __LINE__)
    1.55 +
    1.56 +/**
    1.57 +@SYMTestCaseID          PDS-EFM-UT-4112
    1.58 +@SYMTestCaseDesc        Unit test for client reference counting.
    1.59 +@SYMTestPriority        High
    1.60 +@SYMTestActions         Initialise FeatureManager and check the client reference count
    1.61 +                        Connect using RFeatureControl and check the client reference count
    1.62 +                        Uninitialise FeatureManager and check the client reference count
    1.63 +                        Close RFeatureControl and check the client reference count
    1.64 +@SYMTestExpectedResults Test must not fail
    1.65 +@SYMDEF                 DEF144262
    1.66 +*/  
    1.67 +void TestRefCountFeatureManagerL()
    1.68 +    {
    1.69 +        RFeatureControl featCtrl;    
    1.70 +        
    1.71 +        CleanupClosePushL(featCtrl);
    1.72 +        FeatureManager::InitializeLibL();
    1.73 +        TEST2 (GetClientCount(), 1); // Client count should be 1 at this point
    1.74 +        
    1.75 +        featCtrl.Connect();
    1.76 +        TEST2 (GetClientCount(), 2); // Client count should be 2 at this point
    1.77 +        
    1.78 +        // Both should return same result
    1.79 +        TEST2 (FeatureManager::FeatureSupported(KDummyFeatUid.iUid), featCtrl.FeatureSupported(KDummyFeatUid)==KFeatureSupported);
    1.80 +        
    1.81 +        FeatureManager::UnInitializeLib();
    1.82 +        TEST2 (GetClientCount(), 1); // Client count should be 1 at this point
    1.83 +        
    1.84 +        CleanupStack::PopAndDestroy(&featCtrl);
    1.85 +        TEST2 (GetClientCount(), 0); // Client count should be 0 at this point
    1.86 +    }
    1.87 +
    1.88 +/**
    1.89 +@SYMTestCaseID          PDS-EFM-UT-4113
    1.90 +@SYMTestCaseDesc        Unit test for client reference counting.
    1.91 +@SYMTestPriority        High
    1.92 +@SYMTestActions         Create CFeatureDiscovery object and check the client reference count
    1.93 +                        Connect using RFeatureControl and check the client reference count
    1.94 +                        Delete the CFeatureDiscovery object and check the client reference count
    1.95 +                        Close RFeatureControl and check the client reference count
    1.96 +@SYMTestExpectedResults Test must not fail
    1.97 +@SYMDEF                 DEF144262
    1.98 +*/  
    1.99 +void TestRefCountCFeatureDiscoveryL()
   1.100 +    {
   1.101 +        RFeatureControl featCtrl;
   1.102 +        CleanupClosePushL(featCtrl);
   1.103 +        CFeatureDiscovery* featDisc = CFeatureDiscovery::NewLC();    
   1.104 +        TEST2 (GetClientCount(), 1); // Client count should be 1 at this point
   1.105 +        featCtrl.Connect();
   1.106 +        TEST2 (GetClientCount(), 2); // Client count should be 2 at this point
   1.107 +
   1.108 +        // Both should return same result
   1.109 +        TEST2 (featDisc->IsSupported(KDummyFeatUid), featCtrl.FeatureSupported(KDummyFeatUid)==KFeatureSupported);
   1.110 +        
   1.111 +        CleanupStack::PopAndDestroy(featDisc);
   1.112 +        TEST2 (GetClientCount(), 1); // Client count should be 1 at this point
   1.113 +        
   1.114 +        CleanupStack::PopAndDestroy(&featCtrl);
   1.115 +        TEST2 (GetClientCount(), 0); // Client count should be 0 at this point
   1.116 +    }
   1.117 +
   1.118 +///////////////////////////////////////////////////////////////////////////////////////
   1.119 +
   1.120 +void DoTestsL()
   1.121 +	{
   1.122 +    TheTest.Start(_L(" @SYMTestCaseID:PDS-EFM-UT-4112 Client Reference Count using FeatureManager"));
   1.123 +    TestRefCountFeatureManagerL();
   1.124 +    TheTest.Next(_L(" @SYMTestCaseID:PDS-EFM-UT-4113 Client Reference Count using CFeatureDiscovery"));
   1.125 +    TestRefCountCFeatureDiscoveryL();
   1.126 +    
   1.127 +	}
   1.128 +
   1.129 +TInt E32Main()
   1.130 +	{
   1.131 +	TheTest.Title();
   1.132 +	
   1.133 +	CTrapCleanup* tc = CTrapCleanup::New();
   1.134 +	
   1.135 +	__UHEAP_MARK;
   1.136 +	
   1.137 +	TRAPD(err, DoTestsL());
   1.138 +	TEST2(err, KErrNone);
   1.139 +
   1.140 +	__UHEAP_MARKEND;
   1.141 +	
   1.142 +	TheTest.End();
   1.143 +	TheTest.Close();
   1.144 +	
   1.145 +	delete tc;
   1.146 +	
   1.147 +	User::Heap().Check();
   1.148 +	return KErrNone;
   1.149 +	}