/usr/share/php/PHPUnit/Util/Json.php is in phpunit 6.5.5-1ubuntu2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 | <?php
/*
 * This file is part of PHPUnit.
 *
 * (c) Sebastian Bergmann <sebastian@phpunit.de>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */
namespace PHPUnit\Util;
use PHPUnit\Framework\Exception;
class Json
{
    /**
     * Prettify json string
     *
     * @param string $json
     *
     * @return string
     *
     * @throws \PHPUnit\Framework\Exception
     */
    public static function prettify(string $json)
    {
        $decodedJson = \json_decode($json, true);
        if (\json_last_error()) {
            throw new Exception(
                'Cannot prettify invalid json'
            );
        }
        return \json_encode($decodedJson, JSON_PRETTY_PRINT);
    }
    /*
     * To allow comparison of JSON strings, first process them into a consistent
     * format so that they can be compared as strings.
     * @return array ($error, $canonicalized_json)  The $error parameter is used
     * to indicate an error decoding the json.  This is used to avoid ambiguity
     * with JSON strings consisting entirely of 'null' or 'false'.
     */
    public static function canonicalize(string $json)
    {
        $decodedJson = \json_decode($json, true);
        if (\json_last_error()) {
            return [true, null];
        }
        self::recursiveSort($decodedJson);
        $reencodedJson = \json_encode($decodedJson);
        return [false, $reencodedJson];
    }
    /*
     * JSON object keys are unordered while PHP array keys are ordered.
     * Sort all array keys to ensure both the expected and actual values have
     * their keys in the same order.
     */
    private static function recursiveSort(&$json)
    {
        if (false === \is_array($json)) {
            return;
        }
        \ksort($json);
        foreach ($json as $key => &$value) {
            self::recursiveSort($value);
        }
    }
}
 |