这是 Windows 批处理文件,它允许您设置date time
用于捕获结果的动态目录,而不会覆盖以前的结果。
当然,您也可以从 Jeninks 调用批处理文件。
将下面的脚本复制到一个文件中,wrapper_testrunner.cmd
然后将此文件放在 testrunner.bat 所在的位置。因为是调用soapui的testrunner.bat
文件,即把这个批处理文件放在SOAPUI_HOME/bin
目录下。
@echo off
REM Provide the base directory where the results needs to be saved
REM A new dynamic directory is created using date time under this directory
set RESULTS_BASE_DIR=C:\Temp\TEST_Results
REM Set the soapui project to run
set PROJECT=C:\Temp\Project\hellow-world-soapui-project.xml
REM Set the environment name
set ENVIRONMENT_NAME="Default environment"
REM set the dynamic directory name using date time
set mdate=%date:~10%%date:~4,2%%date:~7,2%%time:~0,2%%time:~3,2%
REM create dynamic directory for results
mkdir %RESULTS_BASE_DIR%\%mdate%
REM run the project using testrunner
call testrunner.bat -f %RESULTS_BASE_DIR%\%mdate% -E %ENVIRONMENT_NAME% -raj %PROJECT%
如果您需要更改变量的任何值,请随时更改,我只放置占位符。
话虽如此,您还添加了需要传递到testrunner.bat
文件的任何其他选项。
希望这会有所帮助。