wordpress-develop/tests/phpunit/tests/functions/wpRemoteFopen.php
Sergey Biryukov 835e9c48a4 Tests: Add missing @covers tags for files in phpunit/tests/functions/.
Props pbearne, jrf.
See #39265.

git-svn-id: https://develop.svn.wordpress.org/trunk@49006 602fd350-edb4-49c9-b593-d223f7449a82
2020-09-19 15:52:03 +00:00

36 lines
785 B
PHP

<?php
/**
* @group http
* @group external-http
* @group functions.php
* @covers ::wp_remote_fopen
*/
class Tests_Functions_wpRemoteFopen extends WP_UnitTestCase {
/**
* @ticket 48845
*/
public function test_wp_remote_fopen_empty() {
$this->assertFalse( wp_remote_fopen( '' ) );
}
/**
* @ticket 48845
*/
public function test_wp_remote_fopen_bad_url() {
$this->assertFalse( wp_remote_fopen( 'wp.com' ) );
}
/**
* @ticket 48845
*/
public function test_wp_remote_fopen() {
// This URL gives a direct 200 response.
$url = 'https://asdftestblog1.files.wordpress.com/2007/09/2007-06-30-dsc_4700-1.jpg';
$response = wp_remote_fopen( $url );
$this->assertInternalType( 'string', $response );
$this->assertSame( 40148, strlen( $response ) );
}
}