os/ossrv/lowlevellibsandfws/pluginfw/TestExecute/EComSWITests/src/TE_EComSWITestSuiteServer.cpp
Update contrib.
1 // Copyright (c) 2006-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.
14 // for (WINS && !EKA2) versions will be xxxServer.Dll and require a thread to be started
15 // in the process of the client. The client initialises the server by calling the
16 // one and only ordinal.
24 #include "TE_EComSWITestSuiteServer.h"
26 #include "installStep.h"
27 #include "checkPlugin.h"
30 // This TEF server uses setcap to create server with different names.
31 // So cannot use the hardcoded KServerName.
33 // _LIT(KServerName,"TE_EComSWITestSuite");
35 CTe_EComSWISuiteServer* CTe_EComSWISuiteServer::NewL()
37 * @return - Instance of the test server
38 * Same code for Secure and non-secure variants
39 * Called inside the MainL() function to create and start the
40 * CTestServer derived server.
43 CTe_EComSWISuiteServer * server = new (ELeave) CTe_EComSWISuiteServer();
44 CleanupStack::PushL(server);
46 // This test server uses different name after setcap
47 TFileName exename = RProcess().FileName();
48 TParsePtr pathparser(exename);
50 // CServer base class call which can be either StartL or ConstructL,
51 // the later will permit Server Logging.
53 server->StartL(pathparser.Name());
54 CleanupStack::Pop(server);
58 // DEFECT 097099 - This function disables Lazy library unloading
59 // which keeps dlls in cache for two minutes from system boot-up. This was casuing this test to fail
60 //as a plugin was being upgraded but ecom was returning the old plugin which was still in the cache. See defect for more details
61 LOCAL_C void CancelLazyDllUnloadingL()
64 User::LeaveIfError(loaderObj.Connect());
65 CleanupClosePushL(loaderObj);
66 User::LeaveIfError(loaderObj.CancelLazyDllUnload());
67 RDebug::Print(_L("Cancelled Lazy Unloading of dlls"));
68 CleanupStack::PopAndDestroy();
73 // Secure variants much simpler
74 // For EKA2, just an E32Main and a MainL()
78 * Much simpler, uses the new Rendezvous() call to sync with the client
81 // Leave the hooks in for platform security
82 CActiveScheduler* sched=NULL;
83 sched=new(ELeave) CActiveScheduler;
84 CActiveScheduler::Install(sched);
85 CTe_EComSWISuiteServer* server = NULL;
87 // Stoping Lazy Unloading of Dlls - This is Not standard TEF code.
88 CancelLazyDllUnloadingL();
90 // Create the CTestServer derived server
91 TRAPD(err,server = CTe_EComSWISuiteServer::NewL());
94 // Sync with the client and enter the active scheduler
95 RProcess::Rendezvous(KErrNone);
104 GLDEF_C TInt E32Main()
106 * @return - Standard Epoc error code on process exit
107 * Secure variant only
108 * Process entry point. Called by client using RProcess API
112 CTrapCleanup* cleanup = CTrapCleanup::New();
126 CTestStep* CTe_EComSWISuiteServer::CreateTestStep(const TDesC& aStepName)
128 * @return - A CTestStep derived instance
129 * Secure and non-secure variants
130 * Implementation of CTestServer pure virtual
133 CTestStep* testStep = NULL;
134 // They are created "just in time" when the worker thread is created
135 // More test steps can be added below
137 if(aStepName == KInstallStep)
139 testStep = new CinstallStep(CinstallStep::EUseFileName);
141 else if(aStepName == KUninstallStep)
143 testStep = new CuninstallStep(CuninstallStep::EByUid);
145 else if(aStepName == KUninstallStepPackageName)
147 testStep = new CuninstallStep(CuninstallStep::EByPackage);
149 else if(aStepName == KListImplUidStep)
151 testStep = new CCheckListImplementation(CCheckListImplementation::EUseListImplUid);
153 else if(aStepName == KCreateImpl_ImpId_DtorId_Step)
155 testStep = new CCheckCreateImplementation(CCheckCreateImplementation::EUseImplUidAndDtorID);
157 else if(aStepName == KResolverInstallStep)
159 testStep = new CResolverInstallStep(CinstallStep::EUseFileName);
161 else if(aStepName == KUseCustomResolverStep)
163 testStep = new CUseCustomResolver();
165 else if(aStepName == KResolverUninstallStep)
167 testStep = new CResolverUninstallStep(CuninstallStep::EByUid);