os/ossrv/lowlevellibsandfws/pluginfw/Framework/EcomSsaEnabledTest/t_EcomSsaEnabled.cpp
Update contrib.
1 // Copyright (c) 2005-2009 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.
18 #include <ecom/ecom.h>
19 #include <startup.hrh>
20 #include "EComSessionAux.h"
21 #include "EcomTestUtils.h"
22 #include "EcomTestIniFileUtils.h"
23 #include "EcomTestCompTestabilityUtils.h"
26 static RTest TheTest(_L("T_EcomSsaEnabled"));
28 _LIT(KEComExampleDllOnZ, "Z:\\RAMOnly\\EComExample3.dll");
29 _LIT(KEComExampleDllOnC, "C:\\sys\\bin\\EComExample3.dll");
30 _LIT(KEComPluginRscOnZ, "Z:\\RAMOnly\\EComExample3.rsc");
31 _LIT(KEComPluginRscOnC, "C:\\resource\\plugins\\EComExample3.rsc");
33 #ifdef __ECOM_SERVER_TESTABILITY__
35 _LIT8(KImplementationDataOnZ, "RomOnly");
36 _LIT8(KImplementationDataOnC, "RamOnly");
42 //Test macroes and functions
45 #ifdef __ECOM_SERVER_TESTABILITY__
47 static void Check(TInt aValue, TInt aLine)
51 TheTest(EFalse, aLine);
54 #define TEST(arg) ::Check((arg), __LINE__)
58 static void Check(TInt aValue, TInt aExpected, TInt aLine)
60 if(aValue != aExpected)
62 RDebug::Print(_L("*** Expected error: %d, got: %d\r\n"), aExpected, aValue);
63 TheTest(EFalse, aLine);
66 #define TEST2(aValue, aExpected) ::Check(aValue, aExpected, __LINE__)
75 * Add plugins to C: drive so they can be discovered during NonStatic discovery
78 static void SetupFiles()
80 TRAPD(err, EComTestUtils::FileManCopyFileL(KEComExampleDllOnZ, KEComExampleDllOnC));
83 TRAP(err, EComTestUtils::FileManCopyFileL(KEComPluginRscOnZ, KEComPluginRscOnC));
88 * Remove the plugins from C: drive so we can leave a clean environment for
91 static void CleanupFiles()
93 TRAPD(err, EComTestUtils::FileManDeleteFileL(KEComExampleDllOnC));
96 TRAP(err, EComTestUtils::FileManDeleteFileL(KEComPluginRscOnC));
100 static void KillEComServerL()
102 //Need to ensure that the EComServer process is killed before even starting this test by using
103 //the EComTestUtils library
104 _LIT(KEComServerProcessName,"ecomserver");
105 TRAPD(error, EComTestUtils::KillProcessL(KEComServerProcessName));
109 #ifdef __ECOM_SERVER_TESTABILITY__
111 * Test if the requested plugin is discovered
112 *@param aInterfaceUid A UID specifying the required interface.
113 *@param aResolutionParameters A descriptor specifying any additional
114 * implementation characteristics to be fulfilled.
115 *@return return TRUE if plugin exists
117 static TBool TestForPlugin(TUid aInterfaceUid,
118 const TDesC8& aDataType)
120 TBool result = EFalse;
121 RImplInfoPtrArray aImplInfoArray;
122 TEComResolverParams resolverParams;
123 resolverParams.SetDataType(aDataType);
124 resolverParams.SetGenericMatch(ETrue); // Allow wildcard matching
126 REComSession::ListImplementationsL(
131 if(aImplInfoArray.Count() > 0)
136 aImplInfoArray.ResetAndDestroy();
147 #ifdef __ECOM_SERVER_TESTABILITY__
149 Wrapper function to call change and process startup state test functions
150 and check the current startup state is matched with the expected startup state.
151 @param aState A startup state to be set in ECOM
152 @param aExpectedState An expected startup state in ECOM
154 LOCAL_C void ChangeAndProcessStartupState(TInt aState, TInt aExpectedState)
157 TInt state = EStartupStateUndefined;
158 TRAPD(err, ChangeStartupStateL(aState));
159 TEST2(err, KErrNone);
160 TRAP(err, ProcessCurrentStartupStateL());
161 TEST2(err, KErrNone);
162 TRAP(err, state = GetCurrentStartupStateL());
163 TEST2(err, KErrNone);
164 TEST2(state, aExpectedState);
168 @SYMTestCaseID SYSLIB-ECOM-CIT-0188
169 @SYMTestCaseDesc The SSA is enabled, the ECOM will do a staged discovery with the
170 simulated Domain Manager.
171 @SYMTestPriority High
172 @SYMTestActions Check the plugins and the state of ECOM are correct at each state
173 using client API GetCurrentStartupStateL and ListImplementationsL.
174 @SYMTestExpectedResults The test must not fail.
177 LOCAL_C void TestEcomSsaEnabledL()
179 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CIT-0188 "));
180 // Set up for heap leak checking
183 // and leaking thread handles
184 TInt startProcessHandleCount;
185 TInt startThreadHandleCount;
186 TInt endProcessHandleCount;
187 TInt endThreadHandleCount;
190 RThread().HandleCount(startProcessHandleCount, startThreadHandleCount);
192 TUid ifUid = {0x10009DC0};
194 EnableSsa(TheTest, TheFs);
196 //Change the state to a user defined state then
197 //check that current state is still EStartupStateUndefined
198 ChangeAndProcessStartupState(EStartupStateUndefined+1,EStartupStateUndefined);
200 //Change the state to a user defined state then
201 //check that current state is still EStartupStateUndefined
202 ChangeAndProcessStartupState(EStartupStateCriticalStatic-1,EStartupStateUndefined );
204 //Change the state to EStartupStateCriticalStatic then
205 //check that current state is EStartupStateCriticalStatic
206 //check that a plugin from RO drive is discovered
207 ChangeAndProcessStartupState(EStartupStateCriticalStatic,EStartupStateCriticalStatic );
208 TEST2(ETrue, TestForPlugin(ifUid, KImplementationDataOnZ()));
210 //Change the state to a user defined state then
211 //check that current state is still EStartupStateCriticalStatic
212 ChangeAndProcessStartupState(EStartupStateCriticalStatic+1,EStartupStateCriticalStatic);
214 //Change the state to a user defined state then
215 //check that current state is still EStartupStateCriticalStatic
216 ChangeAndProcessStartupState(EStartupStateCriticalDynamic-1,EStartupStateCriticalStatic);
218 //Change the state to EStartupStateCriticalDynamic then
219 //check that current state is EStartupStateCriticalDynamic
220 ChangeAndProcessStartupState(EStartupStateCriticalDynamic, EStartupStateCriticalDynamic);
222 //Change the state to a user defined state then
223 //check that current state is still EStartupStateCriticalDynamic
224 ChangeAndProcessStartupState(EStartupStateCriticalDynamic+1, EStartupStateCriticalDynamic);
226 //Change the state to a user defined state then
227 //check that current state is still EStartupStateCriticalDynamic
228 ChangeAndProcessStartupState(EStartupStateNonCritical-1,EStartupStateCriticalDynamic);
230 //Change the state to EStartupStateNonCritical then
231 //check that current state is EStartupStateNonCritical
232 //check that a plugin from RO drive is discovered
233 ChangeAndProcessStartupState(EStartupStateNonCritical,EStartupStateNonCritical );
234 TEST2(ETrue, TestForPlugin(ifUid, KImplementationDataOnC()));
236 //Change the state to a user defined state then
237 //check that current state is still EStartupStateNonCritical
238 ChangeAndProcessStartupState(EStartupStateNonCritical+1, EStartupStateNonCritical);
240 REComSession::FinalClose();
242 RThread().HandleCount(endProcessHandleCount, endThreadHandleCount);
244 TEST(startProcessHandleCount == endProcessHandleCount);
245 TEST(startThreadHandleCount == endThreadHandleCount);
251 #endif //__ECOM_SERVER_TESTABILITY__
253 #ifdef __ECOM_SERVER_TESTABILITY__
254 // Type definition for pointer to member function.
255 // Used in calling T_EcomSsaEnabled test functions.
256 typedef void (*ClassFuncPtrL) (void);
259 Wrapper function to call all test functions
260 @param testFunc pointer to test function
261 @param aTestDesc test function name
263 LOCAL_C void DoBasicTestL(ClassFuncPtrL testFuncL, const TDesC& aTestDesc)
265 TheTest.Next(aTestDesc);
268 // find out the number of open handles
269 TInt startProcessHandleCount;
270 TInt startThreadHandleCount;
271 RThread().HandleCount(startProcessHandleCount, startThreadHandleCount);
275 // check that no handles have leaked
276 TInt endProcessHandleCount;
277 TInt endThreadHandleCount;
278 RThread().HandleCount(endProcessHandleCount, endThreadHandleCount);
280 TEST(startProcessHandleCount == endProcessHandleCount);
281 TEST(startThreadHandleCount == endThreadHandleCount);
285 #endif //__ECOM_SERVER_TESTABILITY__
287 LOCAL_C void DoTestsL()
289 #ifdef __ECOM_SERVER_TESTABILITY__
290 DoBasicTestL(&TestEcomSsaEnabledL, _L("TestEcomSsaEnabledL"));
291 #endif //__ECOM_SERVER_TESTABILITY__
293 //We are not going to run OOM tests for several reasons:
294 //1- These tests are already done as part of the CEcomServer and
295 //CServerStartupMgr OOM tests
296 //2- EcomServer is running on another process
297 //3- We need to kill the EcomServer and start it again.
299 //For similar reasons to why we do not run OOM tests we should also
300 //not test Ecom startup behaviour in this component test executable.
301 //We will need to implement a new test executable for each test.
304 GLDEF_C TInt E32Main()
307 TheTest.Printf(_L("\n"));
309 TheTest.Start(_L("Ecom Ssa Tests"));
311 TEST2(TheFs.Connect(), KErrNone);
313 // get clean-up stack
314 CTrapCleanup* cleanup = CTrapCleanup::New();
316 TRAPD(err, ::KillEComServerL());
317 TEST2(err, KErrNone);
319 EnableEcomTestBehaviour(TheTest, TheFs);
321 SetupFiles(); //Add plugins to C: drive
323 TRAP(err,DoTestsL());
324 TEST2(err, KErrNone);
326 CleanupFiles(); //Cleanup after test. Remove the plugins from C: drive
328 DisableEcomTestBehaviour(TheTest, TheFs);
330 ResetSsa(TheTest, TheFs);
332 //Make sure that following tests start a fresh version of EComServer
333 TRAP(err, ::KillEComServerL());
345 User::Heap().Check();