diff -r cd501b96611d -r ece3df019add authenticationservices/authenticationserver/test/tAuthSvr/src/tAuthSvrServer.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/authenticationservices/authenticationserver/test/tAuthSvr/src/tAuthSvrServer.cpp Tue Nov 24 09:06:03 2009 +0200 @@ -0,0 +1,198 @@ +/* +* Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies). +* All rights reserved. +* This component and the accompanying materials are made available +* under the terms of the License "Eclipse Public License v1.0" +* which accompanies this distribution, and is available +* at the URL "http://www.eclipse.org/legal/epl-v10.html". +* +* Initial Contributors: +* Nokia Corporation - initial contribution. +* +* Contributors: +* +* Description: +* Test code for the TestExecute Server +* +*/ + + + +#include "tAuthSvrServer.h" +#include "tAuthSvrStep.h" + + +CTAuthSvrServer* CTAuthSvrServer::NewL() +/** + * @return - Instance of the test server + * Called inside the MainL() function to create and start the + * CTestServer derived server. + */ + { + CTAuthSvrServer* server = new (ELeave) CTAuthSvrServer(); + CleanupStack::PushL(server); + + RProcess handle = RProcess(); + TParsePtrC serverName(handle.FileName()); + // Either use a StartL or ConstructL, the latter will permit + // server Logging. + + //server->StartL(KServerName); + server-> ConstructL(serverName.Name()); + CleanupStack::Pop(server); + return server; + } + + +// EKA2 much simpler +// Just an E32Main and a MainL() + +LOCAL_C void MainL() +/** + * Much simpler, uses the new Rendezvous() call to sync with the client + */ + { + // Leave the hooks in for platform security +#if (defined __DATA_CAGING__) + RProcess().DataCaging(RProcess::EDataCagingOn); + RProcess().SecureApi(RProcess::ESecureApiOn); +#endif + CActiveScheduler* sched=NULL; + sched=new(ELeave) CActiveScheduler; + CleanupStack::PushL(sched); + CActiveScheduler::Install(sched); + CTAuthSvrServer* server = NULL; + // Create the CTestServer derived server + TRAPD(err,server = CTAuthSvrServer::NewL()); + if(!err) + { + // Sync with the client and enter the active scheduler + RProcess::Rendezvous(KErrNone); + sched->Start(); + } + CleanupStack::Pop(sched); + delete server; + delete sched; + } + + +GLDEF_C TInt E32Main() +/** + * @return - Standard Epoc error code on exit + */ + { + CTrapCleanup* cleanup = CTrapCleanup::New(); + if(cleanup == NULL) + { + return KErrNoMemory; + } + TRAP_IGNORE(MainL()); + delete cleanup; + return KErrNone; + } + + +CTestStep* CTAuthSvrServer::CreateTestStep(const TDesC& aStepName) +/** + * @return - A CTestStep derived instance + * Implementation of CTestServer pure virtual + */ + { + // Test step name constant in the test step header file + // Created "just in time" + if(aStepName == KTFirstStart) + { + return new CTFirstStart(); + } + else if (aStepName == KTAuthSvrCheck) + { + return new CTAuthSvrCheck(); + } + else if (aStepName == KTRegIdentity) + { + return new CTRegIdentity(*this); + } + else if (aStepName == KTIdentifyMultiple) + { + return new CTIdentifyMultiple(); + } + else if (aStepName == KTStepCreateTestDb) + { + return new CTStepCreateTestDb(); + } + else if (aStepName == KTRetrainPlugin) + { + return new CTRetrainPlugin(*this); + } + else if (aStepName == KTRemoveDbs) + { + return new CTRemoveDbs(); + } + else if (aStepName == KTRemoveIdentity) + { + return new CTRemoveIdentity(*this); + } + else if (aStepName == KTForgetPlugin) + { + return new CTRemoveAuthMethod(*this); + } + else if (aStepName == KTAuthenticate) + { + return new CTAuthenticate(*this); + } + else if (aStepName == KTSetPrefs) + { + return new CTSetAuthPrefs(*this); + } + else if (aStepName == KTInitCenRep) + { + return new CTInitCenRep(*this); + } + else if (aStepName == KTResultAvailability) + { + return new CResultAvailability(*this); + } + else if (aStepName == KTResultChangeNotify) + { + return new CResultChangeNotify(*this); + } + else if (aStepName == KTResetIdentity) + { + return new CTResetIdentity(*this); + } + else if (aStepName == KTPostMarketPlugin) + { + return new CTPostMarketPlugin(); + } + else if (aStepName == KTStepClientSidSupportCheck) + { + return new CTStepClientSidSupport(*this); + } + else if (aStepName == KTInstallPluginStep) + { + return new CTInstallPluginStep(); + } + else if (aStepName == KTUninstallPluginStep) + { + return new CTUninstallPluginStep(); + } + else if (aStepName == KTAuthServerOom) + { + return new CAuthSvrOom(*this); + } + else if (aStepName == KTUpdateSysTime) + { + return new CTSysTimeUpdate(*this); + } + else if (aStepName == KTMultiThreadedTest) + { + return new CTMultiThreaded(*this); + } + else + { + ERR_PRINTF1(_L("The test step name specified does not exist.")); + } + + return NULL; + } +