sl@0
|
1 |
// Copyright (c) 2005-2009 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 <f32file.h>
|
sl@0
|
18 |
#include <ecom/ecom.h>
|
sl@0
|
19 |
#include <startup.hrh>
|
sl@0
|
20 |
#include "EComSessionAux.h"
|
sl@0
|
21 |
#include "EcomTestUtils.h"
|
sl@0
|
22 |
#include "EcomTestIniFileUtils.h"
|
sl@0
|
23 |
#include "EcomTestCompTestabilityUtils.h"
|
sl@0
|
24 |
|
sl@0
|
25 |
static RFs TheFs;
|
sl@0
|
26 |
static RTest TheTest(_L("T_EcomSsaEnabled"));
|
sl@0
|
27 |
|
sl@0
|
28 |
_LIT(KEComExampleDllOnZ, "Z:\\RAMOnly\\EComExample3.dll");
|
sl@0
|
29 |
_LIT(KEComExampleDllOnC, "C:\\sys\\bin\\EComExample3.dll");
|
sl@0
|
30 |
_LIT(KEComPluginRscOnZ, "Z:\\RAMOnly\\EComExample3.rsc");
|
sl@0
|
31 |
_LIT(KEComPluginRscOnC, "C:\\resource\\plugins\\EComExample3.rsc");
|
sl@0
|
32 |
|
sl@0
|
33 |
#ifdef __ECOM_SERVER_TESTABILITY__
|
sl@0
|
34 |
|
sl@0
|
35 |
_LIT8(KImplementationDataOnZ, "RomOnly");
|
sl@0
|
36 |
_LIT8(KImplementationDataOnC, "RamOnly");
|
sl@0
|
37 |
|
sl@0
|
38 |
#endif
|
sl@0
|
39 |
|
sl@0
|
40 |
//
|
sl@0
|
41 |
//
|
sl@0
|
42 |
//Test macroes and functions
|
sl@0
|
43 |
//
|
sl@0
|
44 |
//
|
sl@0
|
45 |
#ifdef __ECOM_SERVER_TESTABILITY__
|
sl@0
|
46 |
|
sl@0
|
47 |
static void Check(TInt aValue, TInt aLine)
|
sl@0
|
48 |
{
|
sl@0
|
49 |
if(!aValue)
|
sl@0
|
50 |
{
|
sl@0
|
51 |
TheTest(EFalse, aLine);
|
sl@0
|
52 |
}
|
sl@0
|
53 |
}
|
sl@0
|
54 |
#define TEST(arg) ::Check((arg), __LINE__)
|
sl@0
|
55 |
|
sl@0
|
56 |
#endif
|
sl@0
|
57 |
|
sl@0
|
58 |
static void Check(TInt aValue, TInt aExpected, TInt aLine)
|
sl@0
|
59 |
{
|
sl@0
|
60 |
if(aValue != aExpected)
|
sl@0
|
61 |
{
|
sl@0
|
62 |
RDebug::Print(_L("*** Expected error: %d, got: %d\r\n"), aExpected, aValue);
|
sl@0
|
63 |
TheTest(EFalse, aLine);
|
sl@0
|
64 |
}
|
sl@0
|
65 |
}
|
sl@0
|
66 |
#define TEST2(aValue, aExpected) ::Check(aValue, aExpected, __LINE__)
|
sl@0
|
67 |
|
sl@0
|
68 |
//
|
sl@0
|
69 |
//
|
sl@0
|
70 |
//Helper functions
|
sl@0
|
71 |
//
|
sl@0
|
72 |
//
|
sl@0
|
73 |
|
sl@0
|
74 |
/**
|
sl@0
|
75 |
* Add plugins to C: drive so they can be discovered during NonStatic discovery
|
sl@0
|
76 |
* state.
|
sl@0
|
77 |
*/
|
sl@0
|
78 |
static void SetupFiles()
|
sl@0
|
79 |
{
|
sl@0
|
80 |
TRAPD(err, EComTestUtils::FileManCopyFileL(KEComExampleDllOnZ, KEComExampleDllOnC));
|
sl@0
|
81 |
TEST2(err, KErrNone);
|
sl@0
|
82 |
|
sl@0
|
83 |
TRAP(err, EComTestUtils::FileManCopyFileL(KEComPluginRscOnZ, KEComPluginRscOnC));
|
sl@0
|
84 |
TEST2(err, KErrNone);
|
sl@0
|
85 |
}
|
sl@0
|
86 |
|
sl@0
|
87 |
/**
|
sl@0
|
88 |
* Remove the plugins from C: drive so we can leave a clean environment for
|
sl@0
|
89 |
* the next test.
|
sl@0
|
90 |
*/
|
sl@0
|
91 |
static void CleanupFiles()
|
sl@0
|
92 |
{
|
sl@0
|
93 |
TRAPD(err, EComTestUtils::FileManDeleteFileL(KEComExampleDllOnC));
|
sl@0
|
94 |
TEST2(err, KErrNone);
|
sl@0
|
95 |
|
sl@0
|
96 |
TRAP(err, EComTestUtils::FileManDeleteFileL(KEComPluginRscOnC));
|
sl@0
|
97 |
TEST2(err, KErrNone);
|
sl@0
|
98 |
}
|
sl@0
|
99 |
|
sl@0
|
100 |
static void KillEComServerL()
|
sl@0
|
101 |
{
|
sl@0
|
102 |
//Need to ensure that the EComServer process is killed before even starting this test by using
|
sl@0
|
103 |
//the EComTestUtils library
|
sl@0
|
104 |
_LIT(KEComServerProcessName,"ecomserver");
|
sl@0
|
105 |
TRAPD(error, EComTestUtils::KillProcessL(KEComServerProcessName));
|
sl@0
|
106 |
error=error;
|
sl@0
|
107 |
}
|
sl@0
|
108 |
|
sl@0
|
109 |
#ifdef __ECOM_SERVER_TESTABILITY__
|
sl@0
|
110 |
/**
|
sl@0
|
111 |
* Test if the requested plugin is discovered
|
sl@0
|
112 |
*@param aInterfaceUid A UID specifying the required interface.
|
sl@0
|
113 |
*@param aResolutionParameters A descriptor specifying any additional
|
sl@0
|
114 |
* implementation characteristics to be fulfilled.
|
sl@0
|
115 |
*@return return TRUE if plugin exists
|
sl@0
|
116 |
*/
|
sl@0
|
117 |
static TBool TestForPlugin(TUid aInterfaceUid,
|
sl@0
|
118 |
const TDesC8& aDataType)
|
sl@0
|
119 |
{
|
sl@0
|
120 |
TBool result = EFalse;
|
sl@0
|
121 |
RImplInfoPtrArray aImplInfoArray;
|
sl@0
|
122 |
TEComResolverParams resolverParams;
|
sl@0
|
123 |
resolverParams.SetDataType(aDataType);
|
sl@0
|
124 |
resolverParams.SetGenericMatch(ETrue); // Allow wildcard matching
|
sl@0
|
125 |
|
sl@0
|
126 |
REComSession::ListImplementationsL(
|
sl@0
|
127 |
aInterfaceUid,
|
sl@0
|
128 |
resolverParams,
|
sl@0
|
129 |
aImplInfoArray);
|
sl@0
|
130 |
|
sl@0
|
131 |
if(aImplInfoArray.Count() > 0)
|
sl@0
|
132 |
{
|
sl@0
|
133 |
result = ETrue;
|
sl@0
|
134 |
}
|
sl@0
|
135 |
|
sl@0
|
136 |
aImplInfoArray.ResetAndDestroy();
|
sl@0
|
137 |
|
sl@0
|
138 |
return result;
|
sl@0
|
139 |
}
|
sl@0
|
140 |
#endif
|
sl@0
|
141 |
|
sl@0
|
142 |
//
|
sl@0
|
143 |
//
|
sl@0
|
144 |
//Test functions
|
sl@0
|
145 |
//
|
sl@0
|
146 |
//
|
sl@0
|
147 |
#ifdef __ECOM_SERVER_TESTABILITY__
|
sl@0
|
148 |
/**
|
sl@0
|
149 |
Wrapper function to call change and process startup state test functions
|
sl@0
|
150 |
and check the current startup state is matched with the expected startup state.
|
sl@0
|
151 |
@param aState A startup state to be set in ECOM
|
sl@0
|
152 |
@param aExpectedState An expected startup state in ECOM
|
sl@0
|
153 |
*/
|
sl@0
|
154 |
LOCAL_C void ChangeAndProcessStartupState(TInt aState, TInt aExpectedState)
|
sl@0
|
155 |
{
|
sl@0
|
156 |
|
sl@0
|
157 |
TInt state = EStartupStateUndefined;
|
sl@0
|
158 |
TRAPD(err, ChangeStartupStateL(aState));
|
sl@0
|
159 |
TEST2(err, KErrNone);
|
sl@0
|
160 |
TRAP(err, ProcessCurrentStartupStateL());
|
sl@0
|
161 |
TEST2(err, KErrNone);
|
sl@0
|
162 |
TRAP(err, state = GetCurrentStartupStateL());
|
sl@0
|
163 |
TEST2(err, KErrNone);
|
sl@0
|
164 |
TEST2(state, aExpectedState);
|
sl@0
|
165 |
}
|
sl@0
|
166 |
|
sl@0
|
167 |
/**
|
sl@0
|
168 |
@SYMTestCaseID SYSLIB-ECOM-CIT-0188
|
sl@0
|
169 |
@SYMTestCaseDesc The SSA is enabled, the ECOM will do a staged discovery with the
|
sl@0
|
170 |
simulated Domain Manager.
|
sl@0
|
171 |
@SYMTestPriority High
|
sl@0
|
172 |
@SYMTestActions Check the plugins and the state of ECOM are correct at each state
|
sl@0
|
173 |
using client API GetCurrentStartupStateL and ListImplementationsL.
|
sl@0
|
174 |
@SYMTestExpectedResults The test must not fail.
|
sl@0
|
175 |
@SYMPREQ PREQ967
|
sl@0
|
176 |
*/
|
sl@0
|
177 |
LOCAL_C void TestEcomSsaEnabledL()
|
sl@0
|
178 |
{
|
sl@0
|
179 |
TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CIT-0188 "));
|
sl@0
|
180 |
// Set up for heap leak checking
|
sl@0
|
181 |
__UHEAP_MARK;
|
sl@0
|
182 |
|
sl@0
|
183 |
// and leaking thread handles
|
sl@0
|
184 |
TInt startProcessHandleCount;
|
sl@0
|
185 |
TInt startThreadHandleCount;
|
sl@0
|
186 |
TInt endProcessHandleCount;
|
sl@0
|
187 |
TInt endThreadHandleCount;
|
sl@0
|
188 |
// Test Starts...
|
sl@0
|
189 |
|
sl@0
|
190 |
RThread().HandleCount(startProcessHandleCount, startThreadHandleCount);
|
sl@0
|
191 |
|
sl@0
|
192 |
TUid ifUid = {0x10009DC0};
|
sl@0
|
193 |
|
sl@0
|
194 |
EnableSsa(TheTest, TheFs);
|
sl@0
|
195 |
|
sl@0
|
196 |
//Change the state to a user defined state then
|
sl@0
|
197 |
//check that current state is still EStartupStateUndefined
|
sl@0
|
198 |
ChangeAndProcessStartupState(EStartupStateUndefined+1,EStartupStateUndefined);
|
sl@0
|
199 |
|
sl@0
|
200 |
//Change the state to a user defined state then
|
sl@0
|
201 |
//check that current state is still EStartupStateUndefined
|
sl@0
|
202 |
ChangeAndProcessStartupState(EStartupStateCriticalStatic-1,EStartupStateUndefined );
|
sl@0
|
203 |
|
sl@0
|
204 |
//Change the state to EStartupStateCriticalStatic then
|
sl@0
|
205 |
//check that current state is EStartupStateCriticalStatic
|
sl@0
|
206 |
//check that a plugin from RO drive is discovered
|
sl@0
|
207 |
ChangeAndProcessStartupState(EStartupStateCriticalStatic,EStartupStateCriticalStatic );
|
sl@0
|
208 |
TEST2(ETrue, TestForPlugin(ifUid, KImplementationDataOnZ()));
|
sl@0
|
209 |
|
sl@0
|
210 |
//Change the state to a user defined state then
|
sl@0
|
211 |
//check that current state is still EStartupStateCriticalStatic
|
sl@0
|
212 |
ChangeAndProcessStartupState(EStartupStateCriticalStatic+1,EStartupStateCriticalStatic);
|
sl@0
|
213 |
|
sl@0
|
214 |
//Change the state to a user defined state then
|
sl@0
|
215 |
//check that current state is still EStartupStateCriticalStatic
|
sl@0
|
216 |
ChangeAndProcessStartupState(EStartupStateCriticalDynamic-1,EStartupStateCriticalStatic);
|
sl@0
|
217 |
|
sl@0
|
218 |
//Change the state to EStartupStateCriticalDynamic then
|
sl@0
|
219 |
//check that current state is EStartupStateCriticalDynamic
|
sl@0
|
220 |
ChangeAndProcessStartupState(EStartupStateCriticalDynamic, EStartupStateCriticalDynamic);
|
sl@0
|
221 |
|
sl@0
|
222 |
//Change the state to a user defined state then
|
sl@0
|
223 |
//check that current state is still EStartupStateCriticalDynamic
|
sl@0
|
224 |
ChangeAndProcessStartupState(EStartupStateCriticalDynamic+1, EStartupStateCriticalDynamic);
|
sl@0
|
225 |
|
sl@0
|
226 |
//Change the state to a user defined state then
|
sl@0
|
227 |
//check that current state is still EStartupStateCriticalDynamic
|
sl@0
|
228 |
ChangeAndProcessStartupState(EStartupStateNonCritical-1,EStartupStateCriticalDynamic);
|
sl@0
|
229 |
|
sl@0
|
230 |
//Change the state to EStartupStateNonCritical then
|
sl@0
|
231 |
//check that current state is EStartupStateNonCritical
|
sl@0
|
232 |
//check that a plugin from RO drive is discovered
|
sl@0
|
233 |
ChangeAndProcessStartupState(EStartupStateNonCritical,EStartupStateNonCritical );
|
sl@0
|
234 |
TEST2(ETrue, TestForPlugin(ifUid, KImplementationDataOnC()));
|
sl@0
|
235 |
|
sl@0
|
236 |
//Change the state to a user defined state then
|
sl@0
|
237 |
//check that current state is still EStartupStateNonCritical
|
sl@0
|
238 |
ChangeAndProcessStartupState(EStartupStateNonCritical+1, EStartupStateNonCritical);
|
sl@0
|
239 |
|
sl@0
|
240 |
REComSession::FinalClose();
|
sl@0
|
241 |
|
sl@0
|
242 |
RThread().HandleCount(endProcessHandleCount, endThreadHandleCount);
|
sl@0
|
243 |
|
sl@0
|
244 |
TEST(startProcessHandleCount == endProcessHandleCount);
|
sl@0
|
245 |
TEST(startThreadHandleCount == endThreadHandleCount);
|
sl@0
|
246 |
|
sl@0
|
247 |
// Test Ends...
|
sl@0
|
248 |
|
sl@0
|
249 |
__UHEAP_MARKEND;
|
sl@0
|
250 |
}
|
sl@0
|
251 |
#endif //__ECOM_SERVER_TESTABILITY__
|
sl@0
|
252 |
|
sl@0
|
253 |
#ifdef __ECOM_SERVER_TESTABILITY__
|
sl@0
|
254 |
// Type definition for pointer to member function.
|
sl@0
|
255 |
// Used in calling T_EcomSsaEnabled test functions.
|
sl@0
|
256 |
typedef void (*ClassFuncPtrL) (void);
|
sl@0
|
257 |
|
sl@0
|
258 |
/**
|
sl@0
|
259 |
Wrapper function to call all test functions
|
sl@0
|
260 |
@param testFunc pointer to test function
|
sl@0
|
261 |
@param aTestDesc test function name
|
sl@0
|
262 |
*/
|
sl@0
|
263 |
LOCAL_C void DoBasicTestL(ClassFuncPtrL testFuncL, const TDesC& aTestDesc)
|
sl@0
|
264 |
{
|
sl@0
|
265 |
TheTest.Next(aTestDesc);
|
sl@0
|
266 |
|
sl@0
|
267 |
__UHEAP_MARK;
|
sl@0
|
268 |
// find out the number of open handles
|
sl@0
|
269 |
TInt startProcessHandleCount;
|
sl@0
|
270 |
TInt startThreadHandleCount;
|
sl@0
|
271 |
RThread().HandleCount(startProcessHandleCount, startThreadHandleCount);
|
sl@0
|
272 |
|
sl@0
|
273 |
testFuncL();
|
sl@0
|
274 |
|
sl@0
|
275 |
// check that no handles have leaked
|
sl@0
|
276 |
TInt endProcessHandleCount;
|
sl@0
|
277 |
TInt endThreadHandleCount;
|
sl@0
|
278 |
RThread().HandleCount(endProcessHandleCount, endThreadHandleCount);
|
sl@0
|
279 |
|
sl@0
|
280 |
TEST(startProcessHandleCount == endProcessHandleCount);
|
sl@0
|
281 |
TEST(startThreadHandleCount == endThreadHandleCount);
|
sl@0
|
282 |
|
sl@0
|
283 |
__UHEAP_MARKEND;
|
sl@0
|
284 |
}
|
sl@0
|
285 |
#endif //__ECOM_SERVER_TESTABILITY__
|
sl@0
|
286 |
|
sl@0
|
287 |
LOCAL_C void DoTestsL()
|
sl@0
|
288 |
{
|
sl@0
|
289 |
#ifdef __ECOM_SERVER_TESTABILITY__
|
sl@0
|
290 |
DoBasicTestL(&TestEcomSsaEnabledL, _L("TestEcomSsaEnabledL"));
|
sl@0
|
291 |
#endif //__ECOM_SERVER_TESTABILITY__
|
sl@0
|
292 |
|
sl@0
|
293 |
//We are not going to run OOM tests for several reasons:
|
sl@0
|
294 |
//1- These tests are already done as part of the CEcomServer and
|
sl@0
|
295 |
//CServerStartupMgr OOM tests
|
sl@0
|
296 |
//2- EcomServer is running on another process
|
sl@0
|
297 |
//3- We need to kill the EcomServer and start it again.
|
sl@0
|
298 |
|
sl@0
|
299 |
//For similar reasons to why we do not run OOM tests we should also
|
sl@0
|
300 |
//not test Ecom startup behaviour in this component test executable.
|
sl@0
|
301 |
//We will need to implement a new test executable for each test.
|
sl@0
|
302 |
}
|
sl@0
|
303 |
|
sl@0
|
304 |
GLDEF_C TInt E32Main()
|
sl@0
|
305 |
{
|
sl@0
|
306 |
__UHEAP_MARK;
|
sl@0
|
307 |
TheTest.Printf(_L("\n"));
|
sl@0
|
308 |
TheTest.Title();
|
sl@0
|
309 |
TheTest.Start(_L("Ecom Ssa Tests"));
|
sl@0
|
310 |
|
sl@0
|
311 |
TEST2(TheFs.Connect(), KErrNone);
|
sl@0
|
312 |
|
sl@0
|
313 |
// get clean-up stack
|
sl@0
|
314 |
CTrapCleanup* cleanup = CTrapCleanup::New();
|
sl@0
|
315 |
|
sl@0
|
316 |
TRAPD(err, ::KillEComServerL());
|
sl@0
|
317 |
TEST2(err, KErrNone);
|
sl@0
|
318 |
|
sl@0
|
319 |
EnableEcomTestBehaviour(TheTest, TheFs);
|
sl@0
|
320 |
|
sl@0
|
321 |
SetupFiles(); //Add plugins to C: drive
|
sl@0
|
322 |
|
sl@0
|
323 |
TRAP(err,DoTestsL());
|
sl@0
|
324 |
TEST2(err, KErrNone);
|
sl@0
|
325 |
|
sl@0
|
326 |
CleanupFiles(); //Cleanup after test. Remove the plugins from C: drive
|
sl@0
|
327 |
|
sl@0
|
328 |
DisableEcomTestBehaviour(TheTest, TheFs);
|
sl@0
|
329 |
|
sl@0
|
330 |
ResetSsa(TheTest, TheFs);
|
sl@0
|
331 |
|
sl@0
|
332 |
//Make sure that following tests start a fresh version of EComServer
|
sl@0
|
333 |
TRAP(err, ::KillEComServerL());
|
sl@0
|
334 |
|
sl@0
|
335 |
TheTest.End();
|
sl@0
|
336 |
TheTest.Close();
|
sl@0
|
337 |
|
sl@0
|
338 |
//delete scheduler;
|
sl@0
|
339 |
delete cleanup;
|
sl@0
|
340 |
|
sl@0
|
341 |
TheFs.Close();
|
sl@0
|
342 |
|
sl@0
|
343 |
__UHEAP_MARKEND;
|
sl@0
|
344 |
|
sl@0
|
345 |
User::Heap().Check();
|
sl@0
|
346 |
|
sl@0
|
347 |
return KErrNone;
|
sl@0
|
348 |
}
|
sl@0
|
349 |
|