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 if ( PHP_SAPI
!= 'cli' ) {
31 die( "Run me from the command line please.\n" );
34 require_once 'UtfNormalDefines.php';
35 require_once 'UtfNormalUtil.php';
36 require_once 'UtfNormal.php';
37 mb_internal_encoding( "utf-8" );
42 $in = fopen( "UTF-8-test.txt", "rt" );
44 print "Couldn't open UTF-8-test.txt -- can't run tests.\n";
45 print "If necessary, manually download this file. It can be obtained at\n";
46 print "http://www.cl.cam.ac.uk/~mgk25/ucs/examples/UTF-8-test.txt\n";
51 while( false !== ( $line = fgets( $in ) ) ) {
53 if( preg_match( '/^(Here come the tests:\s*)\|$/', $line, $matches ) ) {
54 $columns = strpos( $line, '|' );
60 print "Something seems to be wrong; couldn't extract line length.\n";
61 print "Check that UTF-8-test.txt was downloaded correctly from\n";
62 print "http://www.cl.cam.ac.uk/~mgk25/ucs/examples/UTF-8-test.txt\n";
69 # These two lines actually seem to be corrupt
73 # Tests that should mark invalid characters due to using long
74 # sequences beyond what is now considered legal.
75 '2.1.5', '2.1.6', '2.2.4', '2.2.5', '2.2.6', '2.3.5',
77 # Literal 0xffff, which is illegal
81 # These tests span multiple lines
82 '3.1.9', '3.2.1', '3.2.2', '3.2.3', '3.2.4', '3.2.5',
85 # These tests are not in proper subsections
86 $sectionTests = array( '3.4' );
93 while( false !== ( $line = fgets( $in ) ) ) {
95 if( preg_match( '/^(\d+)\s+(.*?)\s*\|/', $line, $matches ) ) {
96 $section = $matches[1];
100 if( preg_match( '/^(\d+\.\d+\.\d+)\s*/', $line, $matches ) ) {
103 if( in_array( $test, $ignore ) ) {
106 if( in_array( $test, $longTests ) ) {
107 $line = fgets( $in );
108 for( $line = fgets( $in ); !preg_match( '/^\s+\|/', $line ); $line = fgets( $in ) ) {
109 testLine( $test, $line, $total, $success, $failed, $columns, $exceptions, $verbose );
112 testLine( $test, $line, $total, $success, $failed, $columns, $exceptions, $verbose );
118 echo "\nFailed $failed tests.\n";
119 echo "UTF-8 DECODER TEST FAILED\n";
123 echo "UTF-8 DECODER TEST SUCCESS!\n";
127 function testLine( $test, $line, &$total, &$success, &$failed, $columns, $exceptions, $verbose ) {
129 UtfNormal
::quickisNFCVerify( $stripped );
131 $same = ( $line == $stripped );
132 $len = mb_strlen( substr( $stripped, 0, strpos( $stripped, '|' ) ) );
134 $len = strlen( substr( $stripped, 0, strpos( $stripped, '|' ) ) );
137 $ok = $same ^
($test >= 3 );
139 $ok ^
= in_array( $test, $exceptions );
141 $ok &= ($columns == $len);
150 if( $verbose ||
!$ok ) {
151 print str_replace( "\n", "$len\n", $stripped );