os/security/cryptomgmtlibs/securitytestfw/test/captestframework/captestframeworkhelper.cpp
Update contrib.
2 * Copyright (c) 2005-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.
25 //This is a dummy source file to be used to create a dummy exe
29 #include "captestframework.h"
34 GLDEF_D TInt E32Main()
36 CTrapCleanup* cleanup = CTrapCleanup::New();
47 HBufC* GetDesParameterL(TInt aParam)
50 TInt length=User::ParameterLength(aParam);
51 User::LeaveIfError(length);
53 HBufC* des=HBufC::NewLC(length);
54 TPtr desPtr=des->Des();
55 User::LeaveIfError(User::GetDesParameter(aParam, desPtr));
57 CleanupStack::Pop(des);
64 return GetDesParameterL(KDllNameTransferSlot);
71 // figure out which test we're supposed to be running
72 HBufC* dllName=GetDllNameL();
74 HBufC* logFileName=GetDesParameterL(KLogFileNameTransferSlot);
77 err = User::GetTIntParameter(KShouldPassTransferSlot, shouldPass);
79 err = User::GetTIntParameter(KTestNumberTransferSlot, testNumber);
83 User::LeaveIfError(fs.Connect());
84 CleanupClosePushL(fs);
88 User::LeaveIfError(logFile.Replace(fs, *logFileName, 0));
89 CleanupClosePushL(logFile);
93 User::LeaveIfError(lib.Load(*dllName));
94 CleanupClosePushL(lib);
97 TLibraryFunction testFactory=lib.Lookup(1);
98 MCapabilityTestFactory* factory=reinterpret_cast<MCapabilityTestFactory*>(testFactory());
99 factory->Test(testNumber)->SetExpectPermissionDenied(!shouldPass);
101 TRAP(err, factory->Test(testNumber)->RunTestL(logFile));
104 CleanupStack::PopAndDestroy(3, &fs); // lib, logFile, fs
106 User::LeaveIfError(err);