os/security/cryptomgmtlibs/securitytestfw/test/captestframework/captestframeworkserver.cpp
Update contrib.
2 * Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of the License "Eclipse Public License v1.0"
6 * which accompanies this distribution, and is available
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
24 #include "captestframeworkserver.h"
25 #include "captestframeworkstep.h"
27 _LIT(KServerName,"captestframework");
29 CCapTestFrameworkServer* CCapTestFrameworkServer::NewL()
31 * @return - Instance of the test server
32 * Called inside the MainL() function to create and start the
33 * CTestServer derived server.
36 CCapTestFrameworkServer * server = new (ELeave) CCapTestFrameworkServer();
37 CleanupStack::PushL(server);
39 server->ConstructL(KServerName);
40 CleanupStack::Pop(server);
46 // Leave the hooks in for platform security
47 #if (defined __DATA_CAGING__)
48 RProcess().DataCaging(RProcess::EDataCagingOn);
49 RProcess().SecureApi(RProcess::ESecureApiOn);
51 CActiveScheduler* sched=NULL;
52 sched=new(ELeave) CActiveScheduler;
53 CActiveScheduler::Install(sched);
54 CCapTestFrameworkServer* server = NULL;
55 // Create the CTestServer derived server
56 TRAPD(err,server = CCapTestFrameworkServer::NewL());
59 // Sync with the client and enter the active scheduler
60 RProcess::Rendezvous(KErrNone);
67 GLDEF_C TInt E32Main()
69 * @return - Standard Epoc error code on exit
72 CTrapCleanup* cleanup = CTrapCleanup::New();
83 CTestStep* CCapTestFrameworkServer::CreateTestStep(const TDesC& aStepName)
85 * @return - A CTestStep derived instance
86 * Implementation of CTestServer pure virtual
89 if (aStepName == KRunBasicCapabilityChecks)
91 return new CCapTestFrameworkStep(CCapTestFrameworkStep::EBasicChecks);
93 else if (aStepName == KRunThoroughCapabilityChecks)
95 return new CCapTestFrameworkStep(CCapTestFrameworkStep::EThoroughChecks);