Ticket #2766: 2766.patch
| File 2766.patch, 2.1 KB (added by , 9 years ago) |
|---|
-
sites/trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory/tests/phpunit/tests/api/locale-banner.php
13 13 * @type array $expected_sites Rosetta sites that should be present in the banner text. 14 14 */ 15 15 function test_locale_banner( $header, $expected_sites ) { 16 $response = wp_remote_post( 'https://wordpress.org/plugins -wp/wp-json/plugins/v1/locale-banner', [16 $response = wp_remote_post( 'https://wordpress.org/plugins/wp-json/plugins/v1/locale-banner', [ 17 17 'headers' => [ 18 18 'Accept-Language' => $header, 19 19 ], -
sites/trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory/tests/phpunit/tests/api/svn-access.php
7 7 class Tests_API_SVN_Access extends WP_UnitTestCase { 8 8 9 9 function test_permission_denied() { 10 $response = wp_remote_get( 'https://wordpress.org/plugins -wp/wp-json/plugins/v1/svn-access' );10 $response = wp_remote_get( 'https://wordpress.org/plugins/wp-json/plugins/v1/svn-access' ); 11 11 $data = json_decode( wp_remote_retrieve_body( $response ), true ); 12 12 13 13 $this->assertEquals( 'not_authorized', $data['code'] ); … … 14 14 } 15 15 16 16 function test_permission_denied_with_bad_authorization() { 17 $response = wp_remote_get( 'https://wordpress.org/plugins -wp/wp-json/plugins/v1/svn-access', array(17 $response = wp_remote_get( 'https://wordpress.org/plugins/wp-json/plugins/v1/svn-access', array( 18 18 'headers' => array( 19 19 'Authorization' => 'lol like this would be a real auth key' 20 20 ),