1999-11-03 05:44:44 +03:00
|
|
|
@echo off
|
|
|
|
REM The contents of this file are subject to the Netscape Public
|
|
|
|
REM License Version 1.1 (the "License"); you may not use this file
|
|
|
|
REM except in compliance with the License. You may obtain a copy of
|
|
|
|
REM the License at http://www.mozilla.org/NPL/
|
|
|
|
REM
|
|
|
|
REM Software distributed under the License is distributed on an "AS
|
|
|
|
REM IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
|
|
|
REM implied. See the License for the specific language governing
|
|
|
|
REM rights and limitations under the License.
|
|
|
|
REM
|
|
|
|
REM The Original Code is Mozilla Communicator client code, released
|
|
|
|
REM March 31, 1998.
|
|
|
|
REM
|
|
|
|
REM The Initial Developer of the Original Code is Netscape
|
|
|
|
REM Communications Corporation. Portions created by Netscape are
|
|
|
|
REM Copyright (C) 1998-1999 Netscape Communications Corporation. All
|
|
|
|
REM Rights Reserved.
|
|
|
|
REM
|
|
|
|
REM Contributor(s): Akkana Peck, Daniel Bratell.
|
|
|
|
|
|
|
|
REM
|
|
|
|
REM This is a collection of test files to guard against regressions
|
|
|
|
REM in the Gecko output system.
|
|
|
|
REM
|
|
|
|
|
|
|
|
set errmsg=
|
2000-01-19 03:01:10 +03:00
|
|
|
set has_err=
|
1999-11-03 05:44:44 +03:00
|
|
|
|
|
|
|
echo Testing simple html to html ...
|
2000-01-19 03:01:10 +03:00
|
|
|
TestOutput -i text/html -o text\html -f 0 -c OutTestData/simple.html OutTestData/simple.html
|
|
|
|
if errorlevel 1 echo Simple html to html failed (%errorlevel%). && set has_err=1 && set errmsg=%errmsg% simple.html
|
1999-11-03 05:44:44 +03:00
|
|
|
|
|
|
|
echo Testing simple copy case ...
|
|
|
|
TestOutput -i text/html -o text/plain -f 0 -w 0 -c OutTestData/simplecopy.out OutTestData/simple.html
|
2000-01-19 03:01:10 +03:00
|
|
|
if errorlevel 1 echo Simple copy test failed. && set has_err=1 && set errmsg=%errmsg% simplecopy.out
|
1999-11-03 05:44:44 +03:00
|
|
|
|
|
|
|
echo Testing non-wrapped plaintext ...
|
|
|
|
TestOutput -i text/html -o text/plain -f 0 -w 0 -c OutTestData/plainnowrap.out OutTestData/plain.html
|
2000-01-19 03:01:10 +03:00
|
|
|
if errorlevel 1 echo Non-wrapped plaintext test failed. && set has_err=1 && set errmsg=%errmsg% plainnowrap.out
|
1999-11-03 05:44:44 +03:00
|
|
|
|
1999-12-02 01:41:22 +03:00
|
|
|
REM echo Testing wrapped bug unformatted plaintext ...
|
|
|
|
REM TestOutput -i text/html -o text/plain -f 32 -w 50 -c OutTestData/plainwrap.out OutTestData/plain.html
|
2000-01-19 03:01:10 +03:00
|
|
|
REM if errorlevel 1 echo Wrapped plaintext test failed. && set has_err=1 && set errmsg=%errmsg% plainwrap.out
|
1999-11-03 05:44:44 +03:00
|
|
|
|
|
|
|
echo Testing mail quoting ...
|
|
|
|
TestOutput -i text/html -o text/plain -c OutTestData/mailquote.out OutTestData/mailquote.html
|
2000-01-19 03:01:10 +03:00
|
|
|
if errorlevel 1 echo Mail quoting test failed. && set has_err=1 && set errmsg=%errmsg% mailquote.out
|
1999-11-03 05:44:44 +03:00
|
|
|
|
2000-01-19 03:01:10 +03:00
|
|
|
echo Testing conversion of Xif entities ...
|
1999-11-03 05:44:44 +03:00
|
|
|
TestOutput -i text/xif -o text/plain -c OutTestData/entityxif.out OutTestData/entityxif.xif
|
2000-01-19 03:01:10 +03:00
|
|
|
if errorlevel 1 echo Xif entity conversion test failed. && set has_err=1 && set errmsg=%errmsg% entityxif.out
|
1999-11-03 05:44:44 +03:00
|
|
|
|
2000-01-19 03:01:10 +03:00
|
|
|
echo Testing Xif to HTML ...
|
1999-11-03 05:44:44 +03:00
|
|
|
TestOutput -i text/xif -o text/html -c OutTestData/xifstuff.out OutTestData/xifstuff.xif
|
2000-01-19 03:01:10 +03:00
|
|
|
if errorlevel 1 echo Xif to HTML conversion test failed. && set has_err=1 && set errmsg=%errmsg% xifstuff.out
|
1999-11-03 05:44:44 +03:00
|
|
|
|
|
|
|
echo Testing HTML Table to Text ...
|
|
|
|
TestOutput -i text/html -o text/plain -c OutTestData/htmltable.out OutTestData/htmltable.html
|
2000-01-19 03:01:10 +03:00
|
|
|
if errorlevel 1 echo HTML Table to Plain text failed (%errorlevel%). && set has_err=1 && set errmsg=%errmsg% htmltable.out
|
1999-11-03 05:44:44 +03:00
|
|
|
|
2000-01-19 03:01:10 +03:00
|
|
|
if %has_err% == 0 goto success
|
|
|
|
echo.
|
|
|
|
echo TESTS FAILED: %errmsg%
|
|
|
|
rem exit 1
|
|
|
|
goto end
|
|
|
|
|
|
|
|
:success
|
1999-12-02 01:41:22 +03:00
|
|
|
echo ALL TESTS SUCCEEDED
|
2000-01-19 03:01:10 +03:00
|
|
|
:end
|