69 lines
2.2 KiB
Batchfile
Executable file
69 lines
2.2 KiB
Batchfile
Executable file
@echo off
|
|
|
|
REM execute a single test case of the accessibility test suite
|
|
REM
|
|
REM (c) 2006 (W3C) MIT, ERCIM, Keio University
|
|
REM See tidy.c for the copyright notice.
|
|
REM
|
|
REM <URL:http://www.html-tidy.org/>
|
|
REM
|
|
|
|
echo Testing %1 %2 %3
|
|
set TESTNO=%1
|
|
set TESTEXPECTED=%2
|
|
set ACCESSLEVEL=%3
|
|
|
|
set INFILES=%TIDYINPUT%\%1.*ml
|
|
set CFGFILE=%TIDYINPUT%\cfg_%1.txt
|
|
|
|
set TIDYFILE=%TIDYOUT%\out_%1.html
|
|
set MSGFILE=%TIDYout%\msg_%1.txt
|
|
|
|
set HTML_TIDY=
|
|
|
|
REM If no test specific config file, use default.
|
|
if NOT exist %CFGFILE% set CFGFILE=%TIDYINPUT%\cfg_default.txt
|
|
|
|
REM Get specific input file name
|
|
for %%F in ( %INFILES% ) do set INFILE=%%F
|
|
|
|
if EXIST %INFILE% goto DOIT
|
|
@echo ERROR: Can NOT locate [%INFILE%] ... aborting test ...
|
|
@echo ======================================= >> ACCERR.TXT
|
|
@echo Testing %1 %2 %3 >> ACCERR.TXT
|
|
@echo ERROR: Can NOT locate [%INFILE%] ... aborting test ... >> ACCERR.TXT
|
|
@goto done
|
|
|
|
:DOIT
|
|
REM Remove any pre-existing test outputs
|
|
if exist %MSGFILE% del %MSGFILE%
|
|
if exist %TIDYFILE% del %TIDYFILE%
|
|
|
|
REM this has to all one line ...
|
|
%TIDY% -f %MSGFILE% --accessibility-check %ACCESSLEVEL% -config %CFGFILE% --gnu-emacs yes --tidy-mark no -o %TIDYFILE% %INFILE%
|
|
|
|
@REM output the FIND count to the a result file
|
|
find /c "%TESTEXPECTED%" %MSGFILE% > tempres.txt
|
|
@REM load the find count, token 3, into variable RESULT
|
|
for /F "tokens=3" %%i in (tempres.txt) do set RESULT=%%i
|
|
@REM test the RESULT variable ...
|
|
if "%RESULT%." == "0." goto Err
|
|
if "%RESULT%." == "1." goto done
|
|
@REM echo note - test '%TESTEXPECTED%' found %RESULT% times in file '%INFILE%'
|
|
goto done
|
|
|
|
:Err
|
|
echo FAILED --- test '%TESTEXPECTED%' not detected in file '%INFILE%'
|
|
type %MSGFILE%
|
|
echo FAILED --- test '%TESTEXPECTED%' not detected in above
|
|
set FAILEDACC=%FAILEDACC% %1
|
|
REM append results to the ACCERR.TXT file
|
|
echo ======================================= >> ACCERR.TXT
|
|
echo %TIDY% -f %MSGFILE% --accessibility-check %ACCESSLEVEL% -config %CFGFILE% --gnu-emacs yes --tidy-mark no -o %TIDYFILE% %INFILE% >> ACCERR.TXT
|
|
echo FAILED --- test '%TESTEXPECTED%' not detected in file '%MSGFILE%', as follows - >> ACCERR.TXT
|
|
type %MSGFILE% >> ACCERR.TXT
|
|
echo FAILED --- test '%TESTEXPECTED%' not detected in above >> ACCERR.TXT
|
|
goto done
|
|
|
|
:done
|