PHPで書かれた画像ダウンロードサービスにテストケースを書いています。私たちはphpunitを使用しています。取得したバイナリ データが画像かどうかを確認するにはどうすればよいですか?
1841 次
1 に答える
2
exif_imagetype
(マニュアルを参照)を使用するのは良いことですが、ローカルディスク上のファイルを使用する必要があります。いくつかのマジックナンバーをハードコーディングしてもかまわない場合は、画像の種類を直接確認できますtestFetchWithoutSaving
。次の例を参照してください。
class ImageTest extends PHPUnit_Framework_TestCase
{
/**
* @see http://stackoverflow.com/a/676975/841830
*/
public function testFetchWithoutSaving(){
$s=file_get_contents("https://www.google.com/images/srpr/logo3w.png");
$this->assertEquals("\x89PNG\x0d\x0a\x1a\x0a",substr($s,0,8));
$s=file_get_contents("https://www.google.com/");
$this->assertEquals("\x89PNG\x0d\x0a\x1a\x0a",substr($s,0,8),"Fails: first 8 bytes are actually '<!doctyp'");
}
/**
* @see http://php.net/manual/en/function.exif-imagetype.php
*/
public function testFetchWithTempFile(){
$s=file_get_contents("https://www.google.com/images/srpr/logo3w.png");
$tempFilename="/tmp/phpunit.testImage.testFetchWithTempFile";
file_put_contents($tempFilename,$s);
$type=exif_imagetype($tempFilename);
unlink($tempFilename);
$this->assertTrue($type!==false); //Any recognized image type
$this->assertEquals(IMAGETYPE_PNG,$type); //A specific image type
}
}
于 2012-08-16T00:20:55.747 に答える