assertInternalType( 'array', $headers, "Reply wasn't array." ); $this->assertEquals( 'image/jpeg', $headers['content-type'] ); $this->assertEquals( '40148', $headers['content-length'] ); $this->assertEquals( '200', wp_remote_retrieve_response_code( $response ) ); } function test_head_redirect() { // this url will 301 redirect $url = 'http://asdftestblog1.wordpress.com/files/2007/09/2007-06-30-dsc_4700-1.jpg'; $response = wp_remote_head( $url ); $this->assertEquals( '301', wp_remote_retrieve_response_code( $response ) ); } function test_head_404() { $url = 'http://asdftestblog1.files.wordpress.com/2007/09/awefasdfawef.jpg'; $headers = wp_remote_head( $url ); $this->assertInternalType( 'array', $headers, "Reply wasn't array." ); $this->assertEquals( '404', wp_remote_retrieve_response_code( $headers ) ); } function test_get_request() { $url = 'http://asdftestblog1.files.wordpress.com/2007/09/2007-06-30-dsc_4700-1.jpg'; $file = tempnam('/tmp', 'testfile'); $headers = wp_get_http($url, $file); // should return the same headers as a head request $this->assertInternalType( 'array', $headers, "Reply wasn't array." ); $this->assertEquals( 'image/jpeg', $headers['content-type'] ); $this->assertEquals( '40148', $headers['content-length'] ); $this->assertEquals( '200', $headers['response'] ); // make sure the file is ok $this->assertEquals( 40148, filesize($file) ); $this->assertEquals( 'b0371a0fc575fcf77f62cd298571f53b', md5_file($file) ); } function test_get_redirect() { // this will redirect to asdftestblog1.files.wordpress.com $url = 'http://asdftestblog1.wordpress.com/files/2007/09/2007-06-30-dsc_4700-1.jpg'; $file = tempnam('/tmp', 'testfile'); $headers = wp_get_http($url, $file); // should return the same headers as a head request $this->assertInternalType( 'array', $headers, "Reply wasn't array." ); $this->assertEquals( 'image/jpeg', $headers['content-type'] ); $this->assertEquals( '40148', $headers['content-length'] ); $this->assertEquals( '200', $headers['response'] ); // make sure the file is ok $this->assertEquals( 40148, filesize($file) ); $this->assertEquals( 'b0371a0fc575fcf77f62cd298571f53b', md5_file($file) ); } function test_get_redirect_limit_exceeded() { // this will redirect to asdftestblog1.files.wordpress.com $url = 'http://asdftestblog1.wordpress.com/files/2007/09/2007-06-30-dsc_4700-1.jpg'; $file = tempnam('/tmp', 'testfile'); // pretend we've already redirected 5 times $headers = wp_get_http( $url, $file, 6 ); $this->assertFalse( $headers ); } }