Update contrib.
1 // Copyright (c) 2010 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 <featmgr/featurecontrol.h>
20 #include <featmgr/featmgr.h>
21 #include <featdiscovery.h>
22 #include "featmgrtlsdata.h"
24 ///////////////////////////////////////////////////////////////////////////////////////
26 RTest TheTest(_L("t_fmgrunitrefcount test"));
28 const TUid KDummyFeatUid = {0x12345678};
30 ///////////////////////////////////////////////////////////////////////////////////////
31 //Test macros and functions
32 void Check1(TInt aValue, TInt aLine)
37 RDebug::Print(_L("*** Line %d\r\n"), aLine);
38 TheTest(EFalse, aLine);
42 void Check2(TInt aValue, TInt aExpected, TInt aLine)
44 if(aValue != aExpected)
46 RDebug::Print(_L("*** Line %d, Expected error: %d, got: %d\r\n"), aLine, aExpected, aValue);
47 TheTest(EFalse, aLine);
50 #define TEST(arg) ::Check1((arg), __LINE__)
51 #define TEST2(aValue, aExpected) ::Check2(aValue, aExpected, __LINE__)
54 @SYMTestCaseID PDS-EFM-UT-4112
55 @SYMTestCaseDesc Unit test for client reference counting.
57 @SYMTestActions Initialise FeatureManager and check the client reference count
58 Connect using RFeatureControl and check the client reference count
59 Uninitialise FeatureManager and check the client reference count
60 Close RFeatureControl and check the client reference count
61 @SYMTestExpectedResults Test must not fail
64 void TestRefCountFeatureManagerL()
66 RFeatureControl featCtrl;
68 CleanupClosePushL(featCtrl);
69 FeatureManager::InitializeLibL();
70 TEST2 (GetClientCount(), 1); // Client count should be 1 at this point
73 TEST2 (GetClientCount(), 2); // Client count should be 2 at this point
75 // Both should return same result
76 TEST2 (FeatureManager::FeatureSupported(KDummyFeatUid.iUid), featCtrl.FeatureSupported(KDummyFeatUid)==KFeatureSupported);
78 FeatureManager::UnInitializeLib();
79 TEST2 (GetClientCount(), 1); // Client count should be 1 at this point
81 CleanupStack::PopAndDestroy(&featCtrl);
82 TEST2 (GetClientCount(), 0); // Client count should be 0 at this point
86 @SYMTestCaseID PDS-EFM-UT-4113
87 @SYMTestCaseDesc Unit test for client reference counting.
89 @SYMTestActions Create CFeatureDiscovery object and check the client reference count
90 Connect using RFeatureControl and check the client reference count
91 Delete the CFeatureDiscovery object and check the client reference count
92 Close RFeatureControl and check the client reference count
93 @SYMTestExpectedResults Test must not fail
96 void TestRefCountCFeatureDiscoveryL()
98 RFeatureControl featCtrl;
99 CleanupClosePushL(featCtrl);
100 CFeatureDiscovery* featDisc = CFeatureDiscovery::NewLC();
101 TEST2 (GetClientCount(), 1); // Client count should be 1 at this point
103 TEST2 (GetClientCount(), 2); // Client count should be 2 at this point
105 // Both should return same result
106 TEST2 (featDisc->IsSupported(KDummyFeatUid), featCtrl.FeatureSupported(KDummyFeatUid)==KFeatureSupported);
108 CleanupStack::PopAndDestroy(featDisc);
109 TEST2 (GetClientCount(), 1); // Client count should be 1 at this point
111 CleanupStack::PopAndDestroy(&featCtrl);
112 TEST2 (GetClientCount(), 0); // Client count should be 0 at this point
115 ///////////////////////////////////////////////////////////////////////////////////////
119 TheTest.Start(_L(" @SYMTestCaseID:PDS-EFM-UT-4112 Client Reference Count using FeatureManager"));
120 TestRefCountFeatureManagerL();
121 TheTest.Next(_L(" @SYMTestCaseID:PDS-EFM-UT-4113 Client Reference Count using CFeatureDiscovery"));
122 TestRefCountCFeatureDiscoveryL();
130 CTrapCleanup* tc = CTrapCleanup::New();
134 TRAPD(err, DoTestsL());
135 TEST2(err, KErrNone);
144 User::Heap().Check();