sl@0: // Copyright (c) 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: #include "featmgrtlsdata.h" sl@0: sl@0: /////////////////////////////////////////////////////////////////////////////////////// sl@0: sl@0: RTest TheTest(_L("t_fmgrunitrefcount test")); sl@0: sl@0: const TUid KDummyFeatUid = {0x12345678}; 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: //DeleteTestFiles(); sl@0: RDebug::Print(_L("*** Line %d\r\n"), aLine); sl@0: TheTest(EFalse, aLine); sl@0: } 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: RDebug::Print(_L("*** Line %d, Expected error: %d, got: %d\r\n"), aLine, aExpected, aValue); 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: @SYMTestCaseID PDS-EFM-UT-4112 sl@0: @SYMTestCaseDesc Unit test for client reference counting. sl@0: @SYMTestPriority High sl@0: @SYMTestActions Initialise FeatureManager and check the client reference count sl@0: Connect using RFeatureControl and check the client reference count sl@0: Uninitialise FeatureManager and check the client reference count sl@0: Close RFeatureControl and check the client reference count sl@0: @SYMTestExpectedResults Test must not fail sl@0: @SYMDEF DEF144262 sl@0: */ sl@0: void TestRefCountFeatureManagerL() sl@0: { sl@0: RFeatureControl featCtrl; sl@0: sl@0: CleanupClosePushL(featCtrl); sl@0: FeatureManager::InitializeLibL(); sl@0: TEST2 (GetClientCount(), 1); // Client count should be 1 at this point sl@0: sl@0: featCtrl.Connect(); sl@0: TEST2 (GetClientCount(), 2); // Client count should be 2 at this point sl@0: sl@0: // Both should return same result sl@0: TEST2 (FeatureManager::FeatureSupported(KDummyFeatUid.iUid), featCtrl.FeatureSupported(KDummyFeatUid)==KFeatureSupported); sl@0: sl@0: FeatureManager::UnInitializeLib(); sl@0: TEST2 (GetClientCount(), 1); // Client count should be 1 at this point sl@0: sl@0: CleanupStack::PopAndDestroy(&featCtrl); sl@0: TEST2 (GetClientCount(), 0); // Client count should be 0 at this point sl@0: } sl@0: sl@0: /** sl@0: @SYMTestCaseID PDS-EFM-UT-4113 sl@0: @SYMTestCaseDesc Unit test for client reference counting. sl@0: @SYMTestPriority High sl@0: @SYMTestActions Create CFeatureDiscovery object and check the client reference count sl@0: Connect using RFeatureControl and check the client reference count sl@0: Delete the CFeatureDiscovery object and check the client reference count sl@0: Close RFeatureControl and check the client reference count sl@0: @SYMTestExpectedResults Test must not fail sl@0: @SYMDEF DEF144262 sl@0: */ sl@0: void TestRefCountCFeatureDiscoveryL() sl@0: { sl@0: RFeatureControl featCtrl; sl@0: CleanupClosePushL(featCtrl); sl@0: CFeatureDiscovery* featDisc = CFeatureDiscovery::NewLC(); sl@0: TEST2 (GetClientCount(), 1); // Client count should be 1 at this point sl@0: featCtrl.Connect(); sl@0: TEST2 (GetClientCount(), 2); // Client count should be 2 at this point sl@0: sl@0: // Both should return same result sl@0: TEST2 (featDisc->IsSupported(KDummyFeatUid), featCtrl.FeatureSupported(KDummyFeatUid)==KFeatureSupported); sl@0: sl@0: CleanupStack::PopAndDestroy(featDisc); sl@0: TEST2 (GetClientCount(), 1); // Client count should be 1 at this point sl@0: sl@0: CleanupStack::PopAndDestroy(&featCtrl); sl@0: TEST2 (GetClientCount(), 0); // Client count should be 0 at this point sl@0: } sl@0: sl@0: /////////////////////////////////////////////////////////////////////////////////////// sl@0: sl@0: void DoTestsL() sl@0: { sl@0: TheTest.Start(_L(" @SYMTestCaseID:PDS-EFM-UT-4112 Client Reference Count using FeatureManager")); sl@0: TestRefCountFeatureManagerL(); sl@0: TheTest.Next(_L(" @SYMTestCaseID:PDS-EFM-UT-4113 Client Reference Count using CFeatureDiscovery")); sl@0: TestRefCountCFeatureDiscoveryL(); sl@0: sl@0: } sl@0: sl@0: TInt E32Main() sl@0: { sl@0: TheTest.Title(); sl@0: sl@0: CTrapCleanup* tc = CTrapCleanup::New(); sl@0: sl@0: __UHEAP_MARK; sl@0: sl@0: TRAPD(err, DoTestsL()); 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: }