assertTrue( $tu->getAllFunctionsAt( "\\AA" ) ); $this->assertFalse( $tu->getAllFunctionsAt( "\\notlisted" ) ); // Testing other functions $this->assertTrue( $tu->mhchem_macro_2pc( "\\color" ) ); $this->assertFalse( $tu->mhchem_macro_2pc( "not listed" ) ); } /** * Testing a checksum for the parsed object against a checksum of the json file contents. * @return void */ public function testChecksum() { $tu = TexUtil::getInstance(); $out = []; $sets = [ 'ams_required', 'big_literals', 'box_functions', 'cancel_required', 'color_function', 'color_required', 'declh_function', 'definecolor_function', 'euro_required', 'fun_ar1', 'fun_ar1nb', 'fun_ar1opt', 'fun_ar2', 'fun_ar2nb', 'fun_infix', 'fun_mhchem', 'hline_function', 'ignore_identifier', 'latex_function_names', 'left_function', 'mathoid_required', 'mediawiki_function_names', 'mhchem_bond', 'mhchem_macro_1p', 'mhchem_macro_2p', 'mhchem_macro_2pc', 'mhchem_macro_2pu', 'mhchem_required', 'mhchem_single_macro', 'nullary_macro', 'nullary_macro_in_mbox', 'other_delimiters1', 'other_delimiters2', 'right_function', 'teubner_required', ]; // Reading data from TexUtil. foreach ( $sets as $set ) { $baseElements = $tu->getBaseElements(); foreach ( $baseElements[$set] as $key => $value ) { if ( !array_key_exists( $key, $out ) ) { $out[$key] = []; } $out[$key][$set] = $value; } } $maps = [ 'deprecated_nullary_macro_aliase', 'nullary_macro_aliase', 'other_delimiters2', 'other_fun_ar1', 'is_literal', 'is_letter_mod' ]; foreach ( $maps as $map ) { $baseElements = $tu->getBaseElements(); foreach ( $baseElements[$map] as $key => $value ) { if ( !array_key_exists( $key, $out ) ) { $out[$key] = []; } $out[$key][$map] = $value; } } // Sorting output alphabetically encP - out not sorted correctly ksort( $out ); foreach ( $out as &$op ) { ksort( $op ); } // Loading local json file $file = file_get_contents( __DIR__ . '/texutil.json' ); $fileP = str_replace( [ "\n", "\t", " " ], "", $file ); $encP = json_encode( $out ); $hashOutput = $this->getHash( $encP ); $hashFile = $this->getHash( $fileP ); $this->assertEquals( $hashFile, $hashOutput ); } private function getHash( $input ) { return hash( 'sha256', $input ); } }