Making WordPress.org


Ignore:
Timestamp:
05/19/2020 05:33:14 AM (4 years ago)
Author:
dd32
Message:

Bump the PHPUnit Test Reporter plugin to v0.1.2

Props mikeschroder.
Fixes #5214.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sites/trunk/wordpress.org/public_html/wp-content/plugins/phpunit-test-reporter/src/class-restapi.php

    r6522 r9884  
    1313    public static function register_routes() {
    1414        register_rest_route(
    15             'wp-unit-test-api/v1', 'results', array(
     15            'wp-unit-test-api/v1',
     16            'results',
     17            array(
    1618                'methods'             => 'POST',
    1719                'callback'            => array( __CLASS__, 'add_results_callback' ),
     
    5254                if ( ! is_numeric( $value ) ) {
    5355                    return new WP_Error(
    54                         'rest_invalid', __( 'Value must be numeric.', 'ptr' ), array(
     56                        'rest_invalid',
     57                        __( 'Value must be numeric.', 'ptr' ),
     58                        array(
    5559                            'status' => 400,
    5660                        )
     
    6165                if ( empty( $value ) || ! is_string( $value ) ) {
    6266                    return new WP_Error(
    63                         'rest_invalid', __( 'Value must be a non-empty string.', 'ptr' ), array(
     67                        'rest_invalid',
     68                        __( 'Value must be a non-empty string.', 'ptr' ),
     69                        array(
    6470                            'status' => 400,
    6571                        )
     
    7177                if ( null === json_decode( $value ) ) {
    7278                    return new WP_Error(
    73                         'rest_invalid', __( 'Value must be encoded JSON.', 'ptr' ), array(
     79                        'rest_invalid',
     80                        __( 'Value must be encoded JSON.', 'ptr' ),
     81                        array(
    7482                            'status' => 400,
    7583                        )
     
    7987        }
    8088        return new WP_Error(
    81             'rest_invalid', __( 'Invalid key specified.', 'ptr' ), array(
     89            'rest_invalid',
     90            __( 'Invalid key specified.', 'ptr' ),
     91            array(
    8292                'status' => 400,
    8393            )
     
    8898        if ( ! current_user_can( 'edit_results' ) ) {
    8999            return new WP_Error(
    90                 'rest_unauthorized', __( 'Sorry, you are not allowed to create results.', 'ptr' ), array(
     100                'rest_unauthorized',
     101                __( 'Sorry, you are not allowed to create results.', 'ptr' ),
     102                array(
    91103                    'status' => is_user_logged_in() ? 403 : 401,
    92104                )
Note: See TracChangeset for help on using the changeset viewer.