3 * Runs the UTF-8 decoder test at:
4 * http://www.cl.cam.ac.uk/~mgk25/ucs/examples/UTF-8-test.txt
6 * Copyright © 2004 Brion Vibber <brion@pobox.com>
7 * http://www.mediawiki.org/
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License along
20 * with this program; if not, write to the Free Software Foundation, Inc.,
21 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
22 * http://www.gnu.org/copyleft/gpl.html
30 require_once 'UtfNormalDefines.php';
31 require_once 'UtfNormalUtil.php';
32 require_once 'UtfNormal.php';
33 mb_internal_encoding( "utf-8" );
37 if( php_sapi_name() != 'cli' ) {
38 die( "Run me from the command line please.\n" );
41 $in = fopen( "UTF-8-test.txt", "rt" );
43 print "Couldn't open UTF-8-test.txt -- can't run tests.\n";
44 print "If necessary, manually download this file. It can be obtained at\n";
45 print "http://www.cl.cam.ac.uk/~mgk25/ucs/examples/UTF-8-test.txt\n";
50 while( false !== ( $line = fgets( $in ) ) ) {
52 if( preg_match( '/^(Here come the tests:\s*)\|$/', $line, $matches ) ) {
53 $columns = strpos( $line, '|' );
59 print "Something seems to be wrong; couldn't extract line length.\n";
60 print "Check that UTF-8-test.txt was downloaded correctly from\n";
61 print "http://www.cl.cam.ac.uk/~mgk25/ucs/examples/UTF-8-test.txt\n";
68 # These two lines actually seem to be corrupt
72 # Tests that should mark invalid characters due to using long
73 # sequences beyond what is now considered legal.
74 '2.1.5', '2.1.6', '2.2.4', '2.2.5', '2.2.6', '2.3.5',
76 # Literal 0xffff, which is illegal
80 # These tests span multiple lines
81 '3.1.9', '3.2.1', '3.2.2', '3.2.3', '3.2.4', '3.2.5',
84 # These tests are not in proper subsections
85 $sectionTests = array( '3.4' );
92 while( false !== ( $line = fgets( $in ) ) ) {
94 if( preg_match( '/^(\d+)\s+(.*?)\s*\|/', $line, $matches ) ) {
95 $section = $matches[1];
99 if( preg_match( '/^(\d+\.\d+\.\d+)\s*/', $line, $matches ) ) {
102 if( in_array( $test, $ignore ) ) {
105 if( in_array( $test, $longTests ) ) {
106 $line = fgets( $in );
107 for( $line = fgets( $in ); !preg_match( '/^\s+\|/', $line ); $line = fgets( $in ) ) {
108 testLine( $test, $line, $total, $success, $failed, $columns, $exceptions, $verbose );
111 testLine( $test, $line, $total, $success, $failed, $columns, $exceptions, $verbose );
117 echo "\nFailed $failed tests.\n";
118 echo "UTF-8 DECODER TEST FAILED\n";
122 echo "UTF-8 DECODER TEST SUCCESS!\n";
126 function testLine( $test, $line, &$total, &$success, &$failed, $columns, $exceptions, $verbose ) {
128 UtfNormal
::quickisNFCVerify( $stripped );
130 $same = ( $line == $stripped );
131 $len = mb_strlen( substr( $stripped, 0, strpos( $stripped, '|' ) ) );
133 $len = strlen( substr( $stripped, 0, strpos( $stripped, '|' ) ) );
136 $ok = $same ^
($test >= 3 );
138 $ok ^
= in_array( $test, $exceptions );
140 $ok &= ($columns == $len);
149 if( $verbose ||
!$ok ) {
150 print str_replace( "\n", "$len\n", $stripped );