os/security/cryptomgmtlibs/securitytestfw/inc/SecurityTests.iby
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/security/cryptomgmtlibs/securitytestfw/inc/SecurityTests.iby	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,258 @@
     1.4 +/*
     1.5 +* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
     1.6 +* All rights reserved.
     1.7 +* This component and the accompanying materials are made available
     1.8 +* under the terms of the License "Eclipse Public License v1.0"
     1.9 +* which accompanies this distribution, and is available
    1.10 +* at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.11 +*
    1.12 +* Initial Contributors:
    1.13 +* Nokia Corporation - initial contribution.
    1.14 +*
    1.15 +* Contributors:
    1.16 +*
    1.17 +* Description: 
    1.18 +*
    1.19 +*/
    1.20 +
    1.21 +#ifndef __SECURITYTESTS_IBY__
    1.22 +#define __SECURITYTESTS_IBY__
    1.23 +
    1.24 +// We need bigger ROFS files for tests with TBAS
    1.25 +rofssize=0x2100000
    1.26 +
    1.27 +// conditionally included to avoid to be included in vasco image creation but needed in h4/h6 image creation
    1.28 +#ifdef _SERIAL_DOWNLOAD
    1.29 +// Save build details in ROM
    1.30 +data=\buildid.txt                 \buildid.txt
    1.31 +#endif
    1.32 +
    1.33 +// This should be included in the Techview.oby file
    1.34 +// All test data and scripts gets copied to the root of ROM drive.
    1.35 +// This should be copied to the relevant directory on the C drive.
    1.36 +
    1.37 +// platsec.oby should be included, but a problem in rombuild prevents build with watchers disabled and PlatSecEnforceSysBin ON
    1.38 +//#include "platsec.oby"
    1.39 +ROM_IMAGE[0] {
    1.40 +PlatSecDiagnostics ON
    1.41 +PlatSecEnforcement ON
    1.42 +PlatSecEnforceSysBin ON
    1.43 +PlatSecProcessIsolation ON
    1.44 +}
    1.45 +
    1.46 +#include "setcap.iby"
    1.47 +
    1.48 +#include "testexecute.iby"
    1.49 +#include "t_testhandler.iby"
    1.50 +#include "testutil.iby"
    1.51 +//#include "xml.iby" // Needed for security tests
    1.52 +
    1.53 +#include "securityframeworktestserver.iby"
    1.54 +
    1.55 +#if defined SYMBIAN_KEYSTORE_USE_AUTH_SERVER || defined SDP_ROM1
    1.56 +	#include "ups.iby"
    1.57 +	#include "tups.iby"
    1.58 +	#include "asnpkcstests.iby"
    1.59 +	#include "certmantests.iby"
    1.60 +	#include "tpkcs7server.iby"     
    1.61 +	#include "tpkcs12integrationserver.iby"  	
    1.62 +	#include "ctframeworktests.iby"
    1.63 +	// conditionally included to avoid to be included in vasco image creation but needed in h4/h6 image creation
    1.64 +	// temp added
    1.65 +	#ifndef _SERIAL_DOWNLOAD
    1.66 +		#include "streamingcaf.iby"
    1.67 +		// iby files for caf
    1.68 +		#include "caf.iby"
    1.69 +		#include "caftest.iby"
    1.70 +		#include "reccafconfig.iby"
    1.71 +		#include "rta.iby"
    1.72 +		#include "rtatest.iby"
    1.73 +		#include "cryptotests.iby"
    1.74 +		#include "tscaf.iby"	
    1.75 +		#include "randomtests.iby"
    1.76 +		#include "hashtests.iby"
    1.77 +
    1.78 +		#ifdef SYMBIAN_ENABLE_SDP_WMDRM_SUPPORT
    1.79 +		#include "mtputils.iby"
    1.80 +		#include "mtputilstest.iby"
    1.81 +		#include "refcafhelper.iby"
    1.82 +		#endif //SYMBIAN_ENABLE_SDP_WMDRM_SUPPORT
    1.83 +	#endif
    1.84 +
    1.85 +#else
    1.86 +	#include "streamingcaf.iby"
    1.87 +	// iby files for caf
    1.88 +	#include "caf.iby"
    1.89 +	#include "caftest.iby"
    1.90 +	#include "reccafconfig.iby"
    1.91 +	#include "rta.iby"
    1.92 +	#include "rtatest.iby"
    1.93 +	#include "cryptotests.iby"
    1.94 +	#include "tscaf.iby"	
    1.95 +	#include "randomtests.iby"
    1.96 +	#include "hashtests.iby"
    1.97 +
    1.98 +	#ifdef SYMBIAN_ENABLE_SDP_WMDRM_SUPPORT
    1.99 +	#include "mtputils.iby"
   1.100 +	#include "mtputilstest.iby"
   1.101 +	#include "refcafhelper.iby"
   1.102 +	#endif //SYMBIAN_ENABLE_SDP_WMDRM_SUPPORT
   1.103 +	// conditionally included to avoid to be included in vasco image creation but needed in h4/h6 image creation
   1.104 +	// temp added
   1.105 +	#ifndef _SERIAL_DOWNLOAD
   1.106 +		#include "ups.iby"
   1.107 +		#include "tups.iby"
   1.108 +		#include "asnpkcstests.iby"
   1.109 +		#include "certmantests.iby"
   1.110 +		#include "tpkcs7server.iby"     
   1.111 +		#include "tpkcs12integrationserver.iby"  	
   1.112 +		#include "ctframeworktests.iby"		
   1.113 +	#endif 
   1.114 +
   1.115 +#endif 
   1.116 +	
   1.117 +// Common utils libraries
   1.118 +#include "securitycommonutils.iby"
   1.119 +#include "securitytestframework.iby"	
   1.120 +#include "secutiltests.iby"
   1.121 +
   1.122 +//filetokens and authserver run in both the images.
   1.123 +#include "filetokenstests.iby"
   1.124 +
   1.125 +
   1.126 +#ifdef SYMBIAN_AUTH_SERVER
   1.127 +	#include "tAuthSvr.iby"
   1.128 +	#include "authserver.iby"
   1.129 +	#include "pinplugin.iby"
   1.130 +#endif // SYMBIAN_AUTH_SERVER
   1.131 +
   1.132 +
   1.133 +define ZDRIVE \epoc32\winscw\c
   1.134 +// This is the bat file to run the security tests automatically
   1.135 +// comms configuration (and configuration using sim.tsy)
   1.136 +// temp addeed the next line
   1.137 +#ifndef _SERIAL_DOWNLOAD
   1.138 +data = ZDRIVE\auto.cfg                 \buildid.txt
   1.139 +#endif
   1.140 +data = ZDRIVE\auto.cfg					\auto.cfg
   1.141 +data = ZDRIVE\auto_broken.cfg					\auto_broken.cfg
   1.142 +data = ZDRIVE\autosimtsy.cfg					\autosimtsy.cfg
   1.143 +data = ZDRIVE\prompt.cfg					\prompt.cfg
   1.144 +data = ZDRIVE\private\10202be9\persists\cccccc00_wifi.cre	\private\10202be9\persists\cccccc00_wifi.cre
   1.145 +
   1.146 +
   1.147 +// This the file which used to redirect the request from cam-ocsptest01 to ban-ocsptest01
   1.148 +data = ZDRIVE\autohardware\hosts		     \hosts
   1.149 +
   1.150 +
   1.151 +#ifdef __AUTO_HARDWARE_TESTS__
   1.152 +	data = ZDRIVE\autohardware\autoexec.bat		\autoexec.bat
   1.153 +#endif
   1.154 +
   1.155 +
   1.156 +data = ZDRIVE\autohardware\runcertman.bat			\runcertman.bat
   1.157 +data = ZDRIVE\autohardware\runasnpkcs.bat			\runasnpkcs.bat
   1.158 +data = ZDRIVE\autohardware\runcryptotokens.bat		\runcryptotokens.bat
   1.159 +data = ZDRIVE\autohardware\runupstests.bat			\runupstests.bat
   1.160 +data = ZDRIVE\autohardware\runpkcs12tests.bat		\runpkcs12tests.bat
   1.161 +
   1.162 +#ifdef SYMBIAN_ENABLE_SDP_WMDRM_SUPPORT
   1.163 +	data = ZDRIVE\autohardware\runcaftests_wmdrm.bat		\runcaftests.bat
   1.164 +#else
   1.165 +	data = ZDRIVE\autohardware\runcaftests.bat		\runcaftests.bat
   1.166 +#endif
   1.167 +
   1.168 +
   1.169 +
   1.170 +#ifdef SYMBIAN_ENABLE_SDP_WMDRM_SUPPORT
   1.171 +	data = ZDRIVE\autohardware\runcrypto_wmdrm.bat	               	\runcrypto.bat
   1.172 +#else
   1.173 +	data = ZDRIVE\autohardware\runcrypto.bat	               	\runcrypto.bat
   1.174 +#endif
   1.175 +
   1.176 +
   1.177 +
   1.178 +data = ZDRIVE\autohardware\testsecurityperformance_cryptalg.bat	\testsecurityperformance_cryptalg.bat
   1.179 +data = ZDRIVE\autohardware\testsecurityperformance_crypto.bat	\testsecurityperformance_crypto.bat
   1.180 +
   1.181 +#ifdef SYMBIAN_AUTH_SERVER
   1.182 +#ifdef SYMBIAN_ENABLE_POST_MARKET_AUTHENTICATION_PLUGINS
   1.183 +	data = ZDRIVE\autohardware\runauthtests_macroenabled.bat		\runauthtests.bat
   1.184 +#else
   1.185 +	data = ZDRIVE\autohardware\runauthtests.bat				\runauthtests.bat
   1.186 +#endif	//SYMBIAN_ENABLE_POST_MARKET_AUTHENTICATION_PLUGINS
   1.187 +#ifdef SYMBIAN_KEYSTORE_USE_AUTH_SERVER
   1.188 +	data = ZDRIVE\autohardware\runfiletokens_useauth.bat		\runfiletokens.bat
   1.189 +#else
   1.190 +	#ifdef SYMBIAN_ENABLE_SDP_WMDRM_SUPPORT
   1.191 +		data = ZDRIVE\autohardware\runfiletokens_disableauth_with_wmdrm.bat		\runfiletokens.bat
   1.192 +	#else
   1.193 +		data = ZDRIVE\autohardware\runfiletokens_disableauth.bat		\runfiletokens.bat
   1.194 +	#endif
   1.195 +#endif // SYMBIAN_KEYSTORE_USE_AUTH_SERVER
   1.196 +#else
   1.197 +	data = ZDRIVE\autohardware\runfiletokens.bat		\runfiletokens.bat
   1.198 +#endif // SYMBIAN_AUTH_SERVER
   1.199 +
   1.200 +#ifdef SYMBIAN_KEYSTORE_USE_AUTH_SERVER 
   1.201 +	data = ZDRIVE\autohardware\testsecurity_sdp_auth.bat		\testsecurity.bat
   1.202 +#else
   1.203 +#ifdef SDP_ROM1
   1.204 +	data = ZDRIVE\autohardware\testsecurity_sdp_newrom.bat		\testsecurity.bat
   1.205 +#else
   1.206 +	data = ZDRIVE\autohardware\testsecurity_sdp.bat			\testsecurity.bat
   1.207 +#endif
   1.208 +#endif
   1.209 +	
   1.210 +
   1.211 +
   1.212 +
   1.213 +//estor.dll is put in ROFS by deafult but we need to put it into CORE as well
   1.214 +//core version will be used; see DEF113303 for details
   1.215 +#ifdef __SECURITY_TEST_ROM__
   1.216 +#ifdef _INTERNAL_MMC
   1.217 +ROM_IMAGE[0] {
   1.218 +file = \epoc32\release\armv5\urel\estor.dll \sys\bin\estor.dll
   1.219 +}
   1.220 +#else
   1.221 +#ifdef _NAND2
   1.222 +ROM_IMAGE[0] {
   1.223 +file = \epoc32\release\armv5\urel\estor.dll \sys\bin\estor.dll
   1.224 +}
   1.225 +#endif
   1.226 +#endif
   1.227 +#endif
   1.228 +
   1.229 +REM ---------- Comms-Infras ----------
   1.230 +// ced is not included in release builds by default (in commdb.iby)
   1.231 +// so we include it explicitly here if _DEBUG is NOT defined
   1.232 +file=ABI_DIR\BUILD_DIR\ced.exe                      System\Libs\ced.exe
   1.233 +data=EPOCROOT##epoc32\data\z\system\data\meshpreface1.cfg		system\data\meshpreface1.cfg
   1.234 +
   1.235 +file=ABI_DIR\BUILD_DIR\ceddump.exe                  System\Programs\ceddump.exe
   1.236 +
   1.237 +file=ABI_DIR\BUILD_DIR\RUNTESTS.EXE                 System\Programs\RUNTESTS.EXE
   1.238 +
   1.239 +// conditionally included to avoid to be included in vasco image creation but needed in h4/h6 image creation
   1.240 +#ifdef _SERIAL_DOWNLOAD
   1.241 +#include "thindump.iby"
   1.242 +#endif
   1.243 +#include "sntpclient.iby"
   1.244 +
   1.245 +// *** Additional includes and configuration for SSM Requirements ***
   1.246 +#ifdef _SSMSTARTUPMODE
   1.247 +data=MULTI_LINGUIFY(RSC EPOCROOT##epoc32\data\z\private\2000d75b\startup\0\eshell  private\2000d75b\startup\0\eshell)
   1.248 +
   1.249 +// Addition IBY's required
   1.250 +#include "aplp.iby"
   1.251 +#include "amastart.iby"
   1.252 +#include "shma.iby"
   1.253 +#include "ssrefplugins.iby" 
   1.254 +#endif
   1.255 +
   1.256 +
   1.257 +// DEF139848 fix - Forward Propogation from Symtb9.1 - Illegal dependency from OCSP to HTTP.
   1.258 +#include "ocsp.iby" 
   1.259 +#include "ocsptests.iby"
   1.260 +
   1.261 +#endif