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.
sl@0
     1
// Copyright (c) 2006-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
// for (WINS && !EKA2) versions will be xxxServer.Dll and require a thread to be started
sl@0
    15
// in the process of the client. The client initialises the server by calling the
sl@0
    16
// one and only ordinal.
sl@0
    17
// 
sl@0
    18
//
sl@0
    19
sl@0
    20
/**
sl@0
    21
 @file
sl@0
    22
*/
sl@0
    23
sl@0
    24
#include "TE_EComSWITestSuiteServer.h"
sl@0
    25
#include <e32ldr.h>
sl@0
    26
#include "installStep.h"
sl@0
    27
#include "checkPlugin.h"
sl@0
    28
#include <e32debug.h>
sl@0
    29
sl@0
    30
// This TEF server uses setcap to create server with different names.
sl@0
    31
// So cannot use the hardcoded KServerName.
sl@0
    32
sl@0
    33
// _LIT(KServerName,"TE_EComSWITestSuite");
sl@0
    34
sl@0
    35
CTe_EComSWISuiteServer* CTe_EComSWISuiteServer::NewL()
sl@0
    36
/**
sl@0
    37
 * @return - Instance of the test server
sl@0
    38
 * Same code for Secure and non-secure variants
sl@0
    39
 * Called inside the MainL() function to create and start the
sl@0
    40
 * CTestServer derived server.
sl@0
    41
 */
sl@0
    42
	{
sl@0
    43
	CTe_EComSWISuiteServer * server = new (ELeave) CTe_EComSWISuiteServer();
sl@0
    44
	CleanupStack::PushL(server);
sl@0
    45
sl@0
    46
	// This test server uses different name after setcap
sl@0
    47
	TFileName exename = RProcess().FileName();
sl@0
    48
	TParsePtr pathparser(exename);
sl@0
    49
sl@0
    50
	// CServer base class call which can be either StartL or ConstructL,
sl@0
    51
	// the later will permit Server Logging.
sl@0
    52
sl@0
    53
	server->StartL(pathparser.Name());
sl@0
    54
	CleanupStack::Pop(server);
sl@0
    55
	return server;
sl@0
    56
	}
sl@0
    57
sl@0
    58
// DEFECT 097099 - This function disables Lazy library unloading
sl@0
    59
// which keeps dlls in cache for two minutes from system boot-up.  This was casuing this test  to fail
sl@0
    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
sl@0
    61
LOCAL_C void CancelLazyDllUnloadingL()
sl@0
    62
	{
sl@0
    63
	RLoader loaderObj;
sl@0
    64
	User::LeaveIfError(loaderObj.Connect());
sl@0
    65
	CleanupClosePushL(loaderObj);
sl@0
    66
	User::LeaveIfError(loaderObj.CancelLazyDllUnload());
sl@0
    67
	RDebug::Print(_L("Cancelled Lazy Unloading of dlls"));
sl@0
    68
	CleanupStack::PopAndDestroy();
sl@0
    69
	}
sl@0
    70
sl@0
    71
sl@0
    72
sl@0
    73
// Secure variants much simpler
sl@0
    74
// For EKA2, just an E32Main and a MainL()
sl@0
    75
LOCAL_C void MainL()
sl@0
    76
/**
sl@0
    77
 * Secure variant
sl@0
    78
 * Much simpler, uses the new Rendezvous() call to sync with the client
sl@0
    79
 */
sl@0
    80
	{
sl@0
    81
	// Leave the hooks in for platform security
sl@0
    82
	CActiveScheduler* sched=NULL;
sl@0
    83
	sched=new(ELeave) CActiveScheduler;
sl@0
    84
	CActiveScheduler::Install(sched);
sl@0
    85
	CTe_EComSWISuiteServer* server = NULL;
sl@0
    86
	
sl@0
    87
	// Stoping Lazy Unloading of Dlls  - This is Not standard TEF code.
sl@0
    88
	CancelLazyDllUnloadingL();	
sl@0
    89
		
sl@0
    90
	// Create the CTestServer derived server
sl@0
    91
	TRAPD(err,server = CTe_EComSWISuiteServer::NewL());
sl@0
    92
	if(!err)
sl@0
    93
		{
sl@0
    94
		// Sync with the client and enter the active scheduler
sl@0
    95
		RProcess::Rendezvous(KErrNone);
sl@0
    96
		sched->Start();
sl@0
    97
		}
sl@0
    98
	delete server;
sl@0
    99
	delete sched;
sl@0
   100
	}
sl@0
   101
sl@0
   102
sl@0
   103
sl@0
   104
GLDEF_C TInt E32Main()
sl@0
   105
/**
sl@0
   106
 * @return - Standard Epoc error code on process exit
sl@0
   107
 * Secure variant only
sl@0
   108
 * Process entry point. Called by client using RProcess API
sl@0
   109
 */
sl@0
   110
	{
sl@0
   111
	__UHEAP_MARK;
sl@0
   112
	CTrapCleanup* cleanup = CTrapCleanup::New();
sl@0
   113
	if(cleanup == NULL)
sl@0
   114
		{
sl@0
   115
		return KErrNoMemory;
sl@0
   116
		}
sl@0
   117
	TRAPD(err,MainL());
sl@0
   118
		
sl@0
   119
	delete cleanup;
sl@0
   120
	__UHEAP_MARKEND;
sl@0
   121
	
sl@0
   122
	return err;
sl@0
   123
	}
sl@0
   124
sl@0
   125
sl@0
   126
CTestStep* CTe_EComSWISuiteServer::CreateTestStep(const TDesC& aStepName)
sl@0
   127
/**
sl@0
   128
 * @return - A CTestStep derived instance
sl@0
   129
 * Secure and non-secure variants
sl@0
   130
 * Implementation of CTestServer pure virtual
sl@0
   131
 */
sl@0
   132
	{
sl@0
   133
	CTestStep* testStep = NULL;
sl@0
   134
	// They are created "just in time" when the worker thread is created
sl@0
   135
	// More test steps can be added below 
sl@0
   136
	
sl@0
   137
			if(aStepName == KInstallStep)
sl@0
   138
				{
sl@0
   139
				testStep = new CinstallStep(CinstallStep::EUseFileName);
sl@0
   140
				}
sl@0
   141
			else if(aStepName == KUninstallStep)
sl@0
   142
				{
sl@0
   143
				testStep = new CuninstallStep(CuninstallStep::EByUid);     			
sl@0
   144
				}
sl@0
   145
			else if(aStepName == KUninstallStepPackageName)
sl@0
   146
				{
sl@0
   147
				testStep = new CuninstallStep(CuninstallStep::EByPackage);     			
sl@0
   148
				}
sl@0
   149
			else if(aStepName == KListImplUidStep)
sl@0
   150
				{
sl@0
   151
				testStep = new CCheckListImplementation(CCheckListImplementation::EUseListImplUid);     			
sl@0
   152
				}
sl@0
   153
			else if(aStepName == KCreateImpl_ImpId_DtorId_Step)
sl@0
   154
				{
sl@0
   155
				testStep = new CCheckCreateImplementation(CCheckCreateImplementation::EUseImplUidAndDtorID);     			
sl@0
   156
				}
sl@0
   157
			else if(aStepName == KResolverInstallStep)
sl@0
   158
				{
sl@0
   159
				testStep = new CResolverInstallStep(CinstallStep::EUseFileName);
sl@0
   160
				}
sl@0
   161
			else if(aStepName == KUseCustomResolverStep)
sl@0
   162
				{
sl@0
   163
				testStep = new CUseCustomResolver();
sl@0
   164
				}
sl@0
   165
			else if(aStepName == KResolverUninstallStep)
sl@0
   166
				{
sl@0
   167
				testStep = new CResolverUninstallStep(CuninstallStep::EByUid);
sl@0
   168
				}
sl@0
   169
        		
sl@0
   170
	return testStep;
sl@0
   171
	}