sl@0
|
1 |
// Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
// All rights reserved.
|
sl@0
|
3 |
// This component and the accompanying materials are made available
|
sl@0
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
sl@0
|
5 |
// which accompanies this distribution, and is available
|
sl@0
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
//
|
sl@0
|
8 |
// Initial Contributors:
|
sl@0
|
9 |
// Nokia Corporation - initial contribution.
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// Contributors:
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// Description:
|
sl@0
|
14 |
//
|
sl@0
|
15 |
|
sl@0
|
16 |
#include <e32test.h>
|
sl@0
|
17 |
#include <e32debug.h>
|
sl@0
|
18 |
#include <bautils.h>
|
sl@0
|
19 |
#include <featmgr/featurecontrol.h>
|
sl@0
|
20 |
#include <featmgr/featmgr.h>
|
sl@0
|
21 |
#include <featdiscovery.h>
|
sl@0
|
22 |
#include "featmgrtlsdata.h"
|
sl@0
|
23 |
|
sl@0
|
24 |
///////////////////////////////////////////////////////////////////////////////////////
|
sl@0
|
25 |
|
sl@0
|
26 |
RTest TheTest(_L("t_fmgrunitrefcount test"));
|
sl@0
|
27 |
|
sl@0
|
28 |
const TUid KDummyFeatUid = {0x12345678};
|
sl@0
|
29 |
|
sl@0
|
30 |
///////////////////////////////////////////////////////////////////////////////////////
|
sl@0
|
31 |
//Test macros and functions
|
sl@0
|
32 |
void Check1(TInt aValue, TInt aLine)
|
sl@0
|
33 |
{
|
sl@0
|
34 |
if(!aValue)
|
sl@0
|
35 |
{
|
sl@0
|
36 |
//DeleteTestFiles();
|
sl@0
|
37 |
RDebug::Print(_L("*** Line %d\r\n"), aLine);
|
sl@0
|
38 |
TheTest(EFalse, aLine);
|
sl@0
|
39 |
}
|
sl@0
|
40 |
}
|
sl@0
|
41 |
|
sl@0
|
42 |
void Check2(TInt aValue, TInt aExpected, TInt aLine)
|
sl@0
|
43 |
{
|
sl@0
|
44 |
if(aValue != aExpected)
|
sl@0
|
45 |
{
|
sl@0
|
46 |
RDebug::Print(_L("*** Line %d, Expected error: %d, got: %d\r\n"), aLine, aExpected, aValue);
|
sl@0
|
47 |
TheTest(EFalse, aLine);
|
sl@0
|
48 |
}
|
sl@0
|
49 |
}
|
sl@0
|
50 |
#define TEST(arg) ::Check1((arg), __LINE__)
|
sl@0
|
51 |
#define TEST2(aValue, aExpected) ::Check2(aValue, aExpected, __LINE__)
|
sl@0
|
52 |
|
sl@0
|
53 |
/**
|
sl@0
|
54 |
@SYMTestCaseID PDS-EFM-UT-4112
|
sl@0
|
55 |
@SYMTestCaseDesc Unit test for client reference counting.
|
sl@0
|
56 |
@SYMTestPriority High
|
sl@0
|
57 |
@SYMTestActions Initialise FeatureManager and check the client reference count
|
sl@0
|
58 |
Connect using RFeatureControl and check the client reference count
|
sl@0
|
59 |
Uninitialise FeatureManager and check the client reference count
|
sl@0
|
60 |
Close RFeatureControl and check the client reference count
|
sl@0
|
61 |
@SYMTestExpectedResults Test must not fail
|
sl@0
|
62 |
@SYMDEF DEF144262
|
sl@0
|
63 |
*/
|
sl@0
|
64 |
void TestRefCountFeatureManagerL()
|
sl@0
|
65 |
{
|
sl@0
|
66 |
RFeatureControl featCtrl;
|
sl@0
|
67 |
|
sl@0
|
68 |
CleanupClosePushL(featCtrl);
|
sl@0
|
69 |
FeatureManager::InitializeLibL();
|
sl@0
|
70 |
TEST2 (GetClientCount(), 1); // Client count should be 1 at this point
|
sl@0
|
71 |
|
sl@0
|
72 |
featCtrl.Connect();
|
sl@0
|
73 |
TEST2 (GetClientCount(), 2); // Client count should be 2 at this point
|
sl@0
|
74 |
|
sl@0
|
75 |
// Both should return same result
|
sl@0
|
76 |
TEST2 (FeatureManager::FeatureSupported(KDummyFeatUid.iUid), featCtrl.FeatureSupported(KDummyFeatUid)==KFeatureSupported);
|
sl@0
|
77 |
|
sl@0
|
78 |
FeatureManager::UnInitializeLib();
|
sl@0
|
79 |
TEST2 (GetClientCount(), 1); // Client count should be 1 at this point
|
sl@0
|
80 |
|
sl@0
|
81 |
CleanupStack::PopAndDestroy(&featCtrl);
|
sl@0
|
82 |
TEST2 (GetClientCount(), 0); // Client count should be 0 at this point
|
sl@0
|
83 |
}
|
sl@0
|
84 |
|
sl@0
|
85 |
/**
|
sl@0
|
86 |
@SYMTestCaseID PDS-EFM-UT-4113
|
sl@0
|
87 |
@SYMTestCaseDesc Unit test for client reference counting.
|
sl@0
|
88 |
@SYMTestPriority High
|
sl@0
|
89 |
@SYMTestActions Create CFeatureDiscovery object and check the client reference count
|
sl@0
|
90 |
Connect using RFeatureControl and check the client reference count
|
sl@0
|
91 |
Delete the CFeatureDiscovery object and check the client reference count
|
sl@0
|
92 |
Close RFeatureControl and check the client reference count
|
sl@0
|
93 |
@SYMTestExpectedResults Test must not fail
|
sl@0
|
94 |
@SYMDEF DEF144262
|
sl@0
|
95 |
*/
|
sl@0
|
96 |
void TestRefCountCFeatureDiscoveryL()
|
sl@0
|
97 |
{
|
sl@0
|
98 |
RFeatureControl featCtrl;
|
sl@0
|
99 |
CleanupClosePushL(featCtrl);
|
sl@0
|
100 |
CFeatureDiscovery* featDisc = CFeatureDiscovery::NewLC();
|
sl@0
|
101 |
TEST2 (GetClientCount(), 1); // Client count should be 1 at this point
|
sl@0
|
102 |
featCtrl.Connect();
|
sl@0
|
103 |
TEST2 (GetClientCount(), 2); // Client count should be 2 at this point
|
sl@0
|
104 |
|
sl@0
|
105 |
// Both should return same result
|
sl@0
|
106 |
TEST2 (featDisc->IsSupported(KDummyFeatUid), featCtrl.FeatureSupported(KDummyFeatUid)==KFeatureSupported);
|
sl@0
|
107 |
|
sl@0
|
108 |
CleanupStack::PopAndDestroy(featDisc);
|
sl@0
|
109 |
TEST2 (GetClientCount(), 1); // Client count should be 1 at this point
|
sl@0
|
110 |
|
sl@0
|
111 |
CleanupStack::PopAndDestroy(&featCtrl);
|
sl@0
|
112 |
TEST2 (GetClientCount(), 0); // Client count should be 0 at this point
|
sl@0
|
113 |
}
|
sl@0
|
114 |
|
sl@0
|
115 |
///////////////////////////////////////////////////////////////////////////////////////
|
sl@0
|
116 |
|
sl@0
|
117 |
void DoTestsL()
|
sl@0
|
118 |
{
|
sl@0
|
119 |
TheTest.Start(_L(" @SYMTestCaseID:PDS-EFM-UT-4112 Client Reference Count using FeatureManager"));
|
sl@0
|
120 |
TestRefCountFeatureManagerL();
|
sl@0
|
121 |
TheTest.Next(_L(" @SYMTestCaseID:PDS-EFM-UT-4113 Client Reference Count using CFeatureDiscovery"));
|
sl@0
|
122 |
TestRefCountCFeatureDiscoveryL();
|
sl@0
|
123 |
|
sl@0
|
124 |
}
|
sl@0
|
125 |
|
sl@0
|
126 |
TInt E32Main()
|
sl@0
|
127 |
{
|
sl@0
|
128 |
TheTest.Title();
|
sl@0
|
129 |
|
sl@0
|
130 |
CTrapCleanup* tc = CTrapCleanup::New();
|
sl@0
|
131 |
|
sl@0
|
132 |
__UHEAP_MARK;
|
sl@0
|
133 |
|
sl@0
|
134 |
TRAPD(err, DoTestsL());
|
sl@0
|
135 |
TEST2(err, KErrNone);
|
sl@0
|
136 |
|
sl@0
|
137 |
__UHEAP_MARKEND;
|
sl@0
|
138 |
|
sl@0
|
139 |
TheTest.End();
|
sl@0
|
140 |
TheTest.Close();
|
sl@0
|
141 |
|
sl@0
|
142 |
delete tc;
|
sl@0
|
143 |
|
sl@0
|
144 |
User::Heap().Check();
|
sl@0
|
145 |
return KErrNone;
|
sl@0
|
146 |
}
|