os/ossrv/lowlevellibsandfws/pluginfw/TestExecute/EComSWITests/src/TE_EComSWITestSuiteServer.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
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".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    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.
    17 // 
    18 //
    19 
    20 /**
    21  @file
    22 */
    23 
    24 #include "TE_EComSWITestSuiteServer.h"
    25 #include <e32ldr.h>
    26 #include "installStep.h"
    27 #include "checkPlugin.h"
    28 #include <e32debug.h>
    29 
    30 // This TEF server uses setcap to create server with different names.
    31 // So cannot use the hardcoded KServerName.
    32 
    33 // _LIT(KServerName,"TE_EComSWITestSuite");
    34 
    35 CTe_EComSWISuiteServer* CTe_EComSWISuiteServer::NewL()
    36 /**
    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.
    41  */
    42 	{
    43 	CTe_EComSWISuiteServer * server = new (ELeave) CTe_EComSWISuiteServer();
    44 	CleanupStack::PushL(server);
    45 
    46 	// This test server uses different name after setcap
    47 	TFileName exename = RProcess().FileName();
    48 	TParsePtr pathparser(exename);
    49 
    50 	// CServer base class call which can be either StartL or ConstructL,
    51 	// the later will permit Server Logging.
    52 
    53 	server->StartL(pathparser.Name());
    54 	CleanupStack::Pop(server);
    55 	return server;
    56 	}
    57 
    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()
    62 	{
    63 	RLoader loaderObj;
    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();
    69 	}
    70 
    71 
    72 
    73 // Secure variants much simpler
    74 // For EKA2, just an E32Main and a MainL()
    75 LOCAL_C void MainL()
    76 /**
    77  * Secure variant
    78  * Much simpler, uses the new Rendezvous() call to sync with the client
    79  */
    80 	{
    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;
    86 	
    87 	// Stoping Lazy Unloading of Dlls  - This is Not standard TEF code.
    88 	CancelLazyDllUnloadingL();	
    89 		
    90 	// Create the CTestServer derived server
    91 	TRAPD(err,server = CTe_EComSWISuiteServer::NewL());
    92 	if(!err)
    93 		{
    94 		// Sync with the client and enter the active scheduler
    95 		RProcess::Rendezvous(KErrNone);
    96 		sched->Start();
    97 		}
    98 	delete server;
    99 	delete sched;
   100 	}
   101 
   102 
   103 
   104 GLDEF_C TInt E32Main()
   105 /**
   106  * @return - Standard Epoc error code on process exit
   107  * Secure variant only
   108  * Process entry point. Called by client using RProcess API
   109  */
   110 	{
   111 	__UHEAP_MARK;
   112 	CTrapCleanup* cleanup = CTrapCleanup::New();
   113 	if(cleanup == NULL)
   114 		{
   115 		return KErrNoMemory;
   116 		}
   117 	TRAPD(err,MainL());
   118 		
   119 	delete cleanup;
   120 	__UHEAP_MARKEND;
   121 	
   122 	return err;
   123 	}
   124 
   125 
   126 CTestStep* CTe_EComSWISuiteServer::CreateTestStep(const TDesC& aStepName)
   127 /**
   128  * @return - A CTestStep derived instance
   129  * Secure and non-secure variants
   130  * Implementation of CTestServer pure virtual
   131  */
   132 	{
   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 
   136 	
   137 			if(aStepName == KInstallStep)
   138 				{
   139 				testStep = new CinstallStep(CinstallStep::EUseFileName);
   140 				}
   141 			else if(aStepName == KUninstallStep)
   142 				{
   143 				testStep = new CuninstallStep(CuninstallStep::EByUid);     			
   144 				}
   145 			else if(aStepName == KUninstallStepPackageName)
   146 				{
   147 				testStep = new CuninstallStep(CuninstallStep::EByPackage);     			
   148 				}
   149 			else if(aStepName == KListImplUidStep)
   150 				{
   151 				testStep = new CCheckListImplementation(CCheckListImplementation::EUseListImplUid);     			
   152 				}
   153 			else if(aStepName == KCreateImpl_ImpId_DtorId_Step)
   154 				{
   155 				testStep = new CCheckCreateImplementation(CCheckCreateImplementation::EUseImplUidAndDtorID);     			
   156 				}
   157 			else if(aStepName == KResolverInstallStep)
   158 				{
   159 				testStep = new CResolverInstallStep(CinstallStep::EUseFileName);
   160 				}
   161 			else if(aStepName == KUseCustomResolverStep)
   162 				{
   163 				testStep = new CUseCustomResolver();
   164 				}
   165 			else if(aStepName == KResolverUninstallStep)
   166 				{
   167 				testStep = new CResolverUninstallStep(CuninstallStep::EByUid);
   168 				}
   169         		
   170 	return testStep;
   171 	}